diff --git a/dist/vis.js b/dist/vis.js index c99c601e..95a6a664 100644 --- a/dist/vis.js +++ b/dist/vis.js @@ -5,7 +5,7 @@ * A dynamic, browser-based visualization library. * * @version 4.0.0-SNAPSHOT - * @date 2015-02-27 + * @date 2015-03-02 * * @license * Copyright (C) 2011-2014 Almende B.V, http://almende.com @@ -85,67 +85,67 @@ 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__(9); - exports.Queue = __webpack_require__(8); + exports.DataSet = __webpack_require__(3); + exports.DataView = __webpack_require__(4); + exports.Queue = __webpack_require__(5); // Graph3d - exports.Graph3d = __webpack_require__(10); + exports.Graph3d = __webpack_require__(6); exports.graph3d = { - Camera: __webpack_require__(14), - Filter: __webpack_require__(15), - Point2d: __webpack_require__(13), - Point3d: __webpack_require__(12), - Slider: __webpack_require__(16), - StepNumber: __webpack_require__(17) + Camera: __webpack_require__(7), + Filter: __webpack_require__(8), + Point2d: __webpack_require__(9), + Point3d: __webpack_require__(10), + Slider: __webpack_require__(11), + StepNumber: __webpack_require__(12) }; // Timeline - exports.Timeline = __webpack_require__(18); - exports.Graph2d = __webpack_require__(42); + exports.Timeline = __webpack_require__(13); + exports.Graph2d = __webpack_require__(14); exports.timeline = { - DateUtil: __webpack_require__(24), - DataStep: __webpack_require__(45), - Range: __webpack_require__(21), - stack: __webpack_require__(29), - TimeStep: __webpack_require__(27), + DateUtil: __webpack_require__(15), + DataStep: __webpack_require__(16), + Range: __webpack_require__(17), + stack: __webpack_require__(18), + TimeStep: __webpack_require__(19), components: { items: { - Item: __webpack_require__(31), - BackgroundItem: __webpack_require__(35), - BoxItem: __webpack_require__(33), - PointItem: __webpack_require__(34), - RangeItem: __webpack_require__(30) + Item: __webpack_require__(20), + BackgroundItem: __webpack_require__(21), + BoxItem: __webpack_require__(22), + PointItem: __webpack_require__(23), + RangeItem: __webpack_require__(24) }, - Component: __webpack_require__(23), - CurrentTime: __webpack_require__(41), - CustomTime: __webpack_require__(38), - DataAxis: __webpack_require__(44), - GraphGroup: __webpack_require__(46), - Group: __webpack_require__(28), - BackgroundGroup: __webpack_require__(32), - ItemSet: __webpack_require__(26), - Legend: __webpack_require__(50), - LineGraph: __webpack_require__(43), - TimeAxis: __webpack_require__(40) + Component: __webpack_require__(25), + CurrentTime: __webpack_require__(26), + CustomTime: __webpack_require__(27), + DataAxis: __webpack_require__(28), + GraphGroup: __webpack_require__(29), + Group: __webpack_require__(30), + BackgroundGroup: __webpack_require__(31), + ItemSet: __webpack_require__(32), + Legend: __webpack_require__(33), + LineGraph: __webpack_require__(34), + TimeAxis: __webpack_require__(35) } }; // Network - exports.Network = __webpack_require__(51); + exports.Network = __webpack_require__(36); exports.network = { - Edge: __webpack_require__(57), - Groups: __webpack_require__(54), - Images: __webpack_require__(55), - Node: __webpack_require__(56), - Popup: __webpack_require__(58), - dotparser: __webpack_require__(52), - gephiParser: __webpack_require__(53) + Edge: __webpack_require__(37), + Groups: __webpack_require__(38), + Images: __webpack_require__(39), + Node: __webpack_require__(40), + Popup: __webpack_require__(41), + dotparser: __webpack_require__(42), + gephiParser: __webpack_require__(43) }; // Deprecated since v3.0.0 @@ -154,8 +154,9 @@ return /******/ (function(modules) { // webpackBootstrap }; // bundled external libraries - exports.moment = __webpack_require__(2); - exports.hammer = __webpack_require__(19); + exports.moment = __webpack_require__(44); + exports.hammer = __webpack_require__(45); // TODO: deprecate exports.hammer some day + exports.Hammer = __webpack_require__(45); /***/ }, /* 1 */ @@ -167,7 +168,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__(44); /** * Test whether given object is a number @@ -598,7 +599,7 @@ return /******/ (function(modules) { // webpackBootstrap * in the browser page. */ exports.getAbsoluteLeft = function (elem) { - return elem.getBoundingClientRect().left + window.pageXOffset; + return elem.getBoundingClientRect().left; }; /** @@ -608,7 +609,7 @@ return /******/ (function(modules) { // webpackBootstrap * in the browser page. */ exports.getAbsoluteTop = function (elem) { - return elem.getBoundingClientRect().top + window.pageYOffset; + return elem.getBoundingClientRect().top; }; /** @@ -1390,6828 +1391,6716 @@ return /******/ (function(modules) { // webpackBootstrap "use strict"; - // 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 = []; + } + } + }; + + /** + * 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 = []; + } + } + } + }; + + /** + * 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; + }; + + + /** + * 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, insertBefore) { + 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); + if (insertBefore !== undefined) { + DOMContainer.insertBefore(element, insertBefore); + } else { + 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: [] }; + if (insertBefore !== undefined) { + DOMContainer.insertBefore(element, insertBefore); + } else { + DOMContainer.appendChild(element); + } + } + JSONcontainer[elementType].used.push(element); + return element; + }; + + + + + /** + * 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 + * @param labelObj + * @returns {*} + */ + exports.drawPoint = function (x, y, group, JSONcontainer, svgContainer, labelObj) { + 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); + } 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); + } + + if (group.options.drawPoints.styles !== undefined) { + point.setAttributeNS(null, "style", group.group.options.drawPoints.styles); + } + point.setAttributeNS(null, "class", group.className + " point"); + //handle label + var label = exports.getSVGElement("text", JSONcontainer, svgContainer); + if (labelObj) { + if (labelObj.xOffset) { + x = x + labelObj.xOffset; + } + + if (labelObj.yOffset) { + y = y + labelObj.yOffset; + } + if (labelObj.content) { + label.textContent = labelObj.content; + } + + if (labelObj.className) { + label.setAttributeNS(null, "class", labelObj.className + " label"); + } + + } + label.setAttributeNS(null, "x", x); + label.setAttributeNS(null, "y", y); + return point; + }; + + /** + * 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) { + if (height < 0) { + height *= -1; + y -= height; + } + 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); + } + }; /***/ }, /* 3 */ /***/ function(module, exports, __webpack_require__) { - var __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(global, module) {//! moment.js - //! version : 2.9.0 - //! authors : Tim Wood, Iskren Chernev, Moment.js contributors - //! license : MIT - //! momentjs.com + "use strict"; - (function (undefined) { - /************************************ - Constants - ************************************/ + var util = __webpack_require__(1); + var Queue = __webpack_require__(5); - var moment, - VERSION = '2.9.0', - // the global-scope this is NOT the global object in Node.js - globalScope = (typeof global !== 'undefined' && (typeof window === 'undefined' || window === global.window)) ? global : this, - oldGlobalMoment, - round = Math.round, - hasOwnProperty = Object.prototype.hasOwnProperty, - i, + /** + * 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, + /** + * 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 *"); + } - // 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 - }, + var subscribers = []; + if (event in this._subscribers) { + subscribers = subscribers.concat(this._subscribers[event]); + } + if ("*" in this._subscribers) { + subscribers = subscribers.concat(this._subscribers["*"]); + } - 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' - }, + for (var i = 0; i < subscribers.length; i++) { + var subscriber = subscribers[i]; + if (subscriber.callback) { + subscriber.callback(event, params, senderId || null); + } + } + }; - camelFunctions = { - dayofyear : 'dayOfYear', - isoweekday : 'isoWeekday', - isoweek : 'isoWeek', - weekyear : 'weekYear', - isoweekyear : 'isoWeekYear' - }, + /** + * 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; - // format function strings - formatFunctions = {}, + 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); + } - // 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(' '), - - 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.utcOffset(), - b = '+'; - if (a < 0) { - a = -a; - b = '-'; - } - return b + leftZeroFill(toInt(a / 60), 2) + ':' + leftZeroFill(toInt(a) % 60, 2); - }, - ZZ : function () { - var a = this.utcOffset(), - 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.valueOf(); - }, - X : function () { - return this.unix(); - }, - Q : function () { - return this.quarter(); - } - }, - - deprecations = {}, - - lists = ['months', 'monthsShort', 'weekdays', 'weekdaysShort', 'weekdaysMin'], + 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"); + } - updateInProgress = false; + if (addedIds.length) { + this._trigger("add", { items: addedIds }, senderId); + } - // 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'); - } - } + return addedIds; + }; - function hasOwnProp(a, b) { - return hasOwnProperty.call(a, b); - } + /** + * 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 = []; + var updatedIds = []; + var updatedData = []; + var me = this; + var fieldId = me._fieldId; - 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 - }; + var addOrUpdate = function (item) { + var id = item[fieldId]; + if (me._data[id]) { + // update item + id = me._updateItem(item); + updatedIds.push(id); + updatedData.push(item); + } else { + // add new item + id = me._addItem(item); + addedIds.push(id); } + }; - function printMsg(msg) { - if (moment.suppressDeprecationWarnings === false && - typeof console !== 'undefined' && console.warn) { - console.warn('Deprecation warning: ' + msg); - } + 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); + } - function deprecate(msg, fn) { - var firstTime = true; - return extend(function () { - if (firstTime) { - printMsg(msg); - firstTime = false; - } - return fn.apply(this, arguments); - }, fn); + addOrUpdate(item); } + } else if (data instanceof Object) { + // Single item + addOrUpdate(data); + } else { + throw new Error("Unknown dataType"); + } - function deprecateSimple(name, msg) { - if (!deprecations[name]) { - printMsg(msg); - deprecations[name] = true; - } - } + if (addedIds.length) { + this._trigger("add", { items: addedIds }, senderId); + } + if (updatedIds.length) { + this._trigger("update", { items: updatedIds, data: updatedData }, senderId); + } - 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); - }; - } + return addedIds.concat(updatedIds); + }; - function monthDiff(a, b) { - // difference in months - var wholeMonthDiff = ((b.year() - a.year()) * 12) + (b.month() - a.month()), - // b is in (anchor - 1 month, anchor + 1 month) - anchor = a.clone().add(wholeMonthDiff, 'months'), - anchor2, adjust; + /** + * 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 (b - anchor < 0) { - anchor2 = a.clone().add(wholeMonthDiff - 1, 'months'); - // linear across the month - adjust = (b - anchor) / (anchor - anchor2); - } else { - anchor2 = a.clone().add(wholeMonthDiff + 1, 'months'); - // linear across the month - adjust = (b - anchor) / (anchor2 - anchor); - } + // 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]; + } - return -(wholeMonthDiff + adjust); - } + // determine the return type + var returnType; + if (options && options.returnType) { + var allowedValues = ["DataTable", "Array", "Object"]; + returnType = allowedValues.indexOf(options.returnType) == -1 ? "Array" : options.returnType; - while (ordinalizeTokens.length) { - i = ordinalizeTokens.pop(); - formatTokenFunctions[i + 'o'] = ordinalizeToken(formatTokenFunctions[i], i); + 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 + ")"); } - while (paddedTokens.length) { - i = paddedTokens.pop(); - formatTokenFunctions[i + i] = padToken(formatTokenFunctions[i], 2); + if (returnType == "DataTable" && !util.isDataTable(data)) { + throw new Error("Parameter \"data\" must be a DataTable " + "when options.type is \"DataTable\""); } - formatTokenFunctions.DDDD = padToken(formatTokenFunctions.DDD, 3); - + } else if (data) { + returnType = util.getType(data) == "DataTable" ? "DataTable" : "Array"; + } else { + returnType = "Array"; + } - function meridiemFixWrap(locale, hour, meridiem) { - var isPm; + // build options + var type = options && options.type || this._options.type; + var filter = options && options.filter; + var items = [], + item, + itemId, + i, + len; - if (meridiem == null) { - // nothing to do - return hour; - } - if (locale.meridiemHour != null) { - return locale.meridiemHour(hour, meridiem); - } else if (locale.isPM != null) { - // Fallback - isPm = locale.isPM(meridiem); - if (isPm && hour < 12) { - hour += 12; - } - if (!isPm && hour === 12) { - hour = 0; - } - return hour; - } else { - // thie is not supposed to happen - return hour; + // 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); } + } } + } - /************************************ - Constructors - ************************************/ + // order the results + if (options && options.order && id == undefined) { + this._sort(items, options.order); + } - function Locale() { + // filter fields of the items + if (options && options.fields) { + var fields = options.fields; + if (id != undefined) { + item = this._filterFields(item, fields); + } else { + for (i = 0, len = items.length; i < len; i++) { + items[i] = this._filterFields(items[i], fields); + } } + } - // Moment prototype object - function Moment(config, skipOverflow) { - if (skipOverflow !== false) { - checkOverflow(config); - } - copyConfig(this, config); - this._d = new Date(+config._d); - // Prevent infinite loop in case updateOffset creates new moment - // objects. - if (updateInProgress === false) { - updateInProgress = true; - moment.updateOffset(this); - updateInProgress = false; + // return the results + if (returnType == "DataTable") { + var columns = this._getColumnNames(data); + if (id != undefined) { + // append a single item to the data table + me._appendRow(data, columns, item); + } else { + // copy the items to the provided data table + for (i = 0; i < items.length; i++) { + me._appendRow(data, columns, items[i]); + } + } + return data; + } else if (returnType == "Object") { + var result = {}; + for (i = 0; i < items.length; i++) { + result[items[i].id] = items[i]; + } + return result; + } else { + // return an array + if (id != undefined) { + // a single item + return item; + } else { + // multiple items + if (data) { + // copy the items to the provided array + for (i = 0, len = items.length; i < len; i++) { + data.push(items[i]); } + return data; + } else { + // just return our array + return items; + } } + } + }; - // 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; + /** + * 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 = []; - this._data = {}; + 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); + } + } + } - this._locale = moment.localeData(); + this._sort(items, order); - this._bubble(); + 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]); + } + } + } } - - /************************************ - Helpers - ************************************/ - - - function extend(a, b) { - for (var i in b) { - if (hasOwnProp(b, i)) { - a[i] = b[i]; - } + } else { + // get all items + if (order) { + // create an ordered list + items = []; + for (id in data) { + if (data.hasOwnProperty(id)) { + items.push(data[id]); } + } - if (hasOwnProp(b, 'toString')) { - a.toString = b.toString; - } + this._sort(items, order); - if (hasOwnProp(b, 'valueOf')) { - a.valueOf = b.valueOf; + for (i = 0, len = items.length; i < len; i++) { + ids[i] = items[i][this._fieldId]; + } + } else { + // create unordered list + for (id in data) { + if (data.hasOwnProperty(id)) { + item = data[id]; + ids.push(item[this._fieldId]); } - - return a; + } } + } - function copyConfig(to, from) { - var i, prop, val; + return ids; + }; - 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; - } + /** + * 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; + }; - if (momentProperties.length > 0) { - for (i in momentProperties) { - prop = momentProperties[i]; - val = from[prop]; - if (typeof val !== 'undefined') { - to[prop] = val; - } - } - } + /** + * 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; - return to; - } + if (options && options.order) { + // execute forEach on ordered list + var items = this.get(options); - function absRound(number) { - if (number < 0) { - return Math.ceil(number); - } else { - return Math.floor(number); + for (var i = 0, len = items.length; i < len; i++) { + item = items[i]; + id = item[this._fieldId]; + callback(item, id); + } + } else { + // unordered + for (id in data) { + if (data.hasOwnProperty(id)) { + item = this._getItem(id, type); + if (!filter || filter(item)) { + callback(item, id); } + } } + } + }; - // 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; + /** + * 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 (output.length < targetLength) { - output = '0' + output; - } - return (sign ? (forceSign ? '+' : '') : '-') + output; + // 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 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; - } + // order items + if (options && options.order) { + this._sort(mappedItems, options.order); + } - res.milliseconds = +other - +(base.clone().add(res.months, 'M')); + return mappedItems; + }; - return res; - } + /** + * Filter the fields of an item + * @param {Object | null} item + * @param {String[]} fields Field names + * @return {Object | null} filteredItem or null if no item is provided + * @private + */ + DataSet.prototype._filterFields = function (item, fields) { + if (!item) { + // item is null + return 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; - } + var filteredItem = {}; - return res; + for (var field in item) { + if (item.hasOwnProperty(field) && fields.indexOf(field) != -1) { + filteredItem[field] = item[field]; } + } - // 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; - } + return filteredItem; + }; - val = typeof val === 'string' ? +val : val; - dur = moment.duration(val, period); - addOrSubtractDurationFromMoment(this, dur, direction); - return this; - }; - } + /** + * 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"); + } + }; - function addOrSubtractDurationFromMoment(mom, duration, isAdding, updateOffset) { - var milliseconds = duration._milliseconds, - days = duration._days, - months = duration._months; - updateOffset = updateOffset == null ? true : updateOffset; + /** + * Remove an object by pointer or by id + * @param {String | Number | Object | Array} id Object or id, or an array with + * objects or ids to be removed + * @param {String} [senderId] Optional sender id + * @return {Array} removedIds + */ + DataSet.prototype.remove = function (id, senderId) { + var removedIds = [], + i, + len, + removedId; - if (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); - } + if (Array.isArray(id)) { + for (i = 0, len = id.length; i < len; i++) { + removedId = this._remove(id[i]); + if (removedId != null) { + removedIds.push(removedId); + } } - - // check if is an array - function isArray(input) { - return Object.prototype.toString.call(input) === '[object Array]'; + } else { + removedId = this._remove(id); + if (removedId != null) { + removedIds.push(removedId); } + } - function isDate(input) { - return Object.prototype.toString.call(input) === '[object Date]' || - input instanceof Date; - } + if (removedIds.length) { + this._trigger("remove", { items: removedIds }, senderId); + } - // 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 removedIds; + }; - function normalizeUnits(units) { - if (units) { - var lowered = units.toLowerCase().replace(/(.)s$/, '$1'); - units = unitAliases[units] || camelFunctions[lowered] || lowered; - } - return units; + /** + * 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]; + this.length--; + return id; } - - function normalizeObjectUnits(inputObject) { - var normalizedInput = {}, - normalizedProp, - prop; - - for (prop in inputObject) { - if (hasOwnProp(inputObject, prop)) { - normalizedProp = normalizeUnits(prop); - if (normalizedProp) { - normalizedInput[normalizedProp] = inputObject[prop]; - } - } - } - - return normalizedInput; + } else if (id instanceof Object) { + var itemId = id[this._fieldId]; + if (itemId && this._data[itemId]) { + delete this._data[itemId]; + this.length--; + return itemId; } + } + return null; + }; - function makeList(field) { - var count, setter; + /** + * 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); - if (field.indexOf('week') === 0) { - count = 7; - setter = 'day'; - } - else if (field.indexOf('month') === 0) { - count = 12; - setter = 'month'; - } - else { - return; - } + this._data = {}; + this.length = 0; - moment[field] = function (format, index) { - var i, getter, - method = moment._locale[field], - results = []; + this._trigger("remove", { items: ids }, senderId); - if (typeof format === 'number') { - index = format; - format = undefined; - } + return ids; + }; - getter = function (i) { - var m = moment().utc().set(setter, i); - return method.call(moment._locale, m, format || ''); - }; + /** + * 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; - if (index != null) { - return getter(index); - } - else { - for (i = 0; i < count; i++) { - results.push(getter(i)); - } - return results; - } - }; + 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; + } } + } - function toInt(argumentForCoercion) { - var coercedNumber = +argumentForCoercion, - value = 0; + return max; + }; - if (coercedNumber !== 0 && isFinite(coercedNumber)) { - if (coercedNumber >= 0) { - value = Math.floor(coercedNumber); - } else { - value = Math.ceil(coercedNumber); - } - } + /** + * 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; - return value; + 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; + } } + } - function daysInMonth(year, month) { - return new Date(Date.UTC(year, month + 1, 0)).getUTCDate(); - } + return min; + }; - function weeksInYear(year, dow, doy) { - return weekOfYear(moment([year, 11, 31 + dow - doy]), dow, doy).week; - } + /** + * 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 daysInYear(year) { - return isLeapYear(year) ? 366 : 365; + 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++; + } } + } - function isLeapYear(year) { - return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0; + if (fieldType) { + for (i = 0; i < values.length; i++) { + values[i] = util.convert(values[i], fieldType); } + } - 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] > 24 || - (m._a[HOUR] === 24 && (m._a[MINUTE] !== 0 || - m._a[SECOND] !== 0 || - m._a[MILLISECOND] !== 0)) ? 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 values; + }; - if (m._pf._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) { - overflow = DATE; - } + /** + * 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]; - m._pf.overflow = overflow; - } + 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 isValid(m) { - if (m._isValid == null) { - m._isValid = !isNaN(m._d.getTime()) && - m._pf.overflow < 0 && - !m._pf.empty && - !m._pf.invalidMonth && - !m._pf.nullInput && - !m._pf.invalidFormat && - !m._pf.userInvalidated; - - if (m._strict) { - m._isValid = m._isValid && - m._pf.charsLeftOver === 0 && - m._pf.unusedTokens.length === 0 && - m._pf.bigHour === undefined; - } - } - return m._isValid; + var d = {}; + for (var field in item) { + if (item.hasOwnProperty(field)) { + var fieldType = this._type[field]; // type may be undefined + d[field] = util.convert(item[field], fieldType); } + } + this._data[id] = d; + this.length++; - function normalizeLocale(key) { - return key ? key.toLowerCase().replace('_', '-') : key; - } + return 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; + /** + * 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; - 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; - } + // get the item from the dataset + var raw = this._data[id]; + if (!raw) { + return null; + } - function loadLocale(name) { - var oldLocale = null; - if (!locales[name] && hasModule) { - try { - oldLocale = moment.locale(); - !(function webpackMissingModule() { var e = new Error("Cannot find module \"./locale\""); e.code = 'MODULE_NOT_FOUND'; throw e; }()); - // because defineLocale currently also sets the global locale, we want to undo that for lazy loaded locales - moment.locale(oldLocale); - } catch (e) { } - } - return locales[name]; + // 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]); + } } - - // Return a moment from input, that is local/utc/utcOffset equivalent to - // model. - function makeAs(input, model) { - var res, diff; - if (model._isUTC) { - res = model.clone(); - diff = (moment.isMoment(input) || isDate(input) ? - +input : +moment(input)) - (+res); - // Use low-level api, because this fn is low-level api. - res._d.setTime(+res._d + diff); - moment.updateOffset(res, false); - return res; - } else { - return moment(input).local(); - } + } else { + // no field types specified, no converting needed + for (field in raw) { + if (raw.hasOwnProperty(field)) { + value = raw[field]; + converted[field] = value; + } } + } + return converted; + }; - /************************************ - Locale - ************************************/ + /** + * Update a single item: merge with existing item. + * Will fail when the item has no id, or when there does not exist an item + * with the same id. + * @param {Object} item + * @return {String} id + * @private + */ + DataSet.prototype._updateItem = function (item) { + var id = item[this._fieldId]; + if (id == undefined) { + throw new Error("Cannot update item: item has no id (item: " + JSON.stringify(item) + ")"); + } + var d = this._data[id]; + if (!d) { + // item doesn't exist + throw new Error("Cannot update item: no item with id " + id + " found"); + } + // merge with current item + for (var field in item) { + if (item.hasOwnProperty(field)) { + var fieldType = this._type[field]; // type may be undefined + d[field] = util.convert(item[field], fieldType); + } + } - extend(Locale.prototype, { + return id; + }; - set : function (config) { - var prop, i; - for (i in config) { - prop = config[i]; - if (typeof prop === 'function') { - this[i] = prop; - } else { - this['_' + i] = prop; - } - } - // Lenient ordinal parsing accepts just a number in addition to - // number + (possibly) stuff coming from _ordinalParseLenient. - this._ordinalParseLenient = new RegExp(this._ordinalParse.source + '|' + /\d{1,2}/.source); - }, + /** + * 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; + }; - _months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), - months : function (m) { - return this._months[m.month()]; - }, + /** + * 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(); - _monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), - monthsShort : function (m) { - return this._monthsShort[m.month()]; - }, + for (var col = 0, cols = columns.length; col < cols; col++) { + var field = columns[col]; + dataTable.setValue(row, col, item[field]); + } + }; - monthsParse : function (monthName, format, strict) { - var i, mom, regex; + module.exports = DataSet; - if (!this._monthsParse) { - this._monthsParse = []; - this._longMonthsParse = []; - this._shortMonthsParse = []; - } +/***/ }, +/* 4 */ +/***/ function(module, exports, __webpack_require__) { - for (i = 0; i < 12; i++) { - // make the regex if we don't have it already - mom = moment.utc([2000, i]); - if (strict && !this._longMonthsParse[i]) { - this._longMonthsParse[i] = new RegExp('^' + this.months(mom, '').replace('.', '') + '$', 'i'); - this._shortMonthsParse[i] = new RegExp('^' + this.monthsShort(mom, '').replace('.', '') + '$', 'i'); - } - if (!strict && !this._monthsParse[i]) { - regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, ''); - this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i'); - } - // test the regex - if (strict && format === 'MMMM' && this._longMonthsParse[i].test(monthName)) { - return i; - } else if (strict && format === 'MMM' && this._shortMonthsParse[i].test(monthName)) { - return i; - } else if (!strict && this._monthsParse[i].test(monthName)) { - return i; - } - } - }, + "use strict"; - _weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'), - weekdays : function (m) { - return this._weekdays[m.day()]; - }, + var util = __webpack_require__(1); + var DataSet = __webpack_require__(3); - _weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), - weekdaysShort : function (m) { - return this._weekdaysShort[m.day()]; - }, + /** + * 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.length = 0; // number of items in the DataView + this._options = options || {}; + this._fieldId = "id"; // name of the field containing id + this._subscribers = {}; // event subscribers - _weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), - weekdaysMin : function (m) { - return this._weekdaysMin[m.day()]; - }, + var me = this; + this.listener = function () { + me._onEvent.apply(me, arguments); + }; - weekdaysParse : function (weekdayName) { - var i, mom, regex; + this.setData(data); + } - if (!this._weekdaysParse) { - this._weekdaysParse = []; - } + // TODO: implement a function .config() to dynamically update things like configured filter + // and trigger changes accordingly - 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; - } - } - }, + /** + * Set a data source for the view + * @param {DataSet | DataView} data + */ + DataView.prototype.setData = function (data) { + var ids, i, len; - _longDateFormat : { - LTS : 'h:mm:ss A', - 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; - }, + if (this._data) { + // unsubscribe from current dataset + if (this._data.unsubscribe) { + this._data.unsubscribe("*", this.listener); + } - 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'); - }, + // 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.length = 0; + this._trigger("remove", { items: ids }); + } - _meridiemParse : /[ap]\.?m?\.?/i, - meridiem : function (hours, minutes, isLower) { - if (hours > 11) { - return isLower ? 'pm' : 'PM'; - } else { - return isLower ? 'am' : 'AM'; - } - }, + this._data = data; + if (this._data) { + // update fieldId + this._fieldId = this._options.fieldId || this._data && this._data.options && this._data.options.fieldId || "id"; - _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, now) { - var output = this._calendar[key]; - return typeof output === 'function' ? output.apply(mom, [now]) : output; - }, + // 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.length = ids.length; + this._trigger("add", { items: ids }); - _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' - }, + // subscribe to new dataset + if (this._data.on) { + this._data.on("*", this.listener); + } + } + }; - 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); - }, + /** + * Refresh the DataView. Useful when the DataView has a filter function + * containing a variable parameter. + */ + DataView.prototype.refresh = function () { + var id; + var ids = this._data.getIds({ filter: this._options && this._options.filter }); + var newIds = {}; + var added = []; + var removed = []; - pastFuture : function (diff, output) { - var format = this._relativeTime[diff > 0 ? 'future' : 'past']; - return typeof format === 'function' ? format(output) : format.replace(/%s/i, output); - }, + // check for additions + for (var i = 0; i < ids.length; i++) { + id = ids[i]; + newIds[id] = true; + if (!this._ids[id]) { + added.push(id); + this._ids[id] = true; + this.length++; + } + } - ordinal : function (number) { - return this._ordinal.replace('%d', number); - }, - _ordinal : '%d', - _ordinalParse : /\d{1,2}/, + // check for removals + for (id in this._ids) { + if (this._ids.hasOwnProperty(id)) { + if (!newIds[id]) { + removed.push(id); + delete this._ids[id]; + this.length--; + } + } + } - preparse : function (string) { - return string; - }, + // trigger events + if (added.length) { + this._trigger("add", { items: added }); + } + if (removed.length) { + this._trigger("remove", { items: removed }); + } + }; - postformat : function (string) { - return string; - }, + /** + * 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; - week : function (mom) { - return weekOfYear(mom, this._week.dow, this._week.doy).week; - }, + // 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]; + } - _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. - }, + // extend the options with the default options and provided options + var viewOptions = util.extend({}, this._options, options); - firstDayOfWeek : function () { - return this._week.dow; - }, + // 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); + }; + } - firstDayOfYear : function () { - return this._week.doy; - }, + // build up the call to the linked data set + var getArguments = []; + if (ids != undefined) { + getArguments.push(ids); + } + getArguments.push(viewOptions); + getArguments.push(data); - _invalidDate: 'Invalid date', - invalidDate: function () { - return this._invalidDate; - } + return this._data && this._data.get.apply(this._data, getArguments); + }; + + /** + * Get ids of all items or from a filtered set of items. + * @param {Object} [options] An Object with options. Available options: + * {function} [filter] filter items + * {String | function} [order] Order the items by + * a field name or custom sort function. + * @return {Array} ids + */ + DataView.prototype.getIds = function (options) { + var ids; + + if (this._data) { + var defaultFilter = this._options.filter; + var filter; + + if (options && options.filter) { + if (defaultFilter) { + filter = function (item) { + return defaultFilter(item) && options.filter(item); + }; + } else { + filter = options.filter; + } + } else { + filter = defaultFilter; + } + + ids = this._data.getIds({ + filter: filter, + order: options && options.order }); + } else { + ids = []; + } - /************************************ - Formatting - ************************************/ + 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 + */ + DataView.prototype.getDataSet = function () { + var dataSet = this; + while (dataSet instanceof DataView) { + dataSet = dataSet._data; + } + return dataSet || null; + }; - function removeFormattingTokens(input) { - if (input.match(/\[[\s\S]/)) { - return input.replace(/^\[|\]$/g, ''); + /** + * Event listener. Will propagate all events from the connected data set to + * the subscribers of the DataView, but will filter the items and only trigger + * when there are changes in the filtered data set. + * @param {String} event + * @param {Object | null} params + * @param {String} senderId + * @private + */ + DataView.prototype._onEvent = function (event, params, senderId) { + var i, + len, + id, + item, + ids = params && params.items, + data = this._data, + added = [], + updated = [], + removed = []; + + if (ids && data) { + switch (event) { + case "add": + // filter the ids of the added items + for (i = 0, len = ids.length; i < len; i++) { + id = ids[i]; + item = this.get(id); + if (item) { + this._ids[id] = true; + added.push(id); + } } - return input.replace(/\\/g, ''); - } - function makeFormatFunction(format) { - var array = format.match(formattingTokens), i, length; + break; - for (i = 0, length = array.length; i < length; i++) { - if (formatTokenFunctions[array[i]]) { - array[i] = formatTokenFunctions[array[i]]; + 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 { - array[i] = removeFormattingTokens(array[i]); + this._ids[id] = true; + added.push(id); } + } else { + if (this._ids[id]) { + delete this._ids[id]; + removed.push(id); + } else {} + } } - 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; - }; - } + break; - // format date using native date object - function formatMoment(m, format) { - if (!m.isValid()) { - return m.localeData().invalidDate(); + 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); + } } - format = expandFormat(format, m.localeData()); + break; + } - if (!formatFunctions[format]) { - formatFunctions[format] = makeFormatFunction(format); - } + this.length += added.length - removed.length; - return formatFunctions[format](m); + 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); } + } + }; - function expandFormat(format, locale) { - var i = 5; + // copy subscription functionality from DataSet + DataView.prototype.on = DataSet.prototype.on; + DataView.prototype.off = DataSet.prototype.off; + DataView.prototype._trigger = DataSet.prototype._trigger; - function replaceLongDateFormatTokens(input) { - return locale.longDateFormat(input) || input; - } + // 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; - localFormattingTokens.lastIndex = 0; - while (i >= 0 && localFormattingTokens.test(format)) { - format = format.replace(localFormattingTokens, replaceLongDateFormatTokens); - localFormattingTokens.lastIndex = 0; - i -= 1; - } + module.exports = DataView; + // nothing interesting for me :-( - return format; - } +/***/ }, +/* 5 */ +/***/ function(module, exports, __webpack_require__) { + "use strict"; - /************************************ - Parsing - ************************************/ + /** + * A queue + * @param {Object} options + * Available options: + * - delay: number When provided, the queue will be flushed + * automatically after an inactivity of this delay + * in milliseconds. + * Default value is null. + * - max: number When the queue exceeds the given maximum number + * of entries, the queue is flushed automatically. + * Default value of max is Infinity. + * @constructor + */ + function Queue(options) { + // options + this.delay = null; + this.max = Infinity; + // properties + this._queue = []; + this._timeout = null; + this._extended = null; - // 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 parseTokenOffsetMs; - 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 strict ? config._locale._ordinalParse : config._locale._ordinalParseLenient; - default : - a = new RegExp(regexpEscape(unescapeFormat(token.replace('\\', '')), 'i')); - return a; - } + this.setOptions(options); + } + + /** + * Update the configuration of the queue + * @param {Object} options + * Available options: + * - delay: number When provided, the queue will be flushed + * automatically after an inactivity of this delay + * in milliseconds. + * Default value is null. + * - max: number When the queue exceeds the given maximum number + * of entries, the queue is flushed automatically. + * Default value of max is Infinity. + * @param options + */ + Queue.prototype.setOptions = function (options) { + if (options && typeof options.delay !== "undefined") { + this.delay = options.delay; + } + if (options && typeof options.max !== "undefined") { + this.max = options.max; + } + + this._flushIfNeeded(); + }; + + /** + * Extend an object with queuing functionality. + * The object will be extended with a function flush, and the methods provided + * in options.replace will be replaced with queued ones. + * @param {Object} object + * @param {Object} options + * Available options: + * - replace: Array. + * A list with method names of the methods + * on the object to be replaced with queued ones. + * - delay: number When provided, the queue will be flushed + * automatically after an inactivity of this delay + * in milliseconds. + * Default value is null. + * - max: number When the queue exceeds the given maximum number + * of entries, the queue is flushed automatically. + * Default value of max is Infinity. + * @return {Queue} Returns the created queue + */ + Queue.extend = function (object, options) { + var queue = new Queue(options); + + if (object.flush !== undefined) { + throw new Error("Target object already has a property flush"); + } + object.flush = function () { + queue.flush(); + }; + + var methods = [{ + name: "flush", + original: undefined + }]; + + if (options && options.replace) { + for (var i = 0; i < options.replace.length; i++) { + var name = options.replace[i]; + methods.push({ + name: name, + original: object[name] + }); + queue.replace(object, name); } + } - function utcOffsetFromString(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]); + queue._extended = { + object: object, + methods: methods + }; - return parts[0] === '+' ? minutes : -minutes; + return queue; + }; + + /** + * Destroy the queue. The queue will first flush all queued actions, and in + * case it has extended an object, will restore the original object. + */ + Queue.prototype.destroy = function () { + this.flush(); + + if (this._extended) { + var object = this._extended.object; + var methods = this._extended.methods; + for (var i = 0; i < methods.length; i++) { + var method = methods[i]; + if (method.original) { + object[method.name] = method.original; + } else { + delete object[method.name]; + } } + this._extended = null; + } + }; - // function to convert string input to date - function addTimeToArrayFromToken(token, input, config) { - var a, datePartArray = config._a; + /** + * Replace a method on an object with a queued version + * @param {Object} object Object having the method + * @param {string} method The method name + */ + Queue.prototype.replace = function (object, method) { + var me = this; + var original = object[method]; + if (!original) { + throw new Error("Method " + method + " undefined"); + } - 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, token, config._strict); - // 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.match(/\d{1,2}/)[0], 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._meridiem = input; - // config._isPm = config._locale.isPM(input); - break; - // HOUR - case 'h' : // fall through to hh - case 'hh' : - config._pf.bigHour = true; - /* falls through */ - 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 OFFSET (MILLISECONDS) - case 'x': - config._d = new Date(toInt(input)); - 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 = utcOffsetFromString(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); - } + object[method] = function () { + // create an Array with the arguments + var args = []; + for (var i = 0; i < arguments.length; i++) { + args[i] = arguments[i]; } - 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); + // add this call to the queue + me.queue({ + args: args, + fn: original, + context: this + }); + }; + }; - 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); + /** + * Queue a call + * @param {function | {fn: function, args: Array} | {fn: function, args: Array, context: Object}} entry + */ + Queue.prototype.queue = function (entry) { + if (typeof entry === "function") { + this._queue.push({ fn: entry }); + } else { + this._queue.push(entry); + } - config._a[YEAR] = temp.year; - config._dayOfYear = temp.dayOfYear; - } + this._flushIfNeeded(); + }; - // 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; + /** + * Check whether the queue needs to be flushed + * @private + */ + Queue.prototype._flushIfNeeded = function () { + // flush when the maximum is exceeded. + if (this._queue.length > this.max) { + this.flush(); + } - if (config._d) { - return; - } + // flush after a period of inactivity when a delay is configured + clearTimeout(this._timeout); + if (this.queue.length > 0 && typeof this.delay === "number") { + var me = this; + this._timeout = setTimeout(function () { + me.flush(); + }, this.delay); + } + }; - currentDate = currentDateArray(config); + /** + * Flush all queued calls + */ + Queue.prototype.flush = function () { + while (this._queue.length > 0) { + var entry = this._queue.shift(); + entry.fn.apply(entry.context || entry.fn, entry.args || []); + } + }; - //compute day of the year from weeks and weekdays - if (config._w && config._a[DATE] == null && config._a[MONTH] == null) { - dayOfYearFromWeekInfo(config); - } + module.exports = Queue; - //if the day of the year is set, figure out what it is - if (config._dayOfYear) { - yearToUse = dfl(config._a[YEAR], currentDate[YEAR]); +/***/ }, +/* 6 */ +/***/ function(module, exports, __webpack_require__) { - if (config._dayOfYear > daysInYear(yearToUse)) { - config._pf._overflowDayOfYear = true; - } + "use strict"; - date = makeUTCDate(yearToUse, 0, config._dayOfYear); - config._a[MONTH] = date.getUTCMonth(); - config._a[DATE] = date.getUTCDate(); - } + var Emitter = __webpack_require__(62); + var DataSet = __webpack_require__(3); + var DataView = __webpack_require__(4); + var util = __webpack_require__(1); + var Point3d = __webpack_require__(10); + var Point2d = __webpack_require__(9); + var Camera = __webpack_require__(7); + var Filter = __webpack_require__(8); + var Slider = __webpack_require__(11); + var StepNumber = __webpack_require__(12); - // 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]; - } + /** + * @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"); + } - // 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]; - } + // 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%"; - // Check for 24:00:00.000 - if (config._a[HOUR] === 24 && - config._a[MINUTE] === 0 && - config._a[SECOND] === 0 && - config._a[MILLISECOND] === 0) { - config._nextDay = true; - config._a[HOUR] = 0; - } + this.xLabel = "x"; + this.yLabel = "y"; + this.zLabel = "z"; - config._d = (config._useUTC ? makeUTCDate : makeDate).apply(null, input); - // Apply timezone offset from input. The actual utcOffset can be changed - // with parseZone. - if (config._tzm != null) { - config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm); - } + var passValueFn = function (v) { + return v; + }; + this.xValueLabel = passValueFn; + this.yValueLabel = passValueFn; + this.zValueLabel = passValueFn; - if (config._nextDay) { - config._a[HOUR] = 24; - } - } + this.filterLabel = "time"; + this.legendLabel = "value"; - function dateFromObject(config) { - var normalizedInput; + 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 (config._d) { - return; - } + this.animationInterval = 1000; // milliseconds + this.animationPreload = false; - normalizedInput = normalizeObjectUnits(config._i); - config._a = [ - normalizedInput.year, - normalizedInput.month, - normalizedInput.day || normalizedInput.date, - normalizedInput.hour, - normalizedInput.minute, - normalizedInput.second, - normalizedInput.millisecond - ]; + this.camera = new Camera(); + this.eye = new Point3d(0, 0, -1); // TODO: set eye.z about 3/4 of the width of the window? - dateFromConfig(config); - } + this.dataTable = null; // The original data table + this.dataPoints = null; // The table with point objects - 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()]; - } - } + // the column indexes + this.colX = undefined; + this.colY = undefined; + this.colZ = undefined; + this.colValue = undefined; + this.colFilter = undefined; - // date from string and format string - function makeDateFromStringAndFormat(config) { - if (config._f === moment.ISO_8601) { - parseISO(config); - return; - } + 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 - config._a = []; - config._pf.empty = true; + // constants + this.colorAxis = "#4D4D4D"; + this.colorGrid = "#D3D3D3"; + this.colorDot = "#7DC1FF"; + this.colorDotBorder = "#3267D2"; - // 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; + // create a frame and canvas + this.create(); - tokens = expandFormat(config._f, config._locale).match(formattingTokens) || []; + // apply options (also when undefined) + this.setOptions(options); - 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); - } - } + // apply data + if (data) { + this.setData(data); + } + } - // add remaining unparsed input length to the string - config._pf.charsLeftOver = stringLength - totalParsedInputLength; - if (string.length > 0) { - config._pf.unusedInput.push(string); - } + // Extend Graph3d with an Emitter mixin + Emitter(Graph3d.prototype); - // clear _12h flag if hour is <= 12 - if (config._pf.bigHour === true && config._a[HOUR] <= 12) { - config._pf.bigHour = undefined; - } - // handle meridiem - config._a[HOUR] = meridiemFixWrap(config._locale, config._a[HOUR], - config._meridiem); - dateFromConfig(config); - checkOverflow(config); - } + /** + * Calculate the scaling values, dependent on the range in x, y, and z direction + */ + Graph3d.prototype._setScale = function () { + this.scale = new Point3d(1 / (this.xMax - this.xMin), 1 / (this.yMax - this.yMin), 1 / (this.zMax - this.zMin)); - function unescapeFormat(s) { - return s.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) { - return p1 || p2 || p3 || p4; - }); + // 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; } + } - // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript - function regexpEscape(s) { - return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); - } + // scale the vertical axis + this.scale.z *= this.verticalRatio; + // TODO: can this be automated? verticalRatio? - // date from string and array of format strings - function makeDateFromStringAndArray(config) { - var tempConfig, - bestMoment, + // determine scale for (optional) value + this.scale.value = 1 / (this.valueMax - this.valueMin); - scoreToBeat, - i, - currentScore; + // 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 (config._f.length === 0) { - config._pf.invalidFormat = true; - config._d = new Date(NaN); - return; - } - for (i = 0; i < config._f.length; i++) { - currentScore = 0; - tempConfig = copyConfig({}, config); - if (config._useUTC != null) { - tempConfig._useUTC = config._useUTC; - } - tempConfig._pf = defaultParsingFlags(); - tempConfig._f = config._f[i]; - makeDateFromStringAndFormat(tempConfig); + /** + * 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); + }; - if (!isValid(tempConfig)) { - continue; - } + /** + * Convert a 3D location its translation seen from the camera + * http://en.wikipedia.org/wiki/3D_projection + * @param {Point3d} point3d A 3D point with parameters x, y, z + * @return {Point3d} translation A 3D point with parameters x, y, z This is + * the translation of the point, seen from the + * camera + */ + Graph3d.prototype._convertPointToTranslation = function (point3d) { + var ax = point3d.x * this.scale.x, + ay = point3d.y * this.scale.y, + az = point3d.z * this.scale.z, + cx = this.camera.getCameraLocation().x, + cy = this.camera.getCameraLocation().y, + cz = this.camera.getCameraLocation().z, - // if there is any input that was not parsed add a penalty for that format - currentScore += tempConfig._pf.charsLeftOver; - //or tokens - currentScore += tempConfig._pf.unusedTokens.length * 10; + // 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), - tempConfig._pf.score = currentScore; - if (scoreToBeat == null || currentScore < scoreToBeat) { - scoreToBeat = currentScore; - bestMoment = tempConfig; - } - } + // 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)); - extend(config, bestMoment || tempConfig); - } + return new Point3d(dx, dy, dz); + }; - // date from iso format - function parseISO(config) { - var i, l, - string = config._i, - match = isoRegex.exec(string); + /** + * 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; - 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; - } - } + // 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()); + } - // date from iso format or fallback - function makeDateFromString(config) { - parseISO(config); - if (config._isValid === false) { - delete config._isValid; - moment.createFromInputFallback(config); - } - } + // 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 map(arr, fn) { - var res = [], i; - for (i = 0; i < arr.length; ++i) { - res.push(fn(arr[i], i)); - } - return res; - } + /** + * 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; - 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 = map(input.slice(0), function (obj) { - return parseInt(obj, 10); - }); - 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); - } - } + 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) {} else { + throw "Unsupported type of backgroundColor"; + } - 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); + this.frame.style.backgroundColor = fill; + this.frame.style.borderColor = stroke; + this.frame.style.borderWidth = strokeWidth + "px"; + this.frame.style.borderStyle = "solid"; + }; - //the date constructor doesn't accept years < 1970 - if (y < 1970) { - date.setFullYear(y); - } - return date; - } - function makeUTCDate(y) { - var date = new Date(Date.UTC.apply(null, arguments)); - if (y < 1970) { - date.setUTCFullYear(y); - } - return date; + /// 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 + }; + + /** + * 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; + } + + return -1; + }; + + /** + * 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; + + 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; - 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 (data.getNumberOfColumns() > 4) { + this.colFilter = 4; } + } else { + throw "Unknown style \"" + this.style + "\""; + } + }; - /************************************ - Relative Time - ************************************/ + Graph3d.prototype.getNumberOfRows = function (data) { + return data.length; + }; - // 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); + Graph3d.prototype.getNumberOfColumns = function (data) { + var counter = 0; + for (var column in data[0]) { + if (data[0].hasOwnProperty(column)) { + counter++; } + } + return counter; + }; - function relativeTime(posNegDuration, withoutSuffix, locale) { - var duration = moment.duration(posNegDuration).abs(), - seconds = round(duration.as('s')), - minutes = round(duration.as('m')), - hours = round(duration.as('h')), - days = round(duration.as('d')), - months = round(duration.as('M')), - years = round(duration.as('y')), - - args = seconds < relativeTimeThresholds.s && ['s', seconds] || - minutes === 1 && ['m'] || - minutes < relativeTimeThresholds.m && ['mm', minutes] || - hours === 1 && ['h'] || - hours < relativeTimeThresholds.h && ['hh', hours] || - days === 1 && ['d'] || - days < relativeTimeThresholds.d && ['dd', days] || - months === 1 && ['M'] || - months < relativeTimeThresholds.M && ['MM', months] || - years === 1 && ['y'] || ['yy', years]; - args[2] = withoutSuffix; - args[3] = +posNegDuration > 0; - args[4] = locale; - return substituteTimeAgo.apply({}, args); + 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; + }; - /************************************ - Week of Year - ************************************/ + 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; + }; + /** + * 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; - // 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; + // unsubscribe from the dataTable + if (this.dataSet) { + this.dataSet.off("*", this._onChange); + } + if (rawData === undefined) return; - if (daysToDayOfWeek > end) { - daysToDayOfWeek -= 7; - } + if (Array.isArray(rawData)) { + rawData = new DataSet(rawData); + } - if (daysToDayOfWeek < end - 7) { - daysToDayOfWeek += 7; - } + var data; + if (rawData instanceof DataSet || rawData instanceof DataView) { + data = rawData.get(); + } else { + throw new Error("Array, DataSet, or DataView expected"); + } - adjustedMoment = moment(mom).add(daysToDayOfWeek, 'd'); - return { - week: Math.ceil(adjustedMoment.dayOfYear() / 7), - year: adjustedMoment.year() - }; - } + if (data.length == 0) return; - //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.dataSet = rawData; + this.dataTable = data; - 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; + // subscribe to changes in the dataset + this._onChange = function () { + me.setData(me.dataSet); + }; + this.dataSet.on("*", this._onChange); - return { - year: dayOfYear > 0 ? year : year - 1, - dayOfYear: dayOfYear > 0 ? dayOfYear : daysInYear(year - 1) + dayOfYear - }; - } + // _determineColumnIndexes + // getNumberOfRows (points) + // getNumberOfColumns (x,y,z,v,t,t1,t2...) + // getDistinctValues (unique values?) + // getColumnRange - /************************************ - Top Level Functions - ************************************/ + // determine the location of x,y,z,value,filter columns + this.colX = "x"; + this.colY = "y"; + this.colZ = "z"; + this.colValue = "style"; + this.colFilter = "filter"; - function makeMoment(config) { - var input = config._i, - format = config._f, - res; - config._locale = config._locale || moment.localeData(config._l); - if (input === null || (format === undefined && input === '')) { - return moment.invalid({nullInput: 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(); + }); + } + } - if (typeof input === 'string') { - config._i = input = config._locale.preparse(input); - } - if (moment.isMoment(input)) { - return new Moment(input, true); - } else if (format) { - if (isArray(format)) { - makeDateFromStringAndArray(config); - } else { - makeDateFromStringAndFormat(config); - } - } else { - makeDateFromInput(config); - } + var withBars = this.style == Graph3d.STYLE.BAR || this.style == Graph3d.STYLE.BARCOLOR || this.style == Graph3d.STYLE.BARSIZE; - res = new Moment(config); - if (res._nextDay) { - // Adding is smart enough around DST - res.add(1, 'd'); - res._nextDay = undefined; - } + // 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; + } - return res; + if (this.defaultYBarWidth !== undefined) { + this.yBarWidth = this.defaultYBarWidth; + } else { + var dataY = this.getDistinctValues(data, this.colY); + this.yBarWidth = dataY[1] - dataY[0] || 1; } + } - moment = function (input, format, locale, strict) { - var c; + // 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; - 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(); + 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; - return makeMoment(c); - }; + 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; - moment.suppressDeprecationWarnings = false; + 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; + } - 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 + (config._useUTC ? ' UTC' : '')); - } - ); - - // 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; - } + // set the scale dependent on the ranges. + this._setScale(); + }; - moment.min = function () { - var args = [].slice.call(arguments, 0); - return pickBy('isBefore', args); - }; - moment.max = function () { - var args = [].slice.call(arguments, 0); + /** + * 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; - return pickBy('isAfter', args); - }; + var dataPoints = []; - // creating with utc - moment.utc = function (input, format, locale, strict) { - var c; + 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 - 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(); + // 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; - return makeMoment(c).utc(); - }; + if (dataX.indexOf(x) === -1) { + dataX.push(x); + } + if (dataY.indexOf(y) === -1) { + dataY.push(y); + } + } - // creating with unix timestamp (in seconds) - moment.unix = function (input) { - return moment(input * 1000); + var sortNumber = function (a, b) { + return a - b; }; + dataX.sort(sortNumber); + dataY.sort(sortNumber); - // duration - moment.duration = function (input, key) { - var duration = input, - // matching against regexp is expensive, do it on demand - match = null, - sign, - ret, - parseIso, - diffRes; + // 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 (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 (duration == null) {// checks for null or undefined - duration = {}; - } else if (typeof duration === 'object' && - ('from' in duration || 'to' in duration)) { - diffRes = momentsDifference(moment(duration.from), moment(duration.to)); + var xIndex = dataX.indexOf(x); // TODO: implement Array().indexOf() for Internet Explorer + var yIndex = dataY.indexOf(y); - duration = {}; - duration.ms = diffRes.milliseconds; - duration.M = diffRes.months; - } + if (dataMatrix[xIndex] === undefined) { + dataMatrix[xIndex] = []; + } - ret = new Duration(duration); + var point3d = new Point3d(); + point3d.x = x; + point3d.y = y; + point3d.z = z; - if (moment.isDuration(input) && hasOwnProp(input, '_locale')) { - ret._locale = input._locale; - } + obj = {}; + obj.point = point3d; + obj.trans = undefined; + obj.screen = undefined; + obj.bottom = new Point3d(x, y, this.zMin); - return ret; - }; + dataMatrix[xIndex][yIndex] = obj; - // version number - moment.version = VERSION; + dataPoints.push(obj); + } - // default format - moment.defaultFormat = isoFormat; + // 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; - // constant that refers to the ISO standard - moment.ISO_8601 = function () {}; + if (this.colValue !== undefined) { + point.value = data[i][this.colValue] || 0; + } - // Plugins that add properties should also add the key here (null value), - // so we can properly clone ourselves. - moment.momentProperties = momentProperties; + obj = {}; + obj.point = point; + obj.bottom = new Point3d(point.x, point.y, this.zMin); + obj.trans = undefined; + obj.screen = undefined; - // 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 () {}; + dataPoints.push(obj); + } + } - // 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; - }; + return dataPoints; + }; - moment.lang = deprecate( - 'moment.lang is deprecated. Use moment.locale instead.', - function (key, value) { - return moment.locale(key, value); - } - ); + /** + * Create the main frame for the Graph3d. + * This function is executed once when a Graph3d object is created. The frame + * contains a canvas, and this canvas contains all objects like the axis and + * nodes. + */ + Graph3d.prototype.create = function () { + // remove all elements from the container element. + while (this.containerElement.hasChildNodes()) { + this.containerElement.removeChild(this.containerElement.firstChild); + } - // This 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); - } + this.frame = document.createElement("div"); + this.frame.style.position = "relative"; + this.frame.style.overflow = "hidden"; - if (data) { - moment.duration._locale = moment._locale = data; - } - } + // create the graph canvas (HTML canvas element) + this.frame.canvas = document.createElement("canvas"); + this.frame.canvas.style.position = "relative"; + this.frame.appendChild(this.frame.canvas); + //if (!this.frame.canvas.getContext) { + { + var noCanvas = document.createElement("DIV"); + noCanvas.style.color = "red"; + noCanvas.style.fontWeight = "bold"; + noCanvas.style.padding = "10px"; + noCanvas.innerHTML = "Error: your browser does not support HTML canvas"; + this.frame.canvas.appendChild(noCanvas); + } - return moment._locale._abbr; - }; + 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); - moment.defineLocale = function (name, values) { - if (values !== null) { - values.abbr = name; - if (!locales[name]) { - locales[name] = new Locale(); - } - locales[name].set(values); + // 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' - // backwards compat for now: also set the locale - moment.locale(name); + 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 locales[name]; - } else { - // useful for testing - delete locales[name]; - return null; - } - }; + // add the new graph to the container element + this.containerElement.appendChild(this.frame); + }; - moment.langData = deprecate( - 'moment.langData is deprecated. Use moment.localeData instead.', - function (key) { - return moment.localeData(key); - } - ); - // returns locale data - moment.localeData = function (key) { - var locale; + /** + * Set a new size for the graph + * @param {string} width Width in pixels or percentage (for example '800px' + * or '50%') + * @param {string} height Height in pixels or percentage (for example '400px' + * or '30%') + */ + Graph3d.prototype.setSize = function (width, height) { + this.frame.style.width = width; + this.frame.style.height = height; - if (key && key._locale && key._locale._abbr) { - key = key._locale._abbr; - } + this._resizeCanvas(); + }; - if (!key) { - return moment._locale; - } + /** + * Resize the canvas to the current size of the frame + */ + Graph3d.prototype._resizeCanvas = function () { + this.frame.canvas.style.width = "100%"; + this.frame.canvas.style.height = "100%"; - if (!isArray(key)) { - //short-circuit everything else - locale = loadLocale(key); - if (locale) { - return locale; - } - key = [key]; - } + this.frame.canvas.width = this.frame.canvas.clientWidth; + this.frame.canvas.height = this.frame.canvas.clientHeight; - return chooseLocale(key); - }; + // adjust with for margin + this.frame.filter.style.width = this.frame.canvas.clientWidth - 2 * 10 + "px"; + }; - // compare moment object - moment.isMoment = function (obj) { - return obj instanceof Moment || - (obj != null && hasOwnProp(obj, '_isAMomentObject')); - }; + /** + * Start animation + */ + Graph3d.prototype.animationStart = function () { + if (!this.frame.filter || !this.frame.filter.slider) throw "No animation available"; - // for typechecking Duration objects - moment.isDuration = function (obj) { - return obj instanceof Duration; - }; + this.frame.filter.slider.play(); + }; - for (i = lists.length - 1; i >= 0; --i) { - makeList(lists[i]); - } - moment.normalizeUnits = function (units) { - return normalizeUnits(units); - }; + /** + * Stop animation + */ + Graph3d.prototype.animationStop = function () { + if (!this.frame.filter || !this.frame.filter.slider) return; - moment.invalid = function (flags) { - var m = moment.utc(NaN); - if (flags != null) { - extend(m._pf, flags); - } - else { - m._pf.userInvalidated = true; - } + this.frame.filter.slider.stop(); + }; - return m; - }; - moment.parseZone = function () { - return moment.apply(null, arguments).parseZone(); - }; + /** + * 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 + } - moment.parseTwoDigitYear = function (input) { - return toInt(input) + (toInt(input) > 68 ? 1900 : 2000); - }; + // 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 + } + }; - moment.isDate = isDate; + /** + * 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; + } - /************************************ - Moment Prototype - ************************************/ + if (pos.horizontal !== undefined && pos.vertical !== undefined) { + this.camera.setArmRotation(pos.horizontal, pos.vertical); + } + if (pos.distance !== undefined) { + this.camera.setArmLength(pos.distance); + } - extend(moment.fn = Moment.prototype, { + this.redraw(); + }; - clone : function () { - return moment(this); - }, - valueOf : function () { - return +this._d - ((this._offset || 0) * 60000); - }, + /** + * 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; + }; - unix : function () { - return Math.floor(+this / 1000); - }, + /** + * Load data into the 3D Graph + */ + Graph3d.prototype._readData = function (data) { + // read the data + this._dataInitialize(data, this.style); - 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; - }, + if (this.dataFilter) { + // apply filtering + this.dataPoints = this.dataFilter._getDataPoints(); + } else { + // no filtering. load all data + this.dataPoints = this._getDataPoints(this.dataTable); + } - toISOString : function () { - var m = moment(this).utc(); - if (0 < m.year() && m.year() <= 9999) { - if ('function' === typeof Date.prototype.toISOString) { - // native implementation is ~50x faster, use it when we can - return this.toDate().toISOString(); - } else { - 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]'); - } - }, + // draw the filter + this._redrawFilter(); + }; - toArray : function () { - var m = this; - return [ - m.year(), - m.month(), - m.date(), - m.hours(), - m.minutes(), - m.seconds(), - m.milliseconds() - ]; - }, + /** + * Replace the dataset of the Graph3d + * @param {Array | DataSet | DataView} data + */ + Graph3d.prototype.setData = function (data) { + this._readData(data); + this.redraw(); - isValid : function () { - return isValid(this); - }, + // start animation when option is true + if (this.animationAutoStart && this.dataFilter) { + this.animationStart(); + } + }; - isDSTShifted : function () { - if (this._a) { - return this.isValid() && compareArrays(this._a, (this._isUTC ? moment.utc(this._a) : moment(this._a)).toArray()) > 0; - } + /** + * Update the options. Options will be merged with current options + * @param {Object} options + */ + Graph3d.prototype.setOptions = function (options) { + var cameraPosition = undefined; - return false; - }, + this.animationStop(); - parsingFlags : function () { - return extend({}, this._pf); - }, + if (options !== undefined) { + // retrieve parameter values + if (options.width !== undefined) this.width = options.width; + if (options.height !== undefined) this.height = options.height; - invalidAt: function () { - return this._pf.overflow; - }, + if (options.xCenter !== undefined) this.defaultXCenter = options.xCenter; + if (options.yCenter !== undefined) this.defaultYCenter = options.yCenter; - utc : function (keepLocalTime) { - return this.utcOffset(0, keepLocalTime); - }, + 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; - local : function (keepLocalTime) { - if (this._isUTC) { - this.utcOffset(0, keepLocalTime); - this._isUTC = false; + if (options.xValueLabel !== undefined) this.xValueLabel = options.xValueLabel; + if (options.yValueLabel !== undefined) this.yValueLabel = options.yValueLabel; + if (options.zValueLabel !== undefined) this.zValueLabel = options.zValueLabel; - if (keepLocalTime) { - this.subtract(this._dateUtcOffset(), 'm'); - } - } - return this; - }, + if (options.style !== undefined) { + var styleNumber = this._getStyleNumber(options.style); + if (styleNumber !== -1) { + this.style = styleNumber; + } + } + if (options.showGrid !== undefined) this.showGrid = options.showGrid; + if (options.showPerspective !== undefined) this.showPerspective = options.showPerspective; + if (options.showShadow !== undefined) this.showShadow = options.showShadow; + if (options.tooltip !== undefined) this.showTooltip = options.tooltip; + if (options.showAnimationControls !== undefined) this.showAnimationControls = options.showAnimationControls; + if (options.keepAspectRatio !== undefined) this.keepAspectRatio = options.keepAspectRatio; + if (options.verticalRatio !== undefined) this.verticalRatio = options.verticalRatio; - format : function (inputString) { - var output = formatMoment(this, inputString || moment.defaultFormat); - return this.localeData().postformat(output); - }, + 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 : createAdder(1, 'add'), + if (options.xBarWidth !== undefined) this.defaultXBarWidth = options.xBarWidth; + if (options.yBarWidth !== undefined) this.defaultYBarWidth = options.yBarWidth; - subtract : createAdder(-1, 'subtract'), + 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; - diff : function (input, units, asFloat) { - var that = makeAs(input, this), - zoneDiff = (that.utcOffset() - this.utcOffset()) * 6e4, - anchor, diff, output, daysAdjust; + if (options.cameraPosition !== undefined) cameraPosition = options.cameraPosition; - units = normalizeUnits(units); + if (cameraPosition !== undefined) { + this.camera.setArmRotation(cameraPosition.horizontal, cameraPosition.vertical); + this.camera.setArmLength(cameraPosition.distance); + } else { + this.camera.setArmRotation(1, 0.5); + this.camera.setArmLength(1.7); + } + } - if (units === 'year' || units === 'month' || units === 'quarter') { - output = monthDiff(this, that); - if (units === 'quarter') { - output = output / 3; - } else if (units === 'year') { - output = output / 12; - } - } else { - diff = this - that; - output = units === 'second' ? diff / 1e3 : // 1000 - units === 'minute' ? diff / 6e4 : // 1000 * 60 - units === 'hour' ? diff / 36e5 : // 1000 * 60 * 60 - units === 'day' ? (diff - zoneDiff) / 864e5 : // 1000 * 60 * 60 * 24, negate dst - units === 'week' ? (diff - zoneDiff) / 6048e5 : // 1000 * 60 * 60 * 24 * 7, negate dst - diff; - } - return asFloat ? output : absRound(output); - }, + this._setBackgroundColor(options && options.backgroundColor); - from : function (time, withoutSuffix) { - return moment.duration({to: this, from: time}).locale(this.locale()).humanize(!withoutSuffix); - }, + this.setSize(this.width, this.height); - fromNow : function (withoutSuffix) { - return this.from(moment(), withoutSuffix); - }, + // re-load the data + if (this.dataTable) { + this.setData(this.dataTable); + } - calendar : function (time) { - // We want to compare the start of today, vs this. - // Getting start-of-today depends on whether we're locat/utc/offset - // 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, moment(now))); - }, + // start animation when option is true + if (this.animationAutoStart && this.dataFilter) { + this.animationStart(); + } + }; - isLeapYear : function () { - return isLeapYear(this.year()); - }, + /** + * Redraw the Graph. + */ + Graph3d.prototype.redraw = function () { + if (this.dataPoints === undefined) { + throw "Error: graph data not initialized"; + } - isDST : function () { - return (this.utcOffset() > this.clone().month(0).utcOffset() || - this.utcOffset() > this.clone().month(5).utcOffset()); - }, + this._resizeCanvas(); + this._resizeCenter(); + this._redrawSlider(); + this._redrawClear(); + this._redrawAxis(); - 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; - } - }, + 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(); + } - month : makeAccessor('Month', true), + this._redrawInfo(); + this._redrawLegend(); + }; - 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 */ - } + /** + * Clear the canvas before redrawing + */ + Graph3d.prototype._redrawClear = function () { + var canvas = this.frame.canvas; + var ctx = canvas.getContext("2d"); - // weeks are a special case - if (units === 'week') { - this.weekday(0); - } else if (units === 'isoWeek') { - this.isoWeekday(1); - } + ctx.clearRect(0, 0, canvas.width, canvas.height); + }; - // quarters are also special - if (units === 'quarter') { - this.month(Math.floor(this.month() / 3) * 3); - } - return this; - }, + /** + * Redraw the legend showing the colors + */ + Graph3d.prototype._redrawLegend = function () { + var y; - endOf: function (units) { - units = normalizeUnits(units); - if (units === undefined || units === 'millisecond') { - return this; - } - return this.startOf(units).add(1, (units === 'isoWeek' ? 'week' : units)).subtract(1, 'ms'); - }, + if (this.style === Graph3d.STYLE.DOTCOLOR || this.style === Graph3d.STYLE.DOTSIZE) { + var dotSize = this.frame.clientWidth * 0.02; - isAfter: function (input, units) { - var inputMs; - units = normalizeUnits(typeof units !== 'undefined' ? units : 'millisecond'); - if (units === 'millisecond') { - input = moment.isMoment(input) ? input : moment(input); - return +this > +input; - } else { - inputMs = moment.isMoment(input) ? +input : +moment(input); - return inputMs < +this.clone().startOf(units); - } - }, + 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 + } - isBefore: function (input, units) { - var inputMs; - units = normalizeUnits(typeof units !== 'undefined' ? units : 'millisecond'); - if (units === 'millisecond') { - input = moment.isMoment(input) ? input : moment(input); - return +this < +input; - } else { - inputMs = moment.isMoment(input) ? +input : +moment(input); - return +this.clone().endOf(units) < inputMs; - } - }, + 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; + } - isBetween: function (from, to, units) { - return this.isAfter(from, units) && this.isBefore(to, units); - }, + var canvas = this.frame.canvas; + var ctx = canvas.getContext("2d"); + ctx.lineWidth = 1; + ctx.font = "14px arial"; // TODO: put in options - isSame: function (input, units) { - var inputMs; - units = normalizeUnits(units || 'millisecond'); - if (units === 'millisecond') { - input = moment.isMoment(input) ? input : moment(input); - return +this === +input; - } else { - inputMs = +moment(input); - return +(this.clone().startOf(units)) <= inputMs && inputMs <= +(this.clone().endOf(units)); - } - }, + 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); - min: deprecate( - 'moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548', - function (other) { - other = moment.apply(null, arguments); - return other < this ? this : other; - } - ), + //var width = (dotSize / 2 + (1-f) * dotSize * 2); // Todo: put this in one function + var hue = f * 240; + var color = this._hsv2rgb(hue, 1, 1); - 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; - } - ), + ctx.strokeStyle = color; + ctx.beginPath(); + ctx.moveTo(left, top + y); + ctx.lineTo(right, top + y); + ctx.stroke(); + } - zone : deprecate( - 'moment().zone is deprecated, use moment().utcOffset instead. ' + - 'https://github.com/moment/moment/issues/1779', - function (input, keepLocalTime) { - if (input != null) { - if (typeof input !== 'string') { - input = -input; - } + ctx.strokeStyle = this.colorAxis; + ctx.strokeRect(left, top, widthMax, height); + } - this.utcOffset(input, keepLocalTime); + 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; - } else { - return -this.utcOffset(); - } - } - ), + 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; - // keepLocalTime = true means only change the timezone, without - // affecting the local hour. So 5:31:26 +0300 --[utcOffset(2, true)]--> - // 5:31:26 +0200 It is possible that 5:31:26 doesn't exist with offset - // +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. - utcOffset : function (input, keepLocalTime) { - var offset = this._offset || 0, - localAdjust; - if (input != null) { - if (typeof input === 'string') { - input = utcOffsetFromString(input); - } - if (Math.abs(input) < 16) { - input = input * 60; - } - if (!this._isUTC && keepLocalTime) { - localAdjust = this._dateUtcOffset(); - } - this._offset = input; - this._isUTC = true; - if (localAdjust != null) { - this.add(localAdjust, 'm'); - } - if (offset !== input) { - if (!keepLocalTime || this._changeInProgress) { - addOrSubtractDurationFromMoment(this, - moment.duration(input - offset, 'm'), 1, false); - } else if (!this._changeInProgress) { - this._changeInProgress = true; - moment.updateOffset(this, true); - this._changeInProgress = null; - } - } + ctx.beginPath(); + ctx.moveTo(left - gridLineLen, y); + ctx.lineTo(left, y); + ctx.stroke(); - return this; - } else { - return this._isUTC ? offset : this._dateUtcOffset(); - } - }, + ctx.textAlign = "right"; + ctx.textBaseline = "middle"; + ctx.fillStyle = this.colorAxis; + ctx.fillText(step.getCurrent(), left - 2 * gridLineLen, y); - isLocal : function () { - return !this._isUTC; - }, + step.next(); + } - isUtcOffset : function () { - return this._isUTC; - }, + ctx.textAlign = "right"; + ctx.textBaseline = "top"; + var label = this.legendLabel; + ctx.fillText(label, right, bottom + this.margin); + } + }; - isUtc : function () { - return this._isUTC && this._offset === 0; - }, + /** + * Redraw the filter + */ + Graph3d.prototype._redrawFilter = function () { + this.frame.filter.innerHTML = ""; - zoneAbbr : function () { - return this._isUTC ? 'UTC' : ''; - }, + if (this.dataFilter) { + var options = { + visible: this.showAnimationControls + }; + var slider = new Slider(this.frame.filter, options); + this.frame.filter.slider = slider; - zoneName : function () { - return this._isUTC ? 'Coordinated Universal Time' : ''; - }, + // TODO: css here is not nice here... + this.frame.filter.style.padding = "10px"; + //this.frame.filter.style.backgroundColor = '#EFEFEF'; - parseZone : function () { - if (this._tzm) { - this.utcOffset(this._tzm); - } else if (typeof this._i === 'string') { - this.utcOffset(utcOffsetFromString(this._i)); - } - return this; - }, + slider.setValues(this.dataFilter.values); + slider.setPlayInterval(this.animationInterval); - hasAlignedHourOffset : function (input) { - if (!input) { - input = 0; - } - else { - input = moment(input).utcOffset(); - } - - return (this.utcOffset() - input) % 60 === 0; - }, - - daysInMonth : function () { - return daysInMonth(this.year(), this.month()); - }, - - dayOfYear : function (input) { - var dayOfYear = round((moment(this).startOf('day') - moment(this).startOf('year')) / 864e5) + 1; - return input == null ? dayOfYear : this.add((input - dayOfYear), 'd'); - }, - - quarter : function (input) { - return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3); - }, - - 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'); - }, - - isoWeekYear : function (input) { - var year = weekOfYear(this, 1, 4).year; - return input == null ? year : this.add((input - year), 'y'); - }, - - week : function (input) { - var week = this.localeData().week(this); - return input == null ? week : this.add((input - week) * 7, 'd'); - }, - - 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'); - }, + // create an event handler + var me = this; + var onchange = function () { + var index = slider.getIndex(); - 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); - }, + me.dataFilter.selectValue(index); + me.dataPoints = me.dataFilter._getDataPoints(); - isoWeeksInYear : function () { - return weeksInYear(this.year(), 1, 4); - }, + me.redraw(); + }; + slider.setOnChangeCallback(onchange); + } else { + this.frame.filter.slider = undefined; + } + }; - weeksInYear : function () { - var weekInfo = this.localeData()._week; - return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy); - }, + /** + * Redraw the slider + */ + Graph3d.prototype._redrawSlider = function () { + if (this.frame.filter.slider !== undefined) { + this.frame.filter.slider.redraw(); + } + }; - get : function (units) { - units = normalizeUnits(units); - return this[units](); - }, - set : function (units, value) { - var unit; - if (typeof units === 'object') { - for (unit in units) { - this.set(unit, units[unit]); - } - } - else { - units = normalizeUnits(units); - if (typeof this[units] === 'function') { - this[units](value); - } - } - return this; - }, + /** + * Redraw common information + */ + Graph3d.prototype._redrawInfo = function () { + if (this.dataFilter) { + var canvas = this.frame.canvas; + var ctx = canvas.getContext("2d"); - // 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) { - var newLocaleData; + ctx.font = "14px arial"; // TODO: put in options + ctx.lineStyle = "gray"; + ctx.fillStyle = "gray"; + ctx.textAlign = "left"; + ctx.textBaseline = "top"; - if (key === undefined) { - return this._locale._abbr; - } else { - newLocaleData = moment.localeData(key); - if (newLocaleData != null) { - this._locale = newLocaleData; - } - return this; - } - }, + var x = this.margin; + var y = this.margin; + ctx.fillText(this.dataFilter.getLabel() + ": " + this.dataFilter.getSelectedValue(), x, y); + } + }; - lang : deprecate( - 'moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.', - function (key) { - if (key === undefined) { - return this.localeData(); - } else { - return this.locale(key); - } - } - ), - localeData : function () { - return this._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; - _dateUtcOffset : function () { - // On Firefox.24 Date#getTimezoneOffset returns a floating point. - // https://github.com/moment/moment/pull/1871 - return -Math.round(this._d.getTimezoneOffset() / 15) * 15; - } + // TODO: get the actual rendered style of the containerElement + //ctx.font = this.containerElement.style.font; + ctx.font = 24 / this.camera.getArmLength() + "px arial"; - }); + // 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; - function rawMonthSetter(mom, value) { - var dayOfMonth; + // 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(); - // 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 (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(); - dayOfMonth = Math.min(mom.date(), - daysInMonth(mom.year(), value)); - mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth); - return mom; + 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(); } - function rawGetter(mom, unit) { - return mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit](); + 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(" " + this.xValueLabel(step.getCurrent()) + " ", text.x, text.y); - function rawSetter(mom, unit, value) { - if (unit === 'Month') { - return rawMonthSetter(mom, value); - } else { - return mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value); - } + step.next(); + } + + // 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(); + + 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(); } - 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); - } - }; + 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(" " + this.yValueLabel(step.getCurrent()) + " ", text.x, text.y); - moment.fn.millisecond = moment.fn.milliseconds = makeAccessor('Milliseconds', false); - moment.fn.second = moment.fn.seconds = makeAccessor('Seconds', false); - moment.fn.minute = moment.fn.minutes = makeAccessor('Minutes', false); - // Setting the hour should keep the time, because the user explicitly - // specified which hour he wants. So trying to maintain the same hour (in - // a new timezone) makes sense. Adding/subtracting hours does not follow - // this rule. - moment.fn.hour = moment.fn.hours = makeAccessor('Hours', true); - // moment.fn.month is defined separately - moment.fn.date = makeAccessor('Date', true); - moment.fn.dates = deprecate('dates accessor is deprecated. Use date instead.', makeAccessor('Date', true)); - moment.fn.year = makeAccessor('FullYear', true); - moment.fn.years = deprecate('years accessor is deprecated. Use year instead.', makeAccessor('FullYear', true)); + step.next(); + } - // 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; + // 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(); - // add aliased format methods - moment.fn.toJSON = moment.fn.toISOString; + ctx.textAlign = "right"; + ctx.textBaseline = "middle"; + ctx.fillStyle = this.colorAxis; + ctx.fillText(this.zValueLabel(step.getCurrent()) + " ", from.x - 5, from.y); - // alias isUtc for dev-friendliness - moment.fn.isUTC = moment.fn.isUtc; + step.next(); + } + ctx.lineWidth = 1; + from = this._convert3Dto2D(new Point3d(xText, yText, this.zMin)); + to = this._convert3Dto2D(new Point3d(xText, yText, this.zMax)); + ctx.strokeStyle = this.colorAxis; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); - /************************************ - Duration Prototype - ************************************/ + // 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(); - function daysToYears (days) { - // 400 years have 146097 days (taking into account leap year rules) - return days * 400 / 146097; + // 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); + } - function yearsToDays (years) { - // years * 365 + absRound(years / 4) - - // absRound(years / 100) + absRound(years / 400); - return years * 146097 / 400; + // 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); + } - extend(moment.duration.fn = Duration.prototype, { + // 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); + } + }; - _bubble : function () { - var milliseconds = this._milliseconds, - days = this._days, - months = this._months, - data = this._data, - seconds, minutes, hours, years = 0; + /** + * Calculate the color based on the given value. + * @param {Number} H Hue, a value be between 0 and 360 + * @param {Number} S Saturation, a value between 0 and 1 + * @param {Number} V Value, a value between 0 and 1 + */ + Graph3d.prototype._hsv2rgb = function (H, S, V) { + var R, G, B, C, Hi, X; - // The following code bubbles up values, see the tests for - // examples of what that means. - data.milliseconds = milliseconds % 1000; + C = V * S; + Hi = Math.floor(H / 60); // hi = 0,1,2,3,4,5 + X = C * (1 - Math.abs(H / 60 % 2 - 1)); - seconds = absRound(milliseconds / 1000); - data.seconds = seconds % 60; + 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; - minutes = absRound(seconds / 60); - data.minutes = minutes % 60; + default: + R = 0;G = 0;B = 0;break; + } - hours = absRound(minutes / 60); - data.hours = hours % 24; + return "RGB(" + parseInt(R * 255) + "," + parseInt(G * 255) + "," + parseInt(B * 255) + ")"; + }; - days += absRound(hours / 24); - // Accurately convert days to years, assume start from year 0. - years = absRound(daysToYears(days)); - days -= absRound(yearsToDays(years)); - - // 30 days to a month - // TODO (iskren): Use anchor date (like 1st Jan) to compute this. - months += absRound(days / 30); - days %= 30; - - // 12 months -> 1 year - years += absRound(months / 12); - months %= 12; - - 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); - - 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); + /** + * Draw all datapoints as a grid + * This function can be used when the style is 'grid' + */ + Graph3d.prototype._redrawDataGrid = function () { + var canvas = this.frame.canvas, + ctx = canvas.getContext("2d"), + point, + right, + top, + cross, + i, + topSideVisible, + fillStyle, + strokeStyle, + lineWidth, + h, + s, + v, + zAvg; - return this; - }, - weeks : function () { - return absRound(this.days() / 7); - }, + if (this.dataPoints === undefined || this.dataPoints.length <= 0) return; // TODO: throw exception? - valueOf : function () { - return this._milliseconds + - this._days * 864e5 + - (this._months % 12) * 2592e6 + - toInt(this._months / 12) * 31536e6; - }, + // 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); - humanize : function (withSuffix) { - var output = relativeTime(this, !withSuffix, this.localeData()); + this.dataPoints[i].trans = trans; + this.dataPoints[i].screen = screen; - if (withSuffix) { - output = this.localeData().pastFuture(+this, output); - } + // 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; + } - return this.localeData().postformat(output); - }, + // 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); - add : function (input, val) { - // supports only 2.0-style add(1, 's') or add(moment) - var dur = moment.duration(input, val); + 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; - this._milliseconds += dur._milliseconds; - this._days += dur._days; - this._months += dur._months; + if (point !== undefined && right !== undefined && top !== undefined && cross !== undefined) { + if (this.showGrayBottom || this.showShadow) { + // calculate the cross product of the two vectors from center + // to left and right, in order to know whether we are looking at the + // bottom or at the top side. We can also use the cross product + // for calculating light intensity + var aDiff = Point3d.subtract(cross.trans, point.trans); + var bDiff = Point3d.subtract(top.trans, right.trans); + var crossproduct = Point3d.crossProduct(aDiff, bDiff); + var len = crossproduct.length(); + // FIXME: there is a bug with determining the surface side (shadow or colored) - this._bubble(); + topSideVisible = crossproduct.z > 0; + } else { + topSideVisible = true; + } - return this; - }, + 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 - subtract : function (input, val) { - var dur = moment.duration(input, val); + 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; - this._milliseconds -= dur._milliseconds; - this._days -= dur._days; - this._months -= dur._months; + 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; - this._bubble(); + if (point !== undefined) { + if (this.showPerspective) { + lineWidth = 2 / -point.trans.z; + } else { + lineWidth = 2 * -(this.eye.z / this.camera.getArmLength()); + } + } - return this; - }, + 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; - get : function (units) { - units = normalizeUnits(units); - return this[units.toLowerCase() + 's'](); - }, + 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(); + } - as : function (units) { - var days, months; - units = normalizeUnits(units); + 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 (units === 'month' || units === 'year') { - days = this._days + this._milliseconds / 864e5; - months = this._months + daysToYears(days) * 12; - return units === 'month' ? months : months / 12; - } else { - // handle milliseconds separately because of floating point math errors (issue #1867) - days = this._days + Math.round(yearsToDays(this._months / 12)); - switch (units) { - case 'week': return days / 7 + this._milliseconds / 6048e5; - case 'day': return days + this._milliseconds / 864e5; - case 'hour': return days * 24 + this._milliseconds / 36e5; - case 'minute': return days * 24 * 60 + this._milliseconds / 6e4; - case 'second': return days * 24 * 60 * 60 + this._milliseconds / 1000; - // Math.floor prevents floating point math errors here - case 'millisecond': return Math.floor(days * 24 * 60 * 60 * 1000) + this._milliseconds; - default: throw new Error('Unknown unit ' + units); - } - } - }, + 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(); + } + } + } + }; - lang : moment.fn.lang, - locale : moment.fn.locale, - toIsoString : deprecate( - 'toIsoString() is deprecated. Please use toISOString() instead ' + - '(notice the capitals)', - function () { - return this.toISOString(); - } - ), + /** + * 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; - toISOString : function () { - // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js - var years = Math.abs(this.years()), - months = Math.abs(this.months()), - days = Math.abs(this.days()), - hours = Math.abs(this.hours()), - minutes = Math.abs(this.minutes()), - seconds = Math.abs(this.seconds() + this.milliseconds() / 1000); + if (this.dataPoints === undefined || this.dataPoints.length <= 0) return; // TODO: throw exception? - if (!this.asSeconds()) { - // this is the same as C#'s (Noda) and python (isodate)... - // but not other JS (goog.date) - return 'P0D'; - } + // 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; - return (this.asSeconds() < 0 ? '-' : '') + - 'P' + - (years ? years + 'Y' : '') + - (months ? months + 'M' : '') + - (days ? days + 'D' : '') + - ((hours || minutes || seconds) ? 'T' : '') + - (hours ? hours + 'H' : '') + - (minutes ? minutes + 'M' : '') + - (seconds ? seconds + 'S' : ''); - }, + // calculate 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; + } - localeData : function () { - return this._locale; - }, + // order the translated points by depth + var sortDepth = function (a, b) { + return b.dist - a.dist; + }; + this.dataPoints.sort(sortDepth); - toJSON : function () { - return this.toISOString(); - } - }); + // 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]; - moment.duration.fn.toString = moment.duration.fn.toISOString; + 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(); + } - function makeDurationGetter(name) { - moment.duration.fn[name] = function () { - return this._data[name]; - }; + // 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; } - for (i in unitMillisecondFactors) { - if (hasOwnProp(unitMillisecondFactors, i)) { - makeDurationGetter(i.toLowerCase()); - } + var radius; + if (this.showPerspective) { + radius = size / -point.trans.z; + } else { + radius = size * -(this.eye.z / this.camera.getArmLength()); + } + if (radius < 0) { + radius = 0; } - 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 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); + } - /************************************ - Default Locale - ************************************/ + // draw the circle + ctx.lineWidth = 1; + 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(); + } + }; + /** + * 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; - // Set default locale, other locale will inherit from English. - moment.locale('en', { - ordinalParse: /\d{1,2}(th|st|nd|rd)/, - 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; - } - }); + if (this.dataPoints === undefined || this.dataPoints.length <= 0) return; // TODO: throw exception? - /* EMBED_LOCALES */ + // 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; - /************************************ - Exposing Moment - ************************************/ + // 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; + } - 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; - } - } + // order the translated points by depth + var sortDepth = function (a, b) { + return b.dist - a.dist; + }; + this.dataPoints.sort(sortDepth); - // 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; - } + // 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]; - return moment; - }.call(exports, __webpack_require__, exports, module), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); - makeGlobal(true); + // 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 { - makeGlobal(); + // 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); } - }).call(this); - - /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }()), __webpack_require__(5)(module))) -/***/ }, -/* 4 */ -/***/ function(module, exports, __webpack_require__) { + // 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); + } - function webpackContext(req) { - throw new Error("Cannot find module '" + req + "'."); - } - webpackContext.keys = function() { return []; }; - webpackContext.resolve = webpackContext; - module.exports = webpackContext; - webpackContext.id = 4; + // calculate all corner points + var me = this; + var point3d = point.point; + var top = [{ point: new Point3d(point3d.x - xWidth, point3d.y - yWidth, point3d.z) }, { point: new Point3d(point3d.x + xWidth, point3d.y - yWidth, point3d.z) }, { point: new Point3d(point3d.x + xWidth, point3d.y + yWidth, point3d.z) }, { point: new Point3d(point3d.x - xWidth, point3d.y + yWidth, point3d.z) }]; + var bottom = [{ point: new Point3d(point3d.x - xWidth, point3d.y - yWidth, this.zMin) }, { point: new Point3d(point3d.x + xWidth, point3d.y - yWidth, this.zMin) }, { point: new Point3d(point3d.x + xWidth, point3d.y + yWidth, this.zMin) }, { point: new Point3d(point3d.x - xWidth, point3d.y + yWidth, this.zMin) }]; + // calculate screen location of the points + top.forEach(function (obj) { + obj.screen = me._convert3Dto2D(obj.point); + }); + bottom.forEach(function (obj) { + obj.screen = me._convert3Dto2D(obj.point); + }); -/***/ }, -/* 5 */ -/***/ function(module, exports, __webpack_require__) { + // 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; - module.exports = function(module) { - if(!module.webpackPolyfill) { - module.deprecate = function() {}; - module.paths = []; - // module.parent = undefined by default - module.children = []; - module.webpackPolyfill = 1; - } - return module; - } + // 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; -/***/ }, -/* 6 */ -/***/ function(module, exports, __webpack_require__) { - - "use strict"; + // if equal depth, sort the top surface last + if (a.corners === top) return 1; + if (b.corners === top) return -1; - // DOM utility methods + // both are equal + return 0; + }); - /** - * 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 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 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 + * Draw a line through all datapoints. + * This function can be used when the style is 'line' */ - 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 = []; - } - } + Graph3d.prototype._redrawDataLine = function () { + var canvas = this.frame.canvas, + ctx = canvas.getContext("2d"), + point, + i; + + if (this.dataPoints === undefined || this.dataPoints.length <= 0) return; // TODO: throw exception? + + // calculate the translations of all points + for (i = 0; i < this.dataPoints.length; i++) { + var trans = this._convertPointToTranslation(this.dataPoints[i].point); + var screen = this._convertTranslationToScreen(trans); + + this.dataPoints[i].trans = trans; + this.dataPoints[i].screen = screen; + } + + // start the line + if (this.dataPoints.length > 0) { + point = this.dataPoints[0]; + + ctx.lineWidth = 1; // TODO: make customizable + ctx.strokeStyle = "blue"; // TODO: make customizable + ctx.beginPath(); + ctx.moveTo(point.screen.x, point.screen.y); + } + + // draw the datapoints as colored circles + for (i = 1; i < this.dataPoints.length; i++) { + point = this.dataPoints[i]; + ctx.lineTo(point.screen.x, point.screen.y); + } + + // finish the line + if (this.dataPoints.length > 0) { + ctx.stroke(); } }; /** - * 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 + * Start a moving operation inside the provided parent element + * @param {Event} event The event that occurred (required for + * retrieving the mouse position) */ - 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); + 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); } - JSONcontainer[elementType].used.push(element); - return element; + + // only react on left mouse button down + this.leftButtonDown = event.which ? event.which === 1 : event.button === 1; + if (!this.leftButtonDown && !this.touchDown) return; + + // get mouse position (different code for IE and all other browsers) + this.startMouseX = getMouseX(event); + this.startMouseY = getMouseY(event); + + this.startStart = new Date(this.start); + this.startEnd = new Date(this.end); + this.startArmRotation = this.camera.getArmRotation(); + + this.frame.style.cursor = "move"; + + // add event listeners to handle moving the contents + // we store the function onmousemove and onmouseup in the graph, so we can + // remove the eventlisteners lateron in the function mouseUp() + var me = this; + this.onmousemove = function (event) { + me._onMouseMove(event); + }; + this.onmouseup = function (event) { + me._onMouseUp(event); + }; + util.addEventListener(document, "mousemove", me.onmousemove); + util.addEventListener(document, "mouseup", me.onmouseup); + util.preventDefault(event); }; /** - * 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 + * Perform moving operating. + * This function activated from within the funcion Graph.mouseDown(). + * @param {Event} event Well, eehh, the event */ - exports.getDOMElement = function (elementType, JSONcontainer, DOMContainer, insertBefore) { - 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); - if (insertBefore !== undefined) { - DOMContainer.insertBefore(element, insertBefore); - } else { - 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: [] }; - if (insertBefore !== undefined) { - DOMContainer.insertBefore(element, insertBefore); - } else { - DOMContainer.appendChild(element); - } - } - JSONcontainer[elementType].used.push(element); - return element; - }; + Graph3d.prototype._onMouseMove = function (event) { + event = event || window.event; + // calculate change in mouse position + var diffX = parseFloat(getMouseX(event)) - this.startMouseX; + var diffY = parseFloat(getMouseY(event)) - this.startMouseY; + var horizontalNew = this.startArmRotation.horizontal + diffX / 200; + var verticalNew = this.startArmRotation.vertical + diffY / 200; + var snapAngle = 4; // degrees + var snapValue = Math.sin(snapAngle / 360 * 2 * Math.PI); - /** - * 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 - * @param labelObj - * @returns {*} - */ - exports.drawPoint = function (x, y, group, JSONcontainer, svgContainer, labelObj) { - 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); - } 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); + // 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; } - if (group.options.drawPoints.styles !== undefined) { - point.setAttributeNS(null, "style", group.group.options.drawPoints.styles); + // 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; } - point.setAttributeNS(null, "class", group.className + " point"); - //handle label - var label = exports.getSVGElement("text", JSONcontainer, svgContainer); - if (labelObj) { - if (labelObj.xOffset) { - x = x + labelObj.xOffset; - } - if (labelObj.yOffset) { - y = y + labelObj.yOffset; - } - if (labelObj.content) { - label.textContent = labelObj.content; - } + this.camera.setArmRotation(horizontalNew, verticalNew); + this.redraw(); - if (labelObj.className) { - label.setAttributeNS(null, "class", labelObj.className + " label"); - } + // fire a cameraPositionChange event + var parameters = this.getCameraPosition(); + this.emit("cameraPositionChange", parameters); - } - label.setAttributeNS(null, "x", x); - label.setAttributeNS(null, "y", y); - return point; + util.preventDefault(event); }; + /** - * draw a bar SVG element centered on the X coordinate - * - * @param x - * @param y - * @param className + * Stop moving operating. + * This function activated from within the funcion Graph.mouseDown(). + * @param {event} event The event */ - exports.drawBar = function (x, y, width, height, className, JSONcontainer, svgContainer) { - if (height != 0) { - if (height < 0) { - height *= -1; - y -= height; - } - 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); - } - }; - -/***/ }, -/* 7 */ -/***/ function(module, exports, __webpack_require__) { - - "use strict"; + Graph3d.prototype._onMouseUp = function (event) { + this.frame.style.cursor = "auto"; + this.leftButtonDown = false; - var util = __webpack_require__(1); - var Queue = __webpack_require__(8); + // remove event listeners here + util.removeEventListener(document, "mousemove", this.onmousemove); + util.removeEventListener(document, "mouseup", this.onmouseup); + util.preventDefault(event); + }; /** - * DataSet - * - * Usage: - * var dataSet = new DataSet({ - * fieldId: '_id', - * type: { - * // ... - * } - * }); - * - * dataSet.add(item); - * dataSet.add(data); - * dataSet.update(item); - * dataSet.update(data); - * dataSet.remove(id); - * dataSet.remove(ids); - * var data = dataSet.get(); - * var data = dataSet.get(id); - * var data = dataSet.get(ids); - * var data = dataSet.get(ids, options, data); - * dataSet.clear(); - * - * A data set can: - * - add/remove/update data - * - gives triggers upon changes in the data - * - can import/export data in various data formats - * - * @param {Array | DataTable} [data] Optional array with initial data - * @param {Object} [options] Available options: - * {String} fieldId Field name of the id in the - * items, 'id' by default. - * {Object. 0 ? 1 : x < 0 ? -1 : 0; } - return addedIds; + 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 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 + * 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.update = function (data, senderId) { - var addedIds = []; - var updatedIds = []; - var updatedData = []; - var me = this; - var fieldId = me._fieldId; + Graph3d.prototype._dataPointFromXY = function (x, y) { + var i, + distMax = 100, + // px + dataPoint = null, + closestDataPoint = null, + closestDist = null, + center = new Point2d(x, y); - var addOrUpdate = function (item) { - var id = item[fieldId]; - if (me._data[id]) { - // update item - id = me._updateItem(item); - updatedIds.push(id); - updatedData.push(item); - } else { - // add new item - id = me._addItem(item); - addedIds.push(id); + 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 (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); + if ((closestDist === null || dist < closestDist) && dist < distMax) { + closestDist = dist; + closestDataPoint = dataPoint; + } } - - 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, data: updatedData }, senderId); - } - return addedIds.concat(updatedIds); + return closestDataPoint; }; /** - * 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 + * Display a tooltip for given data point + * @param {Object} dataPoint + * @private */ - DataSet.prototype.get = function (args) { - var me = this; - - // 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]; - } + Graph3d.prototype._showTooltip = function (dataPoint) { + var content, line, dot; - // 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 (!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)"; - 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"; - } + line = document.createElement("div"); + line.style.position = "absolute"; + line.style.height = "40px"; + line.style.width = "0"; + line.style.borderLeft = "1px solid #4d4d4d"; - // build options - var type = options && options.type || this._options.type; - var filter = options && options.filter; - var items = [], - item, - itemId, - i, - len; + 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"; - // 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); + this.tooltip = { + dataPoint: null, + dom: { + content: content, + line: line, + dot: dot } - } + }; } 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); - } - } - } - } - - // order the results - if (options && options.order && id == undefined) { - this._sort(items, options.order); + content = this.tooltip.dom.content; + line = this.tooltip.dom.line; + dot = this.tooltip.dom.dot; } - // filter fields of the items - if (options && options.fields) { - var fields = options.fields; - if (id != undefined) { - item = this._filterFields(item, fields); - } else { - for (i = 0, len = items.length; i < len; i++) { - items[i] = this._filterFields(items[i], fields); - } - } - } + this._hideTooltip(); - // return the results - if (returnType == "DataTable") { - var columns = this._getColumnNames(data); - if (id != undefined) { - // append a single item to the data table - me._appendRow(data, columns, item); - } else { - // copy the items to the provided data table - for (i = 0; i < items.length; i++) { - me._appendRow(data, columns, items[i]); - } - } - return data; - } else if (returnType == "Object") { - var result = {}; - for (i = 0; i < items.length; i++) { - result[items[i].id] = items[i]; - } - return result; + this.tooltip.dataPoint = dataPoint; + if (typeof this.showTooltip === "function") { + content.innerHTML = this.showTooltip(dataPoint.point); } else { - // return an array - if (id != undefined) { - // a single item - return item; - } else { - // multiple items - if (data) { - // copy the items to the provided array - for (i = 0, len = items.length; i < len; i++) { - data.push(items[i]); - } - return data; - } else { - // just return our array - return items; - } - } + content.innerHTML = "" + "" + "" + "" + "
x:" + dataPoint.point.x + "
y:" + dataPoint.point.y + "
z:" + dataPoint.point.z + "
"; } - }; - /** - * 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 = []; + content.style.left = "0"; + content.style.top = "0"; + this.frame.appendChild(content); + this.frame.appendChild(line); + this.frame.appendChild(dot); - 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); - } - } - } + // calculate sizes + var contentWidth = content.offsetWidth; + var contentHeight = content.offsetHeight; + var lineHeight = line.offsetHeight; + var dotWidth = dot.offsetWidth; + var dotHeight = dot.offsetHeight; - this._sort(items, order); + var left = dataPoint.screen.x - contentWidth / 2; + left = Math.min(Math.max(left, 10), this.frame.clientWidth - 10 - contentWidth); - for (i = 0, len = items.length; i < len; i++) { - ids[i] = items[i][this._fieldId]; - } - } else { - // create unordered list - for (id in data) { - if (data.hasOwnProperty(id)) { - item = this._getItem(id, type); - if (filter(item)) { - ids.push(item[this._fieldId]); - } - } - } - } - } else { - // get all items - if (order) { - // create an ordered list - items = []; - for (id in data) { - if (data.hasOwnProperty(id)) { - items.push(data[id]); - } - } + 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"; + }; - this._sort(items, order); + /** + * Hide the tooltip when displayed + * @private + */ + Graph3d.prototype._hideTooltip = function () { + if (this.tooltip) { + this.tooltip.dataPoint = null; - for (i = 0, len = items.length; i < len; i++) { - ids[i] = items[i][this._fieldId]; - } - } else { - // create unordered list - for (id in data) { - if (data.hasOwnProperty(id)) { - item = data[id]; - ids.push(item[this._fieldId]); + 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); } } } } - - return ids; }; + /**--------------------------------------------------------------------------**/ + + /** - * Returns the DataSet itself. Is overwritten for example by the DataView, - * which returns the DataSet it is connected to instead. + * Get the horizontal mouse position from a mouse event + * @param {Event} event + * @return {Number} mouse x */ - DataSet.prototype.getDataSet = function () { - return this; - }; + function getMouseX(event) { + if ("clientX" in event) { + return event.clientX; + }return event.targetTouches[0] && event.targetTouches[0].clientX || 0; + } /** - * 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. + * Get the vertical mouse position from a mouse event + * @param {Event} event + * @return {Number} mouse y */ - DataSet.prototype.forEach = function (callback, options) { - var filter = options && options.filter, - type = options && options.type || this._options.type, - data = this._data, - item, - id; + function getMouseY(event) { + if ("clientY" in event) { + return event.clientY; + }return event.targetTouches[0] && event.targetTouches[0].clientY || 0; + } - if (options && options.order) { - // execute forEach on ordered list - var items = this.get(options); + module.exports = Graph3d; + // use use defaults - for (var i = 0, len = items.length; i < len; i++) { - item = items[i]; - id = item[this._fieldId]; - callback(item, id); - } - } else { - // unordered - for (id in data) { - if (data.hasOwnProperty(id)) { - item = this._getItem(id, type); - if (!filter || filter(item)) { - callback(item, id); - } - } - } - } - }; +/***/ }, +/* 7 */ +/***/ function(module, exports, __webpack_require__) { + + "use strict"; + + var Point3d = __webpack_require__(10); /** - * 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 + * @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 */ - DataSet.prototype.map = function (callback, options) { - var filter = options && options.filter, - type = options && options.type || this._options.type, - mappedItems = [], - data = this._data, - item; + function Camera() { + this.armLocation = new Point3d(); + this.armRotation = {}; + this.armRotation.horizontal = 0; + this.armRotation.vertical = 0; + this.armLength = 1.7; - // 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)); - } - } - } + this.cameraLocation = new Point3d(); + this.cameraRotation = new Point3d(0.5 * Math.PI, 0, 0); - // order items - if (options && options.order) { - this._sort(mappedItems, options.order); - } + this.calculateCameraOrientation(); + } - return mappedItems; + /** + * 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(); }; /** - * Filter the fields of an item - * @param {Object | null} item - * @param {String[]} fields Field names - * @return {Object | null} filteredItem or null if no item is provided - * @private + * 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. */ - DataSet.prototype._filterFields = function (item, fields) { - if (!item) { - // item is null - return item; + Camera.prototype.setArmRotation = function (horizontal, vertical) { + if (horizontal !== undefined) { + this.armRotation.horizontal = horizontal; } - var filteredItem = {}; - - for (var field in item) { - if (item.hasOwnProperty(field) && fields.indexOf(field) != -1) { - filteredItem[field] = item[field]; - } + 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; } - return filteredItem; + if (horizontal !== undefined || vertical !== undefined) { + this.calculateCameraOrientation(); + } }; /** - * Sort the provided array with items - * @param {Object[]} items - * @param {String | function} order A field name or custom sort function. - * @private + * Retrieve the current arm rotation + * @return {object} An object with parameters horizontal and vertical */ - 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"); - } + Camera.prototype.getArmRotation = function () { + var rot = {}; + rot.horizontal = this.armRotation.horizontal; + rot.vertical = this.armRotation.vertical; + + return rot; }; /** - * 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 + * Set the (normalized) length of the camera arm. + * @param {Number} length A length between 0.71 and 5.0 */ - DataSet.prototype.remove = function (id, senderId) { - var removedIds = [], - i, - len, - removedId; + Camera.prototype.setArmLength = function (length) { + if (length === undefined) return; - 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); - } - } + this.armLength = length; - if (removedIds.length) { - this._trigger("remove", { items: removedIds }, senderId); - } + // 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) this.armLength = 5; - return removedIds; + this.calculateCameraOrientation(); }; /** - * Remove an item by its id - * @param {Number | String | Object} id id or item - * @returns {Number | String | null} id - * @private + * Retrieve the arm length + * @return {Number} length */ - DataSet.prototype._remove = function (id) { - if (util.isNumber(id) || util.isString(id)) { - if (this._data[id]) { - delete this._data[id]; - this.length--; - return id; - } - } else if (id instanceof Object) { - var itemId = id[this._fieldId]; - if (itemId && this._data[itemId]) { - delete this._data[itemId]; - this.length--; - return itemId; - } - } - return null; + Camera.prototype.getArmLength = function () { + return this.armLength; }; /** - * Clear the data - * @param {String} [senderId] Optional sender id - * @return {Array} removedIds The ids of all removed items + * Retrieve the camera location + * @return {Point3d} cameraLocation */ - DataSet.prototype.clear = function (senderId) { - var ids = Object.keys(this._data); - - this._data = {}; - this.length = 0; - - this._trigger("remove", { items: ids }, senderId); - - return ids; + Camera.prototype.getCameraLocation = function () { + return this.cameraLocation; }; /** - * 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 + * Retrieve the camera rotation + * @return {Point3d} cameraRotation */ - DataSet.prototype.max = function (field) { - var data = this._data, - max = null, - maxField = null; - - for (var id in data) { - if (data.hasOwnProperty(id)) { - var item = data[id]; - var itemField = item[field]; - if (itemField != null && (!max || itemField > maxField)) { - max = item; - maxField = itemField; - } - } - } - - return max; + Camera.prototype.getCameraRotation = function () { + return this.cameraRotation; }; /** - * 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 + * Calculate the location and rotation of the camera based on the + * position and orientation of the camera arm */ - DataSet.prototype.min = function (field) { - var data = this._data, - min = null, - minField = null; - - 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; - } - } - } + 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 min; + // 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; + +/***/ }, +/* 8 */ +/***/ function(module, exports, __webpack_require__) { + + "use strict"; + + var DataView = __webpack_require__(4); + /** - * 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. + * @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 */ - 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 Filter(data, column, graph) { + this.data = data; + this.column = column; + this.graph = graph; // the parent graph - 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++; - } - } - } + this.index = undefined; + this.value = undefined; - if (fieldType) { - for (i = 0; i < values.length; i++) { - values[i] = util.convert(values[i], fieldType); - } + // 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); } - return values; - }; + // create an array with the filtered datapoints. this will be loaded afterwards + this.dataPoints = []; - /** - * 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]; + this.loaded = false; + this.onLoadCallback = undefined; - 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"); - } + if (graph.animationPreload) { + this.loaded = false; + this.loadInBackground(); } else { - // generate an id - id = util.randomUUID(); - item[this._fieldId] = id; + this.loaded = true; } + }; - var d = {}; - for (var field in item) { - if (item.hasOwnProperty(field)) { - var fieldType = this._type[field]; // type may be undefined - d[field] = util.convert(item[field], fieldType); - } - } - this._data[id] = d; - this.length++; - return id; + /** + * Return the label + * @return {string} label + */ + Filter.prototype.isLoaded = function () { + return this.loaded; }; + /** - * 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 + * Return the loaded progress + * @return {Number} percentage between 0 and 100 */ - DataSet.prototype._getItem = function (id, types) { - var field, value; + Filter.prototype.getLoadedProgress = function () { + var len = this.values.length; - // get the item from the dataset - var raw = this._data[id]; - if (!raw) { - return null; + var i = 0; + while (this.dataPoints[i]) { + i++; } - // 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; + return Math.round(i / len * 100); }; + /** - * 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 + * Return the label + * @return {string} label */ - 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"); - } + Filter.prototype.getLabel = function () { + return this.graph.filterLabel; + }; - // 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; + /** + * Return the columnIndex of the filter + * @return {Number} columnIndex + */ + Filter.prototype.getColumn = function () { + return this.column; }; /** - * Get an array with the column names of a Google DataTable - * @param {DataTable} dataTable - * @return {String[]} columnNames - * @private + * Return the currently selected value. Returns undefined if there is no selection + * @return {*} value */ - 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; + Filter.prototype.getSelectedValue = function () { + if (this.index === undefined) return undefined; + + return this.values[this.index]; }; /** - * Append an item as a row to the dataTable - * @param dataTable - * @param columns - * @param item - * @private + * Retrieve all values of the filter + * @return {Array} values */ - DataSet.prototype._appendRow = function (dataTable, columns, item) { - var row = dataTable.addRow(); - - for (var col = 0, cols = columns.length; col < cols; col++) { - var field = columns[col]; - dataTable.setValue(row, col, item[field]); - } + Filter.prototype.getValues = function () { + return this.values; }; - module.exports = DataSet; + /** + * 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"; -/***/ }, -/* 8 */ -/***/ function(module, exports, __webpack_require__) { + return this.values[index]; + }; - "use strict"; /** - * A queue - * @param {Object} options - * Available options: - * - delay: number When provided, the queue will be flushed - * automatically after an inactivity of this delay - * in milliseconds. - * Default value is null. - * - max: number When the queue exceeds the given maximum number - * of entries, the queue is flushed automatically. - * Default value of max is Infinity. - * @constructor + * Retrieve the (filtered) dataPoints for the currently selected filter index + * @param {Number} [index] (optional) + * @return {Array} dataPoints */ - function Queue(options) { - // options - this.delay = null; - this.max = Infinity; + Filter.prototype._getDataPoints = function (index) { + if (index === undefined) index = this.index; - // properties - this._queue = []; - this._timeout = null; - this._extended = null; + if (index === undefined) return []; - this.setOptions(options); - } + var dataPoints; + if (this.dataPoints[index]) { + dataPoints = this.dataPoints[index]; + } else { + var f = {}; + f.column = this.column; + f.value = this.values[index]; - /** - * Update the configuration of the queue - * @param {Object} options - * Available options: - * - delay: number When provided, the queue will be flushed - * automatically after an inactivity of this delay - * in milliseconds. - * Default value is null. - * - max: number When the queue exceeds the given maximum number - * of entries, the queue is flushed automatically. - * Default value of max is Infinity. - * @param options - */ - Queue.prototype.setOptions = function (options) { - if (options && typeof options.delay !== "undefined") { - this.delay = options.delay; - } - if (options && typeof options.max !== "undefined") { - this.max = options.max; + var dataView = new DataView(this.data, { filter: function (item) { + return item[f.column] == f.value; + } }).get(); + dataPoints = this.graph._getDataPoints(dataView); + + this.dataPoints[index] = dataPoints; } - this._flushIfNeeded(); + return dataPoints; }; - /** - * Extend an object with queuing functionality. - * The object will be extended with a function flush, and the methods provided - * in options.replace will be replaced with queued ones. - * @param {Object} object - * @param {Object} options - * Available options: - * - replace: Array. - * A list with method names of the methods - * on the object to be replaced with queued ones. - * - delay: number When provided, the queue will be flushed - * automatically after an inactivity of this delay - * in milliseconds. - * Default value is null. - * - max: number When the queue exceeds the given maximum number - * of entries, the queue is flushed automatically. - * Default value of max is Infinity. - * @return {Queue} Returns the created queue - */ - Queue.extend = function (object, options) { - var queue = new Queue(options); - if (object.flush !== undefined) { - throw new Error("Target object already has a property flush"); - } - object.flush = function () { - queue.flush(); - }; - var methods = [{ - name: "flush", - original: undefined - }]; + /** + * Set a callback function when the filter is fully loaded. + */ + Filter.prototype.setOnLoadCallback = function (callback) { + this.onLoadCallback = callback; + }; - if (options && options.replace) { - for (var i = 0; i < options.replace.length; i++) { - var name = options.replace[i]; - methods.push({ - name: name, - original: object[name] - }); - queue.replace(object, name); - } - } - queue._extended = { - object: object, - methods: methods - }; + /** + * 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"; - return queue; + this.index = index; + this.value = this.values[index]; }; /** - * Destroy the queue. The queue will first flush all queued actions, and in - * case it has extended an object, will restore the original object. + * Load all filtered rows in the background one by one + * Start this method without providing an index! */ - Queue.prototype.destroy = function () { - this.flush(); + Filter.prototype.loadInBackground = function (index) { + if (index === undefined) index = 0; - if (this._extended) { - var object = this._extended.object; - var methods = this._extended.methods; - for (var i = 0; i < methods.length; i++) { - var method = methods[i]; - if (method.original) { - object[method.name] = method.original; - } else { - delete object[method.name]; - } + 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); } - this._extended = null; + var progress = this.getLoadedProgress(); + frame.progress.innerHTML = "Loading animation... " + progress + "%"; + // TODO: this is no nice solution... + frame.progress.style.bottom = 60 + "px"; // TODO: use height of slider + frame.progress.style.left = 10 + "px"; + + var me = this; + setTimeout(function () { + me.loadInBackground(index + 1); + }, 10); + this.loaded = false; + } else { + this.loaded = true; + + // remove the progress box + if (frame.progress !== undefined) { + frame.removeChild(frame.progress); + frame.progress = undefined; + } + + if (this.onLoadCallback) this.onLoadCallback(); } }; + module.exports = Filter; + +/***/ }, +/* 9 */ +/***/ function(module, exports, __webpack_require__) { + + "use strict"; + /** - * Replace a method on an object with a queued version - * @param {Object} object Object having the method - * @param {string} method The method name + * @prototype Point2d + * @param {Number} [x] + * @param {Number} [y] */ - Queue.prototype.replace = function (object, method) { - var me = this; - var original = object[method]; - if (!original) { - throw new Error("Method " + method + " undefined"); - } + function Point2d(x, y) { + this.x = x !== undefined ? x : 0; + this.y = y !== undefined ? y : 0; + } - object[method] = function () { - // create an Array with the arguments - var args = []; - for (var i = 0; i < arguments.length; i++) { - args[i] = arguments[i]; - } + module.exports = Point2d; - // add this call to the queue - me.queue({ - args: args, - fn: original, - context: this - }); - }; +/***/ }, +/* 10 */ +/***/ function(module, exports, __webpack_require__) { + + "use strict"; + + /** + * @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; }; /** - * Queue a call - * @param {function | {fn: function, args: Array} | {fn: function, args: Array, context: Object}} entry + * Subtract the two provided points, returns a-b + * @param {Point3d} a + * @param {Point3d} b + * @return {Point3d} a-b */ - Queue.prototype.queue = function (entry) { - if (typeof entry === "function") { - this._queue.push({ fn: entry }); - } else { - this._queue.push(entry); - } + 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; + }; - this._flushIfNeeded(); + /** + * 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; }; /** - * Check whether the queue needs to be flushed - * @private + * Calculate the average of two 3d points + * @param {Point3d} a + * @param {Point3d} b + * @return {Point3d} The average, (a+b)/2 */ - Queue.prototype._flushIfNeeded = function () { - // flush when the maximum is exceeded. - if (this._queue.length > this.max) { - this.flush(); - } + Point3d.avg = function (a, b) { + return new Point3d((a.x + b.x) / 2, (a.y + b.y) / 2, (a.z + b.z) / 2); + }; - // flush after a period of inactivity when a delay is configured - clearTimeout(this._timeout); - if (this.queue.length > 0 && typeof this.delay === "number") { - var me = this; - this._timeout = setTimeout(function () { - me.flush(); - }, this.delay); - } + /** + * Calculate the cross product of the two provided points, returns axb + * Documentation: http://en.wikipedia.org/wiki/Cross_product + * @param {Point3d} a + * @param {Point3d} b + * @return {Point3d} cross product axb + */ + Point3d.crossProduct = function (a, b) { + var crossproduct = new Point3d(); + + 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; }; + /** - * Flush all queued calls + * Rtrieve the length of the vector (or the distance from this point to the origin + * @return {Number} length */ - Queue.prototype.flush = function () { - while (this._queue.length > 0) { - var entry = this._queue.shift(); - entry.fn.apply(entry.context || entry.fn, entry.args || []); - } + Point3d.prototype.length = function () { + return Math.sqrt(this.x * this.x + this.y * this.y + this.z * this.z); }; - module.exports = Queue; + module.exports = Point3d; /***/ }, -/* 9 */ +/* 11 */ /***/ function(module, exports, __webpack_require__) { "use strict"; var util = __webpack_require__(1); - var DataSet = __webpack_require__(7); /** - * 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 Slider * - * @constructor DataView + * An html slider control with start/stop/prev/next buttons + * @param {Element} container The element where the slider will be created + * @param {Object} options Available options: + * {boolean} visible If true (default) the + * slider is visible. */ - function DataView(data, options) { - this._data = null; - this._ids = {}; // ids of the items currently in memory (just contains a boolean true) - this.length = 0; // number of items in the DataView - this._options = options || {}; - this._fieldId = "id"; // name of the field containing id - this._subscribers = {}; // event subscribers + 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; - var me = this; - this.listener = function () { - me._onEvent.apply(me, arguments); - }; + 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.setData(data); - } + this.frame.prev = document.createElement("INPUT"); + this.frame.prev.type = "BUTTON"; + this.frame.prev.value = "Prev"; + this.frame.appendChild(this.frame.prev); - // TODO: implement a function .config() to dynamically update things like configured filter - // and trigger changes accordingly + this.frame.play = document.createElement("INPUT"); + this.frame.play.type = "BUTTON"; + this.frame.play.value = "Play"; + this.frame.appendChild(this.frame.play); - /** - * Set a data source for the view - * @param {DataSet | DataView} data - */ - DataView.prototype.setData = function (data) { - var ids, i, len; + this.frame.next = document.createElement("INPUT"); + this.frame.next.type = "BUTTON"; + this.frame.next.value = "Next"; + this.frame.appendChild(this.frame.next); - if (this._data) { - // unsubscribe from current dataset - if (this._data.unsubscribe) { - this._data.unsubscribe("*", this.listener); - } + 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); - // 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.length = 0; - this._trigger("remove", { items: ids }); + 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); + }; } - this._data = data; + this.onChangeCallback = undefined; - if (this._data) { - // update fieldId - this._fieldId = this._options.fieldId || this._data && this._data.options && this._data.options.fieldId || "id"; + this.values = []; + this.index = undefined; - // 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.length = ids.length; - this._trigger("add", { items: ids }); + this.playTimeout = undefined; + this.playInterval = 1000; // milliseconds + this.playLoop = true; + } - // subscribe to new dataset - if (this._data.on) { - this._data.on("*", this.listener); - } + /** + * Select the previous index + */ + Slider.prototype.prev = function () { + var index = this.getIndex(); + if (index > 0) { + index--; + this.setIndex(index); } }; /** - * Refresh the DataView. Useful when the DataView has a filter function - * containing a variable parameter. + * Select the next index */ - DataView.prototype.refresh = function () { - var id; - var ids = this._data.getIds({ filter: this._options && this._options.filter }); - var newIds = {}; - var added = []; - var removed = []; - - // check for additions - for (var i = 0; i < ids.length; i++) { - id = ids[i]; - newIds[id] = true; - if (!this._ids[id]) { - added.push(id); - this._ids[id] = true; - this.length++; - } - } - - // check for removals - for (id in this._ids) { - if (this._ids.hasOwnProperty(id)) { - if (!newIds[id]) { - removed.push(id); - delete this._ids[id]; - this.length--; - } - } + Slider.prototype.next = function () { + var index = this.getIndex(); + if (index < this.values.length - 1) { + index++; + this.setIndex(index); } - - // trigger events - if (added.length) { - this._trigger("add", { items: added }); - } - if (removed.length) { - this._trigger("remove", { items: removed }); - } - }; + }; /** - * 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 + * Select the next index */ - DataView.prototype.get = function (args) { - var me = this; + Slider.prototype.playNext = function () { + var start = new Date(); - // 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]; + 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); } - // extend the options with the default options and provided options - var viewOptions = util.extend({}, this._options, options); - - // 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); - }; - } + var end = new Date(); + var diff = end - start; - // build up the call to the linked data set - var getArguments = []; - if (ids != undefined) { - getArguments.push(ids); - } - getArguments.push(viewOptions); - getArguments.push(data); + // calculate how much time it to to set the index and to execute the callback + // function. + var interval = Math.max(this.playInterval - diff, 0); + // document.title = diff // TODO: cleanup - return this._data && this._data.get.apply(this._data, getArguments); + var me = this; + this.playTimeout = setTimeout(function () { + me.playNext(); + }, interval); }; /** - * 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 + * Toggle start or stop playing */ - DataView.prototype.getIds = function (options) { - var ids; - - if (this._data) { - var defaultFilter = this._options.filter; - var filter; - - if (options && options.filter) { - if (defaultFilter) { - filter = function (item) { - return defaultFilter(item) && options.filter(item); - }; - } else { - filter = options.filter; - } - } else { - filter = defaultFilter; - } - - ids = this._data.getIds({ - filter: filter, - order: options && options.order - }); + Slider.prototype.togglePlay = function () { + if (this.playTimeout === undefined) { + this.play(); } else { - ids = []; + this.stop(); } - - 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 + * Start playing */ - DataView.prototype.getDataSet = function () { - var dataSet = this; - while (dataSet instanceof DataView) { - dataSet = dataSet._data; + Slider.prototype.play = function () { + // Test whether already playing + if (this.playTimeout) return; + + this.playNext(); + + if (this.frame) { + this.frame.play.value = "Stop"; } - return dataSet || null; }; /** - * Event listener. Will propagate all events from the connected data set to - * the subscribers of the DataView, but will filter the items and only trigger - * when there are changes in the filtered data set. - * @param {String} event - * @param {Object | null} params - * @param {String} senderId - * @private + * Stop playing */ - DataView.prototype._onEvent = function (event, params, senderId) { - var i, - len, - id, - item, - ids = params && params.items, - data = this._data, - added = [], - updated = [], - removed = []; + Slider.prototype.stop = function () { + clearInterval(this.playTimeout); + this.playTimeout = undefined; - 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); - } - } + if (this.frame) { + this.frame.play.value = "Play"; + } + }; - break; + /** + * 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; + }; - 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); + /** + * Set the interval for playing the list + * @param {Number} interval The interval in milliseconds + */ + Slider.prototype.setPlayInterval = function (interval) { + this.playInterval = interval; + }; - 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 {} - } - } + /** + * Retrieve the current play interval + * @return {Number} interval The interval in milliseconds + */ + Slider.prototype.getPlayInterval = function (interval) { + return this.playInterval; + }; - break; + /** + * Set looping on or off + * @pararm {boolean} doLoop If true, the slider will jump to the start when + * the end is passed, and will jump to the end + * when the start is passed. + */ + Slider.prototype.setPlayLoop = function (doLoop) { + this.playLoop = doLoop; + }; - case "remove": - // filter the ids of the removed items - for (i = 0, len = ids.length; i < len; i++) { - id = ids[i]; - if (this._ids[id]) { - delete this._ids[id]; - removed.push(id); - } - } - break; - } + /** + * Execute the onchange callback function + */ + Slider.prototype.onChange = function () { + if (this.onChangeCallback !== undefined) { + this.onChangeCallback(); + } + }; - this.length += added.length - removed.length; + /** + * redraw the slider on the correct place + */ + Slider.prototype.redraw = function () { + if (this.frame) { + // resize the bar + this.frame.bar.style.top = this.frame.clientHeight / 2 - this.frame.bar.offsetHeight / 2 + "px"; + this.frame.bar.style.width = this.frame.clientWidth - this.frame.prev.clientWidth - this.frame.play.clientWidth - this.frame.next.clientWidth - 30 + "px"; - 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); - } + // position the slider button + var left = this.indexToLeft(this.index); + this.frame.slide.style.left = left + "px"; } }; - // copy subscription functionality from DataSet - DataView.prototype.on = DataSet.prototype.on; - DataView.prototype.off = DataSet.prototype.off; - DataView.prototype._trigger = DataSet.prototype._trigger; - - // TODO: make these functions deprecated (replaced with `on` and `off` since version 0.5) - DataView.prototype.subscribe = DataView.prototype.on; - DataView.prototype.unsubscribe = DataView.prototype.off; - module.exports = DataView; - // nothing interesting for me :-( + /** + * 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; -/***/ }, -/* 10 */ -/***/ function(module, exports, __webpack_require__) { + if (this.values.length > 0) this.setIndex(0);else this.index = undefined; + }; - "use strict"; + /** + * Select a value by its index + * @param {Number} index + */ + Slider.prototype.setIndex = function (index) { + if (index < this.values.length) { + this.index = index; - var Emitter = __webpack_require__(11); - var DataSet = __webpack_require__(7); - var DataView = __webpack_require__(9); - var util = __webpack_require__(1); - var Point3d = __webpack_require__(12); - var Point2d = __webpack_require__(13); - var Camera = __webpack_require__(14); - var Filter = __webpack_require__(15); - var Slider = __webpack_require__(16); - var StepNumber = __webpack_require__(17); + this.redraw(); + this.onChange(); + } else { + throw "Error: index out of range"; + } + }; /** - * @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 index of the currently selected vaue + * @return {Number} index */ - function Graph3d(container, data, options) { - if (!(this instanceof Graph3d)) { - throw new SyntaxError("Constructor must be called with the new operator"); - } + Slider.prototype.getIndex = function () { + return this.index; + }; - // 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"; + /** + * retrieve the currently selected value + * @return {*} value + */ + Slider.prototype.get = function () { + return this.values[this.index]; + }; - var passValueFn = function (v) { - return v; - }; - this.xValueLabel = passValueFn; - this.yValueLabel = passValueFn; - this.zValueLabel = passValueFn; - this.filterLabel = "time"; - this.legendLabel = "value"; + 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.style = Graph3d.STYLE.DOT; - this.showPerspective = true; - this.showGrid = true; - this.keepAspectRatio = true; - this.showShadow = false; - this.showGrayBottom = false; // TODO: this does not work correctly - this.showTooltip = false; - this.verticalRatio = 0.5; // 0.1 to 1.0, where 1.0 results in a 'cube' + this.startClientX = event.clientX; + this.startSlideX = parseFloat(this.frame.slide.style.left); - this.animationInterval = 1000; // milliseconds - this.animationPreload = false; + this.frame.style.cursor = "move"; - this.camera = new Camera(); - this.eye = new Point3d(0, 0, -1); // TODO: set eye.z about 3/4 of the width of the window? + // 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); + }; - this.dataTable = null; // The original data table - this.dataPoints = null; // The table with point objects - // the column indexes - this.colX = undefined; - this.colY = undefined; - this.colZ = undefined; - this.colValue = undefined; - this.colFilter = undefined; + Slider.prototype.leftToIndex = function (left) { + var width = parseFloat(this.frame.bar.style.width) - this.frame.slide.clientWidth - 10; + var x = left - 3; - 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 + 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; - // constants - this.colorAxis = "#4D4D4D"; - this.colorGrid = "#D3D3D3"; - this.colorDot = "#7DC1FF"; - this.colorDotBorder = "#3267D2"; + return index; + }; - // create a frame and canvas - this.create(); + Slider.prototype.indexToLeft = function (index) { + var width = parseFloat(this.frame.bar.style.width) - this.frame.slide.clientWidth - 10; - // apply options (also when undefined) - this.setOptions(options); + var x = index / (this.values.length - 1) * width; + var left = x + 3; - // apply data - if (data) { - this.setData(data); - } - } + return left; + }; - // Extend Graph3d with an Emitter mixin - Emitter(Graph3d.prototype); - /** - * 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)); - // 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; - } - } + Slider.prototype._onMouseMove = function (event) { + var diff = event.clientX - this.startClientX; + var x = this.startSlideX + diff; - // scale the vertical axis - this.scale.z *= this.verticalRatio; - // TODO: can this be automated? verticalRatio? + var index = this.leftToIndex(x); - // determine scale for (optional) value - this.scale.value = 1 / (this.valueMax - this.valueMin); + this.setIndex(index); - // 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); + util.preventDefault(); }; - /** - * 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); - }; - - /** - * Convert a 3D location its translation seen from the camera - * http://en.wikipedia.org/wiki/3D_projection - * @param {Point3d} point3d A 3D point with parameters x, y, z - * @return {Point3d} translation A 3D point with parameters x, y, z This is - * the translation of the point, seen from the - * camera - */ - Graph3d.prototype._convertPointToTranslation = function (point3d) { - var ax = point3d.x * this.scale.x, - ay = point3d.y * this.scale.y, - az = point3d.z * this.scale.z, - cx = this.camera.getCameraLocation().x, - cy = this.camera.getCameraLocation().y, - cz = this.camera.getCameraLocation().z, + Slider.prototype._onMouseUp = function (event) { + this.frame.style.cursor = "auto"; + // remove event listeners + util.removeEventListener(document, "mousemove", this.onmousemove); + util.removeEventListener(document, "mouseup", this.onmouseup); - // 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), + util.preventDefault(); + }; + module.exports = Slider; - // 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)); +/***/ }, +/* 12 */ +/***/ function(module, exports, __webpack_require__) { - return new Point3d(dx, dy, dz); - }; + "use strict"; /** - * 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 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._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()); - } + function StepNumber(start, end, step, prettyStep) { + // set default values + this._start = 0; + this._end = 0; + this._step = 1; + this.prettyStep = true; + this.precision = 5; - // 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); + this._current = 0; + this.setRange(start, end, step, prettyStep); }; /** - * Set the background styling for the graph - * @param {string | {fill: string, stroke: string, strokeWidth: string}} backgroundColor + * 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._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) {} 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"; - }; - + StepNumber.prototype.setRange = function (start, end, step, prettyStep) { + this._start = start ? start : 0; + this._end = end ? end : 0; - /// 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 + this.setStep(step, prettyStep); }; /** - * 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 + * 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, ...) */ - 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; - } + StepNumber.prototype.setStep = function (step, prettyStep) { + if (step === undefined || step <= 0) return; - return -1; + if (prettyStep !== undefined) this.prettyStep = prettyStep; + + if (this.prettyStep === true) this._step = StepNumber.calculatePrettyStep(step);else this._step = step; }; /** - * Determine the indexes of the data columns, based on the given style and data - * @param {DataSet} data - * @param {Number} style + * 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 */ - 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; + StepNumber.calculatePrettyStep = function (step) { + var log10 = function (x) { + return Math.log(x) / Math.LN10; + }; - 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; + // 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))); - if (data.getNumberOfColumns() > 4) { - this.colFilter = 4; - } - } else { - throw "Unknown style \"" + this.style + "\""; + // 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; + + // for safety + if (prettyStep <= 0) { + prettyStep = 1; } - }; - Graph3d.prototype.getNumberOfRows = function (data) { - return data.length; + return prettyStep; }; - - Graph3d.prototype.getNumberOfColumns = function (data) { - var counter = 0; - for (var column in data[0]) { - if (data[0].hasOwnProperty(column)) { - counter++; - } - } - return counter; + /** + * returns the current value of the step + * @return {Number} current value + */ + StepNumber.prototype.getCurrent = function () { + return parseFloat(this._current.toPrecision(this.precision)); }; - - 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; + /** + * 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; + }; - 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; + /** + * Do a step, add the step size to the current value + */ + StepNumber.prototype.next = function () { + this._current += this._step; }; /** - * 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 + * Returns true whether the end is reached + * @return {boolean} True if the current value has passed the end value. */ - Graph3d.prototype._dataInitialize = function (rawData, style) { - var me = this; + StepNumber.prototype.end = function () { + return this._current > this._end; + }; - // unsubscribe from the dataTable - if (this.dataSet) { - this.dataSet.off("*", this._onChange); - } + module.exports = StepNumber; - if (rawData === undefined) return; +/***/ }, +/* 13 */ +/***/ function(module, exports, __webpack_require__) { - if (Array.isArray(rawData)) { - rawData = new DataSet(rawData); + "use strict"; + + var Emitter = __webpack_require__(62); + var Hammer = __webpack_require__(45); + var util = __webpack_require__(1); + var DataSet = __webpack_require__(3); + var DataView = __webpack_require__(4); + var Range = __webpack_require__(17); + var Core = __webpack_require__(46); + var TimeAxis = __webpack_require__(35); + var CurrentTime = __webpack_require__(26); + var CustomTime = __webpack_require__(27); + var ItemSet = __webpack_require__(32); + + /** + * Create a timeline visualization + * @param {HTMLElement} container + * @param {vis.DataSet | vis.DataView | Array | google.visualization.DataTable} [items] + * @param {vis.DataSet | vis.DataView | Array | google.visualization.DataTable} [groups] + * @param {Object} [options] See Timeline.setOptions for the available options. + * @constructor + * @extends Core + */ + function Timeline(container, items, groups, options) { + if (!(this instanceof Timeline)) { + throw new SyntaxError("Constructor must be called with the new operator"); } - var data; - if (rawData instanceof DataSet || rawData instanceof DataView) { - data = rawData.get(); - } else { - throw new Error("Array, DataSet, or DataView expected"); + // if the third element is options, the forth is groups (optionally); + if (!(Array.isArray(groups) || groups instanceof DataSet || groups instanceof DataView) && groups instanceof Object) { + var forthArgument = options; + options = groups; + groups = forthArgument; } - if (data.length == 0) return; + var me = this; + this.defaultOptions = { + start: null, + end: null, - this.dataSet = rawData; - this.dataTable = data; + autoResize: true, - // subscribe to changes in the dataset - this._onChange = function () { - me.setData(me.dataSet); + orientation: "bottom", + width: null, + height: null, + maxHeight: null, + minHeight: null }; - this.dataSet.on("*", this._onChange); - - // _determineColumnIndexes - // getNumberOfRows (points) - // getNumberOfColumns (x,y,z,v,t,t1,t2...) - // getDistinctValues (unique values?) - // getColumnRange + this.options = util.deepExtend({}, this.defaultOptions); - // 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"; + // 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) + }, + hiddenDates: [], + util: { + getScale: function () { + return me.timeAxis.step.scale; + }, + getStep: function () { + return me.timeAxis.step.step; + }, - // 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(); - }); + 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 withBars = this.style == Graph3d.STYLE.BAR || this.style == Graph3d.STYLE.BARCOLOR || this.style == Graph3d.STYLE.BARSIZE; + // range + this.range = new Range(this.body); + this.components.push(this.range); + this.body.range = this.range; - // 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; - } + // time axis + this.timeAxis = new TimeAxis(this.body); + this.components.push(this.timeAxis); - if (this.defaultYBarWidth !== undefined) { - this.yBarWidth = this.defaultYBarWidth; - } else { - var dataY = this.getDistinctValues(data, this.colY); - this.yBarWidth = dataY[1] - dataY[0] || 1; - } - } + // current time bar + this.currentTime = new CurrentTime(this.body); + this.components.push(this.currentTime); - // 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; + // 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); - 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; + // item set + this.itemSet = new ItemSet(this.body); + this.components.push(this.itemSet); - 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; + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet - 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; + // apply options + if (options) { + this.setOptions(options); } - // set the scale dependent on the ranges. - this._setScale(); - }; + // IMPORTANT: THIS HAPPENS BEFORE SET ITEMS! + if (groups) { + this.setGroups(groups); + } + // create itemset + if (items) { + this.setItems(items); + } else { + this._redraw(); + } + } + // Extend the functionality from Core + Timeline.prototype = new Core(); /** - * Filter the data based on the current filter - * @param {Array} data - * @return {Array} dataPoints Array with point objects which can be drawn on screen + * Force a redraw. The size of all items will be recalculated. + * Can be useful to manually redraw when option autoResize=false and the window + * has been resized, or when the items CSS has been changed. */ - 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; + Timeline.prototype.redraw = function () { + this.itemSet && this.itemSet.markDirty({ refreshItems: true }); + this._redraw(); + }; - var dataPoints = []; + /** + * Set items + * @param {vis.DataSet | Array | google.visualization.DataTable | null} items + */ + Timeline.prototype.setItems = function (items) { + var initialLoad = this.itemsData == null; - 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 + // 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" + } + }); + } - // 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; + // set items + this.itemsData = newDataSet; + this.itemSet && this.itemSet.setItems(newDataSet); - if (dataX.indexOf(x) === -1) { - dataX.push(x); - } - if (dataY.indexOf(y) === -1) { - dataY.push(y); + if (initialLoad) { + if (this.options.start != undefined || this.options.end != undefined) { + if (this.options.start == undefined || this.options.end == undefined) { + var dataRange = this._getDataRange(); } - } - - var sortNumber = function (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; + var start = this.options.start != undefined ? this.options.start : dataRange.start; + var end = this.options.end != undefined ? this.options.end : dataRange.end; - dataPoints.push(obj); + this.setWindow(start, end, { animate: false }); + } else { + this.fit({ animate: false }); } } - - return dataPoints; }; /** - * 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 groups + * @param {vis.DataSet | Array | google.visualization.DataTable} groups */ - 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); + 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); } - 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); + this.groupsData = newDataSet; + this.itemSet.setGroups(newDataSet); }; - /** - * 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%') + * Set selected items by their id. Replaces the current selection + * Unknown id's are silently ignored. + * @param {string[] | string} [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) + * `animate: boolean | number` + * If true (default), the range is animated + * smoothly to the new window. + * If a number, the number is taken as duration + * for the animation. Default duration is 500 ms. + * Only applicable when option focus is true. */ - Graph3d.prototype.setSize = function (width, height) { - this.frame.style.width = width; - this.frame.style.height = height; + Timeline.prototype.setSelection = function (ids, options) { + this.itemSet && this.itemSet.setSelection(ids); - this._resizeCanvas(); + if (options && options.focus) { + this.focus(ids, options); + } }; /** - * Resize the canvas to the current size of the frame + * Get the selected items by their id + * @return {Array} ids The ids of the selected items */ - Graph3d.prototype._resizeCanvas = function () { - 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; - - // adjust with for margin - this.frame.filter.style.width = this.frame.canvas.clientWidth - 2 * 10 + "px"; + Timeline.prototype.getSelection = function () { + return this.itemSet && this.itemSet.getSelection() || []; }; /** - * Start animation + * 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 + * @param {Object} [options] Available options: + * `animate: boolean | number` + * If true (default), the range is animated + * smoothly to the new window. + * If a number, the number is taken as duration + * for the animation. Default duration is 500 ms. + * Only applicable when option focus is true */ - Graph3d.prototype.animationStart = function () { - if (!this.frame.filter || !this.frame.filter.slider) throw "No animation available"; + Timeline.prototype.focus = function (id, options) { + if (!this.itemsData || id == undefined) return; - this.frame.filter.slider.play(); - }; + var ids = Array.isArray(id) ? id : [id]; + // get the specified item(s) + var itemsData = this.itemsData.getDataSet().get(ids, { + type: { + start: "Date", + end: "Date" + } + }); - /** - * Stop animation - */ - Graph3d.prototype.animationStop = function () { - if (!this.frame.filter || !this.frame.filter.slider) return; + // 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(); - this.frame.filter.slider.stop(); - }; + if (start === null || s < start) { + start = s; + } + if (end === null || e > end) { + end = e; + } + }); - /** - * 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 - } + if (start !== null && end !== null) { + // 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); - // 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 + var animate = options && options.animate !== undefined ? options.animate : true; + this.range.setRange(middle - interval / 2, middle + interval / 2, animate); } }; /** - * 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. + * 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.setCameraPosition = function (pos) { - if (pos === undefined) { - return; - } + Timeline.prototype.getItemRange = function () { + // calculate min from start filed + var dataset = this.itemsData.getDataSet(), + min = null, + max = null; - if (pos.horizontal !== undefined && pos.vertical !== undefined) { - this.camera.setArmRotation(pos.horizontal, pos.vertical); - } + if (dataset) { + // calculate the minimum value of the field 'start' + var minItem = dataset.min("start"); + min = minItem ? util.convert(minItem.start, "Date").valueOf() : null; + // Note: we convert first to Date and then to number because else + // a conversion from ISODate to Number will fail - if (pos.distance !== undefined) { - this.camera.setArmLength(pos.distance); + // 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.redraw(); + return { + min: min != null ? new Date(min) : null, + max: max != null ? new Date(max) : null + }; }; - /** - * Retrieve the current camera rotation - * @return {object} An object with parameters horizontal, vertical, and - * distance - */ - Graph3d.prototype.getCameraPosition = function () { - var pos = this.camera.getArmRotation(); - pos.distance = this.camera.getArmLength(); - return pos; - }; - - /** - * Load data into the 3D Graph - */ - Graph3d.prototype._readData = function (data) { - // read the data - this._dataInitialize(data, this.style); + module.exports = Timeline; +/***/ }, +/* 14 */ +/***/ function(module, exports, __webpack_require__) { - if (this.dataFilter) { - // apply filtering - this.dataPoints = this.dataFilter._getDataPoints(); - } else { - // no filtering. load all data - this.dataPoints = this._getDataPoints(this.dataTable); - } + "use strict"; - // draw the filter - this._redrawFilter(); - }; + var Emitter = __webpack_require__(62); + var Hammer = __webpack_require__(45); + var util = __webpack_require__(1); + var DataSet = __webpack_require__(3); + var DataView = __webpack_require__(4); + var Range = __webpack_require__(17); + var Core = __webpack_require__(46); + var TimeAxis = __webpack_require__(35); + var CurrentTime = __webpack_require__(26); + var CustomTime = __webpack_require__(27); + var LineGraph = __webpack_require__(34); /** - * Replace the dataset of the Graph3d - * @param {Array | DataSet | DataView} data + * 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 */ - Graph3d.prototype.setData = function (data) { - this._readData(data); - this.redraw(); - - // start animation when option is true - if (this.animationAutoStart && this.dataFilter) { - this.animationStart(); + function Graph2d(container, items, groups, options) { + // if the third element is options, the forth is groups (optionally); + if (!(Array.isArray(groups) || groups instanceof DataSet) && groups instanceof Object) { + var forthArgument = options; + options = groups; + groups = forthArgument; } - }; - /** - * Update the options. Options will be merged with current options - * @param {Object} options - */ - Graph3d.prototype.setOptions = function (options) { - var cameraPosition = undefined; - - this.animationStop(); + var me = this; + this.defaultOptions = { + start: null, + end: null, - if (options !== undefined) { - // retrieve parameter values - if (options.width !== undefined) this.width = options.width; - if (options.height !== undefined) this.height = options.height; + autoResize: true, - if (options.xCenter !== undefined) this.defaultXCenter = options.xCenter; - if (options.yCenter !== undefined) this.defaultYCenter = options.yCenter; + orientation: "bottom", + width: null, + height: null, + maxHeight: null, + minHeight: null + }; + this.options = util.deepExtend({}, this.defaultOptions); - 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; + // Create the DOM, props, and emitter + this._create(container); - if (options.xValueLabel !== undefined) this.xValueLabel = options.xValueLabel; - if (options.yValueLabel !== undefined) this.yValueLabel = options.yValueLabel; - if (options.zValueLabel !== undefined) this.zValueLabel = options.zValueLabel; + // all components listed here will be repainted automatically + this.components = []; - if (options.style !== undefined) { - var styleNumber = this._getStyleNumber(options.style); - if (styleNumber !== -1) { - this.style = styleNumber; - } + this.body = { + dom: this.dom, + domProps: this.props, + emitter: { + on: this.on.bind(this), + off: this.off.bind(this), + emit: this.emit.bind(this) + }, + hiddenDates: [], + util: { + 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) } - 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; + // range + this.range = new Range(this.body); + this.components.push(this.range); + this.body.range = this.range; - if (options.xBarWidth !== undefined) this.defaultXBarWidth = options.xBarWidth; - if (options.yBarWidth !== undefined) this.defaultYBarWidth = options.yBarWidth; + // time axis + this.timeAxis = new TimeAxis(this.body); + this.components.push(this.timeAxis); + //this.body.util.snap = this.timeAxis.snap.bind(this.timeAxis); - 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; + // current time bar + this.currentTime = new CurrentTime(this.body); + this.components.push(this.currentTime); - if (options.cameraPosition !== undefined) cameraPosition = options.cameraPosition; + // 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 (cameraPosition !== undefined) { - this.camera.setArmRotation(cameraPosition.horizontal, cameraPosition.vertical); - this.camera.setArmLength(cameraPosition.distance); - } else { - this.camera.setArmRotation(1, 0.5); - this.camera.setArmLength(1.7); - } - } + // item set + this.linegraph = new LineGraph(this.body); + this.components.push(this.linegraph); - this._setBackgroundColor(options && options.backgroundColor); + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet - this.setSize(this.width, this.height); + // apply options + if (options) { + this.setOptions(options); + } - // re-load the data - if (this.dataTable) { - this.setData(this.dataTable); + // IMPORTANT: THIS HAPPENS BEFORE SET ITEMS! + if (groups) { + this.setGroups(groups); } - // start animation when option is true - if (this.animationAutoStart && this.dataFilter) { - this.animationStart(); + // create itemset + if (items) { + this.setItems(items); + } else { + this._redraw(); } - }; + } + + // Extend the functionality from Core + Graph2d.prototype = new Core(); /** - * Redraw the Graph. + * Set items + * @param {vis.DataSet | Array | google.visualization.DataTable | null} items */ - Graph3d.prototype.redraw = function () { - if (this.dataPoints === undefined) { - throw "Error: graph data not initialized"; - } - - this._resizeCanvas(); - this._resizeCenter(); - this._redrawSlider(); - this._redrawClear(); - this._redrawAxis(); + Graph2d.prototype.setItems = function (items) { + var initialLoad = this.itemsData == null; - 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(); + // convert to type DataSet when needed + var newDataSet; + if (!items) { + newDataSet = null; + } else if (items instanceof DataSet || items instanceof DataView) { + newDataSet = items; } else { - // style is DOT, DOTLINE, DOTCOLOR, DOTSIZE - this._redrawDataDot(); + // turn an array into a dataset + newDataSet = new DataSet(items, { + type: { + start: "Date", + end: "Date" + } + }); } - this._redrawInfo(); - this._redrawLegend(); + // set items + this.itemsData = newDataSet; + this.linegraph && this.linegraph.setItems(newDataSet); + + if (initialLoad) { + if (this.options.start != undefined || this.options.end != undefined) { + var start = this.options.start != undefined ? this.options.start : null; + var end = this.options.end != undefined ? this.options.end : null; + + this.setWindow(start, end, { animate: false }); + } else { + this.fit({ animate: false }); + } + } }; /** - * Clear the canvas before redrawing + * Set groups + * @param {vis.DataSet | Array | google.visualization.DataTable} groups */ - Graph3d.prototype._redrawClear = function () { - var canvas = this.frame.canvas; - var ctx = canvas.getContext("2d"); + 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); + } - ctx.clearRect(0, 0, canvas.width, canvas.height); + this.groupsData = newDataSet; + this.linegraph.setGroups(newDataSet); }; + /** + * Returns an object containing an SVG element with the icon of the group (size determined by iconWidth and iconHeight), the label of the group (content) and the yAxisOrientation of the group (left or right). + * @param groupId + * @param width + * @param height + */ + Graph2d.prototype.getLegend = function (groupId, width, height) { + if (width === undefined) { + width = 15; + } + if (height === undefined) { + height = 15; + } + if (this.linegraph.groups[groupId] !== undefined) { + return this.linegraph.groups[groupId].getLegend(width, height); + } else { + return "cannot find group:" + groupId; + } + }; /** - * Redraw the legend showing the colors + * This checks if the visible option of the supplied group (by ID) is true or false. + * @param groupId + * @returns {*} */ - Graph3d.prototype._redrawLegend = function () { - var y; + Graph2d.prototype.isGroupVisible = function (groupId) { + if (this.linegraph.groups[groupId] !== undefined) { + return this.linegraph.groups[groupId].visible && (this.linegraph.options.groups.visibility[groupId] === undefined || this.linegraph.options.groups.visibility[groupId] == true); + } else { + return false; + } + }; - if (this.style === Graph3d.STYLE.DOTCOLOR || this.style === Graph3d.STYLE.DOTSIZE) { - 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 - } + /** + * 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 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; + // 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; + } + } + } } - var canvas = this.frame.canvas; - var ctx = canvas.getContext("2d"); - ctx.lineWidth = 1; - ctx.font = "14px arial"; // TODO: put in options - - if (this.style === Graph3d.STYLE.DOTCOLOR) { - // draw the color bar - var ymin = 0; - var ymax = height; // Todo: make height customizable - for (y = ymin; y < ymax; y++) { - var f = (y - ymin) / (ymax - ymin); + return { + min: min != null ? new Date(min) : null, + max: max != null ? new Date(max) : null + }; + }; - //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); - ctx.strokeStyle = color; - ctx.beginPath(); - ctx.moveTo(left, top + y); - ctx.lineTo(right, top + y); - ctx.stroke(); - } - ctx.strokeStyle = this.colorAxis; - ctx.strokeRect(left, top, widthMax, height); - } + module.exports = Graph2d; - 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(); - } +/***/ }, +/* 15 */ +/***/ function(module, exports, __webpack_require__) { - 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; + "use strict"; - ctx.beginPath(); - ctx.moveTo(left - gridLineLen, y); - ctx.lineTo(left, y); - ctx.stroke(); + /** + * Created by Alex on 10/3/2014. + */ + var moment = __webpack_require__(44); - ctx.textAlign = "right"; - ctx.textBaseline = "middle"; - ctx.fillStyle = this.colorAxis; - ctx.fillText(step.getCurrent(), left - 2 * gridLineLen, y); - step.next(); + /** + * used in Core to convert the options into a volatile variable + * + * @param Core + */ + exports.convertHiddenOptions = function (body, hiddenDates) { + body.hiddenDates = []; + if (hiddenDates) { + if (Array.isArray(hiddenDates) == true) { + for (var i = 0; i < hiddenDates.length; i++) { + if (hiddenDates[i].repeat === undefined) { + var dateItem = {}; + dateItem.start = moment(hiddenDates[i].start).toDate().valueOf(); + dateItem.end = moment(hiddenDates[i].end).toDate().valueOf(); + body.hiddenDates.push(dateItem); + } + } + body.hiddenDates.sort(function (a, b) { + return a.start - b.start; + }); // sort by start time } - - ctx.textAlign = "right"; - ctx.textBaseline = "top"; - var label = this.legendLabel; - ctx.fillText(label, right, bottom + this.margin); } }; + /** - * Redraw the filter + * create new entrees for the repeating hidden dates + * @param body + * @param hiddenDates */ - Graph3d.prototype._redrawFilter = function () { - this.frame.filter.innerHTML = ""; + exports.updateHiddenDates = function (body, hiddenDates) { + if (hiddenDates && body.domProps.centerContainer.width !== undefined) { + exports.convertHiddenOptions(body, hiddenDates); - if (this.dataFilter) { - var options = { - visible: this.showAnimationControls - }; - var slider = new Slider(this.frame.filter, options); - this.frame.filter.slider = slider; + var start = moment(body.range.start); + var end = moment(body.range.end); - // TODO: css here is not nice here... - this.frame.filter.style.padding = "10px"; - //this.frame.filter.style.backgroundColor = '#EFEFEF'; + var totalRange = body.range.end - body.range.start; + var pixelTime = totalRange / body.domProps.centerContainer.width; - slider.setValues(this.dataFilter.values); - slider.setPlayInterval(this.animationInterval); + for (var i = 0; i < hiddenDates.length; i++) { + if (hiddenDates[i].repeat !== undefined) { + var startDate = moment(hiddenDates[i].start); + var endDate = moment(hiddenDates[i].end); - // create an event handler - var me = this; - var onchange = function () { - var index = slider.getIndex(); + if (startDate._d == "Invalid Date") { + throw new Error("Supplied start date is not valid: " + hiddenDates[i].start); + } + if (endDate._d == "Invalid Date") { + throw new Error("Supplied end date is not valid: " + hiddenDates[i].end); + } - me.dataFilter.selectValue(index); - me.dataPoints = me.dataFilter._getDataPoints(); + var duration = endDate - startDate; + if (duration >= 4 * pixelTime) { + var offset = 0; + var runUntil = end.clone(); + switch (hiddenDates[i].repeat) { + case "daily": + // case of time + if (startDate.day() != endDate.day()) { + offset = 1; + } + startDate.dayOfYear(start.dayOfYear()); + startDate.year(start.year()); + startDate.subtract(7, "days"); - me.redraw(); - }; - slider.setOnChangeCallback(onchange); - } else { - this.frame.filter.slider = undefined; + endDate.dayOfYear(start.dayOfYear()); + endDate.year(start.year()); + endDate.subtract(7 - offset, "days"); + + runUntil.add(1, "weeks"); + break; + case "weekly": + var dayOffset = endDate.diff(startDate, "days"); + var day = startDate.day(); + + // set the start date to the range.start + startDate.date(start.date()); + startDate.month(start.month()); + startDate.year(start.year()); + endDate = startDate.clone(); + + // force + startDate.day(day); + endDate.day(day); + endDate.add(dayOffset, "days"); + + startDate.subtract(1, "weeks"); + endDate.subtract(1, "weeks"); + + runUntil.add(1, "weeks"); + break; + case "monthly": + if (startDate.month() != endDate.month()) { + offset = 1; + } + startDate.month(start.month()); + startDate.year(start.year()); + startDate.subtract(1, "months"); + + endDate.month(start.month()); + endDate.year(start.year()); + endDate.subtract(1, "months"); + endDate.add(offset, "months"); + + runUntil.add(1, "months"); + break; + case "yearly": + if (startDate.year() != endDate.year()) { + offset = 1; + } + startDate.year(start.year()); + startDate.subtract(1, "years"); + endDate.year(start.year()); + endDate.subtract(1, "years"); + endDate.add(offset, "years"); + + runUntil.add(1, "years"); + break; + default: + console.log("Wrong repeat format, allowed are: daily, weekly, monthly, yearly. Given:", hiddenDates[i].repeat); + return; + } + while (startDate < runUntil) { + body.hiddenDates.push({ start: startDate.valueOf(), end: endDate.valueOf() }); + switch (hiddenDates[i].repeat) { + case "daily": + startDate.add(1, "days"); + endDate.add(1, "days"); + break; + case "weekly": + startDate.add(1, "weeks"); + endDate.add(1, "weeks"); + break; + case "monthly": + startDate.add(1, "months"); + endDate.add(1, "months"); + break; + case "yearly": + startDate.add(1, "y"); + endDate.add(1, "y"); + break; + default: + console.log("Wrong repeat format, allowed are: daily, weekly, monthly, yearly. Given:", hiddenDates[i].repeat); + return; + } + } + body.hiddenDates.push({ start: startDate.valueOf(), end: endDate.valueOf() }); + } + } + } + // remove duplicates, merge where possible + exports.removeDuplicates(body); + // ensure the new positions are not on hidden dates + var startHidden = exports.isHidden(body.range.start, body.hiddenDates); + var endHidden = exports.isHidden(body.range.end, body.hiddenDates); + var rangeStart = body.range.start; + var rangeEnd = body.range.end; + if (startHidden.hidden == true) { + rangeStart = body.range.startToFront == true ? startHidden.startDate - 1 : startHidden.endDate + 1; + } + if (endHidden.hidden == true) { + rangeEnd = body.range.endToFront == true ? endHidden.startDate - 1 : endHidden.endDate + 1; + } + if (startHidden.hidden == true || endHidden.hidden == true) { + body.range._applyRange(rangeStart, rangeEnd); + } } }; + /** - * Redraw the slider + * remove duplicates from the hidden dates list. Duplicates are evil. They mess everything up. + * Scales with N^2 + * @param body */ - Graph3d.prototype._redrawSlider = function () { - if (this.frame.filter.slider !== undefined) { - this.frame.filter.slider.redraw(); + exports.removeDuplicates = function (body) { + var hiddenDates = body.hiddenDates; + var safeDates = []; + for (var i = 0; i < hiddenDates.length; i++) { + for (var j = 0; j < hiddenDates.length; j++) { + if (i != j && hiddenDates[j].remove != true && hiddenDates[i].remove != true) { + // j inside i + if (hiddenDates[j].start >= hiddenDates[i].start && hiddenDates[j].end <= hiddenDates[i].end) { + hiddenDates[j].remove = true; + } + // j start inside i + else if (hiddenDates[j].start >= hiddenDates[i].start && hiddenDates[j].start <= hiddenDates[i].end) { + hiddenDates[i].end = hiddenDates[j].end; + hiddenDates[j].remove = true; + } + // j end inside i + else if (hiddenDates[j].end >= hiddenDates[i].start && hiddenDates[j].end <= hiddenDates[i].end) { + hiddenDates[i].start = hiddenDates[j].start; + hiddenDates[j].remove = true; + } + } + } + } + + for (var i = 0; i < hiddenDates.length; i++) { + if (hiddenDates[i].remove !== true) { + safeDates.push(hiddenDates[i]); + } } + + body.hiddenDates = safeDates; + body.hiddenDates.sort(function (a, b) { + return a.start - b.start; + }); // sort by start time }; + exports.printDates = function (dates) { + for (var i = 0; i < dates.length; i++) { + console.log(i, new Date(dates[i].start), new Date(dates[i].end), dates[i].start, dates[i].end, dates[i].remove); + } + }; /** - * Redraw common information + * Used in TimeStep to avoid the hidden times. + * @param timeStep + * @param previousTime */ - Graph3d.prototype._redrawInfo = function () { - if (this.dataFilter) { - var canvas = this.frame.canvas; - var ctx = canvas.getContext("2d"); + exports.stepOverHiddenDates = function (timeStep, previousTime) { + var stepInHidden = false; + var currentValue = timeStep.current.valueOf(); + for (var i = 0; i < timeStep.hiddenDates.length; i++) { + var startDate = timeStep.hiddenDates[i].start; + var endDate = timeStep.hiddenDates[i].end; + if (currentValue >= startDate && currentValue < endDate) { + stepInHidden = true; + break; + } + } - ctx.font = "14px arial"; // TODO: put in options - ctx.lineStyle = "gray"; - ctx.fillStyle = "gray"; - ctx.textAlign = "left"; - ctx.textBaseline = "top"; + if (stepInHidden == true && currentValue < timeStep._end.valueOf() && currentValue != previousTime) { + var prevValue = moment(previousTime); + var newValue = moment(endDate); + //check if the next step should be major + if (prevValue.year() != newValue.year()) { + timeStep.switchedYear = true; + } else if (prevValue.month() != newValue.month()) { + timeStep.switchedMonth = true; + } else if (prevValue.dayOfYear() != newValue.dayOfYear()) { + timeStep.switchedDay = true; + } - var x = this.margin; - var y = this.margin; - ctx.fillText(this.dataFilter.getLabel() + ": " + this.dataFilter.getSelectedValue(), x, y); + timeStep.current = newValue.toDate(); } }; + ///** + // * Used in TimeStep to avoid the hidden times. + // * @param timeStep + // * @param previousTime + // */ + //exports.checkFirstStep = function(timeStep) { + // var stepInHidden = false; + // var currentValue = timeStep.current.valueOf(); + // for (var i = 0; i < timeStep.hiddenDates.length; i++) { + // var startDate = timeStep.hiddenDates[i].start; + // var endDate = timeStep.hiddenDates[i].end; + // if (currentValue >= startDate && currentValue < endDate) { + // stepInHidden = true; + // break; + // } + // } + // + // if (stepInHidden == true && currentValue <= timeStep._end.valueOf()) { + // var newValue = moment(endDate); + // timeStep.current = newValue.toDate(); + // } + //}; + /** - * Redraw the axis + * replaces the Core toScreen methods + * @param Core + * @param time + * @param width + * @returns {number} */ - 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; - - // TODO: get the actual rendered style of the containerElement - //ctx.font = this.containerElement.style.font; - ctx.font = 24 / this.camera.getArmLength() + "px arial"; - - // 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; + exports.toScreen = function (Core, time, width) { + if (Core.body.hiddenDates.length == 0) { + var conversion = Core.range.conversion(width); + return (time.valueOf() - conversion.offset) * conversion.scale; + } else { + var hidden = exports.isHidden(time, Core.body.hiddenDates); + if (hidden.hidden == true) { + time = hidden.startDate; + } - // 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(); + var duration = exports.getHiddenDurationBetween(Core.body.hiddenDates, Core.range.start, Core.range.end); + time = exports.correctTimeForHidden(Core.body.hiddenDates, Core.range, time); - 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(); + var conversion = Core.range.conversion(width, duration); + return (time.valueOf() - conversion.offset) * conversion.scale; + } + }; - 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(); - } - 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(" " + this.xValueLabel(step.getCurrent()) + " ", text.x, text.y); + /** + * Replaces the core toTime methods + * @param body + * @param range + * @param x + * @param width + * @returns {Date} + */ + exports.toTime = function (Core, x, width) { + if (Core.body.hiddenDates.length == 0) { + var conversion = Core.range.conversion(width); + return new Date(x / conversion.scale + conversion.offset); + } else { + var hiddenDuration = exports.getHiddenDurationBetween(Core.body.hiddenDates, Core.range.start, Core.range.end); + var totalDuration = Core.range.end - Core.range.start - hiddenDuration; + var partialDuration = totalDuration * x / width; + var accumulatedHiddenDuration = exports.getAccumulatedHiddenDuration(Core.body.hiddenDates, Core.range, partialDuration); - step.next(); + var newTime = new Date(accumulatedHiddenDuration + partialDuration + Core.range.start); + return newTime; } + }; - // 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(); - 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(); + /** + * Support function + * + * @param hiddenDates + * @param range + * @returns {number} + */ + exports.getHiddenDurationBetween = function (hiddenDates, start, end) { + var duration = 0; + for (var i = 0; i < hiddenDates.length; i++) { + var startDate = hiddenDates[i].start; + var endDate = hiddenDates[i].end; + // if time after the cutout, and the + if (startDate >= start && endDate < end) { + duration += endDate - startDate; } + } + return duration; + }; - 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(" " + this.yValueLabel(step.getCurrent()) + " ", text.x, text.y); - step.next(); - } + /** + * Support function + * @param hiddenDates + * @param range + * @param time + * @returns {{duration: number, time: *, offset: number}} + */ + exports.correctTimeForHidden = function (hiddenDates, range, time) { + time = moment(time).toDate().valueOf(); + time -= exports.getHiddenDurationBefore(hiddenDates, range, time); + return time; + }; - // 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(); + exports.getHiddenDurationBefore = function (hiddenDates, range, time) { + var timeOffset = 0; + time = moment(time).toDate().valueOf(); - ctx.textAlign = "right"; - ctx.textBaseline = "middle"; - ctx.fillStyle = this.colorAxis; - ctx.fillText(this.zValueLabel(step.getCurrent()) + " ", from.x - 5, from.y); + for (var i = 0; i < hiddenDates.length; i++) { + var startDate = hiddenDates[i].start; + var endDate = hiddenDates[i].end; + // if time after the cutout, and the + if (startDate >= range.start && endDate < range.end) { + if (time >= endDate) { + timeOffset += endDate - startDate; + } + } + } + return timeOffset; + }; - step.next(); + /** + * sum the duration from start to finish, including the hidden duration, + * until the required amount has been reached, return the accumulated hidden duration + * @param hiddenDates + * @param range + * @param time + * @returns {{duration: number, time: *, offset: number}} + */ + exports.getAccumulatedHiddenDuration = function (hiddenDates, range, requiredDuration) { + var hiddenDuration = 0; + var duration = 0; + var previousPoint = range.start; + //exports.printDates(hiddenDates) + for (var i = 0; i < hiddenDates.length; i++) { + var startDate = hiddenDates[i].start; + var endDate = hiddenDates[i].end; + // if time after the cutout, and the + if (startDate >= range.start && endDate < range.end) { + duration += startDate - previousPoint; + previousPoint = endDate; + if (duration >= requiredDuration) { + break; + } else { + hiddenDuration += endDate - startDate; + } + } } - 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(); + return hiddenDuration; + }; - // 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 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"; + /** + * used to step over to either side of a hidden block. Correction is disabled on tablets, might be set to true + * @param hiddenDates + * @param time + * @param direction + * @param correctionEnabled + * @returns {*} + */ + exports.snapAwayFromHidden = function (hiddenDates, time, direction, correctionEnabled) { + var isHidden = exports.isHidden(time, hiddenDates); + if (isHidden.hidden == true) { + if (direction < 0) { + if (correctionEnabled == true) { + return isHidden.startDate - (isHidden.endDate - time) - 1; + } else { + return isHidden.startDate - 1; + } } else { - ctx.textAlign = "left"; - ctx.textBaseline = "middle"; + if (correctionEnabled == true) { + return isHidden.endDate + (time - isHidden.startDate) + 1; + } else { + return isHidden.endDate + 1; + } } - ctx.fillStyle = this.colorAxis; - ctx.fillText(yLabel, text.x, text.y); + } else { + return time; } + }; - // 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); + + /** + * Check if a time is hidden + * + * @param time + * @param hiddenDates + * @returns {{hidden: boolean, startDate: Window.start, endDate: *}} + */ + exports.isHidden = function (time, hiddenDates) { + for (var i = 0; i < hiddenDates.length; i++) { + var startDate = hiddenDates[i].start; + var endDate = hiddenDates[i].end; + + if (time >= startDate && time < endDate) { + // if the start is entering a hidden zone + return { hidden: true, startDate: startDate, endDate: endDate }; + break; + } } + return { hidden: false, startDate: startDate, endDate: endDate }; }; +/***/ }, +/* 16 */ +/***/ function(module, exports, __webpack_require__) { + + "use strict"; + /** - * 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 + * @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._hsv2rgb = function (H, S, V) { - var R, G, B, C, Hi, X; + function DataStep(start, end, minimumStep, containerHeight, customRange, alignZeros) { + // variables + this.current = 0; - C = V * S; - Hi = Math.floor(H / 60); // hi = 0,1,2,3,4,5 - X = C * (1 - Math.abs(H / 60 % 2 - 1)); + this.autoScale = true; + this.stepIndex = 0; + this.step = 1; + this.scale = 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; + this.marginStart; + this.marginEnd; + this.deadSpace = 0; - default: - R = 0;G = 0;B = 0;break; - } + this.majorSteps = [1, 2, 5, 10]; + this.minorSteps = [0.25, 0.5, 1, 2]; + + this.alignZeros = alignZeros; + + this.setRange(start, end, minimumStep, containerHeight, customRange); + } - return "RGB(" + parseInt(R * 255) + "," + parseInt(G * 255) + "," + parseInt(B * 255) + ")"; - }; /** - * Draw all datapoints as a grid - * This function can be used when the style is 'grid' + * 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._redrawDataGrid = function () { - var canvas = this.frame.canvas, - ctx = canvas.getContext("2d"), - point, - right, - top, - cross, - i, - topSideVisible, - fillStyle, - strokeStyle, - lineWidth, - h, - s, - v, - zAvg; + DataStep.prototype.setRange = function (start, end, minimumStep, containerHeight, customRange) { + this._start = customRange.min === undefined ? start : customRange.min; + this._end = customRange.max === undefined ? end : customRange.max; + if (this._start == this._end) { + this._start -= 0.75; + this._end += 1; + } - if (this.dataPoints === undefined || this.dataPoints.length <= 0) return; // TODO: throw exception? + if (this.autoScale == true) { + this.setMinimumStep(minimumStep, containerHeight); + } - // 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); + this.setFirst(customRange); + }; - this.dataPoints[i].trans = trans; - this.dataPoints[i].screen = screen; + /** + * Automatically determine the scale that bests fits the provided minimum step + * @param {Number} [minimumStep] The minimum step size in milliseconds + */ + DataStep.prototype.setMinimumStep = function (minimumStep, containerHeight) { + // round to floor + var size = this._end - this._start; + var safeSize = size * 1.2; + var minimumStepValue = minimumStep * (safeSize / containerHeight); + var orderOfMagnitude = Math.round(Math.log(safeSize) / Math.LN10); - // 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; + var minorStepIdx = -1; + var magnitudefactor = Math.pow(10, orderOfMagnitude); + + var start = 0; + if (orderOfMagnitude < 0) { + start = orderOfMagnitude; } - // sort the points on depth of their (x,y) position (not on z) - var sortDepth = function (a, b) { - return b.dist - a.dist; - }; - this.dataPoints.sort(sortDepth); - - if (this.style === Graph3d.STYLE.SURFACE) { - for (i = 0; i < this.dataPoints.length; i++) { - point = this.dataPoints[i]; - right = this.dataPoints[i].pointRight; - top = this.dataPoints[i].pointTop; - cross = this.dataPoints[i].pointCross; + var solutionFound = false; + for (var i = start; Math.abs(i) <= Math.abs(orderOfMagnitude); i++) { + magnitudefactor = Math.pow(10, i); + for (var j = 0; j < this.minorSteps.length; j++) { + var stepSize = magnitudefactor * this.minorSteps[j]; + if (stepSize >= minimumStepValue) { + solutionFound = true; + minorStepIdx = j; + break; + } + } + if (solutionFound == true) { + break; + } + } + this.stepIndex = minorStepIdx; + this.scale = magnitudefactor; + this.step = magnitudefactor * this.minorSteps[minorStepIdx]; + }; - if (point !== undefined && right !== undefined && top !== undefined && cross !== undefined) { - if (this.showGrayBottom || this.showShadow) { - // calculate the cross product of the two vectors from center - // to left and right, in order to know whether we are looking at the - // bottom or at the top side. We can also use the cross product - // for calculating light intensity - var aDiff = Point3d.subtract(cross.trans, point.trans); - var bDiff = Point3d.subtract(top.trans, right.trans); - var crossproduct = Point3d.crossProduct(aDiff, bDiff); - var len = crossproduct.length(); - // FIXME: there is a bug with determining the surface side (shadow or colored) - topSideVisible = crossproduct.z > 0; - } else { - topSideVisible = true; - } - if (topSideVisible) { - // calculate Hue from the current value. At zMin the hue is 240, at zMax the hue is 0 - zAvg = (point.point.z + right.point.z + top.point.z + cross.point.z) / 4; - h = (1 - (zAvg - this.zMin) * this.scale.z / this.verticalRatio) * 240; - s = 1; // saturation + /** + * Round the current date to the first minor date value + * This must be executed once when the current date is set to start Date + */ + DataStep.prototype.setFirst = function (customRange) { + if (customRange === undefined) { + customRange = {}; + } - if (this.showShadow) { - v = Math.min(1 + crossproduct.x / len / 2, 1); // value. TODO: scale - fillStyle = this._hsv2rgb(h, s, v); - strokeStyle = fillStyle; - } else { - v = 1; - fillStyle = this._hsv2rgb(h, s, v); - strokeStyle = this.colorAxis; - } - } else { - fillStyle = "gray"; - strokeStyle = this.colorAxis; - } - lineWidth = 0.5; + var 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; - 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; + this.marginEnd = customRange.max === undefined ? this.roundToMinor(niceEnd) : customRange.max; + this.marginStart = customRange.min === undefined ? this.roundToMinor(niceStart) : customRange.min; - if (point !== undefined) { - if (this.showPerspective) { - lineWidth = 2 / -point.trans.z; - } else { - lineWidth = 2 * -(this.eye.z / this.camera.getArmLength()); - } - } + // if we need to align the zero's we need to make sure that there is a zero to use. + if (this.alignZeros == true && (this.marginEnd - this.marginStart) % this.step != 0) { + this.marginEnd += this.marginEnd % this.step; + } - if (point !== undefined && right !== undefined) { - // calculate Hue from the current value. At zMin the hue is 240, at zMax the hue is 0 - zAvg = (point.point.z + right.point.z) / 2; - h = (1 - (zAvg - this.zMin) * this.scale.z / this.verticalRatio) * 240; + this.deadSpace = this.roundToMinor(niceEnd) - niceEnd + this.roundToMinor(niceStart) - niceStart; + this.marginRange = this.marginEnd - this.marginStart; - 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(); - } - 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; + this.current = this.marginEnd; + }; - 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(); - } - } + 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; } }; /** - * Draw all datapoints as dots. - * This function can be used when the style is 'dot' or 'dot-line' + * Check if the there is a next step + * @return {boolean} true if the current date has not passed the end date */ - Graph3d.prototype._redrawDataDot = function () { - var canvas = this.frame.canvas; - var ctx = canvas.getContext("2d"); - var i; - - if (this.dataPoints === undefined || this.dataPoints.length <= 0) return; // TODO: throw exception? + DataStep.prototype.hasNext = function () { + return this.current >= this.marginStart; + }; - // 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; + /** + * Do the next step + */ + DataStep.prototype.next = function () { + var prev = this.current; + this.current -= this.step; - // 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; + // safety mechanism: if current time is still unchanged, move to the end + if (this.current == prev) { + this.current = this._end; } + }; - // order the translated points by depth - var sortDepth = function (a, b) { - return b.dist - a.dist; - }; - this.dataPoints.sort(sortDepth); + /** + * Do the next step + */ + DataStep.prototype.previous = function () { + this.current += this.step; + this.marginEnd += this.step; + this.marginRange = this.marginEnd - this.marginStart; + }; - // draw the datapoints as colored circles - var dotSize = this.frame.clientWidth * 0.02; // px - for (i = 0; i < this.dataPoints.length; i++) { - var point = this.dataPoints[i]; - if (this.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(); - } - // 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; - } + /** + * Get the current datetime + * @return {String} current The current date + */ + DataStep.prototype.getCurrent = function (decimals) { + // prevent round-off errors when close to zero + var current = Math.abs(this.current) < this.step / 2 ? 0 : this.current; + var toPrecision = "" + Number(current).toPrecision(5); - var radius; - if (this.showPerspective) { - radius = size / -point.trans.z; - } else { - radius = size * -(this.eye.z / this.camera.getArmLength()); + // If decimals is specified, then limit or extend the string as required + if (decimals !== undefined && !isNaN(Number(decimals))) { + // If string includes exponent, then we need to add it to the end + var exp = ""; + var index = toPrecision.indexOf("e"); + if (index != -1) { + // Get the exponent + exp = toPrecision.slice(index); + // Remove the exponent in case we need to zero-extend + toPrecision = toPrecision.slice(0, index); } - if (radius < 0) { - radius = 0; + index = Math.max(toPrecision.indexOf(","), toPrecision.indexOf(".")); + if (index === -1) { + // No decimal found - if we want decimals, then we need to add it + if (decimals !== 0) { + toPrecision += "."; + } + // Calculate how long the string should be + index = toPrecision.length + decimals; + } else if (decimals !== 0) { + // Calculate how long the string should be - accounting for the decimal place + index += decimals + 1; } - - 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; + if (index > toPrecision.length) { + // We need to add zeros! + for (var cnt = index - toPrecision.length; cnt > 0; cnt--) { + toPrecision += "0"; + } } 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); + // we need to remove characters + toPrecision = toPrecision.slice(0, index); + } + // Add the exponent if there is one + toPrecision += exp; + } else { + if (toPrecision.indexOf(",") != -1 || toPrecision.indexOf(".") != -1) { + // If no decimal is specified, and there are decimal places, remove trailing zeros + 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; + } + } } - - // draw the circle - ctx.lineWidth = 1; - 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(); } + + return toPrecision; }; /** - * Draw all datapoints as bars. - * This function can be used when the style is 'bar', 'bar-color', or 'bar-size' + * 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._redrawDataBar = function () { - var canvas = this.frame.canvas; - var ctx = canvas.getContext("2d"); - var i, j, surface, corners; + DataStep.prototype.isMajor = function () { + return this.current % (this.scale * this.majorSteps[this.stepIndex]) == 0; + }; - if (this.dataPoints === undefined || this.dataPoints.length <= 0) return; // TODO: throw exception? + module.exports = DataStep; - // 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; +/***/ }, +/* 17 */ +/***/ 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; - } + "use strict"; - // order the translated points by depth - var sortDepth = function (a, b) { - return b.dist - a.dist; - }; - this.dataPoints.sort(sortDepth); + var util = __webpack_require__(1); + var hammerUtil = __webpack_require__(47); + var moment = __webpack_require__(44); + var Component = __webpack_require__(25); + var DateUtil = __webpack_require__(15); - // 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]; + /** + * @constructor Range + * A Range controls a numeric range with a start and end value. + * The Range adjusts the range based on mouse events or programmatic changes, + * and triggers events when the range is changing or has been changed. + * @param {{dom: Object, domProps: Object, emitter: Emitter}} body + * @param {Object} [options] See description at Range.setOptions + */ + function Range(body, options) { + var now = moment().hours(0).minutes(0).seconds(0).milliseconds(0); + this.start = now.clone().add(-3, "days").valueOf(); // Number + this.end = now.clone().add(4, "days").valueOf(); // Number - // 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); - } + this.body = body; + this.deltaDifference = 0; + this.scaleOffset = 0; + this.startToFront = false; + this.endToFront = true; - // 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); - } + // 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); - // 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) }]; + this.props = { + touch: {} + }; + this.animateTimer = null; - // 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); - }); + // drag listeners for dragging + this.body.emitter.on("panstart", this._onDragStart.bind(this)); + this.body.emitter.on("panmove", this._onDrag.bind(this)); + this.body.emitter.on("panend", this._onDragEnd.bind(this)); - // 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; + // ignore dragging when holding + this.body.emitter.on("press", this._onHold.bind(this)); - // 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}) - } + // mouse wheel for zooming + this.body.emitter.on("mousewheel", this._onMouseWheel.bind(this)); - // order the surfaces by their (translated) depth - surfaces.sort(function (a, b) { - var diff = b.dist - a.dist; - if (diff) return diff; + // pinch to zoom + this.body.emitter.on("touch", this._onTouch.bind(this)); + this.body.emitter.on("pinch", this._onPinch.bind(this)); - // if equal depth, sort the top surface last - if (a.corners === top) return 1; - if (b.corners === top) return -1; + this.setOptions(options); + } - // both are equal - return 0; - }); + Range.prototype = new Component(); - // 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(); + /** + * Set options for the range controller + * @param {Object} options Available options: + * {Number | Date | String} start Start date for the range + * {Number | Date | String} end End date for the range + * {Number} min Minimum value for start + * {Number} max Maximum value for end + * {Number} zoomMin Set a minimum value for + * (end - start). + * {Number} zoomMax Set a maximum value for + * (end - start). + * {Boolean} moveable Enable moving of the range + * by dragging. True by default + * {Boolean} zoomable Enable zooming of the range + * by pinching/scrolling. True by default + */ + Range.prototype.setOptions = function (options) { + if (options) { + // copy the options that we know + var fields = ["direction", "min", "max", "zoomMin", "zoomMax", "moveable", "zoomable", "activate", "hiddenDates"]; + util.selectiveExtend(fields, this.options, options); + + if ("start" in options || "end" in options) { + // apply a new range. both start and end are optional + this.setRange(options.start, options.end); } } }; - /** - * Draw a line through all datapoints. - * This function can be used when the style is 'line' + * Test whether direction has a valid value + * @param {String} direction 'horizontal' or 'vertical' */ - 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); + function validateDirection(direction) { + if (direction != "horizontal" && direction != "vertical") { + throw new TypeError("Unknown direction \"" + direction + "\". " + "Choose \"horizontal\" or \"vertical\"."); + } + } - this.dataPoints[i].trans = trans; - this.dataPoints[i].screen = screen; + /** + * Set a new start and end range + * @param {Date | Number | String} [start] + * @param {Date | Number | String} [end] + * @param {boolean | number} [animate=false] If true, the range is animated + * smoothly to the new window. + * If animate is a number, the + * number is taken as duration + * Default duration is 500 ms. + * @param {Boolean} [byUser=false] + * + */ + Range.prototype.setRange = function (start, end, animate, byUser) { + if (byUser !== true) { + byUser = false; } + var _start = start != undefined ? util.convert(start, "Date").valueOf() : null; + var _end = end != undefined ? util.convert(end, "Date").valueOf() : null; + this._cancelAnimation(); - // start the line - if (this.dataPoints.length > 0) { - point = this.dataPoints[0]; + if (animate) { + var me = this; + var initStart = this.start; + var initEnd = this.end; + var duration = typeof animate === "number" ? animate : 500; + var initTime = new Date().valueOf(); + var anyChanged = false; - ctx.lineWidth = 1; // TODO: make customizable - ctx.strokeStyle = "blue"; // TODO: make customizable - ctx.beginPath(); - ctx.moveTo(point.screen.x, point.screen.y); - } + var next = function () { + if (!me.props.touch.dragging) { + var now = new Date().valueOf(); + var time = now - initTime; + var done = time > duration; + var s = done || _start === null ? _start : util.easeInOutQuad(time, initStart, _start, duration); + var e = done || _end === null ? _end : util.easeInOutQuad(time, initEnd, _end, duration); - // 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); - } + changed = me._applyRange(s, e); + DateUtil.updateHiddenDates(me.body, me.options.hiddenDates); + anyChanged = anyChanged || changed; + if (changed) { + me.body.emitter.emit("rangechange", { start: new Date(me.start), end: new Date(me.end), byUser: byUser }); + } - // finish the line - if (this.dataPoints.length > 0) { - ctx.stroke(); + if (done) { + if (anyChanged) { + me.body.emitter.emit("rangechanged", { start: new Date(me.start), end: new Date(me.end), byUser: byUser }); + } + } else { + // animate with as high as possible frame rate, leave 20 ms in between + // each to prevent the browser from blocking + me.animateTimer = setTimeout(next, 20); + } + } + }; + + return next(); + } else { + var changed = this._applyRange(_start, _end); + DateUtil.updateHiddenDates(this.body, this.options.hiddenDates); + if (changed) { + var params = { start: new Date(this.start), end: new Date(this.end), byUser: byUser }; + this.body.emitter.emit("rangechange", params); + this.body.emitter.emit("rangechanged", params); + } } }; /** - * Start a moving operation inside the provided parent element - * @param {Event} event The event that occurred (required for - * retrieving the mouse position) + * Stop an animation + * @private */ - Graph3d.prototype._onMouseDown = function (event) { - event = event || window.event; - - // check if mouse is still down (may be up when focus is lost for example - // in an iframe) - if (this.leftButtonDown) { - this._onMouseUp(event); + Range.prototype._cancelAnimation = function () { + if (this.animateTimer) { + clearTimeout(this.animateTimer); + this.animateTimer = null; } - - // 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); }; - /** - * Perform moving operating. - * This function activated from within the funcion Graph.mouseDown(). - * @param {Event} event Well, eehh, the 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 + * @private */ - Graph3d.prototype._onMouseMove = function (event) { - event = event || window.event; + 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; - // calculate change in mouse position - var diffX = parseFloat(getMouseX(event)) - this.startMouseX; - var diffY = parseFloat(getMouseY(event)) - this.startMouseY; + // 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 + "\""); + } - var horizontalNew = this.startArmRotation.horizontal + diffX / 200; - var verticalNew = this.startArmRotation.vertical + diffY / 200; + // prevent start < end + if (newEnd < newStart) { + newEnd = newStart; + } - var snapAngle = 4; // degrees - var snapValue = Math.sin(snapAngle / 360 * 2 * Math.PI); + // prevent start < min + if (min !== null) { + if (newStart < min) { + diff = min - newStart; + newStart += diff; + newEnd += diff; - // 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; + // prevent end > max + if (max != null) { + if (newEnd > max) { + newEnd = max; + } + } + } } - if (Math.abs(Math.cos(horizontalNew)) < snapValue) { - horizontalNew = (Math.round(horizontalNew / Math.PI - 0.5) + 0.5) * Math.PI - 0.001; + + // 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; + } + } + } } - // snap vertically to nice angles - if (Math.abs(Math.sin(verticalNew)) < snapValue) { - verticalNew = Math.round(verticalNew / Math.PI) * Math.PI; + // 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 && newStart > this.start && newEnd < this.end) { + // 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; + } + } } - if (Math.abs(Math.cos(verticalNew)) < snapValue) { - verticalNew = (Math.round(verticalNew / Math.PI - 0.5) + 0.5) * Math.PI; + + // 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 && newStart < this.start && newEnd > this.end) { + // 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; + } + } } - this.camera.setArmRotation(horizontalNew, verticalNew); - this.redraw(); + var changed = this.start != newStart || this.end != newEnd; - // fire a cameraPositionChange event - var parameters = this.getCameraPosition(); - this.emit("cameraPositionChange", parameters); + // if the new range does NOT overlap with the old range, emit checkRangedItems to avoid not showing ranged items (ranged meaning has end time, not necessarily of type Range) + if (!(newStart >= this.start && newStart <= this.end || newEnd >= this.start && newEnd <= this.end) && !(this.start >= newStart && this.start <= newEnd || this.end >= newStart && this.end <= newEnd)) { + this.body.emitter.emit("checkRangedItems"); + } - util.preventDefault(event); + this.start = newStart; + this.end = newEnd; + return changed; }; - /** - * Stop moving operating. - * This function activated from within the funcion Graph.mouseDown(). - * @param {event} event The event + * Retrieve the current range. + * @return {Object} An object with start and end properties */ - 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); + Range.prototype.getRange = function () { + return { + start: this.start, + end: this.end + }; }; /** - * 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 + * Calculate the conversion offset and scale for current range, based on + * the provided width + * @param {Number} width + * @returns {{offset: number, scale: number}} conversion */ - Graph3d.prototype._onTooltip = function (event) { - var delay = 300; // ms - var boundingRect = this.frame.getBoundingClientRect(); - var mouseX = getMouseX(event) - boundingRect.left; - var mouseY = getMouseY(event) - boundingRect.top; - - if (!this.showTooltip) { - return; - } - - if (this.tooltipTimeout) { - clearTimeout(this.tooltipTimeout); - } + Range.prototype.conversion = function (width, totalHidden) { + return Range.conversion(this.start, this.end, width, totalHidden); + }; - // (delayed) display of a tooltip only if no mouse button is down - if (this.leftButtonDown) { - this._hideTooltip(); - return; + /** + * 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, totalHidden) { + if (totalHidden === undefined) { + totalHidden = 0; } - - 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(); - } - } + if (width != 0 && end - start != 0) { + return { + offset: start, + scale: width / (end - start - totalHidden) + }; } 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); + return { + offset: 0, + scale: 1 + }; } }; /** - * Event handler for touchstart event on mobile devices + * Start dragging horizontally or vertically + * @param {Event} event + * @private */ - Graph3d.prototype._onTouchStart = function (event) { - this.touchDown = true; + Range.prototype._onDragStart = function (event) { + this.deltaDifference = 0; + this.previousDelta = 0; + // only allow dragging when configured as movable + if (!this.options.moveable) return; - 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); + // 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._onMouseDown(event); + this.props.touch.start = this.start; + this.props.touch.end = this.end; + this.props.touch.dragging = true; + + if (this.body.dom.root) { + this.body.dom.root.style.cursor = "move"; + } + + event.preventDefault(); }; /** - * Event handler for touchmove event on mobile devices + * Perform dragging operation + * @param {Event} event + * @private */ - Graph3d.prototype._onTouchMove = function (event) { - this._onMouseMove(event); + Range.prototype._onDrag = function (event) { + // only allow dragging when configured as movable + if (!this.options.moveable) return; + + // TODO: this may be redundant in hammerjs2 + // 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 direction = this.options.direction; + validateDirection(direction); + var delta = direction == "horizontal" ? event.deltaX : event.deltaY; + delta -= this.deltaDifference; + var interval = this.props.touch.end - this.props.touch.start; + + // normalize dragging speed if cutout is in between. + var duration = DateUtil.getHiddenDurationBetween(this.body.hiddenDates, this.start, this.end); + interval -= duration; + + var width = direction == "horizontal" ? this.body.domProps.center.width : this.body.domProps.center.height; + var diffRange = -delta / width * interval; + var newStart = this.props.touch.start + diffRange; + var newEnd = this.props.touch.end + diffRange; + + // snapping times away from hidden zones + var safeStart = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newStart, this.previousDelta - delta, true); + var safeEnd = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newEnd, this.previousDelta - delta, true); + if (safeStart != newStart || safeEnd != newEnd) { + this.deltaDifference += delta; + this.props.touch.start = safeStart; + this.props.touch.end = safeEnd; + this._onDrag(event); + return; + } + + this.previousDelta = delta; + this._applyRange(newStart, newEnd); + + // fire a rangechange event + this.body.emitter.emit("rangechange", { + start: new Date(this.start), + end: new Date(this.end), + byUser: true + }); + + event.preventDefault(); }; /** - * Event handler for touchend event on mobile devices + * Stop dragging operation + * @param {event} event + * @private */ - Graph3d.prototype._onTouchEnd = function (event) { - this.touchDown = false; + Range.prototype._onDragEnd = function (event) { + // only allow dragging when configured as movable + if (!this.options.moveable) return; - util.removeEventListener(document, "touchmove", this.ontouchmove); - util.removeEventListener(document, "touchend", this.ontouchend); + // TODO: this may be redundant in hammerjs2 + // 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._onMouseUp(event); - }; + this.props.touch.dragging = false; + if (this.body.dom.root) { + this.body.dom.root.style.cursor = "auto"; + } + // fire a rangechanged event + this.body.emitter.emit("rangechanged", { + start: new Date(this.start), + end: new Date(this.end), + byUser: true + }); + }; /** - * Event handler for mouse wheel event, used to zoom the graph + * Event handler for mouse wheel event, used to zoom * Code from http://adomas.org/javascript-mouse-wheel/ - * @param {event} event The event + * @param {Event} event + * @private */ - Graph3d.prototype._onWheel = function (event) { - if (!event) /* For IE. */ - event = window.event; + 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; @@ -8229,6190 +8118,5987 @@ return /******/ (function(modules) { // webpackBootstrap // 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); + // perform the zoom action. Delta is normally 1 or -1 - this.camera.setArmLength(newLength); - this.redraw(); + // 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); + } - this._hideTooltip(); - } + // calculate center, the date to zoom around + var pointer = getPointer({ x: event.pageX, y: event.pageY }, this.body.dom.center); + var pointerDate = this._pointerToDate(pointer); - // fire a cameraPositionChange event - var parameters = this.getCameraPosition(); - this.emit("cameraPositionChange", parameters); + this.zoom(scale, pointerDate, delta); + } - // 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); + // Prevent default actions caused by mouse wheel + // (else the page and timeline both zoom and scroll) + event.preventDefault(); }; /** - * 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 + * Start of a touch gesture * @private */ - Graph3d.prototype._insideTriangle = function (point, triangle) { - var a = triangle[0], - b = triangle[1], - c = triangle[2]; - - function sign(x) { - return x > 0 ? 1 : x < 0 ? -1 : 0; - } - - var as = sign((b.x - a.x) * (point.y - a.y) - (b.y - a.y) * (point.x - a.x)); - var bs = sign((c.x - b.x) * (point.y - b.y) - (c.y - b.y) * (point.x - b.x)); - var cs = sign((a.x - c.x) * (point.y - c.y) - (a.y - c.y) * (point.x - c.x)); - - // 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); + 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; + this.scaleOffset = 0; + this.deltaDifference = 0; }; /** - * 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 + * On start of a hold gesture * @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; - } - } - } - } - - - return closestDataPoint; - }; + Range.prototype._onHold = function () { + this.props.touch.allowDragging = false; + }; /** - * Display a tooltip for given data point - * @param {Object} dataPoint + * Handle pinch event + * @param {Event} event * @private */ - Graph3d.prototype._showTooltip = function (dataPoint) { - var content, line, dot; + Range.prototype._onPinch = function (event) { + // only allow zooming when configured as zoomable and moveable + if (!(this.options.zoomable && this.options.moveable)) return; - if (!this.tooltip) { - content = document.createElement("div"); - content.style.position = "absolute"; - content.style.padding = "10px"; - content.style.border = "1px solid #4d4d4d"; - content.style.color = "#1a1a1a"; - content.style.background = "rgba(255,255,255,0.7)"; - content.style.borderRadius = "2px"; - content.style.boxShadow = "5px 5px 10px rgba(128,128,128,0.5)"; + this.props.touch.allowDragging = false; - line = document.createElement("div"); - line.style.position = "absolute"; - line.style.height = "40px"; - line.style.width = "0"; - line.style.borderLeft = "1px solid #4d4d4d"; + if (!this.props.touch.center) { + this.props.touch.center = getPointer(event.center, this.body.dom.center); + } - 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"; + var scale = 1 / (event.scale + this.scaleOffset); + var centerDate = this._pointerToDate(this.props.touch.center); - 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; - } + var hiddenDuration = DateUtil.getHiddenDurationBetween(this.body.hiddenDates, this.start, this.end); + var hiddenDurationBefore = DateUtil.getHiddenDurationBefore(this.body.hiddenDates, this, centerDate); + var hiddenDurationAfter = hiddenDuration - hiddenDurationBefore; - this._hideTooltip(); + // calculate new start and end + var newStart = centerDate - hiddenDurationBefore + (this.props.touch.start - (centerDate - hiddenDurationBefore)) * scale; + var newEnd = centerDate + hiddenDurationAfter + (this.props.touch.end - (centerDate + hiddenDurationAfter)) * scale; - 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 + "
"; - } + // snapping times away from hidden zones + this.startToFront = 1 - scale <= 0; // used to do the right auto correction with periodic hidden times + this.endToFront = scale - 1 <= 0; // used to do the right auto correction with periodic hidden times - content.style.left = "0"; - content.style.top = "0"; - this.frame.appendChild(content); - this.frame.appendChild(line); - this.frame.appendChild(dot); + var safeStart = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newStart, 1 - scale, true); + var safeEnd = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newEnd, scale - 1, true); + if (safeStart != newStart || safeEnd != newEnd) { + this.props.touch.start = safeStart; + this.props.touch.end = safeEnd; + this.scaleOffset = 1 - event.scale; + newStart = safeStart; + newEnd = safeEnd; + } - // calculate sizes - var contentWidth = content.offsetWidth; - var contentHeight = content.offsetHeight; - var lineHeight = line.offsetHeight; - var dotWidth = dot.offsetWidth; - var dotHeight = dot.offsetHeight; + this.setRange(newStart, newEnd, false, true); - var left = dataPoint.screen.x - contentWidth / 2; - left = Math.min(Math.max(left, 10), this.frame.clientWidth - 10 - contentWidth); + this.startToFront = false; // revert to default + this.endToFront = true; // revert to default - 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"; + event.preventDefault(); }; /** - * Hide the tooltip when displayed + * Helper function to calculate the center date for zooming + * @param {{x: Number, y: Number}} pointer + * @return {number} date * @private */ - Graph3d.prototype._hideTooltip = function () { - if (this.tooltip) { - this.tooltip.dataPoint = null; + Range.prototype._pointerToDate = function (pointer) { + var conversion; + var direction = this.options.direction; - 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); - } - } - } + validateDirection(direction); + + if (direction == "horizontal") { + return this.body.util.toTime(pointer.x).valueOf(); + } else { + var height = this.body.domProps.center.height; + conversion = this.conversion(height); + return pointer.y / conversion.scale + conversion.offset; } }; - /**--------------------------------------------------------------------------**/ - - /** - * Get the horizontal mouse position from a mouse event - * @param {Event} event - * @return {Number} mouse x + * Get the pointer location relative to the location of the dom element + * @param {{x: Number, y: Number}} touch + * @param {Element} element HTML DOM element + * @return {{x: Number, y: Number}} pointer + * @private */ - function getMouseX(event) { - if ("clientX" in event) { - return event.clientX; - }return event.targetTouches[0] && event.targetTouches[0].clientX || 0; + function getPointer(touch, element) { + return { + x: touch.x - util.getAbsoluteLeft(element), + y: touch.y - util.getAbsoluteTop(element) + }; } /** - * Get the vertical mouse position from a mouse event - * @param {Event} event - * @return {Number} mouse y + * 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. */ - function getMouseY(event) { - if ("clientY" in event) { - return event.clientY; - }return event.targetTouches[0] && event.targetTouches[0].clientY || 0; - } - - module.exports = Graph3d; - // use use defaults + Range.prototype.zoom = function (scale, center, delta) { + // if centerDate is not provided, take it half between start Date and end Date + if (center == null) { + center = (this.start + this.end) / 2; + } -/***/ }, -/* 11 */ -/***/ function(module, exports, __webpack_require__) { + var hiddenDuration = DateUtil.getHiddenDurationBetween(this.body.hiddenDates, this.start, this.end); + var hiddenDurationBefore = DateUtil.getHiddenDurationBefore(this.body.hiddenDates, this, center); + var hiddenDurationAfter = hiddenDuration - hiddenDurationBefore; - - /** - * Expose `Emitter`. - */ + // calculate new start and end + var newStart = center - hiddenDurationBefore + (this.start - (center - hiddenDurationBefore)) * scale; + var newEnd = center + hiddenDurationAfter + (this.end - (center + hiddenDurationAfter)) * scale; - module.exports = Emitter; + // snapping times away from hidden zones + this.startToFront = delta > 0 ? false : true; // used to do the right autocorrection with periodic hidden times + this.endToFront = -delta > 0 ? false : true; // used to do the right autocorrection with periodic hidden times + var safeStart = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newStart, delta, true); + var safeEnd = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newEnd, -delta, true); + if (safeStart != newStart || safeEnd != newEnd) { + newStart = safeStart; + newEnd = safeEnd; + } - /** - * Initialize a new `Emitter`. - * - * @api public - */ + this.setRange(newStart, newEnd, false, true); - function Emitter(obj) { - if (obj) return mixin(obj); + this.startToFront = false; // revert to default + this.endToFront = true; // revert to default }; - /** - * 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 + * Move the range with a given delta to the left or right. Start and end + * value will be adjusted. For example, try delta = 0.1 or -0.1 + * @param {Number} delta Moving amount. Positive value will move right, + * negative value will move left */ + Range.prototype.move = function (delta) { + // zoom start Date and end Date relative to the centerDate + var diff = this.end - this.start; - Emitter.prototype.on = - Emitter.prototype.addEventListener = function(event, fn){ - this._callbacks = this._callbacks || {}; - (this._callbacks[event] = this._callbacks[event] || []) - .push(fn); - return this; + // apply new values + var newStart = this.start + diff * delta; + var newEnd = this.end + diff * delta; + + // TODO: reckon with min and max range + + this.start = newStart; + this.end = newEnd; }; /** - * Adds an `event` listener that will be invoked a single - * time then automatically removed. - * - * @param {String} event - * @param {Function} fn - * @return {Emitter} - * @api public + * Move the range to a new center point + * @param {Number} moveTo New center point of the range */ + Range.prototype.moveTo = function (moveTo) { + var center = (this.start + this.end) / 2; - Emitter.prototype.once = function(event, fn){ - var self = this; - this._callbacks = this._callbacks || {}; + var diff = center - moveTo; - function on() { - self.off(event, on); - fn.apply(this, arguments); - } + // calculate new start and end + var newStart = this.start - diff; + var newEnd = this.end - diff; - on.fn = fn; - this.on(event, on); - return this; + this.setRange(newStart, newEnd); }; - /** - * 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 || {}; + module.exports = Range; - // all - if (0 == arguments.length) { - this._callbacks = {}; - return this; - } +/***/ }, +/* 18 */ +/***/ function(module, exports, __webpack_require__) { - // specific event - var callbacks = this._callbacks[event]; - if (!callbacks) return this; + "use strict"; - // remove all handlers - if (1 == arguments.length) { - delete this._callbacks[event]; - return this; - } + // Utility functions for ordering and stacking of items + var EPSILON = 0.001; // used when checking collisions, to prevent round-off errors - // 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; + /** + * 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; + }); }; /** - * Emit `event` with the given args. - * - * @param {String} event - * @param {Mixed} ... - * @return {Emitter} + * Order items by their end date. If they have no end date, their start date + * is used. + * @param {Item[]} items */ + exports.orderByEnd = function (items) { + items.sort(function (a, b) { + var aTime = "end" in a.data ? a.data.end : a.data.start, + bTime = "end" in b.data ? b.data.end : b.data.start; - Emitter.prototype.emit = function(event){ - this._callbacks = this._callbacks || {}; - var args = [].slice.call(arguments, 1) - , callbacks = this._callbacks[event]; + return aTime - bTime; + }); + }; - if (callbacks) { - callbacks = callbacks.slice(0); - for (var i = 0, len = callbacks.length; i < len; ++i) { - callbacks[i].apply(this, args); + /** + * 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; + + if (force) { + // reset top position of all items + for (i = 0, iMax = items.length; i < iMax; i++) { + items[i].top = null; } } - return this; + // calculate new, non-overlapping positions + for (i = 0, iMax = items.length; i < iMax; i++) { + var item = items[i]; + if (item.stack && 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 && other.stack && exports.collision(item, other, margin.item)) { + collidingItem = other; + break; + } + } + + if (collidingItem != null) { + // There is a collision. Reposition the items above the colliding element + item.top = collidingItem.top + collidingItem.height + margin.item.vertical; + } + } while (collidingItem); + } + } }; + /** - * Return array of callbacks for `event`. - * - * @param {String} event - * @return {Array} - * @api public + * 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, subgroups) { + var i, iMax, newTop; - Emitter.prototype.listeners = function(event){ - this._callbacks = this._callbacks || {}; - return this._callbacks[event] || []; + // reset top position of all items + for (i = 0, iMax = items.length; i < iMax; i++) { + if (items[i].data.subgroup !== undefined) { + newTop = margin.axis; + for (var subgroup in subgroups) { + if (subgroups.hasOwnProperty(subgroup)) { + if (subgroups[subgroup].visible == true && subgroups[subgroup].index < subgroups[items[i].data.subgroup].index) { + newTop += subgroups[subgroup].height + margin.item.vertical; + } + } + } + items[i].top = newTop; + } else { + items[i].top = margin.axis; + } + } }; /** - * Check if this emitter has `event` handlers. - * - * @param {String} event - * @return {Boolean} - * @api public + * 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 */ - - Emitter.prototype.hasListeners = function(event){ - return !! this.listeners(event).length; + 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; }; - /***/ }, -/* 12 */ +/* 19 */ /***/ function(module, exports, __webpack_require__) { "use strict"; - /** - * @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; - }; + var moment = __webpack_require__(44); + var DateUtil = __webpack_require__(15); + var util = __webpack_require__(1); /** - * Subtract the two provided points, returns a-b - * @param {Point3d} a - * @param {Point3d} b - * @return {Point3d} a-b + * @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 */ - 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; - }; + function TimeStep(start, end, minimumStep, hiddenDates) { + // variables + this.current = new Date(); + this._start = new Date(); + this._end = new Date(); - /** - * Add the two provided points, returns a+b - * @param {Point3d} a - * @param {Point3d} b - * @return {Point3d} a+b - */ - Point3d.add = function (a, b) { - var sum = new Point3d(); - sum.x = a.x + b.x; - sum.y = a.y + b.y; - sum.z = a.z + b.z; - return sum; - }; - - /** - * Calculate the average of two 3d points - * @param {Point3d} a - * @param {Point3d} b - * @return {Point3d} The average, (a+b)/2 - */ - Point3d.avg = function (a, b) { - return new Point3d((a.x + b.x) / 2, (a.y + b.y) / 2, (a.z + b.z) / 2); - }; - - /** - * Calculate the cross product of the two provided points, returns axb - * Documentation: http://en.wikipedia.org/wiki/Cross_product - * @param {Point3d} a - * @param {Point3d} b - * @return {Point3d} cross product axb - */ - Point3d.crossProduct = function (a, b) { - var crossproduct = new Point3d(); - - 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; - }; - - - /** - * 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); - }; - - module.exports = Point3d; - -/***/ }, -/* 13 */ -/***/ function(module, exports, __webpack_require__) { - - "use strict"; - - /** - * @prototype Point2d - * @param {Number} [x] - * @param {Number} [y] - */ - function Point2d(x, y) { - this.x = x !== undefined ? x : 0; - this.y = y !== undefined ? y : 0; - } - - module.exports = Point2d; - -/***/ }, -/* 14 */ -/***/ function(module, exports, __webpack_require__) { - - "use strict"; - - var Point3d = __webpack_require__(12); - - /** - * @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 - */ - function Camera() { - this.armLocation = new Point3d(); - this.armRotation = {}; - this.armRotation.horizontal = 0; - this.armRotation.vertical = 0; - this.armLength = 1.7; - - this.cameraLocation = new Point3d(); - this.cameraRotation = new Point3d(0.5 * Math.PI, 0, 0); - - this.calculateCameraOrientation(); - } - - /** - * 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.autoScale = true; + this.scale = "day"; + this.step = 1; - this.calculateCameraOrientation(); - }; + // initialize the range + this.setRange(start, end, minimumStep); - /** - * Set the rotation of the camera arm - * @param {Number} horizontal The horizontal rotation, between 0 and 2*PI. - * Optional, can be left undefined. - * @param {Number} vertical The vertical rotation, between 0 and 0.5*PI - * if vertical=0.5*PI, the graph is shown from the - * top. Optional, can be left undefined. - */ - Camera.prototype.setArmRotation = function (horizontal, vertical) { - if (horizontal !== undefined) { - this.armRotation.horizontal = horizontal; + // hidden Dates options + this.switchedDay = false; + this.switchedMonth = false; + this.switchedYear = false; + this.hiddenDates = hiddenDates; + if (hiddenDates === undefined) { + this.hiddenDates = []; } - 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; - } + this.format = TimeStep.FORMAT; // default formatting + } - if (horizontal !== undefined || vertical !== undefined) { - this.calculateCameraOrientation(); + // Time formatting + TimeStep.FORMAT = { + minorLabels: { + millisecond: "SSS", + second: "s", + minute: "HH:mm", + hour: "HH:mm", + weekday: "ddd D", + day: "D", + month: "MMM", + year: "YYYY" + }, + majorLabels: { + millisecond: "HH:mm:ss", + second: "D MMMM HH:mm", + minute: "ddd D MMMM", + hour: "ddd D MMMM", + weekday: "MMMM YYYY", + day: "MMMM YYYY", + month: "YYYY", + year: "" } }; /** - * Retrieve the current arm rotation - * @return {object} An object with parameters horizontal and vertical + * Set custom formatting for the minor an major labels of the TimeStep. + * Both `minorLabels` and `majorLabels` are an Object with properties: + * 'millisecond, 'second, 'minute', 'hour', 'weekday, 'day, 'month, 'year'. + * @param {{minorLabels: Object, majorLabels: Object}} format */ - Camera.prototype.getArmRotation = function () { - var rot = {}; - rot.horizontal = this.armRotation.horizontal; - rot.vertical = this.armRotation.vertical; - - return rot; + TimeStep.prototype.setFormat = function (format) { + var defaultFormat = util.deepExtend({}, TimeStep.FORMAT); + this.format = util.deepExtend(defaultFormat, format); }; /** - * Set the (normalized) length of the camera arm. - * @param {Number} length A length between 0.71 and 5.0 + * Set a new range + * If minimumStep is provided, the step size is chosen as close as possible + * to the minimumStep but larger than minimumStep. If minimumStep is not + * provided, the scale is set to 1 DAY. + * The minimumStep should correspond with the onscreen size of about 6 characters + * @param {Date} [start] The start date and time. + * @param {Date} [end] The end date and time. + * @param {int} [minimumStep] Optional. Minimum step size in milliseconds */ - Camera.prototype.setArmLength = function (length) { - if (length === undefined) return; - - this.armLength = length; + TimeStep.prototype.setRange = function (start, end, minimumStep) { + if (!(start instanceof Date) || !(end instanceof Date)) { + throw "No legal start or end date in method setRange"; + } - // 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) this.armLength = 5; + this._start = start != undefined ? new Date(start.valueOf()) : new Date(); + this._end = end != undefined ? new Date(end.valueOf()) : new Date(); - this.calculateCameraOrientation(); + if (this.autoScale) { + this.setMinimumStep(minimumStep); + } }; /** - * Retrieve the arm length - * @return {Number} length + * Set the range iterator to the start date. */ - Camera.prototype.getArmLength = function () { - return this.armLength; + TimeStep.prototype.first = function () { + this.current = new Date(this._start.valueOf()); + this.roundToMinor(); }; /** - * Retrieve the camera location - * @return {Point3d} cameraLocation + * Round the current date to the first minor date value + * This must be executed once when the current date is set to start Date */ - Camera.prototype.getCameraLocation = function () { - return this.cameraLocation; - }; + 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 "year": + this.current.setFullYear(this.step * Math.floor(this.current.getFullYear() / this.step)); + this.current.setMonth(0); + case "month": + this.current.setDate(1); + case "day": + // intentional fall through + case "weekday": + this.current.setHours(0); + case "hour": + this.current.setMinutes(0); + case "minute": + this.current.setSeconds(0); + case "second": + this.current.setMilliseconds(0); + //case 'millisecond': // nothing to do for milliseconds + } - /** - * Retrieve the camera rotation - * @return {Point3d} cameraRotation - */ - Camera.prototype.getCameraRotation = function () { - return this.cameraRotation; + if (this.step != 1) { + // round down to the first minor value that is a multiple of the current step size + switch (this.scale) { + case "millisecond": + this.current.setMilliseconds(this.current.getMilliseconds() - this.current.getMilliseconds() % this.step);break; + case "second": + this.current.setSeconds(this.current.getSeconds() - this.current.getSeconds() % this.step);break; + case "minute": + this.current.setMinutes(this.current.getMinutes() - this.current.getMinutes() % this.step);break; + case "hour": + this.current.setHours(this.current.getHours() - this.current.getHours() % this.step);break; + case "weekday": + // intentional fall through + case "day": + this.current.setDate(this.current.getDate() - 1 - (this.current.getDate() - 1) % this.step + 1);break; + case "month": + this.current.setMonth(this.current.getMonth() - this.current.getMonth() % this.step);break; + case "year": + this.current.setFullYear(this.current.getFullYear() - this.current.getFullYear() % this.step);break; + default: + break; + } + } }; /** - * Calculate the location and rotation of the camera based on the - * position and orientation of the camera arm + * Check if the there is a next step + * @return {boolean} true if the current date has not passed the end date */ - 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; + TimeStep.prototype.hasNext = function () { + return this.current.valueOf() <= this._end.valueOf(); }; - module.exports = Camera; - -/***/ }, -/* 15 */ -/***/ function(module, exports, __webpack_require__) { - - "use strict"; - - var DataView = __webpack_require__(9); - /** - * @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 + * Do the next step */ - 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); - } + TimeStep.prototype.next = function () { + var prev = this.current.valueOf(); - // create an array with the filtered datapoints. this will be loaded afterwards - this.dataPoints = []; + // 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 "millisecond": - this.loaded = false; - this.onLoadCallback = undefined; - if (graph.animationPreload) { - this.loaded = false; - this.loadInBackground(); + this.current = new Date(this.current.valueOf() + this.step);break; + case "second": + this.current = new Date(this.current.valueOf() + this.step * 1000);break; + case "minute": + this.current = new Date(this.current.valueOf() + this.step * 1000 * 60);break; + case "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 "weekday": + // intentional fall through + case "day": + this.current.setDate(this.current.getDate() + this.step);break; + case "month": + this.current.setMonth(this.current.getMonth() + this.step);break; + case "year": + this.current.setFullYear(this.current.getFullYear() + this.step);break; + default: + break; + } } else { - this.loaded = true; + switch (this.scale) { + case "millisecond": + this.current = new Date(this.current.valueOf() + this.step);break; + case "second": + this.current.setSeconds(this.current.getSeconds() + this.step);break; + case "minute": + this.current.setMinutes(this.current.getMinutes() + this.step);break; + case "hour": + this.current.setHours(this.current.getHours() + this.step);break; + case "weekday": + // intentional fall through + case "day": + this.current.setDate(this.current.getDate() + this.step);break; + case "month": + this.current.setMonth(this.current.getMonth() + this.step);break; + case "year": + this.current.setFullYear(this.current.getFullYear() + this.step);break; + default: + break; + } } - }; - - - /** - * Return the label - * @return {string} label - */ - Filter.prototype.isLoaded = function () { - return this.loaded; - }; - - /** - * Return the loaded progress - * @return {Number} percentage between 0 and 100 - */ - Filter.prototype.getLoadedProgress = function () { - var len = this.values.length; + if (this.step != 1) { + // round down to the correct major value + switch (this.scale) { + case "millisecond": + if (this.current.getMilliseconds() < this.step) this.current.setMilliseconds(0);break; + case "second": + if (this.current.getSeconds() < this.step) this.current.setSeconds(0);break; + case "minute": + if (this.current.getMinutes() < this.step) this.current.setMinutes(0);break; + case "hour": + if (this.current.getHours() < this.step) this.current.setHours(0);break; + case "weekday": + // intentional fall through + case "day": + if (this.current.getDate() < this.step + 1) this.current.setDate(1);break; + case "month": + if (this.current.getMonth() < this.step) this.current.setMonth(0);break; + case "year": + break; // nothing to do for year + default: + break; + } + } - var i = 0; - while (this.dataPoints[i]) { - i++; + // safety mechanism: if current time is still unchanged, move to the end + if (this.current.valueOf() == prev) { + this.current = new Date(this._end.valueOf()); } - return Math.round(i / len * 100); + DateUtil.stepOverHiddenDates(this, prev); }; /** - * Return the label - * @return {string} label + * Get the current datetime + * @return {Date} current The current date */ - Filter.prototype.getLabel = function () { - return this.graph.filterLabel; + TimeStep.prototype.getCurrent = function () { + return this.current; }; - /** - * Return the columnIndex of the filter - * @return {Number} columnIndex + * Set a custom scale. Autoscaling will be disabled. + * For example setScale('minute', 5) will result + * in minor steps of 5 minutes, and major steps of an hour. + * + * @param {{scale: string, step: number}} params + * An object containing two properties: + * - A string 'scale'. Choose from 'millisecond', 'second', + * 'minute', 'hour', 'weekday, 'day, 'month, 'year'. + * - A number 'step'. A step size, by default 1. + * Choose for example 1, 2, 5, or 10. */ - Filter.prototype.getColumn = function () { - return this.column; + TimeStep.prototype.setScale = function (params) { + if (params && typeof params.scale == "string") { + this.scale = params.scale; + this.step = params.step > 0 ? params.step : 1; + this.autoScale = false; + } }; /** - * Return the currently selected value. Returns undefined if there is no selection - * @return {*} value + * Enable or disable autoscaling + * @param {boolean} enable If true, autoascaling is set true */ - Filter.prototype.getSelectedValue = function () { - if (this.index === undefined) return undefined; - - return this.values[this.index]; + TimeStep.prototype.setAutoScale = function (enable) { + this.autoScale = enable; }; - /** - * Retrieve all values of the filter - * @return {Array} values - */ - Filter.prototype.getValues = function () { - return this.values; - }; /** - * Retrieve one value of the filter - * @param {Number} index - * @return {*} value + * Automatically determine the scale that bests fits the provided minimum step + * @param {Number} [minimumStep] The minimum step size in milliseconds */ - Filter.prototype.getValue = function (index) { - if (index >= this.values.length) throw "Error: index out of range"; - - return this.values[index]; - }; - + TimeStep.prototype.setMinimumStep = function (minimumStep) { + if (minimumStep == undefined) { + return; + } - /** - * 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; + //var b = asc + ds; - if (index === undefined) return []; + var stepYear = 1000 * 60 * 60 * 24 * 30 * 12; + var stepMonth = 1000 * 60 * 60 * 24 * 30; + var stepDay = 1000 * 60 * 60 * 24; + var stepHour = 1000 * 60 * 60; + var stepMinute = 1000 * 60; + var stepSecond = 1000; + var stepMillisecond = 1; - var dataPoints; - if (this.dataPoints[index]) { - dataPoints = this.dataPoints[index]; - } else { - var f = {}; - f.column = this.column; - f.value = this.values[index]; + // find the smallest step that is larger than the provided minimumStep + if (stepYear * 1000 > minimumStep) { + this.scale = "year";this.step = 1000; + } + if (stepYear * 500 > minimumStep) { + this.scale = "year";this.step = 500; + } + if (stepYear * 100 > minimumStep) { + this.scale = "year";this.step = 100; + } + if (stepYear * 50 > minimumStep) { + this.scale = "year";this.step = 50; + } + if (stepYear * 10 > minimumStep) { + this.scale = "year";this.step = 10; + } + if (stepYear * 5 > minimumStep) { + this.scale = "year";this.step = 5; + } + if (stepYear > minimumStep) { + this.scale = "year";this.step = 1; + } + if (stepMonth * 3 > minimumStep) { + this.scale = "month";this.step = 3; + } + if (stepMonth > minimumStep) { + this.scale = "month";this.step = 1; + } + if (stepDay * 5 > minimumStep) { + this.scale = "day";this.step = 5; + } + if (stepDay * 2 > minimumStep) { + this.scale = "day";this.step = 2; + } + if (stepDay > minimumStep) { + this.scale = "day";this.step = 1; + } + if (stepDay / 2 > minimumStep) { + this.scale = "weekday";this.step = 1; + } + if (stepHour * 4 > minimumStep) { + this.scale = "hour";this.step = 4; + } + if (stepHour > minimumStep) { + this.scale = "hour";this.step = 1; + } + if (stepMinute * 15 > minimumStep) { + this.scale = "minute";this.step = 15; + } + if (stepMinute * 10 > minimumStep) { + this.scale = "minute";this.step = 10; + } + if (stepMinute * 5 > minimumStep) { + this.scale = "minute";this.step = 5; + } + if (stepMinute > minimumStep) { + this.scale = "minute";this.step = 1; + } + if (stepSecond * 15 > minimumStep) { + this.scale = "second";this.step = 15; + } + if (stepSecond * 10 > minimumStep) { + this.scale = "second";this.step = 10; + } + if (stepSecond * 5 > minimumStep) { + this.scale = "second";this.step = 5; + } + if (stepSecond > minimumStep) { + this.scale = "second";this.step = 1; + } + if (stepMillisecond * 200 > minimumStep) { + this.scale = "millisecond";this.step = 200; + } + if (stepMillisecond * 100 > minimumStep) { + this.scale = "millisecond";this.step = 100; + } + if (stepMillisecond * 50 > minimumStep) { + this.scale = "millisecond";this.step = 50; + } + if (stepMillisecond * 10 > minimumStep) { + this.scale = "millisecond";this.step = 10; + } + if (stepMillisecond * 5 > minimumStep) { + this.scale = "millisecond";this.step = 5; + } + if (stepMillisecond > minimumStep) { + this.scale = "millisecond";this.step = 1; + } + }; - var dataView = new DataView(this.data, { filter: function (item) { - return item[f.column] == f.value; - } }).get(); - dataPoints = this.graph._getDataPoints(dataView); + /** + * Snap a date to a rounded value. + * The snap intervals are dependent on the current scale and step. + * Static function + * @param {Date} date the date to be snapped. + * @param {string} scale Current scale, can be 'millisecond', 'second', + * 'minute', 'hour', 'weekday, 'day, 'month, 'year'. + * @param {number} step Current step (1, 2, 4, 5, ... + * @return {Date} snappedDate + */ + TimeStep.snap = function (date, scale, step) { + var clone = new Date(date.valueOf()); - this.dataPoints[index] = dataPoints; + if (scale == "year") { + var year = clone.getFullYear() + Math.round(clone.getMonth() / 12); + clone.setFullYear(Math.round(year / step) * step); + clone.setMonth(0); + clone.setDate(0); + clone.setHours(0); + clone.setMinutes(0); + clone.setSeconds(0); + clone.setMilliseconds(0); + } else if (scale == "month") { + if (clone.getDate() > 15) { + clone.setDate(1); + clone.setMonth(clone.getMonth() + 1); + // important: first set Date to 1, after that change the month. + } else { + clone.setDate(1); + } + + clone.setHours(0); + clone.setMinutes(0); + clone.setSeconds(0); + clone.setMilliseconds(0); + } else if (scale == "day") { + //noinspection FallthroughInSwitchStatementJS + switch (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 (scale == "weekday") { + //noinspection FallthroughInSwitchStatementJS + switch (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 (scale == "hour") { + switch (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 (scale == "minute") { + //noinspection FallthroughInSwitchStatementJS + switch (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 (scale == "second") { + //noinspection FallthroughInSwitchStatementJS + switch (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 (scale == "millisecond") { + var _step = step > 5 ? step / 2 : 1; + clone.setMilliseconds(Math.round(clone.getMilliseconds() / _step) * _step); } - return dataPoints; + return clone; }; - - /** - * Set a callback function when the filter is fully loaded. + * 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. */ - Filter.prototype.setOnLoadCallback = function (callback) { - this.onLoadCallback = callback; + TimeStep.prototype.isMajor = function () { + if (this.switchedYear == true) { + this.switchedYear = false; + switch (this.scale) { + case "year": + case "month": + case "weekday": + case "day": + case "hour": + case "minute": + case "second": + case "millisecond": + return true; + default: + return false; + } + } else if (this.switchedMonth == true) { + this.switchedMonth = false; + switch (this.scale) { + case "weekday": + case "day": + case "hour": + case "minute": + case "second": + case "millisecond": + return true; + default: + return false; + } + } else if (this.switchedDay == true) { + this.switchedDay = false; + switch (this.scale) { + case "millisecond": + case "second": + case "minute": + case "hour": + return true; + default: + return false; + } + } + + switch (this.scale) { + case "millisecond": + return this.current.getMilliseconds() == 0; + case "second": + return this.current.getSeconds() == 0; + case "minute": + return this.current.getHours() == 0 && this.current.getMinutes() == 0; + case "hour": + return this.current.getHours() == 0; + case "weekday": + // intentional fall through + case "day": + return this.current.getDate() == 1; + case "month": + return this.current.getMonth() == 0; + case "year": + return false; + default: + return false; + } }; /** - * Add a value to the list with available values for this filter - * No double entries will be created. - * @param {Number} index + * Returns formatted text for the minor axislabel, depending on the current + * date and the scale. For example when scale is MINUTE, the current time is + * formatted as "hh:mm". + * @param {Date} [date] custom date. if not provided, current date is taken */ - Filter.prototype.selectValue = function (index) { - if (index >= this.values.length) throw "Error: index out of range"; + TimeStep.prototype.getLabelMinor = function (date) { + if (date == undefined) { + date = this.current; + } - this.index = index; - this.value = this.values[index]; + var format = this.format.minorLabels[this.scale]; + return format && format.length > 0 ? moment(date).format(format) : ""; }; /** - * Load all filtered rows in the background one by one - * Start this method without providing an index! + * Returns formatted text for the major axis label, depending on the current + * date and the scale. For example when scale is MINUTE, the major scale is + * hours, and the hour will be formatted as "hh". + * @param {Date} [date] custom date. if not provided, current date is taken */ - Filter.prototype.loadInBackground = function (index) { - if (index === undefined) index = 0; - - var frame = this.graph.frame; + TimeStep.prototype.getLabelMajor = function (date) { + if (date == undefined) { + date = this.current; + } - if (index < this.values.length) { - var dataPointsTemp = this._getDataPoints(index); - //this.graph.redrawInfo(); // TODO: not neat + var format = this.format.majorLabels[this.scale]; + return format && format.length > 0 ? moment(date).format(format) : ""; + }; - // 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"; + TimeStep.prototype.getClassName = function () { + var m = moment(this.current); + var date = m.locale ? m.locale("en") : m.lang("en"); // old versions of moment have .lang() function + var step = this.step; - var me = this; - setTimeout(function () { - me.loadInBackground(index + 1); - }, 10); - this.loaded = false; - } else { - this.loaded = true; + function even(value) { + return value / step % 2 == 0 ? " even" : " odd"; + } - // remove the progress box - if (frame.progress !== undefined) { - frame.removeChild(frame.progress); - frame.progress = undefined; + function today(date) { + if (date.isSame(new Date(), "day")) { + return " today"; } - - if (this.onLoadCallback) this.onLoadCallback(); + if (date.isSame(moment().add(1, "day"), "day")) { + return " tomorrow"; + } + if (date.isSame(moment().add(-1, "day"), "day")) { + return " yesterday"; + } + return ""; } - }; - module.exports = Filter; + function currentWeek(date) { + return date.isSame(new Date(), "week") ? " current-week" : ""; + } -/***/ }, -/* 16 */ -/***/ function(module, exports, __webpack_require__) { + function currentMonth(date) { + return date.isSame(new Date(), "month") ? " current-month" : ""; + } - "use strict"; + function currentYear(date) { + return date.isSame(new Date(), "year") ? " current-year" : ""; + } - var util = __webpack_require__(1); + switch (this.scale) { + case "millisecond": + return even(date.milliseconds()).trim(); - /** - * @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.container = container; - this.visible = options && options.visible != undefined ? options.visible : true; + case "second": + return even(date.seconds()).trim(); - 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); + case "minute": + return even(date.minutes()).trim(); - this.frame.prev = document.createElement("INPUT"); - this.frame.prev.type = "BUTTON"; - this.frame.prev.value = "Prev"; - this.frame.appendChild(this.frame.prev); + case "hour": + var hours = date.hours(); + if (this.step == 4) { + hours = hours + "-h" + (hours + 4); + } + return "h" + hours + today(date) + even(date.hours()); - this.frame.play = document.createElement("INPUT"); - this.frame.play.type = "BUTTON"; - this.frame.play.value = "Play"; - this.frame.appendChild(this.frame.play); + case "weekday": + return date.format("dddd").toLowerCase() + today(date) + currentWeek(date) + even(date.date()); - this.frame.next = document.createElement("INPUT"); - this.frame.next.type = "BUTTON"; - this.frame.next.value = "Next"; - this.frame.appendChild(this.frame.next); + case "day": + var day = date.date(); + var month = date.format("MMMM").toLowerCase(); + return "day" + day + " " + month + currentMonth(date) + even(day - 1); - this.frame.bar = document.createElement("INPUT"); - this.frame.bar.type = "BUTTON"; - this.frame.bar.style.position = "absolute"; - this.frame.bar.style.border = "1px solid red"; - this.frame.bar.style.width = "100px"; - this.frame.bar.style.height = "6px"; - this.frame.bar.style.borderRadius = "2px"; - this.frame.bar.style.MozBorderRadius = "2px"; - this.frame.bar.style.border = "1px solid #7F7F7F"; - this.frame.bar.style.backgroundColor = "#E5E5E5"; - this.frame.appendChild(this.frame.bar); + case "month": + return date.format("MMMM").toLowerCase() + currentMonth(date) + even(date.month()); - 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); + case "year": + var year = date.year(); + return "year" + year + currentYear(date) + even(year); - // 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); - }; + default: + return ""; } + }; - this.onChangeCallback = undefined; + module.exports = TimeStep; - this.values = []; - this.index = undefined; +/***/ }, +/* 20 */ +/***/ function(module, exports, __webpack_require__) { - this.playTimeout = undefined; - this.playInterval = 1000; // milliseconds - this.playLoop = true; - } + "use strict"; + + var Hammer = __webpack_require__(45); + var util = __webpack_require__(1); /** - * Select the previous index + * @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 */ - Slider.prototype.prev = function () { - var index = this.getIndex(); - if (index > 0) { - index--; - this.setIndex(index); - } - }; + function Item(data, conversion, options) { + this.id = null; + this.parent = null; + this.data = data; + this.dom = null; + this.conversion = conversion || {}; + this.options = options || {}; + + this.selected = false; + this.displayed = false; + this.dirty = true; + + this.top = null; + this.left = null; + this.width = null; + this.height = null; + } + + Item.prototype.stack = true; /** - * Select the next index + * Select current item */ - Slider.prototype.next = function () { - var index = this.getIndex(); - if (index < this.values.length - 1) { - index++; - this.setIndex(index); - } + Item.prototype.select = function () { + this.selected = true; + this.dirty = true; + if (this.displayed) this.redraw(); }; /** - * Select the next index + * Unselect current item */ - Slider.prototype.playNext = function () { - var start = new Date(); - - var index = this.getIndex(); - if (index < this.values.length - 1) { - index++; - this.setIndex(index); - } else if (this.playLoop) { - // jump to the start - index = 0; - this.setIndex(index); - } - - var end = new Date(); - var diff = end - start; - - // calculate how much time it to to set the index and to execute the callback - // function. - var interval = Math.max(this.playInterval - diff, 0); - // document.title = diff // TODO: cleanup - - var me = this; - this.playTimeout = setTimeout(function () { - me.playNext(); - }, interval); + Item.prototype.unselect = function () { + this.selected = false; + this.dirty = true; + if (this.displayed) this.redraw(); }; /** - * Toggle start or stop playing + * Set data for the item. Existing data will be updated. The id should not + * be changed. When the item is displayed, it will be redrawn immediately. + * @param {Object} data */ - Slider.prototype.togglePlay = function () { - if (this.playTimeout === undefined) { - this.play(); - } else { - this.stop(); - } + Item.prototype.setData = function (data) { + this.data = data; + this.dirty = true; + if (this.displayed) this.redraw(); }; /** - * Start playing + * Set a parent for the item + * @param {ItemSet | Group} parent */ - Slider.prototype.play = function () { - // Test whether already playing - if (this.playTimeout) return; - - this.playNext(); - - if (this.frame) { - this.frame.play.value = "Stop"; + Item.prototype.setParent = function (parent) { + if (this.displayed) { + this.hide(); + this.parent = parent; + if (this.parent) { + this.show(); + } + } else { + this.parent = parent; } }; /** - * Stop playing + * 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 */ - Slider.prototype.stop = function () { - clearInterval(this.playTimeout); - this.playTimeout = undefined; - - if (this.frame) { - this.frame.play.value = "Play"; - } + Item.prototype.isVisible = function (range) { + // Should be implemented by Item implementations + return false; }; /** - * Set a callback function which will be triggered when the value of the - * slider bar has changed. + * Show the Item in the DOM (when not already visible) + * @return {Boolean} changed */ - Slider.prototype.setOnChangeCallback = function (callback) { - this.onChangeCallback = callback; + Item.prototype.show = function () { + return false; }; /** - * Set the interval for playing the list - * @param {Number} interval The interval in milliseconds + * Hide the Item from the DOM (when visible) + * @return {Boolean} changed */ - Slider.prototype.setPlayInterval = function (interval) { - this.playInterval = interval; + Item.prototype.hide = function () { + return false; }; /** - * Retrieve the current play interval - * @return {Number} interval The interval in milliseconds + * Repaint the item */ - Slider.prototype.getPlayInterval = function (interval) { - return this.playInterval; - }; + Item.prototype.redraw = function () {}; /** - * 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. + * Reposition the Item horizontally */ - Slider.prototype.setPlayLoop = function (doLoop) { - this.playLoop = doLoop; - }; - + Item.prototype.repositionX = function () {}; /** - * Execute the onchange callback function + * Reposition the Item vertically */ - Slider.prototype.onChange = function () { - if (this.onChangeCallback !== undefined) { - this.onChangeCallback(); - } - }; + Item.prototype.repositionY = function () {}; /** - * redraw the slider on the correct place + * Repaint a delete button on the top right of the item when the item is selected + * @param {HTMLElement} anchor + * @protected */ - Slider.prototype.redraw = function () { - if (this.frame) { - // resize the bar - this.frame.bar.style.top = this.frame.clientHeight / 2 - this.frame.bar.offsetHeight / 2 + "px"; - this.frame.bar.style.width = this.frame.clientWidth - this.frame.prev.clientWidth - this.frame.play.clientWidth - this.frame.next.clientWidth - 30 + "px"; - - // position the slider button - var left = this.indexToLeft(this.index); - this.frame.slide.style.left = left + "px"; - } - }; + Item.prototype._repaintDeleteButton = function (anchor) { + if (this.selected && this.options.editable.remove && !this.dom.deleteButton) { + // create and show button + var me = this; + var deleteButton = document.createElement("div"); + deleteButton.className = "delete"; + deleteButton.title = "Delete this item"; - /** - * 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; + // TODO: be able to destroy the delete button + new Hammer(deleteButton).on("tap", function (event) { + me.parent.removeFromDataSet(me); + event.stopPropagation(); + event.preventDefault(); + }); - if (this.values.length > 0) this.setIndex(0);else this.index = undefined; + 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; + } }; /** - * Select a value by its index - * @param {Number} index + * Set HTML contents for the item + * @param {Element} element HTML element to fill with the contents + * @private */ - Slider.prototype.setIndex = function (index) { - if (index < this.values.length) { - this.index = index; - - this.redraw(); - this.onChange(); + Item.prototype._updateContents = function (element) { + var content; + if (this.options.template) { + var itemData = this.parent.itemSet.itemsData.get(this.id); // get a clone of the data from the dataset + content = this.options.template(itemData); } else { - throw "Error: index out of range"; + content = this.data.content; + } + + if (content !== this.content) { + // only replace the content when changed + if (content instanceof Element) { + element.innerHTML = ""; + element.appendChild(content); + } else if (content != undefined) { + element.innerHTML = content; + } else { + if (!(this.data.type == "background" && this.data.content === undefined)) { + throw new Error("Property \"content\" missing in item " + this.id); + } + } + + this.content = content; } }; /** - * retrieve the index of the currently selected vaue - * @return {Number} index + * Set HTML contents for the item + * @param {Element} element HTML element to fill with the contents + * @private */ - Slider.prototype.getIndex = function () { - return this.index; + Item.prototype._updateTitle = function (element) { + if (this.data.title != null) { + element.title = this.data.title || ""; + } else { + element.removeAttribute("title"); + } }; - /** - * retrieve the currently selected value - * @return {*} value + * Process dataAttributes timeline option and set as data- attributes on dom.content + * @param {Element} element HTML element to which the attributes will be attached + * @private */ - Slider.prototype.get = function () { - return this.values[this.index]; - }; - - - 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); - }; - + Item.prototype._updateDataAttributes = function (element) { + if (this.options.dataAttributes && this.options.dataAttributes.length > 0) { + var attributes = []; - Slider.prototype.leftToIndex = function (left) { - var width = parseFloat(this.frame.bar.style.width) - this.frame.slide.clientWidth - 10; - var x = left - 3; + if (Array.isArray(this.options.dataAttributes)) { + attributes = this.options.dataAttributes; + } else if (this.options.dataAttributes == "all") { + attributes = Object.keys(this.data); + } else { + return; + } - 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; + for (var i = 0; i < attributes.length; i++) { + var name = attributes[i]; + var value = this.data[name]; - return index; + if (value != null) { + element.setAttribute("data-" + name, value); + } else { + element.removeAttribute("data-" + name); + } + } + } }; - 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; + /** + * Update custom styles of the element + * @param element + * @private + */ + Item.prototype._updateStyle = function (element) { + // remove old styles + if (this.style) { + util.removeCssText(element, this.style); + this.style = null; + } - return left; + // append new styles + if (this.data.style) { + util.addCssText(element, this.data.style); + this.style = this.data.style; + } }; + module.exports = Item; + // should be implemented by the item + // should be implemented by the item + // should be implemented by the item +/***/ }, +/* 21 */ +/***/ function(module, exports, __webpack_require__) { - Slider.prototype._onMouseMove = function (event) { - var diff = event.clientX - this.startClientX; - var x = this.startSlideX + diff; - - var index = this.leftToIndex(x); - - this.setIndex(index); - - util.preventDefault(); - }; + "use strict"; + var Hammer = __webpack_require__(45); + var Item = __webpack_require__(20); + var BackgroundGroup = __webpack_require__(31); + var RangeItem = __webpack_require__(24); - Slider.prototype._onMouseUp = function (event) { - this.frame.style.cursor = "auto"; + /** + * @constructor BackgroundItem + * @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 + */ + // TODO: implement support for the BackgroundItem just having a start, then being displayed as a sort of an annotation + function BackgroundItem(data, conversion, options) { + this.props = { + content: { + width: 0 + } + }; + this.overflow = false; // if contents can overflow (css styling), this flag is set to true - // remove event listeners - util.removeEventListener(document, "mousemove", this.onmousemove); - util.removeEventListener(document, "mouseup", this.onmouseup); + // 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); + } + } - util.preventDefault(); - }; + Item.call(this, data, conversion, options); - module.exports = Slider; + this.emptyContent = false; + } -/***/ }, -/* 17 */ -/***/ function(module, exports, __webpack_require__) { + BackgroundItem.prototype = new Item(null, null, null); - "use strict"; + BackgroundItem.prototype.baseClassName = "item background"; + BackgroundItem.prototype.stack = false; /** - * @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, ...) + * 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 */ - function StepNumber(start, end, step, prettyStep) { - // set default values - this._start = 0; - this._end = 0; - this._step = 1; - this.prettyStep = true; - this.precision = 5; - - this._current = 0; - this.setRange(start, end, step, prettyStep); + BackgroundItem.prototype.isVisible = function (range) { + // determine visibility + return this.data.start < range.end && this.data.end > range.start; }; /** - * 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, ...) + * Repaint the item */ - StepNumber.prototype.setRange = function (start, end, step, prettyStep) { - this._start = start ? start : 0; - this._end = end ? end : 0; + BackgroundItem.prototype.redraw = function () { + var dom = this.dom; + if (!dom) { + // create DOM + this.dom = {}; + dom = this.dom; - this.setStep(step, prettyStep); - }; + // background box + dom.box = document.createElement("div"); + // className is updated in redraw() - /** - * 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; + // contents box + dom.content = document.createElement("div"); + dom.content.className = "content"; + dom.box.appendChild(dom.content); - if (prettyStep !== undefined) this.prettyStep = prettyStep; + // Note: we do NOT attach this item as attribute to the DOM, + // such that background items cannot be selected + //dom.box['timeline-item'] = this; - if (this.prettyStep === true) this._step = StepNumber.calculatePrettyStep(step);else this._step = step; - }; + this.dirty = true; + } - /** - * 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; - }; + // append DOM to parent DOM + if (!this.parent) { + throw new Error("Cannot redraw item: no parent attached"); + } + if (!dom.box.parentNode) { + var background = this.parent.dom.background; + if (!background) { + throw new Error("Cannot redraw item: parent has no background container element"); + } + background.appendChild(dom.box); + } + this.displayed = true; - // 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))); + // Update DOM when item is marked dirty. An item is marked dirty when: + // - the item is not yet rendered + // - the item's data is changed + // - the item is selected/deselected + if (this.dirty) { + this._updateContents(this.dom.content); + this._updateTitle(this.dom.content); + this._updateDataAttributes(this.dom.content); + this._updateStyle(this.dom.box); - // 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; + // update class + var className = (this.data.className ? " " + this.data.className : "") + (this.selected ? " selected" : ""); + dom.box.className = this.baseClassName + className; - // for safety - if (prettyStep <= 0) { - prettyStep = 1; - } + // determine from css whether this box has overflow + this.overflow = window.getComputedStyle(dom.content).overflow !== "hidden"; - return prettyStep; + // recalculate size + this.props.content.width = this.dom.content.offsetWidth; + this.height = 0; // set height zero, so this item will be ignored when stacking items + + this.dirty = false; + } }; /** - * returns the current value of the step - * @return {Number} current value + * Show the item in the DOM (when not already visible). The items DOM will + * be created when needed. */ - StepNumber.prototype.getCurrent = function () { - return parseFloat(this._current.toPrecision(this.precision)); - }; + BackgroundItem.prototype.show = RangeItem.prototype.show; /** - * returns the current step size - * @return {Number} current step size + * Hide the item from the DOM (when visible) + * @return {Boolean} changed */ - StepNumber.prototype.getStep = function () { - return this._step; - }; + BackgroundItem.prototype.hide = RangeItem.prototype.hide; /** - * Set the current value to the largest value smaller than start, which - * is a multiple of the step size + * Reposition the item horizontally + * @Override */ - StepNumber.prototype.start = function () { - this._current = this._start - this._start % this._step; - }; + BackgroundItem.prototype.repositionX = RangeItem.prototype.repositionX; /** - * Do a step, add the step size to the current value + * Reposition the item vertically + * @Override */ - StepNumber.prototype.next = function () { - this._current += this._step; - }; + BackgroundItem.prototype.repositionY = function (margin) { + var onTop = this.options.orientation === "top"; + this.dom.content.style.top = onTop ? "" : "0"; + this.dom.content.style.bottom = onTop ? "0" : ""; + var height; - /** - * 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; + // special positioning for subgroups + if (this.data.subgroup !== undefined) { + var itemSubgroup = this.data.subgroup; + var subgroups = this.parent.subgroups; + var subgroupIndex = subgroups[itemSubgroup].index; + // if the orientation is top, we need to take the difference in height into account. + if (onTop == true) { + // the first subgroup will have to account for the distance from the top to the first item. + height = this.parent.subgroups[itemSubgroup].height + margin.item.vertical; + height += subgroupIndex == 0 ? margin.axis - 0.5 * margin.item.vertical : 0; + var newTop = this.parent.top; + for (var subgroup in subgroups) { + if (subgroups.hasOwnProperty(subgroup)) { + if (subgroups[subgroup].visible == true && subgroups[subgroup].index < subgroupIndex) { + newTop += subgroups[subgroup].height + margin.item.vertical; + } + } + } + + // the others will have to be offset downwards with this same distance. + newTop += subgroupIndex != 0 ? margin.axis - 0.5 * margin.item.vertical : 0; + this.dom.box.style.top = newTop + "px"; + this.dom.box.style.bottom = ""; + } + // and when the orientation is bottom: + else { + var newTop = this.parent.top; + for (var subgroup in subgroups) { + if (subgroups.hasOwnProperty(subgroup)) { + if (subgroups[subgroup].visible == true && subgroups[subgroup].index > subgroupIndex) { + newTop += subgroups[subgroup].height + margin.item.vertical; + } + } + } + height = this.parent.subgroups[itemSubgroup].height + margin.item.vertical; + this.dom.box.style.top = newTop + "px"; + this.dom.box.style.bottom = ""; + } + } + // and in the case of no subgroups: + else { + // we want backgrounds with groups to only show in groups. + if (this.parent instanceof BackgroundGroup) { + // if the item is not in a group: + height = Math.max(this.parent.height, this.parent.itemSet.body.domProps.center.height, this.parent.itemSet.body.domProps.centerContainer.height); + this.dom.box.style.top = onTop ? "0" : ""; + this.dom.box.style.bottom = onTop ? "" : "0"; + } else { + height = this.parent.height; + // same alignment for items when orientation is top or bottom + this.dom.box.style.top = this.parent.top + "px"; + this.dom.box.style.bottom = ""; + } + } + this.dom.box.style.height = height + "px"; }; - module.exports = StepNumber; + module.exports = BackgroundItem; /***/ }, -/* 18 */ +/* 22 */ /***/ function(module, exports, __webpack_require__) { "use strict"; - var Emitter = __webpack_require__(11); - var Hammer = __webpack_require__(19); + var Item = __webpack_require__(20); var util = __webpack_require__(1); - var DataSet = __webpack_require__(7); - var DataView = __webpack_require__(9); - var Range = __webpack_require__(21); - var Core = __webpack_require__(25); - var TimeAxis = __webpack_require__(40); - var CurrentTime = __webpack_require__(41); - var CustomTime = __webpack_require__(38); - var ItemSet = __webpack_require__(26); /** - * Create a timeline visualization - * @param {HTMLElement} container - * @param {vis.DataSet | vis.DataView | Array | google.visualization.DataTable} [items] - * @param {vis.DataSet | vis.DataView | Array | google.visualization.DataTable} [groups] - * @param {Object} [options] See Timeline.setOptions for the available options. - * @constructor - * @extends Core + * @constructor BoxItem + * @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 Timeline(container, items, groups, options) { - if (!(this instanceof Timeline)) { - throw new SyntaxError("Constructor must be called with the new operator"); - } - - // if the third element is options, the forth is groups (optionally); - if (!(Array.isArray(groups) || groups instanceof DataSet || groups instanceof DataView) && groups instanceof Object) { - var forthArgument = options; - options = groups; - groups = forthArgument; - } - - var me = this; - this.defaultOptions = { - start: null, - end: null, - - autoResize: true, - - orientation: "bottom", - width: null, - height: null, - maxHeight: null, - minHeight: null - }; - this.options = util.deepExtend({}, this.defaultOptions); - - // Create the DOM, props, and emitter - this._create(container); - - // all components listed here will be repainted automatically - this.components = []; - - this.body = { - dom: this.dom, - domProps: this.props, - emitter: { - on: this.on.bind(this), - off: this.off.bind(this), - emit: this.emit.bind(this) + function BoxItem(data, conversion, options) { + this.props = { + dot: { + width: 0, + height: 0 }, - hiddenDates: [], - util: { - getScale: function () { - return me.timeAxis.step.scale; - }, - getStep: function () { - return me.timeAxis.step.step; - }, - - 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) + line: { + width: 0, + height: 0 } }; - // 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); - - // 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.itemSet = new ItemSet(this.body); - this.components.push(this.itemSet); - - this.itemsData = null; // DataSet - this.groupsData = null; // DataSet - - // apply options - if (options) { - this.setOptions(options); - } - - // IMPORTANT: THIS HAPPENS BEFORE SET ITEMS! - if (groups) { - this.setGroups(groups); + // validate data + if (data) { + if (data.start == undefined) { + throw new Error("Property \"start\" missing in item " + data); + } } - // create itemset - if (items) { - this.setItems(items); - } else { - this._redraw(); - } + Item.call(this, data, conversion, options); } - // Extend the functionality from Core - Timeline.prototype = new Core(); + BoxItem.prototype = new Item(null, null, null); /** - * Force a redraw. The size of all items will be recalculated. - * Can be useful to manually redraw when option autoResize=false and the window - * has been resized, or when the items CSS has been changed. + * 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 */ - Timeline.prototype.redraw = function () { - this.itemSet && this.itemSet.markDirty({ refreshItems: true }); - this._redraw(); + BoxItem.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; }; /** - * Set items - * @param {vis.DataSet | Array | google.visualization.DataTable | null} items + * Repaint the item */ - Timeline.prototype.setItems = function (items) { - var initialLoad = this.itemsData == null; + BoxItem.prototype.redraw = function () { + var dom = this.dom; + if (!dom) { + // create DOM + this.dom = {}; + dom = this.dom; - // 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" - } - }); - } + // create main box + dom.box = document.createElement("DIV"); - // set items - this.itemsData = newDataSet; - this.itemSet && this.itemSet.setItems(newDataSet); + // contents box (inside the background box). used for making margins + dom.content = document.createElement("DIV"); + dom.content.className = "content"; + dom.box.appendChild(dom.content); - if (initialLoad) { - if (this.options.start != undefined || this.options.end != undefined) { - if (this.options.start == undefined || this.options.end == undefined) { - var dataRange = this._getDataRange(); - } + // line to axis + dom.line = document.createElement("DIV"); + dom.line.className = "line"; - var start = this.options.start != undefined ? this.options.start : dataRange.start; - var end = this.options.end != undefined ? this.options.end : dataRange.end; + // dot on axis + dom.dot = document.createElement("DIV"); + dom.dot.className = "dot"; - this.setWindow(start, end, { animate: false }); - } else { - this.fit({ animate: false }); - } + // attach this item as attribute + dom.box["timeline-item"] = this; + + this.dirty = true; } - }; - /** - * Set groups - * @param {vis.DataSet | Array | google.visualization.DataTable} groups - */ - Timeline.prototype.setGroups = function (groups) { - // convert to type DataSet when needed - var newDataSet; - if (!groups) { - newDataSet = null; - } else if (groups instanceof DataSet || groups instanceof DataView) { - newDataSet = groups; - } else { - // turn an array into a dataset - newDataSet = new DataSet(groups); + // 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 item: 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 item: 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 item: parent has no axis container element"); + axis.appendChild(dom.dot); } + this.displayed = true; - this.groupsData = newDataSet; - this.itemSet.setGroups(newDataSet); - }; + // Update DOM when item is marked dirty. An item is marked dirty when: + // - the item is not yet rendered + // - the item's data is changed + // - the item is selected/deselected + if (this.dirty) { + this._updateContents(this.dom.content); + this._updateTitle(this.dom.box); + this._updateDataAttributes(this.dom.box); + this._updateStyle(this.dom.box); - /** - * Set selected items by their id. Replaces the current selection - * Unknown id's are silently ignored. - * @param {string[] | string} [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) - * `animate: boolean | number` - * If true (default), the range is animated - * smoothly to the new window. - * If a number, the number is taken as duration - * for the animation. Default duration is 500 ms. - * Only applicable when option focus is true. - */ - Timeline.prototype.setSelection = function (ids, options) { - this.itemSet && this.itemSet.setSelection(ids); + // update class + var className = (this.data.className ? " " + this.data.className : "") + (this.selected ? " selected" : ""); + dom.box.className = "item box" + className; + dom.line.className = "item line" + className; + dom.dot.className = "item dot" + className; - if (options && options.focus) { - this.focus(ids, options); + // recalculate size + 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); }; /** - * Get the selected items by their id - * @return {Array} ids The ids of the selected items + * Show the item in the DOM (when not already displayed). The items DOM will + * be created when needed. */ - Timeline.prototype.getSelection = function () { - return this.itemSet && this.itemSet.getSelection() || []; + BoxItem.prototype.show = function () { + if (!this.displayed) { + this.redraw(); + } }; /** - * 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 - * @param {Object} [options] Available options: - * `animate: boolean | number` - * If true (default), the range is animated - * smoothly to the new window. - * If a number, the number is taken as duration - * for the animation. Default duration is 500 ms. - * Only applicable when option focus is true + * Hide the item from the DOM (when visible) */ - Timeline.prototype.focus = function (id, options) { - if (!this.itemsData || id == undefined) return; + BoxItem.prototype.hide = function () { + if (this.displayed) { + var dom = this.dom; - var ids = Array.isArray(id) ? id : [id]; + 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); - // get the specified item(s) - var itemsData = this.itemsData.getDataSet().get(ids, { - type: { - start: "Date", - end: "Date" - } - }); + this.top = null; + this.left = null; - // 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(); + this.displayed = false; + } + }; - if (start === null || s < start) { - start = s; - } + /** + * Reposition the item horizontally + * @Override + */ + BoxItem.prototype.repositionX = function () { + var start = this.conversion.toScreen(this.data.start); + var align = this.options.align; + var left; + var box = this.dom.box; + var line = this.dom.line; + var dot = this.dom.dot; - if (end === null || e > end) { - end = e; - } - }); + // calculate left position of the box + if (align == "right") { + this.left = start - this.width; + } else if (align == "left") { + this.left = start; + } else { + // default or 'center' + this.left = start - this.width / 2; + } - if (start !== null && end !== null) { - // 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); + // reposition box + box.style.left = this.left + "px"; - var animate = options && options.animate !== undefined ? options.animate : true; - this.range.setRange(middle - interval / 2, middle + interval / 2, animate); - } + // reposition line + line.style.left = start - this.props.line.width / 2 + "px"; + + // reposition dot + dot.style.left = start - this.props.dot.width / 2 + "px"; }; /** - * Get the data range of the item set. - * @returns {{min: Date, max: Date}} range A range with a start and end Date. - * When no minimum is found, min==null - * When no maximum is found, max==null + * Reposition the item vertically + * @Override */ - Timeline.prototype.getItemRange = function () { - // calculate min from start filed - var dataset = this.itemsData.getDataSet(), - min = null, - max = null; + BoxItem.prototype.repositionY = function () { + var orientation = this.options.orientation; + var box = this.dom.box; + var line = this.dom.line; + var dot = this.dom.dot; - if (dataset) { - // calculate the minimum value of the field 'start' - var minItem = dataset.min("start"); - min = minItem ? util.convert(minItem.start, "Date").valueOf() : null; - // Note: we convert first to Date and then to number because else - // a conversion from ISODate to Number will fail + if (orientation == "top") { + box.style.top = (this.top || 0) + "px"; - // 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()); - } - } + 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"; } - return { - min: min != null ? new Date(min) : null, - max: max != null ? new Date(max) : null - }; + dot.style.top = -this.props.dot.height / 2 + "px"; }; - - module.exports = Timeline; + module.exports = BoxItem; /***/ }, -/* 19 */ +/* 23 */ /***/ function(module, exports, __webpack_require__) { "use strict"; - // 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__(20); - } else { - module.exports = function () { - throw Error("hammer.js is only available in a browser, not in node.js."); - }; - } + var Item = __webpack_require__(20); -/***/ }, -/* 20 */ -/***/ function(module, exports, __webpack_require__) { + /** + * @constructor PointItem + * @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 PointItem(data, conversion, options) { + this.props = { + dot: { + top: 0, + width: 0, + height: 0 + }, + content: { + height: 0, + marginLeft: 0 + } + }; - 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 */ + // validate data + if (data) { + if (data.start == undefined) { + throw new Error("Property \"start\" missing in item " + data); + } + } - (function(window, undefined) { - 'use strict'; + Item.call(this, data, conversion, options); + } - /** - * @main - * @module hammer - * - * @class Hammer - * @static - */ + PointItem.prototype = new Item(null, null, null); /** - * Hammer, use this to create instances - * ```` - * var hammertime = new Hammer(myElement); - * ```` - * - * @method Hammer - * @param {HTMLElement} element - * @param {Object} [options={}] - * @return {Hammer.Instance} + * 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 */ - var Hammer = function Hammer(element, options) { - return new Hammer.Instance(element, options || {}); + PointItem.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; }; /** - * version, as defined in package.json - * the value will be set at each build - * @property VERSION - * @final - * @type {String} + * Repaint the item */ - Hammer.VERSION = '1.1.3'; + PointItem.prototype.redraw = function () { + var dom = this.dom; + if (!dom) { + // create DOM + this.dom = {}; + dom = this.dom; - /** - * 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', + // background box + dom.point = document.createElement("div"); + // className is updated in redraw() - /** - * 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', + // contents box, right from the dot + dom.content = document.createElement("div"); + dom.content.className = "content"; + dom.point.appendChild(dom.content); - /** - * 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', + // dot at start + dom.dot = document.createElement("div"); + dom.point.appendChild(dom.dot); - /** - * Specifies whether zooming is enabled. Used by IE10> - * @property defaults.behavior.contentZooming - * @type {String} - * @default 'none' - */ - contentZooming: 'none', + // attach this item as attribute + dom.point["timeline-item"] = this; - /** - * 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.dirty = true; + } - /** - * 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)' + // 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 item: parent has no foreground container element"); } + foreground.appendChild(dom.point); + } + this.displayed = true; + + // Update DOM when item is marked dirty. An item is marked dirty when: + // - the item is not yet rendered + // - the item's data is changed + // - the item is selected/deselected + if (this.dirty) { + this._updateContents(this.dom.content); + this._updateTitle(this.dom.point); + this._updateDataAttributes(this.dom.point); + this._updateStyle(this.dom.point); + + // update class + var className = (this.data.className ? " " + this.data.className : "") + (this.selected ? " selected" : ""); + dom.point.className = "item point" + className; + dom.dot.className = "item dot" + className; + + // recalculate size + 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); }; /** - * hammer document where the base events are added at - * @property DOCUMENT - * @type {HTMLElement} - * @default window.document + * Show the item in the DOM (when not already visible). The items DOM will + * be created when needed. */ - Hammer.DOCUMENT = document; + PointItem.prototype.show = function () { + if (!this.displayed) { + this.redraw(); + } + }; /** - * detect support for pointer events - * @property HAS_POINTEREVENTS - * @type {Boolean} + * Hide the item from the DOM (when visible) */ - Hammer.HAS_POINTEREVENTS = navigator.pointerEnabled || navigator.msPointerEnabled; + PointItem.prototype.hide = function () { + if (this.displayed) { + if (this.dom.point.parentNode) { + this.dom.point.parentNode.removeChild(this.dom.point); + } - /** - * detect support for touch events - * @property HAS_TOUCHEVENTS - * @type {Boolean} - */ - Hammer.HAS_TOUCHEVENTS = ('ontouchstart' in window); + this.top = null; + this.left = null; - /** - * detect mobile browsers - * @property IS_MOBILE - * @type {Boolean} - */ - Hammer.IS_MOBILE = /mobile|tablet|ip(ad|hone|od)|android|silk/i.test(navigator.userAgent); + this.displayed = false; + } + }; /** - * detect if we want to support mouseevents at all - * @property NO_MOUSEEVENTS - * @type {Boolean} + * Reposition the item horizontally + * @Override */ - Hammer.NO_MOUSEEVENTS = (Hammer.HAS_TOUCHEVENTS && Hammer.IS_MOBILE) || Hammer.HAS_POINTEREVENTS; + PointItem.prototype.repositionX = function () { + var start = this.conversion.toScreen(this.data.start); - /** - * interval in which Hammer recalculates current velocity/direction/angle in ms - * @property CALCULATE_INTERVAL - * @type {Number} - * @default 25 - */ - Hammer.CALCULATE_INTERVAL = 25; + this.left = start - this.props.dot.width; - /** - * 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 = {}; + // reposition point + this.dom.point.style.left = this.left + "px"; + }; /** - * direction strings, for safe comparisons - * @property DIRECTION_DOWN|LEFT|UP|RIGHT - * @final - * @type {String} - * @default 'down' 'left' 'up' 'right' + * Reposition the item vertically + * @Override */ - 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'; + PointItem.prototype.repositionY = function () { + var orientation = this.options.orientation, + point = this.dom.point; - /** - * 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'; + if (orientation == "top") { + point.style.top = this.top + "px"; + } else { + point.style.top = this.parent.height - this.top - this.height + "px"; + } + }; - /** - * eventtypes - * @property EVENT_START|MOVE|END|RELEASE|TOUCH - * @final - * @type {String} - * @default 'start' 'change' 'move' 'end' 'release' 'touch' - */ - var EVENT_START = Hammer.EVENT_START = 'start'; - var EVENT_MOVE = Hammer.EVENT_MOVE = 'move'; - var EVENT_END = Hammer.EVENT_END = 'end'; - var EVENT_RELEASE = Hammer.EVENT_RELEASE = 'release'; - var EVENT_TOUCH = Hammer.EVENT_TOUCH = 'touch'; + module.exports = PointItem; - /** - * if the window events are set... - * @property READY - * @writeOnce - * @type {Boolean} - * @default false - */ - Hammer.READY = false; +/***/ }, +/* 24 */ +/***/ function(module, exports, __webpack_require__) { - /** - * plugins namespace - * @property plugins - * @type {Object} - */ - Hammer.plugins = Hammer.plugins || {}; + "use strict"; - /** - * gestures namespace - * see `/gestures` for the definitions - * @property gestures - * @type {Object} - */ - Hammer.gestures = Hammer.gestures || {}; + var Hammer = __webpack_require__(45); + var Item = __webpack_require__(20); /** - * setup events to detect gestures on the document - * this function is called when creating an new instance - * @private + * @constructor RangeItem + * @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 setup() { - if(Hammer.READY) { - return; + function RangeItem(data, conversion, options) { + this.props = { + content: { + width: 0 } + }; + this.overflow = false; // if contents can overflow (css styling), this flag is set to true - // find what eventtypes we add listeners to - Event.determineEventTypes(); + // 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); + } + } - // Register all gestures inside Hammer.gestures - Utils.each(Hammer.gestures, function(gesture) { - Detection.register(gesture); - }); + Item.call(this, data, conversion, options); + } - // Add touch events on the document - Event.onTouch(Hammer.DOCUMENT, EVENT_MOVE, Detection.detect); - Event.onTouch(Hammer.DOCUMENT, EVENT_END, Detection.detect); + RangeItem.prototype = new Item(null, null, null); - // Hammer is ready...! - Hammer.READY = true; - } + RangeItem.prototype.baseClassName = "item range"; /** - * @module hammer - * - * @class Utils - * @static + * 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 */ - 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; - }, + RangeItem.prototype.isVisible = function (range) { + // determine visibility + return this.data.start < range.end && this.data.end > range.start; + }; - /** - * 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); - }, + /** + * Repaint the item + */ + RangeItem.prototype.redraw = function () { + var dom = this.dom; + if (!dom) { + // create DOM + this.dom = {}; + dom = this.dom; - /** - * 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); - }, + // background box + dom.box = document.createElement("div"); + // className is updated in redraw() - /** - * 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; - } - } - } - }, + // contents box + dom.content = document.createElement("div"); + dom.content.className = "content"; + dom.box.appendChild(dom.content); - /** - * 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; - }, + // attach this item as attribute + dom.box["timeline-item"] = this; - /** - * 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; - } - }, + this.dirty = true; + } - /** - * 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); - }, + // 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 item: parent has no foreground container element"); + } + foreground.appendChild(dom.box); + } + this.displayed = true; - /** - * 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; - }, + // Update DOM when item is marked dirty. An item is marked dirty when: + // - the item is not yet rendered + // - the item's data is changed + // - the item is selected/deselected + if (this.dirty) { + this._updateContents(this.dom.content); + this._updateTitle(this.dom.box); + this._updateDataAttributes(this.dom.box); + this._updateStyle(this.dom.box); - /** - * 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 - }; - } + // update class + var className = (this.data.className ? " " + this.data.className : "") + (this.selected ? " selected" : ""); + dom.box.className = this.baseClassName + className; - Utils.each(touches, function(touch) { - pageX.push(touch.pageX); - pageY.push(touch.pageY); - clientX.push(touch.clientX); - clientY.push(touch.clientY); - }); + // determine from css whether this box has overflow + this.overflow = window.getComputedStyle(dom.content).overflow !== "hidden"; - 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 - }; - }, + // recalculate size + // turn off max-width to be able to calculate the real width + // this causes an extra browser repaint/reflow, but so be it + this.dom.content.style.maxWidth = "none"; + this.props.content.width = this.dom.content.offsetWidth; + this.height = this.dom.box.offsetHeight; + this.dom.content.style.maxWidth = ""; - /** - * calculate the velocity between two points. unit is in px per ms. - * @method getVelocity - * @param {Number} deltaTime - * @param {Number} deltaX - * @param {Number} deltaY - * @return {Object} velocity `x` and `y` - */ - getVelocity: function getVelocity(deltaTime, deltaX, deltaY) { - return { - x: Math.abs(deltaX / deltaTime) || 0, - y: Math.abs(deltaY / deltaTime) || 0 - }; - }, + this.dirty = false; + } - /** - * calculate the angle between two coordinates - * @method getAngle - * @param {Touch} touch1 - * @param {Touch} touch2 - * @return {Number} angle - */ - getAngle: function getAngle(touch1, touch2) { - var x = touch2.clientX - touch1.clientX, - y = touch2.clientY - touch1.clientY; + this._repaintDeleteButton(dom.box); + this._repaintDragLeft(); + this._repaintDragRight(); + }; - return Math.atan2(y, x) * 180 / Math.PI; - }, + /** + * Show the item in the DOM (when not already visible). The items DOM will + * be created when needed. + */ + RangeItem.prototype.show = function () { + if (!this.displayed) { + this.redraw(); + } + }; - /** - * 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); + /** + * Hide the item from the DOM (when visible) + * @return {Boolean} changed + */ + RangeItem.prototype.hide = function () { + if (this.displayed) { + var box = this.dom.box; - if(x >= y) { - return touch1.clientX - touch2.clientX > 0 ? DIRECTION_LEFT : DIRECTION_RIGHT; - } - return touch1.clientY - touch2.clientY > 0 ? DIRECTION_UP : DIRECTION_DOWN; - }, + if (box.parentNode) { + box.parentNode.removeChild(box); + } - /** - * 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; + this.top = null; + this.left = null; - return Math.sqrt((x * x) + (y * y)); - }, + this.displayed = false; + } + }; - /** - * 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; - }, + /** + * Reposition the item horizontally + * @Override + */ + RangeItem.prototype.repositionX = function () { + var parentWidth = this.parent.width; + var start = this.conversion.toScreen(this.data.start); + var end = this.conversion.toScreen(this.data.end); + var contentLeft; + var contentWidth; - /** - * 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; - }, + // 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); - /** - * 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; - }, + if (this.overflow) { + this.left = start; + this.width = boxWidth + this.props.content.width; + contentWidth = this.props.content.width; - /** - * 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); - - 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); - } + // Note: The calculation of width is an optimistic calculation, giving + // a width which will not change when moving the Timeline + // So no re-stacking needed, which is nicer for the eye; + } else { + this.left = start; + this.width = boxWidth; + contentWidth = Math.min(end - start - 2 * this.options.padding, this.props.content.width); + } - // test the style - if(p in element.style) { - element.style[p] = (toggle == null || toggle) && value || ''; - break; - } - } - }, + this.dom.box.style.left = this.left + "px"; + this.dom.box.style.width = boxWidth + "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; - } + switch (this.options.align) { + case "left": + this.dom.content.style.left = "0"; + break; - // set the css properties - Utils.each(props, function(value, prop) { - Utils.setPrefixedCss(element, prop, value, toggle); - }); + case "right": + this.dom.content.style.left = Math.max(boxWidth - contentWidth - 2 * this.options.padding, 0) + "px"; + break; - var falseFn = toggle && function() { - return false; - }; + case "center": + this.dom.content.style.left = Math.max((boxWidth - contentWidth - 2 * this.options.padding) / 2, 0) + "px"; + break; - // also the disable onselectstart - if(props.userSelect == 'none') { - element.onselectstart = falseFn; + default: + // 'auto' + // when range exceeds left of the window, position the contents at the left of the visible area + if (this.overflow) { + if (end > 0) { + contentLeft = Math.max(-start, 0); + } else { + contentLeft = -contentWidth; // ensure it's not visible anymore } - // and disable ondragstart - if(props.userDrag == 'none') { - element.ondragstart = falseFn; + } else { + if (start < 0) { + contentLeft = Math.min(-start, end - start - contentWidth - 2 * this.options.padding); + // TODO: remove the need for options.padding. it's terrible. + } else { + contentLeft = 0; } - }, - - /** - * 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(); - }); - } + } + this.dom.content.style.left = contentLeft + "px"; + } }; - /** - * @module hammer + * Reposition the item vertically + * @Override */ + RangeItem.prototype.repositionY = function () { + var orientation = this.options.orientation, + box = this.dom.box; + + if (orientation == "top") { + box.style.top = this.top + "px"; + } else { + box.style.top = this.parent.height - this.top - this.height + "px"; + } + }; + /** - * @class Event - * @static + * Repaint a drag area on the left side of the range when the range is selected + * @protected */ - var Event = Hammer.event = { - /** - * when touch events have been fired, this is true - * this is used to stop mouse events - * @property prevent_mouseevents - * @private - * @type {Boolean} - */ - preventMouseEvents: false, - - /** - * if EVENT_START has been fired - * @property started - * @private - * @type {Boolean} - */ - started: false, - - /** - * when the mouse is hold down, this is true - * @property should_detect - * @private - * @type {Boolean} - */ - shouldDetect: false, - - /** - * 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); - }); - }, + RangeItem.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; - /** - * 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); - }); - }, + //// TODO: this should be redundant? + //Hammer(dragLeft, { + // preventDefault: true + //}).on('drag', function () { + // //console.log('drag left') + // }); - /** - * 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.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; + } + }; - var onTouchHandler = function onTouchHandler(ev) { - var srcType = ev.type.toLowerCase(), - isPointer = Hammer.HAS_POINTEREVENTS, - isMouse = Utils.inStr(srcType, 'mouse'), - triggerType; + /** + * Repaint a drag area on the right side of the range when the range is selected + * @protected + */ + RangeItem.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; - // 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; + //// TODO: this should be redundant? + //Hammer(dragRight, { + // preventDefault: true + //}).on('drag', function () { + // //console.log('drag right') + //}); - // 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; - } + 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; + } + }; - // update the pointer event before entering the detection - if(isPointer && eventType != EVENT_END) { - PointerEvent.updatePointer(eventType, ev); - } + module.exports = RangeItem; - // we are in a touch/down state, so allowed detection of gestures - if(self.shouldDetect) { - triggerType = self.doDetect.call(self, ev, eventType, element, handler); - } +/***/ }, +/* 25 */ +/***/ function(module, exports, __webpack_require__) { - // ...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 - } + "use strict"; - if(isPointer && eventType == EVENT_END) { - PointerEvent.updatePointer(eventType, ev); - } - }; + /** + * Prototype for visual components + * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} [body] + * @param {Object} [options] + */ + function Component(body, options) { + this.options = null; + this.props = null; + } - this.on(element, EVENT_TYPES[eventType], onTouchHandler); - return onTouchHandler; - }, + /** + * 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); + } + }; - /** - * 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; + /** + * Repaint the component + * @return {boolean} Returns true if the component is resized + */ + Component.prototype.redraw = function () { + // should be implemented by the component + return false; + }; - // 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; + /** + * Destroy the component. Cleanup DOM and event listeners + */ + Component.prototype.destroy = function () {}; - // keep track of how many touches have been removed - changedLength = touchList.length - ((ev.changedTouches) ? ev.changedTouches.length : 1); - } + /** + * 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; - // 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; - } + this.props._previousWidth = this.props.width; + this.props._previousHeight = this.props.height; - // detection has been started, we keep track of this, see above - this.started = true; + return resized; + }; - // generate some event data, some basic information - var evData = this.collectEventData(element, triggerType, touchList, ev); + module.exports = Component; + // should be implemented by the component - // 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); - } +/***/ }, +/* 26 */ +/***/ function(module, exports, __webpack_require__) { - // trigger a change (TOUCH, RELEASE) event, this means the length of the touches changed - if(triggerChange) { - evData.changedLength = changedLength; - evData.eventType = triggerChange; + "use strict"; - handler.call(Detection, evData); + var util = __webpack_require__(1); + var Component = __webpack_require__(25); + var moment = __webpack_require__(44); + var locales = __webpack_require__(48); - evData.eventType = triggerType; - delete evData.changedLength; - } + /** + * 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; - // trigger the END event - if(triggerType == EVENT_END) { - handler.call(Detection, evData); + // default options + this.defaultOptions = { + showCurrentTime: true, - // ...and we are done with the detection - // so reset everything to start each detection totally fresh - this.started = false; - } + locales: locales, + locale: "en" + }; + this.options = util.extend({}, this.defaultOptions); + this.offset = 0; - return triggerType; - }, + this._create(); - /** - * 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' - ]; - } + this.setOptions(options); + } - EVENT_TYPES[EVENT_START] = types[0]; - EVENT_TYPES[EVENT_MOVE] = types[1]; - EVENT_TYPES[EVENT_END] = types[2]; - return EVENT_TYPES; - }, + CurrentTime.prototype = new Component(); - /** - * 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(); - } + /** + * 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%"; - // get the touchlist - if(ev.touches) { - if(eventType == EVENT_MOVE) { - return ev.touches; - } + this.bar = bar; + }; - var identifiers = []; - var concat = [].concat(Utils.toArray(ev.touches), Utils.toArray(ev.changedTouches)); - var touchList = []; + /** + * Destroy the CurrentTime bar + */ + CurrentTime.prototype.destroy = function () { + this.options.showCurrentTime = false; + this.redraw(); // will remove the bar from the DOM and stop refreshing - Utils.each(concat, function(touch) { - if(Utils.inArray(identifiers, touch.identifier) === false) { - touchList.push(touch); - } - identifiers.push(touch.identifier); - }); + this.body = null; + }; - return touchList; - } + /** + * Set options for the component. Options will be merged in current options. + * @param {Object} options Available parameters: + * {boolean} [showCurrentTime] + */ + CurrentTime.prototype.setOptions = function (options) { + if (options) { + // copy all options that we know + util.selectiveExtend(["showCurrentTime", "locale", "locales"], this.options, options); + } + }; - // make fake touchList from mouse position - ev.identifier = 1; - return [ev]; - }, + /** + * 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); - /** - * 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; - } + this.start(); + } - return { - center: Utils.getCenter(touches), - timeStamp: Date.now(), - target: ev.target, - touches: touches, - eventType: eventType, - pointerType: pointerType, - srcEvent: ev, - - /** - * 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 now = new Date(new Date().valueOf() + this.offset); + var x = this.body.util.toScreen(now); - /** - * stop bubbling the event up to its parents - */ - stopPropagation: function() { - this.srcEvent.stopPropagation(); - }, + 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); - /** - * immediately stop gesture detection - * might be useful after a swipe was detected - * @return {*} - */ - stopDetect: function() { - return Detection.stopDetect(); - } - }; + 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; + }; /** - * @module hammer - * - * @class PointerEvent - * @static + * Start auto refreshing the current time bar */ - var PointerEvent = Hammer.PointerEvent = { - /** - * holds all pointers, by `identifier` - * @property pointers - * @type {Object} - */ - pointers: {}, + CurrentTime.prototype.start = function () { + var me = this; - /** - * get the pointers as an array - * @method getTouchList - * @return {Array} touchlist - */ - getTouchList: function getTouchList() { - var touchlist = []; - // we can use forEach since pointerEvents only is in IE10 - Utils.each(this.pointers, function(pointer) { - touchlist.push(pointer); - }); - return touchlist; - }, + function update() { + me.stop(); - /** - * 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; - } - }, + // 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; - /** - * 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; - } + me.redraw(); - var pt = ev.pointerType, - types = {}; + // start a renderTimer to adjust for the new time + me.currentTimeTimer = setTimeout(update, interval); + } - 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]; - }, + update(); + }; - /** - * reset the stored pointers - * @method reset - */ - reset: function resetList() { - this.pointers = {}; - } + /** + * Stop auto refreshing the current time bar + */ + CurrentTime.prototype.stop = function () { + if (this.currentTimeTimer !== undefined) { + clearTimeout(this.currentTimeTimer); + delete this.currentTimeTimer; + } }; + /** + * Set a current time. This can be used for example to ensure that a client's + * time is synchronized with a shared server time. + * @param {Date | String | Number} time A Date, unix timestamp, or + * ISO date string. + */ + CurrentTime.prototype.setCurrentTime = function (time) { + var t = util.convert(time, "Date").valueOf(); + var now = new Date().valueOf(); + this.offset = t - now; + this.redraw(); + }; /** - * @module hammer - * - * @class Detection - * @static + * Get the current time. + * @return {Date} Returns the current time. */ - var Detection = Hammer.detection = { - // contains all registred Hammer.gestures in the correct order - gestures: [], + CurrentTime.prototype.getCurrentTime = function () { + return new Date(new Date().valueOf() + this.offset); + }; - // data of the current Hammer.gesture detection session - current: null, + module.exports = CurrentTime; - // the previous Hammer.gesture session data - // is a full clone of the previous gesture.current object - previous: null, +/***/ }, +/* 27 */ +/***/ function(module, exports, __webpack_require__) { - // when this becomes true, no gestures are fired - stopped: false, + "use strict"; - /** - * 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; - } + var Hammer = __webpack_require__(45); + var util = __webpack_require__(1); + var Component = __webpack_require__(25); + var moment = __webpack_require__(44); + var locales = __webpack_require__(48); - this.stopped = false; + /** + * A custom time bar + * @param {{range: Range, dom: Object}} body + * @param {Object} [options] Available parameters: + * {Boolean} [showCustomTime] + * @constructor CustomTime + * @extends Component + */ - // 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 - }; + function CustomTime(body, options) { + this.body = body; - this.detect(eventData); - }, + // default options + this.defaultOptions = { + showCustomTime: false, + locales: locales, + locale: "en", + id: 0 + }; + this.options = util.extend({}, this.defaultOptions); - /** - * Hammer.gesture detection - * @method detect - * @param {Object} eventData - * @return {any} - */ - detect: function detect(eventData) { - if(!this.current || this.stopped) { - return; - } + if (options && options.time) { + this.customTime = options.time; + } else { + this.customTime = new Date(); + } - // extend event data with calculations about scale, distance etc - eventData = this.extendEventData(eventData); + this.eventParams = {}; // stores state parameters while dragging the bar - // hammer instance and instance options - var inst = this.current.inst, - instOptions = inst.options; + // create the DOM + this._create(); - // 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.setOptions(options); + } - // store as previous event event - if(this.current) { - this.current.lastEvent = eventData; - } + CustomTime.prototype = new Component(); - if(eventData.eventType == EVENT_END) { - this.stopDetect(); - } + /** + * 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", "id"], this.options, options); - return eventData; - }, + // Triggered by addCustomTimeBar, redraw to add new bar + if (this.options.id) { + this.redraw(); + } + } + }; - /** - * 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; - }, + /** + * Create the DOM for the custom time + * @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; - /** - * 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; + 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(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; - } + // attach event listeners + this.hammer = new Hammer(drag); + this.hammer.on("panstart", this._onDragStart.bind(this)); + this.hammer.on("panmove", this._onDrag.bind(this)); + this.hammer.on("panend", this._onDragEnd.bind(this)); + this.hammer.on("pan", function (event) { + event.preventDefault(); + }); + }; - if(ev.eventType == EVENT_TOUCH || ev.eventType == EVENT_RELEASE) { - cur.futureCalcEvent = ev; - } + /** + * Destroy the CustomTime bar + */ + CustomTime.prototype.destroy = function () { + this.options.showCustomTime = false; + this.redraw(); // will remove the bar from the DOM - 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); + this.hammer.enable(false); + this.hammer = null; - cur.lastCalcEvent = cur.futureCalcEvent || ev; - cur.futureCalcEvent = ev; - } + this.body = null; + }; - ev.velocityX = calcData.velocity.x; - ev.velocityY = calcData.velocity.y; - ev.interimAngle = calcData.angle; - ev.interimDirection = calcData.direction; - }, + /** + * Repaint the component + * @return {boolean} Returns true if the component is resized + */ + CustomTime.prototype.redraw = function () { + if (this.options.showCustomTime) { + var parent = this.body.dom.backgroundVertical; + if (this.bar.parentNode != parent) { + // attach to the dom + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); + } + parent.appendChild(this.bar); + } - /** - * extend eventData for Hammer.gestures - * @method extendEventData - * @param {Object} ev - * @return {Object} ev - */ - extendEventData: function extendEventData(ev) { - var cur = this.current, - startEv = cur.startEvent, - lastEv = cur.lastEvent || startEv; - - // update the start touchlist to calculate the scale/rotation - if(ev.eventType == EVENT_TOUCH || ev.eventType == EVENT_RELEASE) { - startEv.touches = []; - Utils.each(ev.touches, function(touch) { - startEv.touches.push({ - clientX: touch.clientX, - clientY: touch.clientY - }); - }); - } + var x = this.body.util.toScreen(this.customTime); - var deltaTime = ev.timeStamp - startEv.timeStamp, - deltaX = ev.center.clientX - startEv.center.clientX, - deltaY = ev.center.clientY - startEv.center.clientY; + 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.getCalculatedData(ev, lastEv.center, deltaTime, deltaX, deltaY); + 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); + } + } - Utils.extend(ev, { - startEvent: startEv, + return false; + }; - deltaTime: deltaTime, - deltaX: deltaX, - deltaY: deltaY, + /** + * Set custom time. + * @param {Date | number | string} time + */ + CustomTime.prototype.setCustomTime = function (time) { + this.customTime = util.convert(time, "Date"); + this.redraw(); + }; - 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) - }); + /** + * Retrieve the current custom time. + * @return {Date} customTime + */ + CustomTime.prototype.getCustomTime = function () { + return new Date(this.customTime.valueOf()); + }; - return ev; - }, + /** + * Start moving horizontally + * @param {Event} event + * @private + */ + CustomTime.prototype._onDragStart = function (event) { + this.eventParams.dragging = true; + this.eventParams.customTime = this.customTime; - /** - * 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; - } + event.stopPropagation(); + event.preventDefault(); + }; - // extend Hammer default options with the Hammer.gesture options - Utils.extend(Hammer.defaults, options, true); + /** + * Perform moving operating. + * @param {Event} event + * @private + */ + CustomTime.prototype._onDrag = function (event) { + if (!this.eventParams.dragging) return; - // set its index - gesture.index = gesture.index || 1000; + var x = this.body.util.toScreen(this.eventParams.customTime) + event.deltaX; + var time = this.body.util.toTime(x); - // add Hammer.gesture to the list - this.gestures.push(gesture); + this.setCustomTime(time); - // 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; - }); + // fire a timechange event + this.body.emitter.emit("timechange", { + id: this.options.id, + time: new Date(this.customTime.valueOf()) + }); - return this.gestures; - } + event.stopPropagation(); + event.preventDefault(); }; - /** - * @module hammer - */ - - /** - * create new hammer instance - * all methods should return the instance itself, so it is chainable. - * - * @class Instance - * @constructor - * @param {HTMLElement} element - * @param {Object} [options={}] options are merged with `Hammer.defaults` - * @return {Hammer.Instance} + * Stop moving operating. + * @param {Event} event + * @private */ - Hammer.Instance = function(element, options) { - var self = this; + CustomTime.prototype._onDragEnd = function (event) { + if (!this.eventParams.dragging) return; - // setup HammerJS window events and register all gestures - // this also sets up the default options - setup(); - - /** - * @property element - * @type {HTMLElement} - */ - this.element = element; + // fire a timechanged event + this.body.emitter.emit("timechanged", { + id: this.options.id, + time: new Date(this.customTime.valueOf()) + }); - /** - * @property enabled - * @type {Boolean} - * @protected - */ - this.enabled = true; + event.stopPropagation(); + event.preventDefault(); + }; - /** - * 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; - }); + module.exports = CustomTime; - this.options = Utils.extend(Utils.extend({}, Hammer.defaults), options || {}); +/***/ }, +/* 28 */ +/***/ 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); - } + "use strict"; - /** - * 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); - } - }); + var util = __webpack_require__(1); + var DOMutil = __webpack_require__(2); + var Component = __webpack_require__(25); + var DataStep = __webpack_require__(16); - /** - * keep a list of user event handlers which needs to be removed when calling 'dispose' - * @property eventHandlers - * @type {Array} - */ - this.eventHandlers = []; - }; + /** + * 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, linegraphOptions) { + this.id = util.randomUUID(); + this.body = body; - 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; + 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, + alignZeros: true, + customRange: { + left: { min: undefined, max: undefined }, + right: { min: undefined, max: undefined } }, - - /** - * unbind events to the instance - * @method off - * @chainable - * @param {String} gestures - * @param {Function} handler - */ - off: function offEvent(gestures, handler) { - var self = this; - - Event.off(self.element, gestures, handler, function(type) { - var index = Utils.inArray({ gesture: type, handler: handler }); - if(index !== false) { - self.eventHandlers.splice(index, 1); - } - }); - return self; + title: { + left: { text: undefined }, + right: { text: undefined } }, + format: { + left: { decimals: undefined }, + right: { decimals: undefined } + } + }; - /** - * trigger gesture event - * @method trigger - * @chainable - * @param {String} gesture - * @param {Object} [eventData] - */ - trigger: function triggerEvent(gesture, eventData) { - // optional - if(!eventData) { - eventData = {}; - } + this.linegraphOptions = linegraphOptions; + this.linegraphSVG = svg; + this.props = {}; + this.DOMelements = { // dynamic elements + lines: {}, + labels: {}, + title: {} + }; - // create DOM event - var event = Hammer.DOCUMENT.createEvent('Event'); - event.initEvent(gesture, true, true); - event.gesture = eventData; + this.dom = {}; - // 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; - } + this.range = { start: 0, end: 0 }; - element.dispatchEvent(event); - return this; - }, + this.options = util.extend({}, this.defaultOptions); + this.conversionFactor = 1; - /** - * enable of disable hammer.js detection - * @method enable - * @chainable - * @param {Boolean} state - */ - enable: function enable(state) { - this.enabled = state; - return this; - }, + this.setOptions(options); + this.width = Number(("" + this.options.width).replace("px", "")); + this.minWidth = this.width; + this.height = this.linegraphSVG.offsetHeight; + this.hidden = false; - /** - * dispose this hammer instance - * @method dispose - * @return {Null} - */ - dispose: function dispose() { - var i, eh; + this.stepPixels = 25; + this.stepPixelsForced = 25; + this.zeroCrossing = -1; - // undo all changes made by stop_browser_behavior - Utils.toggleBehavior(this.element, this.options.behavior, false); + this.lineOffset = 0; + this.master = true; + this.svgElements = {}; + this.iconsRemoved = false; - // unbind all custom event handlers - for(i = -1; (eh = this.eventHandlers[++i]);) { - Utils.off(this.element, eh.gesture, eh.handler); - } - this.eventHandlers = []; + this.groups = {}; + this.amountOfGroups = 0; - // unbind the start event listener - Event.off(this.element, EVENT_TYPES[EVENT_START], this.eventStartHandler); + // create the HTML DOM + this._create(); - return null; - } - }; + var me = this; + this.body.emitter.on("verticalDrag", function () { + me.dom.lineContainer.style.top = me.body.domProps.scrollTop + "px"; + }); + } + DataAxis.prototype = new Component(); - /** - * @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; + DataAxis.prototype.addGroup = function (label, graphOptions) { + if (!this.groups.hasOwnProperty(label)) { + this.groups[label] = graphOptions; + } + this.amountOfGroups += 1; + }; - function dragGesture(ev, inst) { - var cur = Detection.current; + DataAxis.prototype.updateGroup = function (label, graphOptions) { + this.groups[label] = graphOptions; + }; - // max touches - if(inst.options.dragMaxTouches > 0 && - ev.touches.length > inst.options.dragMaxTouches) { - return; - } + DataAxis.prototype.removeGroup = function (label) { + if (this.groups.hasOwnProperty(label)) { + delete this.groups[label]; + this.amountOfGroups -= 1; + } + }; - switch(ev.eventType) { - case EVENT_START: - triggered = false; - break; - 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; - } + 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", "title", "format", "alignZeros"]; + util.selectiveExtend(fields, this.options, options); - 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; - - // recalculate event data using new start point - ev = Detection.extendEventData(ev); - } - } + this.minWidth = Number(("" + this.options.width).replace("px", "")); - // lock drag to axis? - if(cur.lastEvent.dragLockToAxis || - ( inst.options.dragLockToAxis && - inst.options.dragLockMinDistance <= ev.distance - )) { - ev.dragLockToAxis = true; - } + if (redraw == true && this.dom.frame) { + this.hide(); + this.show(); + } + } + }; - // keep direction on the axis that the drag gesture started on - var lastDirection = cur.lastEvent.direction; - if(ev.dragLockToAxis && lastDirection !== ev.direction) { - if(Utils.isVertical(lastDirection)) { - ev.direction = (ev.deltaY < 0) ? DIRECTION_UP : DIRECTION_DOWN; - } else { - ev.direction = (ev.deltaX < 0) ? DIRECTION_LEFT : DIRECTION_RIGHT; - } - } - // first time, trigger dragstart event - if(!triggered) { - inst.trigger(name + 'start', ev); - triggered = true; - } + /** + * 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; - // trigger events - inst.trigger(name, ev); - inst.trigger(name + ev.direction, ev); + this.dom.lineContainer = document.createElement("div"); + this.dom.lineContainer.style.width = "100%"; + this.dom.lineContainer.style.height = this.height; + this.dom.lineContainer.style.position = "relative"; - var isVertical = Utils.isVertical(ev.direction); + // 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); + }; - // block the browser events - if((inst.options.dragBlockVertical && isVertical) || - (inst.options.dragBlockHorizontal && !isVertical)) { - ev.preventDefault(); - } - break; + DataAxis.prototype._redrawGroupIcons = function () { + DOMutil.prepareElements(this.svgElements); - case EVENT_RELEASE: - if(triggered && ev.changedLength <= inst.options.dragMaxTouches) { - inst.trigger(name + 'end', ev); - triggered = false; - } - break; + var x; + var iconWidth = this.options.iconWidth; + var iconHeight = 15; + var iconOffset = 4; + var y = iconOffset + 0.5 * iconHeight; - case EVENT_END: - triggered = false; - break; - } + if (this.options.orientation == "left") { + x = iconOffset; + } else { + x = this.width - iconWidth - iconOffset; + } + + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + if (this.groups[groupId].visible == true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] == true)) { + this.groups[groupId].drawIcon(x, y, this.svgElements, this.svg, iconWidth, iconHeight); + y += iconHeight + iconOffset; + } } + } - 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, - - /** - * Set dragDistanceCorrection to true to make the starting point of the drag - * be calculated from where the drag was triggered, not from where the touch started. - * Useful to avoid a jerk-starting drag, which can make fine-adjustments - * through dragging difficult, and be visually unappealing. - * @property dragDistanceCorrection - * @type {Boolean} - * @default true - */ - dragDistanceCorrection: true, - - /** - * set 0 for unlimited, but this can conflict with transform - * @property dragMaxTouches - * @type {Number} - * @default 1 - */ - dragMaxTouches: 1, - - /** - * prevent default browser behavior when dragging occurs - * be careful with it, it makes the element a blocking element - * when you are using the drag gesture, it is a good practice to set this true - * @property dragBlockHorizontal - * @type {Boolean} - * @default false - */ - dragBlockHorizontal: false, - - /** - * same as `dragBlockHorizontal`, but for vertical movement - * @property dragBlockVertical - * @type {Boolean} - * @default false - */ - dragBlockVertical: false, - - /** - * dragLockToAxis keeps the drag gesture on the axis that it started on, - * It disallows vertical directions if the initial direction was horizontal, and vice versa. - * @property dragLockToAxis - * @type {Boolean} - * @default false - */ - dragLockToAxis: false, - - /** - * drag lock only kicks in when distance > dragLockMinDistance - * This way, locking occurs only when the distance has become large enough to reliably determine the direction - * @property dragLockMinDistance - * @type {Number} - * @default 25 - */ - dragLockMinDistance: 25 - } - }; - })('drag'); + DOMutil.cleanupElements(this.svgElements); + this.iconsRemoved = false; + }; + + DataAxis.prototype._cleanupIcons = function () { + if (this.iconsRemoved == false) { + DOMutil.prepareElements(this.svgElements); + DOMutil.cleanupElements(this.svgElements); + this.iconsRemoved = true; + } + }; /** - * @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 + * Create the HTML DOM for the DataAxis */ - Hammer.gestures.Gesture = { - name: 'gesture', - index: 1337, - handler: function releaseGesture(ev, inst) { - inst.trigger(this.name, ev); + DataAxis.prototype.show = function () { + this.hidden = false; + if (!this.dom.frame.parentNode) { + if (this.options.orientation == "left") { + this.body.dom.left.appendChild(this.dom.frame); + } else { + this.body.dom.right.appendChild(this.dom.frame); } + } + + if (!this.dom.lineContainer.parentNode) { + this.body.dom.backgroundHorizontal.appendChild(this.dom.lineContainer); + } }; /** - * @module gestures - */ - /** - * Touch stays at the same place for x time - * - * @class Hold - * @static + * Create the HTML DOM for the DataAxis */ + DataAxis.prototype.hide = function () { + this.hidden = true; + 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); + } + }; + /** - * @event hold - * @param {Object} ev + * Set a range (start and end) + * @param end + * @param start + * @param end */ + DataAxis.prototype.setRange = function (start, end) { + if (this.master == false && this.options.alignZeros == true && this.zeroCrossing != -1) { + if (start > 0) { + start = 0; + } + } + this.range.start = start; + this.range.end = end; + }; /** - * @param {String} name + * Repaint the component + * @return {boolean} Returns true if the component is resized */ - (function(name) { - var timer; + DataAxis.prototype.redraw = function () { + var resized = false; + var activeGroups = 0; + + // Make sure the line container adheres to the vertical scrolling. + this.dom.lineContainer.style.top = this.body.domProps.scrollTop + "px"; + + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + if (this.groups[groupId].visible == true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] == true)) { + activeGroups++; + } + } + } + if (this.amountOfGroups == 0 || activeGroups == 0) { + this.hide(); + } else { + this.show(); + this.height = Number(this.linegraphSVG.style.height.replace("px", "")); - function holdGesture(ev, inst) { - var options = inst.options, - current = Detection.current; + // 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; - switch(ev.eventType) { - case EVENT_START: - clearTimeout(timer); + var props = this.props; + var frame = this.dom.frame; - // set the gesture so we can check in the timeout if it still is - current.name = name; + // update classname + frame.className = "dataaxis"; - // 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; + // calculate character width and height + this._calculateCharSize(); - case EVENT_MOVE: - if(ev.distance > options.holdThreshold) { - clearTimeout(timer); - } - break; + var orientation = this.options.orientation; + var showMinorLabels = this.options.showMinorLabels; + var showMajorLabels = this.options.showMajorLabels; - case EVENT_RELEASE: - clearTimeout(timer); - break; - } + // determine the width and height of the elements for the axis + props.minorLabelHeight = showMinorLabels ? props.minorCharHeight : 0; + props.majorLabelHeight = showMajorLabels ? props.majorCharHeight : 0; + + props.minorLineWidth = this.body.dom.backgroundHorizontal.offsetWidth - this.lineOffset - this.width + 2 * this.options.minorLinesOffset; + props.minorLineHeight = 1; + props.majorLineWidth = this.body.dom.backgroundHorizontal.offsetWidth - this.lineOffset - this.width + 2 * this.options.majorLinesOffset; + props.majorLineHeight = 1; + + // take frame offline while updating (is almost twice as fast) + if (orientation == "left") { + frame.style.top = "0"; + frame.style.left = "0"; + frame.style.bottom = ""; + frame.style.width = this.width + "px"; + frame.style.height = this.height + "px"; + this.props.width = this.body.domProps.left.width; + this.props.height = this.body.domProps.left.height; + } 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"; + this.props.width = this.body.domProps.right.width; + this.props.height = this.body.domProps.right.height; } - 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'); + resized = this._redrawLabels(); + resized = this._isResized() || resized; - /** - * @module gestures - */ - /** - * when a touch is being released from the page - * - * @class Release - * @static - */ - /** - * @event release - * @param {Object} ev - */ - Hammer.gestures.Release = { - name: 'release', - index: Infinity, - handler: function releaseGesture(ev, inst) { - if(ev.eventType == EVENT_RELEASE) { - inst.trigger(this.name, ev); - } + if (this.options.icons == true) { + this._redrawGroupIcons(); + } else { + this._cleanupIcons(); } + + this._redrawTitle(orientation); + } + return resized; }; /** - * @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 + * Repaint major and minor text labels and vertical grid lines + * @private */ - Hammer.gestures.Swipe = { - name: 'swipe', - index: 40, - defaults: { - /** - * @property swipeMinTouches - * @type {Number} - * @default 1 - */ - swipeMinTouches: 1, + DataAxis.prototype._redrawLabels = function () { + var resized = false; + DOMutil.prepareElements(this.DOMelements.lines); + DOMutil.prepareElements(this.DOMelements.labels); - /** - * @property swipeMaxTouches - * @type {Number} - * @default 1 - */ - swipeMaxTouches: 1, + var orientation = this.options.orientation; - /** - * horizontal swipe velocity - * @property swipeVelocityX - * @type {Number} - * @default 0.6 - */ - swipeVelocityX: 0.6, + // 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; - /** - * vertical swipe velocity - * @property swipeVelocityY - * @type {Number} - * @default 0.6 - */ - swipeVelocityY: 0.6 - }, + var step = new DataStep(this.range.start, this.range.end, minimumStep, this.dom.frame.offsetHeight, this.options.customRange[this.options.orientation], this.master == false && this.options.alignZeros // doess the step have to align zeros? only if not master and the options is on + ); - handler: function swipeGesture(ev, inst) { - if(ev.eventType == EVENT_RELEASE) { - var touches = ev.touches.length, - options = inst.options; + 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); - // max touches - if(touches < options.swipeMinTouches || - touches > options.swipeMaxTouches) { - return; - } + this.stepPixels = stepPixels; - // 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); - } + var amountOfSteps = this.height / stepPixels; + var stepDifference = 0; + + // the slave axis needs to use the same horizontal lines as the master axis. + 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; + + if (this.zeroCrossing != -1 && this.options.alignZeros == true) { + var zeroStepDifference = step.marginEnd / step.step - this.zeroCrossing; + if (zeroStepDifference > 0) { + for (var i = 0; i < zeroStepDifference; i++) { + step.next(); + } + } else if (zeroStepDifference < 0) { + for (var i = 0; i < -zeroStepDifference; i++) { + step.previous(); } + } } - }; + } else { + amountOfSteps += 0.25; + } - /** - * @module gestures - */ - /** - * Single tap and a double tap on a place - * - * @class Tap - * @static - */ - /** - * @event tap - * @param {Object} ev - */ - /** - * @event doubletap - * @param {Object} ev - */ - /** - * @param {String} name - */ - (function(name) { - var hasMoved = false; + this.valueAtZero = step.marginEnd; + var marginStartPos = 0; - function tapGesture(ev, inst) { - var options = inst.options, - current = Detection.current, - prev = Detection.previous, - sincePrev, - didDoubleTap; + // do not draw the first label + var max = 1; - switch(ev.eventType) { - case EVENT_START: - hasMoved = false; - break; + // Get the number of decimal places + var decimals; + if (this.options.format[orientation] !== undefined) { + decimals = this.options.format[orientation].decimals; + } - case EVENT_MOVE: - hasMoved = hasMoved || (ev.distance > options.tapMaxDistance); - break; + 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(); - 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; - - // check if double tap - if(prev && prev.name == name && - (sincePrev && sincePrev < options.doubleTapInterval) && - ev.distance < options.doubleTapDistance) { - inst.trigger('doubletap', ev); - didDoubleTap = true; - } + if (this.options.showMinorLabels && isMajor == false || this.master == false && this.options.showMinorLabels == true) { + this._redrawLabel(y - 2, step.getCurrent(decimals), orientation, "yAxis minor", this.props.minorCharHeight); + } - // do a single tap - if(!didDoubleTap || options.tapAlways) { - current.name = name; - inst.trigger(current.name, ev); - } - } - break; - } + 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(decimals), 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); } - 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, - - /** - * max distance of movement of a tap, this is for the slow tappers - * @property tapMaxDistance - * @type {Number} - * @default 10 - */ - tapMaxDistance: 10, - - /** - * always trigger the `tap` event, even while double-tapping - * @property tapAlways - * @type {Boolean} - * @default true - */ - tapAlways: true, - - /** - * max distance between two taps - * @property doubleTapDistance - * @type {Number} - * @default 20 - */ - doubleTapDistance: 20, - - /** - * max time between two taps - * @property doubleTapInterval - * @type {Number} - * @default 300 - */ - doubleTapInterval: 300 - } - }; - })('tap'); + if (this.master == true && step.current == 0) { + this.zeroCrossing = max; + } - /** - * @module gestures - */ - /** - * when a touch is being touched at the page - * - * @class Touch - * @static - */ - /** - * @event touch - * @param {Object} ev - */ - Hammer.gestures.Touch = { - name: 'touch', - index: -Infinity, - defaults: { - /** - * call preventDefault at touchstart, and makes the element blocking by disabling the scrolling of the page, - * but it improves gestures like transforming and dragging. - * be careful with using this, it can be very annoying for users to be stuck on the page - * @property preventDefault - * @type {Boolean} - * @default false - */ - preventDefault: false, + max++; + } - /** - * 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; - } + if (this.master == false) { + this.conversionFactor = y / (this.valueAtZero - step.current); + } else { + this.conversionFactor = this.dom.frame.offsetHeight / step.marginRange; + } - if(inst.options.preventDefault) { - ev.preventDefault(); - } + // Note that title is rotated, so we're using the height, not width! + var titleWidth = 0; + if (this.options.title[orientation] !== undefined && this.options.title[orientation].text !== undefined) { + titleWidth = this.props.titleCharHeight; + } + var offset = this.options.icons == true ? Math.max(this.options.iconWidth, titleWidth) + this.options.labelOffsetX + 15 : titleWidth + this.options.labelOffsetX + 15; - if(ev.eventType == EVENT_TOUCH) { - inst.trigger('touch', ev); - } - } + // this will resize the yAxis to accommodate 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(); + resized = 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(); + resized = true; + } else { + DOMutil.cleanupElements(this.DOMelements.lines); + DOMutil.cleanupElements(this.DOMelements.labels); + resized = false; + } + + return resized; }; - /** - * @module gestures - */ - /** - * User want to scale or rotate with 2 fingers - * Preventing the default browser behavior is a good way to improve feel and working. This can be done with the - * `preventDefault` option. - * - * @class Transform - * @static - */ - /** - * @event transform - * @param {Object} ev - */ - /** - * @event transformstart - * @param {Object} ev - */ - /** - * @event transformend - * @param {Object} ev - */ - /** - * @event pinchin - * @param {Object} ev - */ - /** - * @event pinchout - * @param {Object} ev - */ - /** - * @event rotate - * @param {Object} ev - */ + DataAxis.prototype.convertValue = function (value) { + var invertedValue = this.valueAtZero - value; + var convertedValue = invertedValue * this.conversionFactor; + return convertedValue; + }; /** - * @param {String} name + * Create a label for the axis at position x + * @private + * @param y + * @param text + * @param orientation + * @param className + * @param characterHeight */ - (function(name) { - var triggered = false; + DataAxis.prototype._redrawLabel = function (y, text, orientation, className, characterHeight) { + // reuse redundant label + var label = DOMutil.getDOMElement("div", this.DOMelements.labels, this.dom.frame); //this.dom.redundant.labels.shift(); + label.className = className; + label.innerHTML = text; + if (orientation == "left") { + label.style.left = "-" + this.options.labelOffsetX + "px"; + label.style.textAlign = "right"; + } else { + label.style.right = "-" + this.options.labelOffsetX + "px"; + label.style.textAlign = "left"; + } - function transformGesture(ev, inst) { - switch(ev.eventType) { - case EVENT_START: - triggered = false; - break; + label.style.top = y - 0.5 * characterHeight + this.options.labelOffsetY + "px"; - case EVENT_MOVE: - // at least multitouch - if(ev.touches.length < 2) { - return; - } + text += ""; - var scaleThreshold = Math.abs(1 - ev.scale); - var rotationThreshold = Math.abs(ev.rotation); + var largestWidth = Math.max(this.props.majorCharWidth, this.props.minorCharWidth); + if (this.maxLabelSize < text.length * largestWidth) { + this.maxLabelSize = text.length * largestWidth; + } + }; - // 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; - } + /** + * 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 = ""; - // we are transforming! - Detection.current.name = name; + if (orientation == "left") { + line.style.left = this.width - offset + "px"; + } else { + line.style.right = this.width - offset + "px"; + } - // first time, trigger dragstart event - if(!triggered) { - inst.trigger(name + 'start', ev); - triggered = true; - } + line.style.width = width + "px"; + line.style.top = y + "px"; + } + }; - inst.trigger(name, ev); // basic transform event + /** + * Create a title for the axis + * @private + * @param orientation + */ + DataAxis.prototype._redrawTitle = function (orientation) { + DOMutil.prepareElements(this.DOMelements.title); - // trigger rotate event - if(rotationThreshold > inst.options.transformMinRotation) { - inst.trigger('rotate', ev); - } + // Check if the title is defined for this axes + if (this.options.title[orientation] !== undefined && this.options.title[orientation].text !== undefined) { + var title = DOMutil.getDOMElement("div", this.DOMelements.title, this.dom.frame); + title.className = "yAxis title " + orientation; + title.innerHTML = this.options.title[orientation].text; - // trigger pinch event - if(scaleThreshold > inst.options.transformMinScale) { - inst.trigger('pinch', ev); - inst.trigger('pinch' + (ev.scale < 1 ? 'in' : 'out'), ev); - } - break; + // Add style - if provided + if (this.options.title[orientation].style !== undefined) { + util.addCssText(title, this.options.title[orientation].style); + } - case EVENT_RELEASE: - if(triggered && ev.changedLength < 2) { - inst.trigger(name + 'end', ev); - triggered = false; - } - break; - } + if (orientation == "left") { + title.style.left = this.props.titleCharHeight + "px"; + } else { + title.style.right = this.props.titleCharHeight + "px"; } - 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 - }, + title.style.width = this.height + "px"; + } + + // we need to clean up in case we did not use all elements. + DOMutil.cleanupElements(this.DOMelements.title); + }; + + - handler: transformGesture - }; - })('transform'); /** - * @module hammer + * Determine the size of text on the axis (both major and minor axis). + * The size is calculated only once and then cached in this.props. + * @private */ + DataAxis.prototype._calculateCharSize = function () { + // determine the char width and height on the minor axis + if (!("minorCharHeight" in this.props)) { + var textMinor = document.createTextNode("0"); + var measureCharMinor = document.createElement("div"); + measureCharMinor.className = "yAxis minor measure"; + measureCharMinor.appendChild(textMinor); + this.dom.frame.appendChild(measureCharMinor); - // AMD export - if(true) { - !(__WEBPACK_AMD_DEFINE_RESULT__ = function() { - return Hammer; - }.call(exports, __webpack_require__, exports, module), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); - // commonjs export - } else if(typeof module !== 'undefined' && module.exports) { - module.exports = Hammer; - // browser export - } else { - window.Hammer = Hammer; - } - - })(window); + this.props.minorCharHeight = measureCharMinor.clientHeight; + this.props.minorCharWidth = measureCharMinor.clientWidth; -/***/ }, -/* 21 */ -/***/ function(module, exports, __webpack_require__) { + this.dom.frame.removeChild(measureCharMinor); + } - "use strict"; + 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); - var util = __webpack_require__(1); - var hammerUtil = __webpack_require__(22); - var moment = __webpack_require__(2); - var Component = __webpack_require__(23); - var DateUtil = __webpack_require__(24); + this.props.majorCharHeight = measureCharMajor.clientHeight; + this.props.majorCharWidth = measureCharMajor.clientWidth; - /** - * @constructor Range - * A Range controls a numeric range with a start and end value. - * The Range adjusts the range based on mouse events or programmatic changes, - * and triggers events when the range is changing or has been changed. - * @param {{dom: Object, domProps: Object, emitter: Emitter}} body - * @param {Object} [options] See description at Range.setOptions - */ - function Range(body, options) { - var now = moment().hours(0).minutes(0).seconds(0).milliseconds(0); - this.start = now.clone().add(-3, "days").valueOf(); // Number - this.end = now.clone().add(4, "days").valueOf(); // Number + this.dom.frame.removeChild(measureCharMajor); + } - this.body = body; - this.deltaDifference = 0; - this.scaleOffset = 0; - this.startToFront = false; - this.endToFront = true; + if (!("titleCharHeight" in this.props)) { + var textTitle = document.createTextNode("0"); + var measureCharTitle = document.createElement("div"); + measureCharTitle.className = "yAxis title measure"; + measureCharTitle.appendChild(textTitle); + this.dom.frame.appendChild(measureCharTitle); - // default options - this.defaultOptions = { - start: null, - end: null, - direction: "horizontal", // 'horizontal' or 'vertical' - moveable: true, - zoomable: true, - min: null, - max: null, - zoomMin: 10, // milliseconds - zoomMax: 1000 * 60 * 60 * 24 * 365 * 10000 // milliseconds - }; - this.options = util.extend({}, this.defaultOptions); + this.props.titleCharHeight = measureCharTitle.clientHeight; + this.props.titleCharWidth = measureCharTitle.clientWidth; - this.props = { - touch: {} - }; - this.animateTimer = null; + this.dom.frame.removeChild(measureCharTitle); + } + }; - // 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)); + module.exports = DataAxis; - // ignore dragging when holding - this.body.emitter.on("hold", this._onHold.bind(this)); +/***/ }, +/* 29 */ +/***/ function(module, exports, __webpack_require__) { - // mouse wheel for zooming - this.body.emitter.on("mousewheel", this._onMouseWheel.bind(this)); - this.body.emitter.on("DOMMouseScroll", this._onMouseWheel.bind(this)); // For FF + "use strict"; - // pinch to zoom - this.body.emitter.on("touch", this._onTouch.bind(this)); - this.body.emitter.on("pinch", this._onPinch.bind(this)); + var util = __webpack_require__(1); + var DOMutil = __webpack_require__(2); + var Line = __webpack_require__(49); + var Bar = __webpack_require__(50); + var Points = __webpack_require__(51); - this.setOptions(options); + /** + * /** + * @param {object} group | the object of the group from the dataset + * @param {string} groupId | ID of the group + * @param {object} options | the default options + * @param {array} groupsUsingDefaultStyles | this array has one entree. + * It is passed as an array so it is passed by reference. + * It enumerates through the default styles + * @constructor + */ + 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; } - Range.prototype = new Component(); /** - * Set options for the range controller - * @param {Object} options Available options: - * {Number | Date | String} start Start date for the range - * {Number | Date | String} end End date for the range - * {Number} min Minimum value for start - * {Number} max Maximum value for end - * {Number} zoomMin Set a minimum value for - * (end - start). - * {Number} zoomMax Set a maximum value for - * (end - start). - * {Boolean} moveable Enable moving of the range - * by dragging. True by default - * {Boolean} zoomable Enable zooming of the range - * by pinching/scrolling. True by default + * this loads a reference to all items in this group into this group. + * @param {array} items */ - Range.prototype.setOptions = function (options) { - if (options) { - // copy the options that we know - var fields = ["direction", "min", "max", "zoomMin", "zoomMax", "moveable", "zoomable", "activate", "hiddenDates"]; - util.selectiveExtend(fields, this.options, options); - - if ("start" in options || "end" in options) { - // apply a new range. both start and end are optional - this.setRange(options.start, options.end); + GraphGroup.prototype.setItems = function (items) { + if (items != null) { + this.itemsData = items; + if (this.options.sort == true) { + this.itemsData.sort(function (a, b) { + return a.x - b.x; + }); } + } else { + this.itemsData = []; } }; - /** - * Test 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 {Date | Number | String} [start] - * @param {Date | Number | String} [end] - * @param {boolean | number} [animate=false] If true, the range is animated - * smoothly to the new window. - * If animate is a number, the - * number is taken as duration - * Default duration is 500 ms. - * @param {Boolean} [byUser=false] - * + * this is used for plotting barcharts, this way, we only have to calculate it once. + * @param pos */ - Range.prototype.setRange = function (start, end, animate, byUser) { - if (byUser !== true) { - byUser = false; - } - var _start = start != undefined ? util.convert(start, "Date").valueOf() : null; - var _end = end != undefined ? util.convert(end, "Date").valueOf() : null; - this._cancelAnimation(); + GraphGroup.prototype.setZeroPosition = function (pos) { + this.zeroPosition = pos; + }; - if (animate) { - var me = this; - var initStart = this.start; - var initEnd = this.end; - var duration = typeof animate === "number" ? animate : 500; - var initTime = new Date().valueOf(); - var anyChanged = false; - var next = function () { - if (!me.props.touch.dragging) { - var now = new Date().valueOf(); - var time = now - initTime; - var done = time > duration; - var s = done || _start === null ? _start : util.easeInOutQuad(time, initStart, _start, duration); - var e = done || _end === null ? _end : util.easeInOutQuad(time, initEnd, _end, duration); + /** + * set the options of the graph group over the default options. + * @param options + */ + GraphGroup.prototype.setOptions = function (options) { + if (options !== undefined) { + var fields = ["sampling", "style", "sort", "yAxisOrientation", "barChart"]; + util.selectiveDeepExtend(fields, this.options, options); - changed = me._applyRange(s, e); - DateUtil.updateHiddenDates(me.body, me.options.hiddenDates); - anyChanged = anyChanged || changed; - if (changed) { - me.body.emitter.emit("rangechange", { start: new Date(me.start), end: new Date(me.end), byUser: byUser }); - } + util.mergeOptions(this.options, options, "catmullRom"); + util.mergeOptions(this.options, options, "drawPoints"); + util.mergeOptions(this.options, options, "shaded"); - if (done) { - if (anyChanged) { - me.body.emitter.emit("rangechanged", { start: new Date(me.start), end: new Date(me.end), byUser: byUser }); + 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; + } else { + this.options.catmullRom.parametrization = "centripetal"; + this.options.catmullRom.alpha = 0.5; } - } else { - // animate with as high as possible frame rate, leave 20 ms in between - // each to prevent the browser from blocking - me.animateTimer = setTimeout(next, 20); } } - }; - - return next(); - } else { - var changed = this._applyRange(_start, _end); - DateUtil.updateHiddenDates(this.body, this.options.hiddenDates); - if (changed) { - var params = { start: new Date(this.start), end: new Date(this.end), byUser: byUser }; - this.body.emitter.emit("rangechange", params); - this.body.emitter.emit("rangechanged", params); } } + + if (this.options.style == "line") { + this.type = new Line(this.id, this.options); + } else if (this.options.style == "bar") { + this.type = new Bar(this.id, this.options); + } else if (this.options.style == "points") { + this.type = new Points(this.id, this.options); + } }; + /** - * Stop an animation - * @private + * this updates the current group class with the latest group dataset entree, used in _updateGroup in linegraph + * @param group */ - Range.prototype._cancelAnimation = function () { - if (this.animateTimer) { - clearTimeout(this.animateTimer); - this.animateTimer = null; - } + 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.style = group.style; + this.setOptions(group.options); }; + /** - * 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 + * draw the icon for the legend. + * + * @param x + * @param y + * @param JSONcontainer + * @param SVGcontainer + * @param iconWidth + * @param iconHeight */ - 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; + GraphGroup.prototype.drawIcon = function (x, y, JSONcontainer, SVGcontainer, iconWidth, iconHeight) { + var fillHeight = iconHeight * 0.5; + var path, fillPath; - // 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 + "\""); - } + 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"); - // prevent start < end - if (newEnd < newStart) { - newEnd = newStart; - } + if (this.options.style == "line") { + path = DOMutil.getSVGElement("path", JSONcontainer, SVGcontainer); + path.setAttributeNS(null, "class", this.className); + if (this.style !== undefined) { + path.setAttributeNS(null, "style", this.style); + } - // prevent start < min - if (min !== null) { - if (newStart < min) { - diff = min - newStart; - newStart += diff; - newEnd += diff; - - // prevent end > max - if (max != null) { - if (newEnd > max) { - newEnd = max; - } - } - } - } - - // 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 && newStart > this.start && newEnd < this.end) { - // ignore this action, we are already zoomed to the minimum - newStart = this.start; - newEnd = this.end; + 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 { - // zoom to the minimum - diff = zoomMin - (newEnd - newStart); - newStart -= diff / 2; - newEnd += diff / 2; + fillPath.setAttributeNS(null, "d", "M" + x + "," + y + " " + "L" + x + "," + (y + fillHeight) + " " + "L" + (x + iconWidth) + "," + (y + fillHeight) + "L" + (x + iconWidth) + "," + y); } - } - } - - // prevent (end-start) > zoomMax - if (this.options.zoomMax !== null) { - var zoomMax = parseFloat(this.options.zoomMax); - if (zoomMax < 0) { - zoomMax = 0; + fillPath.setAttributeNS(null, "class", this.className + " iconFill"); } - if (newEnd - newStart > zoomMax) { - if (this.end - this.start === zoomMax && newStart < this.start && newEnd > this.end) { - // 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; - } + if (this.options.drawPoints.enabled == true) { + DOMutil.drawPoint(x + 0.5 * iconWidth, y, this, JSONcontainer, SVGcontainer); } - } + } else { + var barWidth = Math.round(0.3 * iconWidth); + var bar1Height = Math.round(0.4 * iconHeight); + var bar2Height = Math.round(0.75 * iconHeight); - var changed = this.start != newStart || this.end != newEnd; + var offset = Math.round((iconWidth - 2 * barWidth) / 3); - // if the new range does NOT overlap with the old range, emit checkRangedItems to avoid not showing ranged items (ranged meaning has end time, not necessarily of type Range) - if (!(newStart >= this.start && newStart <= this.end || newEnd >= this.start && newEnd <= this.end) && !(this.start >= newStart && this.start <= newEnd || this.end >= newStart && this.end <= newEnd)) { - this.body.emitter.emit("checkRangedItems"); + 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); } - - this.start = newStart; - this.end = newEnd; - return changed; }; + /** - * Retrieve the current range. - * @return {Object} An object with start and end properties + * return the legend entree for this group. + * + * @param iconWidth + * @param iconHeight + * @returns {{icon: HTMLElement, label: (group.content|*|string), orientation: (.options.yAxisOrientation|*)}} */ - Range.prototype.getRange = function () { - return { - start: this.start, - end: this.end - }; + 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 }; }; - /** - * 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, totalHidden) { - return Range.conversion(this.start, this.end, width, totalHidden); + GraphGroup.prototype.getYRange = function (groupData) { + return this.type.getYRange(groupData); }; - /** - * 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, totalHidden) { - if (totalHidden === undefined) { - totalHidden = 0; - } - if (width != 0 && end - start != 0) { - return { - offset: start, - scale: width / (end - start - totalHidden) - }; - } else { - return { - offset: 0, - scale: 1 - }; - } + GraphGroup.prototype.draw = function (dataset, group, framework) { + this.type.draw(dataset, group, framework); }; - /** - * Start dragging horizontally or vertically - * @param {Event} event - * @private - */ - Range.prototype._onDragStart = function (event) { - this.deltaDifference = 0; - this.previousDelta = 0; - // 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; + module.exports = GraphGroup; - this.props.touch.start = this.start; - this.props.touch.end = this.end; - this.props.touch.dragging = true; +/***/ }, +/* 30 */ +/***/ function(module, exports, __webpack_require__) { - if (this.body.dom.root) { - this.body.dom.root.style.cursor = "move"; - } - }; + "use strict"; + + var util = __webpack_require__(1); + var stack = __webpack_require__(18); + var RangeItem = __webpack_require__(24); /** - * Perform dragging operation - * @param {Event} event - * @private + * @constructor Group + * @param {Number | String} groupId + * @param {Object} data + * @param {ItemSet} itemSet */ - Range.prototype._onDrag = 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; - - var direction = this.options.direction; - validateDirection(direction); - - var delta = direction == "horizontal" ? event.gesture.deltaX : event.gesture.deltaY; - delta -= this.deltaDifference; - var interval = this.props.touch.end - this.props.touch.start; - - // normalize dragging speed if cutout is in between. - var duration = DateUtil.getHiddenDurationBetween(this.body.hiddenDates, this.start, this.end); - interval -= duration; - - var width = direction == "horizontal" ? this.body.domProps.center.width : this.body.domProps.center.height; - var diffRange = -delta / width * interval; - var newStart = this.props.touch.start + diffRange; - var newEnd = this.props.touch.end + diffRange; + function Group(groupId, data, itemSet) { + this.groupId = groupId; + this.subgroups = {}; + this.subgroupIndex = 0; + this.subgroupOrderer = data && data.subgroupOrder; + this.itemSet = itemSet; + this.dom = {}; + this.props = { + label: { + width: 0, + height: 0 + } + }; + this.className = null; - // snapping times away from hidden zones - var safeStart = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newStart, this.previousDelta - delta, true); - var safeEnd = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newEnd, this.previousDelta - delta, true); - if (safeStart != newStart || safeEnd != newEnd) { - this.deltaDifference += delta; - this.props.touch.start = safeStart; - this.props.touch.end = safeEnd; - this._onDrag(event); - return; - } + this.items = {}; // items filtered by groupId of this group + this.visibleItems = []; // items currently visible in window + this.orderedItems = { + byStart: [], + byEnd: [] + }; + this.checkRangedItems = false; // needed to refresh the ranged items if the window is programatically changed with NO overlap. + var me = this; + this.itemSet.body.emitter.on("checkRangedItems", function () { + me.checkRangedItems = true; + }); - this.previousDelta = delta; - this._applyRange(newStart, newEnd); + this._create(); - // fire a rangechange event - this.body.emitter.emit("rangechange", { - start: new Date(this.start), - end: new Date(this.end), - byUser: true - }); - }; + this.setData(data); + } /** - * Stop dragging operation - * @param {event} event + * Create DOM elements for the group * @private */ - Range.prototype._onDragEnd = function (event) { - // only allow dragging when configured as movable - if (!this.options.moveable) return; + Group.prototype._create = function () { + var label = document.createElement("div"); + label.className = "vlabel"; + this.dom.label = label; - // 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 inner = document.createElement("div"); + inner.className = "inner"; + label.appendChild(inner); + this.dom.inner = inner; - this.props.touch.dragging = false; - if (this.body.dom.root) { - this.body.dom.root.style.cursor = "auto"; - } + var foreground = document.createElement("div"); + foreground.className = "group"; + foreground["timeline-group"] = this; + this.dom.foreground = foreground; - // fire a rangechanged event - this.body.emitter.emit("rangechanged", { - start: new Date(this.start), - end: new Date(this.end), - byUser: true - }); + this.dom.background = document.createElement("div"); + this.dom.background.className = "group"; + + 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"; // TODO: ask jos why this is not none? + this.dom.marker.innerHTML = "?"; + this.dom.background.appendChild(this.dom.marker); }; /** - * Event handler for mouse wheel event, used to zoom - * Code from http://adomas.org/javascript-mouse-wheel/ - * @param {Event} event - * @private + * Set the group data for this group + * @param {Object} data Group data, can contain properties content and className */ - 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; + 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 } - // If delta is nonzero, handle it. - // Basically, delta is now positive if wheel was scrolled up, - // and negative, if wheel was scrolled down. - if (delta) { - // perform the zoom action. Delta is normally 1 or -1 - - // adjust a negative delta such that zooming in with delta 0.1 - // equals zooming out with a delta -0.1 - var scale; - if (delta < 0) { - scale = 1 - delta / 5; - } else { - scale = 1 / (1 + delta / 5); - } + // update title + this.dom.label.title = data && data.title || ""; - // 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); + if (!this.dom.inner.firstChild) { + util.addClassName(this.dom.inner, "hidden"); + } else { + util.removeClassName(this.dom.inner, "hidden"); + } - this.zoom(scale, pointerDate, delta); + // update className + var className = data && data.className || null; + if (className != this.className) { + if (this.className) { + util.removeClassName(this.dom.label, this.className); + util.removeClassName(this.dom.foreground, this.className); + util.removeClassName(this.dom.background, this.className); + util.removeClassName(this.dom.axis, this.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.className = className; } - // Prevent default actions caused by mouse wheel - // (else the page and timeline both zoom and scroll) - event.preventDefault(); + // update style + if (this.style) { + util.removeCssText(this.dom.label, this.style); + this.style = null; + } + if (data && data.style) { + util.addCssText(this.dom.label, data.style); + this.style = data.style; + } }; /** - * Start of a touch gesture - * @private + * Get the width of the group label + * @return {number} width */ - 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; - this.scaleOffset = 0; - this.deltaDifference = 0; + Group.prototype.getLabelWidth = function () { + return this.props.label.width; }; - /** - * On start of a hold gesture - * @private - */ - Range.prototype._onHold = function () { - this.props.touch.allowDragging = false; - }; /** - * Handle pinch event - * @param {Event} event - * @private + * 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 */ - Range.prototype._onPinch = function (event) { - // only allow zooming when configured as zoomable and moveable - if (!(this.options.zoomable && this.options.moveable)) return; + Group.prototype.redraw = function (range, margin, restack) { + var resized = false; - this.props.touch.allowDragging = false; + this.visibleItems = this._updateVisibleItems(this.orderedItems, this.visibleItems, range); - if (event.gesture.touches.length > 1) { - if (!this.props.touch.center) { - this.props.touch.center = getPointer(event.gesture.center, this.body.dom.center); - } + // 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(); + }); - var scale = 1 / (event.gesture.scale + this.scaleOffset); - var centerDate = this._pointerToDate(this.props.touch.center); + restack = true; + } - var hiddenDuration = DateUtil.getHiddenDurationBetween(this.body.hiddenDates, this.start, this.end); - var hiddenDurationBefore = DateUtil.getHiddenDurationBefore(this.body.hiddenDates, this, centerDate); - var hiddenDurationAfter = hiddenDuration - hiddenDurationBefore; + // 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, this.subgroups); + } - // calculate new start and end - var newStart = centerDate - hiddenDurationBefore + (this.props.touch.start - (centerDate - hiddenDurationBefore)) * scale; - var newEnd = centerDate + hiddenDurationAfter + (this.props.touch.end - (centerDate + hiddenDurationAfter)) * scale; + // recalculate the height of the group + var height = this._calculateHeight(margin); - // snapping times away from hidden zones - this.startToFront = 1 - scale > 0 ? false : true; // used to do the right autocorrection with periodic hidden times - this.endToFront = scale - 1 > 0 ? false : true; // used to do the right autocorrection with periodic hidden times + // 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; - var safeStart = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newStart, 1 - scale, true); - var safeEnd = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newEnd, scale - 1, true); - if (safeStart != newStart || safeEnd != newEnd) { - this.props.touch.start = safeStart; - this.props.touch.end = safeEnd; - this.scaleOffset = 1 - event.gesture.scale; - newStart = safeStart; - newEnd = safeEnd; - } + // 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; - this.setRange(newStart, newEnd, false, true); + // apply new height + this.dom.background.style.height = height + "px"; + this.dom.foreground.style.height = height + "px"; + this.dom.label.style.height = height + "px"; - this.startToFront = false; // revert to default - this.endToFront = true; // revert to default + // 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(margin); } + + return resized; }; /** - * Helper function to calculate the center date for zooming - * @param {{x: Number, y: Number}} pointer - * @return {number} date + * recalculate the height of the group + * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin + * @returns {number} Returns the height * @private */ - Range.prototype._pointerToDate = function (pointer) { - var conversion; - var direction = this.options.direction; - - validateDirection(direction); - - if (direction == "horizontal") { - return this.body.util.toTime(pointer.x).valueOf(); + Group.prototype._calculateHeight = function (margin) { + // recalculate the height of the group + var height; + var visibleItems = this.visibleItems; + //var visibleSubgroups = []; + //this.visibleSubgroups = 0; + this.resetSubgroups(); + var me = this; + 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 (item.data.subgroup !== undefined) { + me.subgroups[item.data.subgroup].height = Math.max(me.subgroups[item.data.subgroup].height, item.height); + me.subgroups[item.data.subgroup].visible = true; + //if (visibleSubgroups.indexOf(item.data.subgroup) == -1){ + // visibleSubgroups.push(item.data.subgroup); + // me.visibleSubgroups += 1; + //} + } + }); + 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 { - var height = this.body.domProps.center.height; - conversion = this.conversion(height); - return pointer.y / conversion.scale + conversion.offset; + height = margin.axis + margin.item.vertical; } + height = Math.max(height, this.props.label.height); + + return height; }; /** - * 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 + * Show this group: attach to the DOM */ - function getPointer(touch, element) { - return { - x: touch.pageX - util.getAbsoluteLeft(element), - y: touch.pageY - util.getAbsoluteTop(element) - }; - } + Group.prototype.show = function () { + if (!this.dom.label.parentNode) { + this.itemSet.dom.labelSet.appendChild(this.dom.label); + } - /** - * 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, delta) { - // if centerDate is not provided, take it half between start Date and end Date - if (center == null) { - center = (this.start + this.end) / 2; + if (!this.dom.foreground.parentNode) { + this.itemSet.dom.foreground.appendChild(this.dom.foreground); } - var hiddenDuration = DateUtil.getHiddenDurationBetween(this.body.hiddenDates, this.start, this.end); - var hiddenDurationBefore = DateUtil.getHiddenDurationBefore(this.body.hiddenDates, this, center); - var hiddenDurationAfter = hiddenDuration - hiddenDurationBefore; - - // calculate new start and end - var newStart = center - hiddenDurationBefore + (this.start - (center - hiddenDurationBefore)) * scale; - var newEnd = center + hiddenDurationAfter + (this.end - (center + hiddenDurationAfter)) * scale; + if (!this.dom.background.parentNode) { + this.itemSet.dom.background.appendChild(this.dom.background); + } - // snapping times away from hidden zones - this.startToFront = delta > 0 ? false : true; // used to do the right autocorrection with periodic hidden times - this.endToFront = -delta > 0 ? false : true; // used to do the right autocorrection with periodic hidden times - var safeStart = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newStart, delta, true); - var safeEnd = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newEnd, -delta, true); - if (safeStart != newStart || safeEnd != newEnd) { - newStart = safeStart; - newEnd = safeEnd; + if (!this.dom.axis.parentNode) { + this.itemSet.dom.axis.appendChild(this.dom.axis); } + }; - this.setRange(newStart, newEnd, false, true); + /** + * Hide this group: remove from the DOM + */ + Group.prototype.hide = function () { + var label = this.dom.label; + if (label.parentNode) { + label.parentNode.removeChild(label); + } - this.startToFront = false; // revert to default - this.endToFront = true; // revert to default - }; + var foreground = this.dom.foreground; + if (foreground.parentNode) { + foreground.parentNode.removeChild(foreground); + } + var background = this.dom.background; + if (background.parentNode) { + background.parentNode.removeChild(background); + } + var axis = this.dom.axis; + if (axis.parentNode) { + axis.parentNode.removeChild(axis); + } + }; /** - * 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 + * Add an item to the group + * @param {Item} item */ - Range.prototype.move = function (delta) { - // zoom start Date and end Date relative to the centerDate - var diff = this.end - this.start; + Group.prototype.add = function (item) { + this.items[item.id] = item; + item.setParent(this); - // apply new values - var newStart = this.start + diff * delta; - var newEnd = this.end + diff * delta; + // add to + if (item.data.subgroup !== undefined) { + if (this.subgroups[item.data.subgroup] === undefined) { + this.subgroups[item.data.subgroup] = { height: 0, visible: false, index: this.subgroupIndex, items: [] }; + this.subgroupIndex++; + } + this.subgroups[item.data.subgroup].items.push(item); + } + this.orderSubgroups(); - // TODO: reckon with min and max range + 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); + } + }; - this.start = newStart; - this.end = newEnd; + Group.prototype.orderSubgroups = function () { + if (this.subgroupOrderer !== undefined) { + var sortArray = []; + if (typeof this.subgroupOrderer == "string") { + for (var subgroup in this.subgroups) { + sortArray.push({ subgroup: subgroup, sortField: this.subgroups[subgroup].items[0].data[this.subgroupOrderer] }); + } + sortArray.sort(function (a, b) { + return a.sortField - b.sortField; + }); + } else if (typeof this.subgroupOrderer == "function") { + for (var subgroup in this.subgroups) { + sortArray.push(this.subgroups[subgroup].items[0].data); + } + sortArray.sort(this.subgroupOrderer); + } + + if (sortArray.length > 0) { + for (var i = 0; i < sortArray.length; i++) { + this.subgroups[sortArray[i].subgroup].index = i; + } + } + } + }; + + Group.prototype.resetSubgroups = function () { + for (var subgroup in this.subgroups) { + if (this.subgroups.hasOwnProperty(subgroup)) { + this.subgroups[subgroup].visible = false; + } + } }; /** - * Move the range to a new center point - * @param {Number} moveTo New center point of the range + * Remove an item from the group + * @param {Item} item */ - Range.prototype.moveTo = function (moveTo) { - var center = (this.start + this.end) / 2; + Group.prototype.remove = function (item) { + delete this.items[item.id]; + item.setParent(null); - var diff = center - moveTo; + // remove from visible items + var index = this.visibleItems.indexOf(item); + if (index != -1) this.visibleItems.splice(index, 1); - // calculate new start and end - var newStart = this.start - diff; - var newEnd = this.end - diff; + // TODO: also remove from ordered items? + }; - this.setRange(newStart, newEnd); + + /** + * Remove an item from the corresponding DataSet + * @param {Item} item + */ + Group.prototype.removeFromDataSet = function (item) { + this.itemSet.removeItem(item.id); }; - module.exports = Range; -/***/ }, -/* 22 */ -/***/ function(module, exports, __webpack_require__) { + /** + * Reorder the items + */ + Group.prototype.order = function () { + var array = util.toArray(this.items); + var startArray = []; + var endArray = []; - "use strict"; + for (var i = 0; i < array.length; i++) { + if (array[i].data.end !== undefined) { + endArray.push(array[i]); + } + startArray.push(array[i]); + } + this.orderedItems = { + byStart: startArray, + byEnd: endArray + }; + + stack.orderByStart(this.orderedItems.byStart); + stack.orderByEnd(this.orderedItems.byEnd); + }; - var Hammer = __webpack_require__(19); /** - * Fake a hammer.js gesture. Event can be a ScrollEvent or MouseMoveEvent - * @param {Element} element - * @param {Event} event + * 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 */ - exports.fakeGesture = function (element, event) { - var eventType = null; + Group.prototype._updateVisibleItems = function (orderedItems, oldVisibleItems, range) { + var visibleItems = []; + var visibleItemsLookup = {}; // we keep this to quickly look up if an item already exists in the list without using indexOf on visibleItems + var interval = (range.end - range.start) / 4; + var lowerBound = range.start - interval; + var upperBound = range.end + interval; + var item, i; + + // this function is used to do the binary search. + var searchFunction = function (value) { + if (value < lowerBound) { + return -1; + } else if (value <= upperBound) { + return 0; + } else { + return 1; + } + }; + + // first check if the items that were in view previously are still in view. + // IMPORTANT: this handles the case for the items with startdate before the window and enddate after the window! + // also cleans up invisible items. + if (oldVisibleItems.length > 0) { + for (i = 0; i < oldVisibleItems.length; i++) { + this._checkIfVisibleWithReference(oldVisibleItems[i], visibleItems, visibleItemsLookup, range); + } + } + + // we do a binary search for the items that have only start values. + var initialPosByStart = util.binarySearchCustom(orderedItems.byStart, searchFunction, "data", "start"); - // for hammer.js 1.0.5 - // var gesture = Hammer.event.collectEventData(this, eventType, event); + // trace the visible items from the inital start pos both ways until an invisible item is found, we only look at the start values. + this._traceVisible(initialPosByStart, orderedItems.byStart, visibleItems, visibleItemsLookup, function (item) { + return item.data.start < lowerBound || item.data.start > upperBound; + }); - // for hammer.js 1.0.6+ - var touches = Hammer.event.getTouchList(event, eventType); - var gesture = Hammer.event.collectEventData(this, eventType, touches, event); + // if the window has changed programmatically without overlapping the old window, the ranged items with start < lowerBound and end > upperbound are not shown. + // We therefore have to brute force check all items in the byEnd list + if (this.checkRangedItems == true) { + this.checkRangedItems = false; + for (i = 0; i < orderedItems.byEnd.length; i++) { + this._checkIfVisibleWithReference(orderedItems.byEnd[i], visibleItems, visibleItemsLookup, range); + } + } else { + // we do a binary search for the items that have defined end times. + var initialPosByEnd = util.binarySearchCustom(orderedItems.byEnd, searchFunction, "data", "end"); - // 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; + // trace the visible items from the inital start pos both ways until an invisible item is found, we only look at the end values. + this._traceVisible(initialPosByEnd, orderedItems.byEnd, visibleItems, visibleItemsLookup, function (item) { + return item.data.end < lowerBound || item.data.end > upperBound; + }); } - if (isNaN(gesture.center.pageY)) { - gesture.center.pageY = event.pageY; + + + // finally, we reposition all the visible items. + for (i = 0; i < visibleItems.length; i++) { + item = visibleItems[i]; + if (!item.displayed) item.show(); + // reposition item horizontally + item.repositionX(); } - return gesture; - }; + // debug + //console.log("new line") + //if (this.groupId == null) { + // for (i = 0; i < orderedItems.byStart.length; i++) { + // item = orderedItems.byStart[i].data; + // console.log('start',i,initialPosByStart, item.start.valueOf(), item.content, item.start >= lowerBound && item.start <= upperBound,i == initialPosByStart ? "<------------------- HEREEEE" : "") + // } + // for (i = 0; i < orderedItems.byEnd.length; i++) { + // item = orderedItems.byEnd[i].data; + // console.log('rangeEnd',i,initialPosByEnd, item.end.valueOf(), item.content, item.end >= range.start && item.end <= range.end,i == initialPosByEnd ? "<------------------- HEREEEE" : "") + // } + //} -/***/ }, -/* 23 */ -/***/ function(module, exports, __webpack_require__) { + return visibleItems; + }; - "use strict"; + Group.prototype._traceVisible = function (initialPos, items, visibleItems, visibleItemsLookup, breakCondition) { + var item; + var i; - /** - * 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; - } + if (initialPos != -1) { + for (i = initialPos; i >= 0; i--) { + item = items[i]; + if (breakCondition(item)) { + break; + } else { + if (visibleItemsLookup[item.id] === undefined) { + visibleItemsLookup[item.id] = true; + visibleItems.push(item); + } + } + } - /** - * 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); + for (i = initialPos + 1; i < items.length; i++) { + item = items[i]; + if (breakCondition(item)) { + break; + } else { + if (visibleItemsLookup[item.id] === undefined) { + visibleItemsLookup[item.id] = true; + visibleItems.push(item); + } + } + } } }; + /** - * Repaint the component - * @return {boolean} Returns true if the component is resized + * 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 */ - Component.prototype.redraw = function () { - // should be implemented by the component - return false; + 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(); + } }; - /** - * Destroy the component. Cleanup DOM and event listeners - */ - Component.prototype.destroy = function () {}; /** - * Test whether the component is resized since the last time _isResized() was - * called. - * @return {Boolean} Returns true if the component is resized - * @protected + * 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 */ - Component.prototype._isResized = function () { - var resized = this.props._previousWidth !== this.props.width || this.props._previousHeight !== this.props.height; + Group.prototype._checkIfVisibleWithReference = function (item, visibleItems, visibleItemsLookup, range) { + if (item.isVisible(range)) { + if (visibleItemsLookup[item.id] === undefined) { + visibleItemsLookup[item.id] = true; + visibleItems.push(item); + } + } else { + if (item.displayed) item.hide(); + } + }; - this.props._previousWidth = this.props.width; - this.props._previousHeight = this.props.height; - return resized; - }; - module.exports = Component; - // should be implemented by the component + module.exports = Group; /***/ }, -/* 24 */ +/* 31 */ /***/ function(module, exports, __webpack_require__) { "use strict"; + var util = __webpack_require__(1); + var Group = __webpack_require__(30); + /** - * Created by Alex on 10/3/2014. + * @constructor BackgroundGroup + * @param {Number | String} groupId + * @param {Object} data + * @param {ItemSet} itemSet */ - var moment = __webpack_require__(2); + function BackgroundGroup(groupId, data, itemSet) { + Group.call(this, groupId, data, itemSet); + + this.width = 0; + this.height = 0; + this.top = 0; + this.left = 0; + } + BackgroundGroup.prototype = Object.create(Group.prototype); /** - * used in Core to convert the options into a volatile variable - * - * @param Core + * 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 */ - exports.convertHiddenOptions = function (body, hiddenDates) { - body.hiddenDates = []; - if (hiddenDates) { - if (Array.isArray(hiddenDates) == true) { - for (var i = 0; i < hiddenDates.length; i++) { - if (hiddenDates[i].repeat === undefined) { - var dateItem = {}; - dateItem.start = moment(hiddenDates[i].start).toDate().valueOf(); - dateItem.end = moment(hiddenDates[i].end).toDate().valueOf(); - body.hiddenDates.push(dateItem); - } - } - body.hiddenDates.sort(function (a, b) { - return a.start - b.start; - }); // sort by start time - } + BackgroundGroup.prototype.redraw = function (range, margin, restack) { + var resized = false; + + this.visibleItems = this._updateVisibleItems(this.orderedItems, this.visibleItems, range); + + // calculate actual size + this.width = this.dom.background.offsetWidth; + + // apply new height (just always zero for BackgroundGroup + this.dom.background.style.height = "0"; + + // 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(margin); } - }; + return resized; + }; /** - * create new entrees for the repeating hidden dates - * @param body - * @param hiddenDates + * Show this group: attach to the DOM */ - exports.updateHiddenDates = function (body, hiddenDates) { - if (hiddenDates && body.domProps.centerContainer.width !== undefined) { - exports.convertHiddenOptions(body, hiddenDates); + BackgroundGroup.prototype.show = function () { + if (!this.dom.background.parentNode) { + this.itemSet.dom.background.appendChild(this.dom.background); + } + }; - var start = moment(body.range.start); - var end = moment(body.range.end); + module.exports = BackgroundGroup; - var totalRange = body.range.end - body.range.start; - var pixelTime = totalRange / body.domProps.centerContainer.width; +/***/ }, +/* 32 */ +/***/ function(module, exports, __webpack_require__) { - for (var i = 0; i < hiddenDates.length; i++) { - if (hiddenDates[i].repeat !== undefined) { - var startDate = moment(hiddenDates[i].start); - var endDate = moment(hiddenDates[i].end); + "use strict"; - if (startDate._d == "Invalid Date") { - throw new Error("Supplied start date is not valid: " + hiddenDates[i].start); - } - if (endDate._d == "Invalid Date") { - throw new Error("Supplied end date is not valid: " + hiddenDates[i].end); - } + var Hammer = __webpack_require__(45); + var util = __webpack_require__(1); + var DataSet = __webpack_require__(3); + var DataView = __webpack_require__(4); + var TimeStep = __webpack_require__(19); + var Component = __webpack_require__(25); + var Group = __webpack_require__(30); + var BackgroundGroup = __webpack_require__(31); + var BoxItem = __webpack_require__(22); + var PointItem = __webpack_require__(23); + var RangeItem = __webpack_require__(24); + var BackgroundItem = __webpack_require__(21); - var duration = endDate - startDate; - if (duration >= 4 * pixelTime) { - var offset = 0; - var runUntil = end.clone(); - switch (hiddenDates[i].repeat) { - case "daily": - // case of time - if (startDate.day() != endDate.day()) { - offset = 1; - } - startDate.dayOfYear(start.dayOfYear()); - startDate.year(start.year()); - startDate.subtract(7, "days"); - endDate.dayOfYear(start.dayOfYear()); - endDate.year(start.year()); - endDate.subtract(7 - offset, "days"); + var UNGROUPED = "__ungrouped__"; // reserved group id for ungrouped items + var BACKGROUND = "__background__"; // reserved group id for background items without group - runUntil.add(1, "weeks"); - break; - case "weekly": - var dayOffset = endDate.diff(startDate, "days"); - var day = startDate.day(); + /** + * 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; - // set the start date to the range.start - startDate.date(start.date()); - startDate.month(start.month()); - startDate.year(start.year()); - endDate = startDate.clone(); + this.defaultOptions = { + type: null, // 'box', 'point', 'range', 'background' + orientation: "bottom", // 'top' or 'bottom' + align: "auto", // alignment of box items + stack: true, + groupOrder: null, - // force - startDate.day(day); - endDate.day(day); - endDate.add(dayOffset, "days"); + selectable: true, + editable: { + updateTime: false, + updateGroup: false, + add: false, + remove: false + }, - startDate.subtract(1, "weeks"); - endDate.subtract(1, "weeks"); + snap: TimeStep.snap, - runUntil.add(1, "weeks"); - break; - case "monthly": - if (startDate.month() != endDate.month()) { - offset = 1; - } - startDate.month(start.month()); - startDate.year(start.year()); - startDate.subtract(1, "months"); + onAdd: function (item, callback) { + callback(item); + }, + onUpdate: function (item, callback) { + callback(item); + }, + onMove: function (item, callback) { + callback(item); + }, + onRemove: function (item, callback) { + callback(item); + }, + onMoving: function (item, callback) { + callback(item); + }, - endDate.month(start.month()); - endDate.year(start.year()); - endDate.subtract(1, "months"); - endDate.add(offset, "months"); + margin: { + item: { + horizontal: 10, + vertical: 10 + }, + axis: 20 + }, + padding: 5 + }; - runUntil.add(1, "months"); - break; - case "yearly": - if (startDate.year() != endDate.year()) { - offset = 1; - } - startDate.year(start.year()); - startDate.subtract(1, "years"); - endDate.year(start.year()); - endDate.subtract(1, "years"); - endDate.add(offset, "years"); + // options is shared by this ItemSet and all its items + this.options = util.extend({}, this.defaultOptions); - runUntil.add(1, "years"); - break; - default: - console.log("Wrong repeat format, allowed are: daily, weekly, monthly, yearly. Given:", hiddenDates[i].repeat); - return; - } - while (startDate < runUntil) { - body.hiddenDates.push({ start: startDate.valueOf(), end: endDate.valueOf() }); - switch (hiddenDates[i].repeat) { - case "daily": - startDate.add(1, "days"); - endDate.add(1, "days"); - break; - case "weekly": - startDate.add(1, "weeks"); - endDate.add(1, "weeks"); - break; - case "monthly": - startDate.add(1, "months"); - endDate.add(1, "months"); - break; - case "yearly": - startDate.add(1, "y"); - endDate.add(1, "y"); - break; - default: - console.log("Wrong repeat format, allowed are: daily, weekly, monthly, yearly. Given:", hiddenDates[i].repeat); - return; - } - } - body.hiddenDates.push({ start: startDate.valueOf(), end: endDate.valueOf() }); - } - } - } - // remove duplicates, merge where possible - exports.removeDuplicates(body); - // ensure the new positions are not on hidden dates - var startHidden = exports.isHidden(body.range.start, body.hiddenDates); - var endHidden = exports.isHidden(body.range.end, body.hiddenDates); - var rangeStart = body.range.start; - var rangeEnd = body.range.end; - if (startHidden.hidden == true) { - rangeStart = body.range.startToFront == true ? startHidden.startDate - 1 : startHidden.endDate + 1; - } - if (endHidden.hidden == true) { - rangeEnd = body.range.endToFront == true ? endHidden.startDate - 1 : endHidden.endDate + 1; + // options for getting items from the DataSet with the correct type + this.itemOptions = { + type: { start: "Date", end: "Date" } + }; + + this.conversion = { + toScreen: body.util.toScreen, + toTime: body.util.toTime + }; + this.dom = {}; + this.props = {}; + this.hammer = null; + + var me = this; + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet + + // listeners for the DataSet of the items + this.itemListeners = { + add: function (event, params, senderId) { + me._onAdd(params.items); + }, + update: function (event, params, senderId) { + me._onUpdate(params.items); + }, + remove: function (event, params, senderId) { + me._onRemove(params.items); } - if (startHidden.hidden == true || endHidden.hidden == true) { - body.range._applyRange(rangeStart, rangeEnd); + }; + + // listeners for the DataSet of the groups + this.groupListeners = { + add: function (event, params, senderId) { + me._onAddGroups(params.items); + }, + update: function (event, params, senderId) { + me._onUpdateGroups(params.items); + }, + remove: function (event, params, senderId) { + me._onRemoveGroups(params.items); } - } - }; + }; + + this.items = {}; // object with an Item for every data item + this.groups = {}; // Group object for every group + this.groupIds = []; + + 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 + + this._create(); + + this.setOptions(options); + } + + ItemSet.prototype = new Component(); + // available item types will be registered here + ItemSet.types = { + background: BackgroundItem, + box: BoxItem, + range: RangeItem, + point: PointItem + }; /** - * remove duplicates from the hidden dates list. Duplicates are evil. They mess everything up. - * Scales with N^2 - * @param body + * Create the HTML DOM for the ItemSet */ - exports.removeDuplicates = function (body) { - var hiddenDates = body.hiddenDates; - var safeDates = []; - for (var i = 0; i < hiddenDates.length; i++) { - for (var j = 0; j < hiddenDates.length; j++) { - if (i != j && hiddenDates[j].remove != true && hiddenDates[i].remove != true) { - // j inside i - if (hiddenDates[j].start >= hiddenDates[i].start && hiddenDates[j].end <= hiddenDates[i].end) { - hiddenDates[j].remove = true; - } - // j start inside i - else if (hiddenDates[j].start >= hiddenDates[i].start && hiddenDates[j].start <= hiddenDates[i].end) { - hiddenDates[i].end = hiddenDates[j].end; - hiddenDates[j].remove = true; - } - // j end inside i - else if (hiddenDates[j].end >= hiddenDates[i].start && hiddenDates[j].end <= hiddenDates[i].end) { - hiddenDates[i].start = hiddenDates[j].start; - hiddenDates[j].remove = true; - } - } - } - } + ItemSet.prototype._create = function () { + var frame = document.createElement("div"); + frame.className = "itemset"; + frame["timeline-itemset"] = this; + this.dom.frame = frame; - for (var i = 0; i < hiddenDates.length; i++) { - if (hiddenDates[i].remove !== true) { - safeDates.push(hiddenDates[i]); + // create background panel + var background = document.createElement("div"); + background.className = "background"; + frame.appendChild(background); + this.dom.background = background; + + // create foreground panel + var foreground = document.createElement("div"); + foreground.className = "foreground"; + frame.appendChild(foreground); + this.dom.foreground = foreground; + + // create axis panel + var axis = document.createElement("div"); + axis.className = "axis"; + this.dom.axis = axis; + + // create labelset + var labelSet = document.createElement("div"); + labelSet.className = "labelset"; + this.dom.labelSet = labelSet; + + // create ungrouped Group + this._updateUngrouped(); + + // create background Group + var backgroundGroup = new BackgroundGroup(BACKGROUND, null, this); + backgroundGroup.show(); + this.groups[BACKGROUND] = backgroundGroup; + + // 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 = new Hammer(this.body.dom.centerContainer); + + // drag items when selected + this.hammer.on("hammer.input", (function (event) { + if (event.isFirst) { + this._onTouch(event); } - } + }).bind(this)); + this.hammer.on("panstart", this._onDragStart.bind(this)); + this.hammer.on("panmove", this._onDrag.bind(this)); + this.hammer.on("panend", this._onDragEnd.bind(this)); - body.hiddenDates = safeDates; - body.hiddenDates.sort(function (a, b) { - return a.start - b.start; - }); // sort by start time - }; + // single select (or unselect) when tapping an item + this.hammer.on("tap", this._onSelectItem.bind(this)); - exports.printDates = function (dates) { - for (var i = 0; i < dates.length; i++) { - console.log(i, new Date(dates[i].start), new Date(dates[i].end), dates[i].start, dates[i].end, dates[i].remove); - } + // multi select when holding mouse/touch, or on ctrl+click + this.hammer.on("press", this._onMultiSelectItem.bind(this)); + + // add item on doubletap + this.hammer.on("doubletap", this._onAddItem.bind(this)); + + // attach to the DOM + this.show(); }; /** - * Used in TimeStep to avoid the hidden times. - * @param timeStep - * @param previousTime + * 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', 'range', or 'background'. + * The default style can be overwritten by + * individual items. + * {String} align + * Alignment for the items, only applicable for + * BoxItem. 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. */ - exports.stepOverHiddenDates = function (timeStep, previousTime) { - var stepInHidden = false; - var currentValue = timeStep.current.valueOf(); - for (var i = 0; i < timeStep.hiddenDates.length; i++) { - var startDate = timeStep.hiddenDates[i].start; - var endDate = timeStep.hiddenDates[i].end; - if (currentValue >= startDate && currentValue < endDate) { - stepInHidden = true; - break; + ItemSet.prototype.setOptions = function (options) { + if (options) { + // copy all options that we know + var fields = ["type", "align", "orientation", "padding", "stack", "selectable", "groupOrder", "dataAttributes", "template", "hide", "snap"]; + 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 (stepInHidden == true && currentValue < timeStep._end.valueOf() && currentValue != previousTime) { - var prevValue = moment(previousTime); - var newValue = moment(endDate); - //check if the next step should be major - if (prevValue.year() != newValue.year()) { - timeStep.switchedYear = true; - } else if (prevValue.month() != newValue.month()) { - timeStep.switchedMonth = true; - } else if (prevValue.dayOfYear() != newValue.dayOfYear()) { - timeStep.switchedDay = true; + 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); + } } - timeStep.current = newValue.toDate(); + // callback functions + var addCallback = (function (name) { + var fn = options[name]; + if (fn) { + 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", "onMoving"].forEach(addCallback); + + // force the itemSet to refresh: options like orientation and margins may be changed + this.markDirty(); } }; + /** + * Mark the ItemSet dirty so it will refresh everything with next redraw. + * Optionally, all items can be marked as dirty and be refreshed. + * @param {{refreshItems: boolean}} [options] + */ + ItemSet.prototype.markDirty = function (options) { + this.groupIds = []; + this.stackDirty = true; - ///** - // * Used in TimeStep to avoid the hidden times. - // * @param timeStep - // * @param previousTime - // */ - //exports.checkFirstStep = function(timeStep) { - // var stepInHidden = false; - // var currentValue = timeStep.current.valueOf(); - // for (var i = 0; i < timeStep.hiddenDates.length; i++) { - // var startDate = timeStep.hiddenDates[i].start; - // var endDate = timeStep.hiddenDates[i].end; - // if (currentValue >= startDate && currentValue < endDate) { - // stepInHidden = true; - // break; - // } - // } - // - // if (stepInHidden == true && currentValue <= timeStep._end.valueOf()) { - // var newValue = moment(endDate); - // timeStep.current = newValue.toDate(); - // } - //}; + if (options && options.refreshItems) { + util.forEach(this.items, function (item) { + item.dirty = true; + if (item.displayed) item.redraw(); + }); + } + }; /** - * replaces the Core toScreen methods - * @param Core - * @param time - * @param width - * @returns {number} + * Destroy the ItemSet */ - exports.toScreen = function (Core, time, width) { - if (Core.body.hiddenDates.length == 0) { - var conversion = Core.range.conversion(width); - return (time.valueOf() - conversion.offset) * conversion.scale; - } else { - var hidden = exports.isHidden(time, Core.body.hiddenDates); - if (hidden.hidden == true) { - time = hidden.startDate; - } + ItemSet.prototype.destroy = function () { + this.hide(); + this.setItems(null); + this.setGroups(null); - var duration = exports.getHiddenDurationBetween(Core.body.hiddenDates, Core.range.start, Core.range.end); - time = exports.correctTimeForHidden(Core.body.hiddenDates, Core.range, time); + this.hammer = null; - var conversion = Core.range.conversion(width, duration); - return (time.valueOf() - conversion.offset) * conversion.scale; - } + this.body = null; + this.conversion = null; }; - /** - * Replaces the core toTime methods - * @param body - * @param range - * @param x - * @param width - * @returns {Date} + * Hide the component from the DOM */ - exports.toTime = function (Core, x, width) { - if (Core.body.hiddenDates.length == 0) { - var conversion = Core.range.conversion(width); - return new Date(x / conversion.scale + conversion.offset); - } else { - var hiddenDuration = exports.getHiddenDurationBetween(Core.body.hiddenDates, Core.range.start, Core.range.end); - var totalDuration = Core.range.end - Core.range.start - hiddenDuration; - var partialDuration = totalDuration * x / width; - var accumulatedHiddenDuration = exports.getAccumulatedHiddenDuration(Core.body.hiddenDates, Core.range, partialDuration); + ItemSet.prototype.hide = function () { + // remove the frame containing the items + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } - var newTime = new Date(accumulatedHiddenDuration + partialDuration + Core.range.start); - return newTime; + // 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); + } + }; /** - * Support function - * - * @param hiddenDates - * @param range - * @returns {number} + * Show the component in the DOM (when not already visible). + * @return {Boolean} changed */ - exports.getHiddenDurationBetween = function (hiddenDates, start, end) { - var duration = 0; - for (var i = 0; i < hiddenDates.length; i++) { - var startDate = hiddenDates[i].start; - var endDate = hiddenDates[i].end; - // if time after the cutout, and the - if (startDate >= start && endDate < end) { - duration += endDate - startDate; - } + ItemSet.prototype.show = function () { + // show frame containing the items + if (!this.dom.frame.parentNode) { + this.body.dom.center.appendChild(this.dom.frame); + } + + // show axis with dots + if (!this.dom.axis.parentNode) { + this.body.dom.backgroundVertical.appendChild(this.dom.axis); } - return duration; - }; + // show labelset containing labels + if (!this.dom.labelSet.parentNode) { + this.body.dom.left.appendChild(this.dom.labelSet); + } + }; /** - * Support function - * @param hiddenDates - * @param range - * @param time - * @returns {{duration: number, time: *, offset: number}} + * Set selected items by their id. Replaces the current selection + * Unknown id's are silently ignored. + * @param {string[] | string} [ids] An array with zero or more id's of the items to be + * selected, or a single item id. If ids is undefined + * or an empty array, all items will be unselected. */ - exports.correctTimeForHidden = function (hiddenDates, range, time) { - time = moment(time).toDate().valueOf(); - time -= exports.getHiddenDurationBefore(hiddenDates, range, time); - return time; - }; + ItemSet.prototype.setSelection = function (ids) { + var i, ii, id, item; - exports.getHiddenDurationBefore = function (hiddenDates, range, time) { - var timeOffset = 0; - time = moment(time).toDate().valueOf(); + if (ids == undefined) ids = []; + if (!Array.isArray(ids)) ids = [ids]; - for (var i = 0; i < hiddenDates.length; i++) { - var startDate = hiddenDates[i].start; - var endDate = hiddenDates[i].end; - // if time after the cutout, and the - if (startDate >= range.start && endDate < range.end) { - if (time >= endDate) { - timeOffset += endDate - startDate; - } + // unselect currently selected items + for (i = 0, ii = this.selection.length; i < ii; i++) { + id = this.selection[i]; + item = this.items[id]; + if (item) item.unselect(); + } + + // select items + this.selection = []; + for (i = 0, ii = ids.length; i < ii; i++) { + id = ids[i]; + item = this.items[id]; + if (item) { + this.selection.push(id); + item.select(); } } - return timeOffset; }; /** - * sum the duration from start to finish, including the hidden duration, - * until the required amount has been reached, return the accumulated hidden duration - * @param hiddenDates - * @param range - * @param time - * @returns {{duration: number, time: *, offset: number}} + * Get the selected items by their id + * @return {Array} ids The ids of the selected items */ - exports.getAccumulatedHiddenDuration = function (hiddenDates, range, requiredDuration) { - var hiddenDuration = 0; - var duration = 0; - var previousPoint = range.start; - //exports.printDates(hiddenDates) - for (var i = 0; i < hiddenDates.length; i++) { - var startDate = hiddenDates[i].start; - var endDate = hiddenDates[i].end; - // if time after the cutout, and the - if (startDate >= range.start && endDate < range.end) { - duration += startDate - previousPoint; - previousPoint = endDate; - if (duration >= requiredDuration) { - break; - } else { - hiddenDuration += endDate - startDate; - } - } - } - - return hiddenDuration; + ItemSet.prototype.getSelection = function () { + return this.selection.concat([]); }; - - /** - * used to step over to either side of a hidden block. Correction is disabled on tablets, might be set to true - * @param hiddenDates - * @param time - * @param direction - * @param correctionEnabled - * @returns {*} + * Get the id's of the currently visible items. + * @returns {Array} The ids of the visible items */ - exports.snapAwayFromHidden = function (hiddenDates, time, direction, correctionEnabled) { - var isHidden = exports.isHidden(time, hiddenDates); - if (isHidden.hidden == true) { - if (direction < 0) { - if (correctionEnabled == true) { - return isHidden.startDate - (isHidden.endDate - time) - 1; - } else { - return isHidden.startDate - 1; - } - } else { - if (correctionEnabled == true) { - return isHidden.endDate + (time - isHidden.startDate) + 1; - } else { - return isHidden.endDate + 1; + 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); + } } } - } else { - return time; } - }; + return ids; + }; /** - * Check if a time is hidden - * - * @param time - * @param hiddenDates - * @returns {{hidden: boolean, startDate: Window.start, endDate: *}} + * Deselect a selected item + * @param {String | Number} id + * @private */ - exports.isHidden = function (time, hiddenDates) { - for (var i = 0; i < hiddenDates.length; i++) { - var startDate = hiddenDates[i].start; - var endDate = hiddenDates[i].end; - - if (time >= startDate && time < endDate) { - // if the start is entering a hidden zone - return { hidden: true, startDate: startDate, endDate: endDate }; + 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; } } - return { hidden: false, startDate: startDate, endDate: endDate }; }; -/***/ }, -/* 25 */ -/***/ function(module, exports, __webpack_require__) { - - "use strict"; - - var Emitter = __webpack_require__(11); - var Hammer = __webpack_require__(19); - var util = __webpack_require__(1); - var DataSet = __webpack_require__(7); - var DataView = __webpack_require__(9); - var Range = __webpack_require__(21); - var ItemSet = __webpack_require__(26); - var Activator = __webpack_require__(36); - var DateUtil = __webpack_require__(24); - var CustomTime = __webpack_require__(38); - /** - * 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 + * Repaint the component + * @return {boolean} Returns true if the component is resized */ - function Core() {} + 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; - // turn Core into an event emitter - Emitter(Core.prototype); + // recalculate absolute position (before redrawing groups) + this.props.top = this.body.domProps.top.height + this.body.domProps.border.top; + this.props.left = this.body.domProps.left.width + this.body.domProps.border.left; - /** - * 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 = {}; + // update class name + frame.className = "itemset" + (editable ? " editable" : ""); - 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"); + // reorder the groups (if needed) + resized = this._orderGroups() || resized; - 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"; + // check whether zoomed (in that case we need to re-stack everything) + // TODO: would be nicer to get this as a trigger from Range + var visibleInterval = range.end - range.start; + var zoomed = visibleInterval != this.lastVisibleInterval || this.props.width != this.props.lastWidth; + if (zoomed) this.stackDirty = true; + this.lastVisibleInterval = visibleInterval; + this.props.lastWidth = this.props.width; - this.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); + var restack = this.stackDirty; + var firstGroup = this._firstGroup(); + var firstMargin = { + item: margin.item, + axis: margin.axis + }; + var nonFirstMargin = { + item: margin.item, + axis: margin.item.vertical / 2 + }; + var height = 0; + var minHeight = margin.axis + margin.item.vertical; - this.dom.centerContainer.appendChild(this.dom.center); - this.dom.leftContainer.appendChild(this.dom.left); - this.dom.rightContainer.appendChild(this.dom.right); + // redraw the background group + this.groups[BACKGROUND].redraw(range, nonFirstMargin, restack); - 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); + // redraw all regular groups + util.forEach(this.groups, function (group) { + var groupMargin = group == firstGroup ? firstMargin : nonFirstMargin; + var groupResized = group.redraw(range, groupMargin, restack); + resized = groupResized || resized; + height += group.height; + }); + height = Math.max(height, minHeight); + this.stackDirty = false; - this.on("rangechange", 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)); + // update frame height + frame.style.height = asSize(height); - var me = this; - this.on("change", function (properties) { - if (properties && properties.queue == true) { - // redraw once on next tick - if (!me._redrawTimer) { - me._redrawTimer = setTimeout(function () { - me._redrawTimer = null; - me._redraw(); - }, 0); - } - } else { - // redraw immediately - me._redraw(); - } - }); + // calculate actual size + this.props.width = frame.offsetWidth; + this.props.height = height; - // create event listeners for all interesting events, these events will be - // emitted via emitter - this.hammer = Hammer(this.dom.root, { - preventDefault: true - }); - this.listeners = {}; + // 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"; - 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; - }); + // check if this component is resized + resized = this._isResized() || resized; - // 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 + return resized; + }; - this.redrawCount = 0; + /** + * 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]; - // attach the root panel to the provided container - if (!container) throw new Error("No container provided"); - container.appendChild(this.dom.root); + return firstGroup || null; }; /** - * 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 + * Create or delete the group holding all ungrouped items. This group is used when + * there are no groups specified. + * @protected */ - Core.prototype.setOptions = function (options) { - if (options) { - // copy the known options - var fields = ["width", "height", "minHeight", "maxHeight", "autoResize", "start", "end", "orientation", "clickToUse", "dataAttributes", "hiddenDates"]; - util.selectiveExtend(fields, this.options, options); + ItemSet.prototype._updateUngrouped = function () { + var ungrouped = this.groups[UNGROUPED]; + var background = this.groups[BACKGROUND]; + var item, itemId; - if ("hiddenDates" in this.options) { - DateUtil.convertHiddenOptions(this.body, this.options.hiddenDates); - } + if (this.groupsData) { + // remove the group holding all ungrouped items + if (ungrouped) { + ungrouped.hide(); + delete this.groups[UNGROUPED]; - if ("clickToUse" in options) { - if (options.clickToUse) { - if (!this.activator) { - this.activator = new Activator(this.dom.root); - } - } else { - if (this.activator) { - this.activator.destroy(); - delete this.activator; + for (itemId in this.items) { + if (this.items.hasOwnProperty(itemId)) { + item = this.items[itemId]; + item.parent && item.parent.remove(item); + var groupId = this._getGroupId(item.data); + var group = this.groups[groupId]; + group && group.add(item) || item.hide(); } } } + } 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; - // enable/disable autoResize - this._initAutoResize(); - } - - // propagate options to all components - this.components.forEach(function (component) { - return component.setOptions(options); - }); + for (itemId in this.items) { + if (this.items.hasOwnProperty(itemId)) { + item = this.items[itemId]; + ungrouped.add(item); + } + } - // 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."); + ungrouped.show(); + } } - - // redraw everything - this._redraw(); }; /** - * Returns true when the Timeline is active. - * @returns {boolean} + * Get the element for the labelset + * @return {HTMLElement} labelSet */ - Core.prototype.isActive = function () { - return !this.activator || this.activator.active; + ItemSet.prototype.getLabelSet = function () { + return this.dom.labelSet; }; /** - * Destroy the Core, clean up all DOM elements and event listeners. + * Set items + * @param {vis.DataSet | null} items */ - Core.prototype.destroy = function () { - // unbind datasets - this.clear(); - - // remove all event listeners - this.off(); - - // stop checking for changed size - this._stopAutoResize(); + ItemSet.prototype.setItems = function (items) { + var me = this, + ids, + oldItemsData = this.itemsData; - // remove from DOM - if (this.dom.root.parentNode) { - this.dom.root.parentNode.removeChild(this.dom.root); + // 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"); } - this.dom = null; - // remove Activator - if (this.activator) { - this.activator.destroy(); - delete this.activator; - } + if (oldItemsData) { + // unsubscribe from old dataset + util.forEach(this.itemListeners, function (callback, event) { + oldItemsData.off(event, callback); + }); - // cleanup hammer touch events - for (var event in this.listeners) { - if (this.listeners.hasOwnProperty(event)) { - delete this.listeners[event]; - } + // remove all drawn items + ids = oldItemsData.getIds(); + this._onRemove(ids); } - this.listeners = null; - this.hammer = null; - // give all components the opportunity to cleanup - this.components.forEach(function (component) { - return component.destroy(); - }); + if (this.itemsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.itemListeners, function (callback, event) { + me.itemsData.on(event, callback, id); + }); - this.body = null; - }; + // add all new items + ids = this.itemsData.getIds(); + this._onAdd(ids); + // update the group holding all ungrouped items + this._updateUngrouped(); + } + }; /** - * Set a custom time bar - * @param {Date} time - * @param {int} id + * Get the current items + * @returns {vis.DataSet | null} */ - Core.prototype.setCustomTime = function (time, id) { - if (!this.customTime) { - throw new Error("Cannot get custom time: Custom time bar is not enabled"); - } - - var barId = id || 0; - - this.components.forEach(function (element, index, components) { - if (element instanceof CustomTime && element.options.id === barId) { - element.setCustomTime(time); - } - }); - }; + ItemSet.prototype.getItems = function () { + return this.itemsData; + }; /** - * Retrieve the current custom time. - * @return {Date} customTime - * @param {int} id + * Set groups + * @param {vis.DataSet} groups */ - Core.prototype.getCustomTime = function (id) { - if (!this.customTime) { - throw new Error("Cannot get custom time: Custom time bar is not enabled"); - } - - var barId = id || 0, - customTime = this.customTime.getCustomTime(); - - this.components.forEach(function (element, index, components) { - if (element instanceof CustomTime && element.options.id === barId) { - customTime = element.getCustomTime(); - } - }); + ItemSet.prototype.setGroups = function (groups) { + var me = this, + ids; - return customTime; - }; + // unsubscribe from current dataset + if (this.groupsData) { + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.unsubscribe(event, callback); + }); - /** - * Add custom vertical bar - * @param {Date | String | Number} time A Date, unix timestamp, or - * ISO date string. Time point where the new bar should be placed - * @param {Number | String} ID of the new bar - * @return {Number | String} ID of the new bar - */ - Core.prototype.addCustomTime = function (time, id) { - if (!this.currentTime) { - throw new Error("Option showCurrentTime must be true"); + // remove all drawn groups + ids = this.groupsData.getIds(); + this.groupsData = null; + this._onRemoveGroups(ids); // note: this will cause a redraw } - if (time === undefined) { - throw new Error("Time parameter for the custom bar must be provided"); + // 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"); } - var ts = util.convert(time, "Date").valueOf(), - numIds, - customTime, - customBarId; + if (this.groupsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.on(event, callback, id); + }); - // All bar IDs are kept in 1 array, mixed types - // Bar with ID 0 is the default bar. - if (!this.customBarIds || this.customBarIds.constructor !== Array) { - this.customBarIds = [0]; + // draw all ms + ids = this.groupsData.getIds(); + this._onAddGroups(ids); } - // If the ID is not provided, generate one, otherwise just use it - if (id === undefined) { - numIds = this.customBarIds.filter(function (element) { - return util.isNumber(element); - }); + // update the group holding all ungrouped items + this._updateUngrouped(); - customBarId = numIds.length > 0 ? Math.max.apply(null, numIds) + 1 : 1; - } else { - // Check for duplicates - this.customBarIds.forEach(function (element) { - if (element === id) { - throw new Error("Custom time ID already exists"); + // update the order of all items in each group + this._order(); + + this.body.emitter.emit("change", { queue: true }); + }; + + /** + * Get the current groups + * @returns {vis.DataSet | null} groups + */ + ItemSet.prototype.getGroups = function () { + return this.groupsData; + }; + + /** + * Remove an item by its id + * @param {String | Number} id + */ + ItemSet.prototype.removeItem = function (id) { + var item = this.itemsData.get(id), + dataset = this.itemsData.getDataSet(); + + if (item) { + // confirm deletion + this.options.onRemove(item, function (item) { + if (item) { + // remove by id here, it is possible that an item has no id defined + // itself, so better not delete by the item itself + dataset.remove(id); } }); - - customBarId = id; } + }; - this.customBarIds.push(customBarId); - - customTime = new CustomTime(this.body, { - showCustomTime: true, - time: ts, - id: customBarId - }); + /** + * Get the time of an item based on it's data and options.type + * @param {Object} itemData + * @returns {string} Returns the type + * @private + */ + ItemSet.prototype._getType = function (itemData) { + return itemData.type || this.options.type || (itemData.end ? "range" : "box"); + }; - this.components.push(customTime); - this.redraw(); - return customBarId; + /** + * Get the group id for an item + * @param {Object} itemData + * @returns {string} Returns the groupId + * @private + */ + ItemSet.prototype._getGroupId = function (itemData) { + var type = this._getType(itemData); + if (type == "background" && itemData.group == undefined) { + return BACKGROUND; + } else { + return this.groupsData ? itemData.group : UNGROUPED; + } }; /** - * Remove previously added custom bar - * @param {int} id ID of the custom bar to be removed - * @return {boolean} True if the bar exists and is removed, false otherwise + * Handle updated items + * @param {Number[]} ids + * @protected */ - Core.prototype.removeCustomTime = function (id) { + ItemSet.prototype._onUpdate = function (ids) { var me = this; - this.components.forEach(function (bar, index, components) { - if (bar instanceof CustomTime && bar.options.id === id) { - // Only the lines added by the user will be removed - if (bar.options.id !== 0) { - me.customBarIds.splice(me.customBarIds.indexOf(id), 1); - components.splice(index, 1); - bar.destroy(); + ids.forEach(function (id) { + var itemData = me.itemsData.get(id, me.itemOptions); + var item = me.items[id]; + var type = me._getType(itemData); + + 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", { queue: true }); }; + /** + * Handle added items + * @param {Number[]} ids + * @protected + */ + ItemSet.prototype._onAdd = ItemSet.prototype._onUpdate; /** - * Get the id's of the currently visible items. - * @returns {Array} The ids of the visible items + * Handle removed items + * @param {Number[]} ids + * @protected */ - Core.prototype.getVisibleItems = function () { - return this.itemSet && this.itemSet.getVisibleItems() || []; + 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", { queue: true }); + } }; + /** + * Update the order of item in all groups + * @private + */ + ItemSet.prototype._order = function () { + // reorder the items in all groups + // TODO: optimization: only reorder groups affected by the changed items + util.forEach(this.groups, function (group) { + group.order(); + }); + }; + /** + * Handle updated groups + * @param {Number[]} ids + * @private + */ + ItemSet.prototype._onUpdateGroups = function (ids) { + this._onAddGroups(ids); + }; /** - * 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} + * Handle changed groups (added or updated) + * @param {Number[]} ids + * @private */ - Core.prototype.clear = function (what) { - // clear items - if (!what || what.items) { - this.setItems(null); - } + ItemSet.prototype._onAddGroups = function (ids) { + var me = this; - // clear groups - if (!what || what.groups) { - this.setGroups(null); - } + ids.forEach(function (id) { + var groupData = me.groupsData.get(id); + var group = me.groups[id]; - // clear options of timeline and of each of the components - if (!what || what.options) { - this.components.forEach(function (component) { - return component.setOptions(component.defaultOptions); - }); + if (!group) { + // check for reserved ids + if (id == UNGROUPED || id == BACKGROUND) { + throw new Error("Illegal group id. " + id + " is a reserved id."); + } - this.setOptions(this.defaultOptions); // this will also do a redraw - } + var groupOptions = Object.create(me.options); + util.extend(groupOptions, { + height: null + }); + + group = new Group(id, groupData, me); + me.groups[id] = group; + + // add items with this groupId to the new group + for (var itemId in me.items) { + if (me.items.hasOwnProperty(itemId)) { + var item = me.items[itemId]; + if (item.data.group == id) { + group.add(item); + } + } + } + + group.order(); + group.show(); + } else { + // update group + group.setData(groupData); + } + }); + + this.body.emitter.emit("change", { queue: true }); }; /** - * Set Core window such that it fits all items - * @param {Object} [options] Available options: - * `animate: boolean | number` - * If true (default), the range is animated - * smoothly to the new window. - * If a number, the number is taken as duration - * for the animation. Default duration is 500 ms. + * Handle removed groups + * @param {Number[]} ids + * @private */ - Core.prototype.fit = function (options) { - var range = this._getDataRange(); + ItemSet.prototype._onRemoveGroups = function (ids) { + var groups = this.groups; + ids.forEach(function (id) { + var group = groups[id]; - // skip range set if there is no start and end date - if (range.start === null && range.end === null) { - return; - } + if (group) { + group.hide(); + delete groups[id]; + } + }); - var animate = options && options.animate !== undefined ? options.animate : true; - this.range.setRange(range.start, range.end, animate); + this.markDirty(); + + this.body.emitter.emit("change", { queue: true }); }; /** - * Calculate the data range of the items and applies a 5% window around it. - * @returns {{start: Date | null, end: Date | null}} - * @protected + * Reorder the groups if needed + * @return {boolean} changed + * @private */ - Core.prototype._getDataRange = function () { - // apply the data range as range - var dataRange = this.getItemRange(); + ItemSet.prototype._orderGroups = function () { + if (this.groupsData) { + // reorder the groups + var groupIds = this.groupsData.getIds({ + order: this.options.groupOrder + }); - // add 5% space on both sides - var start = dataRange.min; - var end = dataRange.max; - if (start != null && end != null) { - var interval = end.valueOf() - start.valueOf(); - if (interval <= 0) { - // prevent an empty interval - interval = 24 * 60 * 60 * 1000; // 1 day + var changed = !util.equalArray(groupIds, this.groupIds); + if (changed) { + // hide all groups, removes them from the DOM + var groups = this.groups; + groupIds.forEach(function (groupId) { + groups[groupId].hide(); + }); + + // show the groups again, attach them to the DOM in correct order + groupIds.forEach(function (groupId) { + groups[groupId].show(); + }); + + this.groupIds = groupIds; } - start = new Date(start.valueOf() - interval * 0.05); - end = new Date(end.valueOf() + interval * 0.05); + + return changed; + } else { + return false; } + }; - return { - start: start, - end: end - }; + /** + * Add a new item + * @param {Item} item + * @private + */ + ItemSet.prototype._addItem = function (item) { + this.items[item.id] = item; + + // add to group + var groupId = this._getGroupId(item.data); + var group = this.groups[groupId]; + if (group) group.add(item); }; /** - * Set the visible window. Both parameters are optional, you can change only - * start or only end. Syntax: - * - * TimeLine.setWindow(start, end) - * TimeLine.setWindow(start, end, options) - * 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 - * @param {Object} [options] Available options: - * `animate: boolean | number` - * If true (default), the range is animated - * smoothly to the new window. - * If a number, the number is taken as duration - * for the animation. Default duration is 500 ms. + * Update an existing item + * @param {Item} item + * @param {Object} itemData + * @private */ - Core.prototype.setWindow = function (start, end, options) { - var animate; - if (arguments.length == 1) { - var range = arguments[0]; - animate = range.animate !== undefined ? range.animate : true; - this.range.setRange(range.start, range.end, animate); - } else { - animate = options && options.animate !== undefined ? options.animate : true; - this.range.setRange(start, end, animate); + ItemSet.prototype._updateItem = function (item, itemData) { + var oldGroupId = item.data.group; + + // update the items data (will redraw the item when displayed) + item.setData(itemData); + + // update group + if (oldGroupId != item.data.group) { + var oldGroup = this.groups[oldGroupId]; + if (oldGroup) oldGroup.remove(item); + + var groupId = this._getGroupId(item.data); + var group = this.groups[groupId]; + if (group) group.add(item); } }; /** - * Move the window such that given time is centered on screen. - * @param {Date | Number | String} time - * @param {Object} [options] Available options: - * `animate: boolean | number` - * If true (default), the range is animated - * smoothly to the new window. - * If a number, the number is taken as duration - * for the animation. Default duration is 500 ms. + * 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 */ - Core.prototype.moveTo = function (time, options) { - var interval = this.range.end - this.range.start; - var t = util.convert(time, "Date").valueOf(); + ItemSet.prototype._removeItem = function (item) { + // remove from DOM + item.hide(); - var start = t - interval / 2; - var end = t + interval / 2; - var animate = options && options.animate !== undefined ? options.animate : true; + // remove from items + delete this.items[item.id]; - this.range.setRange(start, end, animate); + // remove from selection + var index = this.selection.indexOf(item.id); + if (index != -1) this.selection.splice(index, 1); + + // remove from group + item.parent && item.parent.remove(item); }; /** - * Get the visible window - * @return {{start: Date, end: Date}} Visible range + * Create an array containing all items being a range (having an end date) + * @param array + * @returns {Array} + * @private */ - Core.prototype.getWindow = function () { - var range = this.range.getRange(); - return { - start: new Date(range.start), - end: new Date(range.end) - }; + ItemSet.prototype._constructByEndArray = function (array) { + var endArray = []; + + for (var i = 0; i < array.length; i++) { + if (array[i] instanceof RangeItem) { + endArray.push(array[i]); + } + } + return endArray; }; /** - * Force a redraw. Can be overridden by implementations of Core + * Register the clicked item on touch, before dragStart is initiated. + * + * dragStart is initiated from a mousemove event, AFTER the mouse/touch is + * already moving. Therefore, the mouse/touch can sometimes be above an other + * DOM element than the item itself. + * + * @param {Event} event + * @private */ - Core.prototype.redraw = function () { - this._redraw(); + ItemSet.prototype._onTouch = function (event) { + // store the touched item, used in _onDragStart + this.touchParams.item = ItemSet.itemFromTarget(event); + this.touchParams.dragLeftItem = event.target.dragLeftItem || false; + this.touchParams.dragRightItem = event.target.dragRightItem || false; + this.touchParams.itemProps = null; }; /** - * Redraw for internal use. Redraws all components. See also the public - * method redraw. - * @protected + * Start dragging the selected events + * @param {Event} event + * @private */ - Core.prototype._redraw = function () { - var resized = false; - var options = this.options; - var props = this.props; - var dom = this.dom; - - if (!dom) return; // when destroyed - - DateUtil.updateHiddenDates(this.body, this.options.hiddenDates); - - // 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; - - // workaround for a bug in IE: the clientWidth of an element with - // a height:0px and overflow:hidden is not calculated and always has value 0 - if (dom.centerContainer.clientHeight === 0) { - props.border.left = props.border.top; - props.border.right = props.border.left; - } - if (dom.root.clientHeight === 0) { - borderRootWidth = borderRootHeight; + ItemSet.prototype._onDragStart = function (event) { + if (!this.options.editable.updateTime && !this.options.editable.updateGroup) { + return; } - // 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"); + var item = this.touchParams.item || null; + var me = this; + var props; - // calculate heights of the content panels - props.root.height = dom.root.offsetHeight; - props.background.height = props.root.height - borderRootHeight; - var containerHeight = props.root.height - props.top.height - props.bottom.height - borderRootHeight; - props.centerContainer.height = containerHeight; - props.leftContainer.height = containerHeight; - props.rightContainer.height = props.leftContainer.height; + if (item && item.selected) { + var dragLeftItem = this.touchParams.dragLeftItem; + var dragRightItem = this.touchParams.dragRightItem; - // 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 (dragLeftItem) { + props = { + item: dragLeftItem, + initialX: event.center.x + }; - // 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"; + 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; + } - 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"; + this.touchParams.itemProps = [props]; + } else if (dragRightItem) { + props = { + item: dragRightItem, + initialX: event.center.x + }; - // reposition the panels - dom.background.style.left = "0"; - dom.background.style.top = "0"; - dom.backgroundVertical.style.left = props.left.width + props.border.left + "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"; + if (me.options.editable.updateTime) { + props.end = item.data.end.valueOf(); + } + if (me.options.editable.updateGroup) { + if ("group" in item.data) props.group = item.data.group; + } - // 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(); + this.touchParams.itemProps = [props]; + } else { + this.touchParams.itemProps = this.getSelection().map(function (id) { + var item = me.items[id]; + var props = { + item: item, + initialX: event.center.x + }; - // 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"; + if (me.options.editable.updateTime) { + if ("start" in item.data) { + props.start = item.data.start.valueOf(); - // 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 ("end" in item.data) { + // we store a duration here in order not to change the width + // of the item when moving it. + props.duration = item.data.end.valueOf() - props.start; + } + } + } + if (me.options.editable.updateGroup) { + if ("group" in item.data) props.group = item.data.group; + } - // redraw all components - this.components.forEach(function (component) { - resized = component.redraw() || resized; - }); - if (resized) { - // keep repainting until all sizes are settled - var MAX_REDRAWS = 3; // maximum number of consecutive redraws - if (this.redrawCount < MAX_REDRAWS) { - this.redrawCount++; - this._redraw(); - } else { - console.log("WARNING: infinite loop in redraw?"); + return props; + }); } - this.redrawCount = 0; - } - - this.emit("finishedRedraw"); - }; - // TODO: deprecated since version 1.1.0, remove some day - Core.prototype.repaint = function () { - throw new Error("Function repaint is deprecated. Use redraw instead."); + event.stopPropagation(); + event.preventDefault(); + } }; /** - * Set a current time. This can be used for example to ensure that a client's - * time is synchronized with a shared server time. - * Only applicable when option `showCurrentTime` is true. - * @param {Date | String | Number} time A Date, unix timestamp, or - * ISO date string. + * Drag selected items + * @param {Event} event + * @private */ - Core.prototype.setCurrentTime = function (time) { - if (!this.currentTime) { - throw new Error("Option showCurrentTime must be true"); - } + ItemSet.prototype._onDrag = function (event) { + event.preventDefault(); - this.currentTime.setCurrentTime(time); - }; + if (this.touchParams.itemProps) { + var me = this; + var snap = this.options.snap || null; + var xOffset = this.body.dom.root.offsetLeft + this.body.domProps.left.width; + var scale = this.body.util.getScale(); + var step = this.body.util.getStep(); - /** - * Get the current time. - * Only applicable when option `showCurrentTime` is true. - * @return {Date} Returns the current time. - */ - Core.prototype.getCurrentTime = function () { - if (!this.currentTime) { - throw new Error("Option showCurrentTime must be true"); - } + // move + this.touchParams.itemProps.forEach(function (props) { + var newProps = {}; + var current = me.body.util.toTime(event.center.x - xOffset); + var initial = me.body.util.toTime(props.initialX - xOffset); + var offset = current - initial; - return this.currentTime.getCurrentTime(); - }; + if ("start" in props) { + var start = new Date(props.start + offset); + newProps.start = snap ? snap(start, scale, step) : start; + } - /** - * 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) { - return DateUtil.toTime(this, x, this.props.center.width); - }; + if ("end" in props) { + var end = new Date(props.end + offset); + newProps.end = snap ? snap(end, scale, step) : end; + } else if ("duration" in props) { + newProps.end = new Date(newProps.start.valueOf() + props.duration); + } - /** - * 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) { - return DateUtil.toTime(this, x, this.props.root.width); - //var conversion = this.range.conversion(this.props.root.width); - //return new Date(x / conversion.scale + conversion.offset); - }; + if ("group" in props) { + // drag from one group to another + var group = me.groupFromTarget(event); + newProps.group = group && group.groupId; + } - /** - * 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) { - return DateUtil.toScreen(this, time, this.props.center.width); - }; + // confirm moving the item + var itemData = util.extend({}, props.item.data, newProps); + me.options.onMoving(itemData, function (itemData) { + if (itemData) { + me._updateItemProps(props.item, itemData); + } + }); + }); + this.stackDirty = true; // force re-stacking of all items next redraw + this.body.emitter.emit("change"); + event.stopPropagation(); + } + }; /** - * 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. + * Update an items properties + * @param {Item} item + * @param {Object} props Can contain properties start, end, and group. * @private */ - // TODO: move this function to Range - Core.prototype._toGlobalScreen = function (time) { - return DateUtil.toScreen(this, time, this.props.root.width); - //var conversion = this.range.conversion(this.props.root.width); - //return (time.valueOf() - conversion.offset) * conversion.scale; + ItemSet.prototype._updateItemProps = function (item, props) { + // TODO: copy all properties from props to item? (also new ones) + if ("start" in props) { + item.data.start = props.start; + } + if ("end" in props) { + item.data.end = props.end; + } else if ("duration" in props) { + item.data.end = new Date(props.start.valueOf() + props.duration); + } + if ("group" in props && item.data.group != props.group) { + this._moveToGroup(item, props.group); + } }; - /** - * Initialize watching when option autoResize is true + * Move an item to another group + * @param {Item} item + * @param {String | Number} groupId * @private */ - Core.prototype._initAutoResize = function () { - if (this.options.autoResize == true) { - this._startAutoResize(); - } else { - this._stopAutoResize(); + ItemSet.prototype._moveToGroup = function (item, groupId) { + var group = this.groups[groupId]; + 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; } }; /** - * Watch for changes in the size of the container. On resize, the Panel will - * automatically redraw itself. + * End of dragging selected items + * @param {Event} event * @private */ - Core.prototype._startAutoResize = function () { - var me = this; + 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(); - this._stopAutoResize(); + 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); - this._onResize = function () { - if (me.options.autoResize != true) { - // stop watching when the option autoResize is changed to false - me._stopAutoResize(); - return; - } + 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; + } - if (me.dom.root) { - // check whether the frame is resized - // Note: we compare offsetWidth here, not clientWidth. For some reason, - // IE does not restore the clientWidth from 0 to the actual width after - // changing the timeline's container display style from none to visible - if (me.dom.root.offsetWidth != me.props.lastWidth || me.dom.root.offsetHeight != me.props.lastHeight) { - me.props.lastWidth = me.dom.root.offsetWidth; - me.props.lastHeight = me.dom.root.offsetHeight; + // 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 + me._updateItemProps(props.item, props); - me.emit("change"); + me.stackDirty = true; // force re-stacking of all items next redraw + me.body.emitter.emit("change"); + } + }); } - } - }; + }); - // add event listener to window resize - util.addEventListener(window, "resize", this._onResize); + // apply the changes to the data (if there are changes) + if (changes.length) { + dataset.update(changes); + } - this.watchTimer = setInterval(this._onResize, 1000); + event.stopPropagation(); + } }; /** - * Stop watching for a resize of the frame. + * Handle selecting/deselecting an item when tapping it + * @param {Event} event * @private */ - Core.prototype._stopAutoResize = function () { - if (this.watchTimer) { - clearInterval(this.watchTimer); - this.watchTimer = undefined; + ItemSet.prototype._onSelectItem = function (event) { + if (!this.options.selectable) return; + + var ctrlKey = event.srcEvent && event.srcEvent.ctrlKey; + var shiftKey = event.srcEvent && event.srcEvent.shiftKey; + if (ctrlKey || shiftKey) { + this._onMultiSelectItem(event); + return; } - // remove event listener on window.resize - util.removeEventListener(window, "resize", this._onResize); - this._onResize = null; - }; + var oldSelection = this.getSelection(); - /** - * Start moving the timeline vertically - * @param {Event} event - * @private - */ - Core.prototype._onTouch = function (event) { - this.touch.allowDragging = true; - }; + var item = ItemSet.itemFromTarget(event); + var selection = item ? [item.id] : []; + this.setSelection(selection); - /** - * Start moving the timeline vertically - * @param {Event} event - * @private - */ - Core.prototype._onPinch = function (event) { - this.touch.allowDragging = false; - }; + var newSelection = this.getSelection(); - /** - * Start moving the timeline vertically - * @param {Event} event - * @private - */ - Core.prototype._onDragStart = function (event) { - this.touch.initialScrollTop = this.props.scrollTop; + // 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: newSelection + }); + } }; /** - * Move the timeline vertically - * @param {Event} event + * Handle creation and updates of an item on double tap + * @param 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; + ItemSet.prototype._onAddItem = function (event) { + if (!this.options.selectable) return; + if (!this.options.editable.add) return; + + var me = this, + snap = this.options.snap || null, + item = ItemSet.itemFromTarget(event); + + if (item) { + // update item + + // execute async handler to update the item (or cancel it) + var itemData = me.itemsData.get(item.id); // get a clone of the data from the dataset + this.options.onUpdate(itemData, function (itemData) { + if (itemData) { + me.itemsData.getDataSet().update(itemData); + } + }); + } else { + // add item + var xAbs = util.getAbsoluteLeft(this.dom.frame); + var x = event.center.x - xAbs; + var start = this.body.util.toTime(x); + var scale = this.body.util.getScale(); + var step = this.body.util.getStep(); - var delta = event.gesture.deltaY; + var newItem = { + start: snap ? snap(start, scale, step) : start, + content: "new item" + }; + + // when default type is a range, add a default end date to the new item + if (this.options.type === "range") { + var end = this.body.util.toTime(x + this.props.width / 5); + newItem.end = snap ? snap(end, scale, step) : end; + } - var oldScrollTop = this._getScrollTop(); - var newScrollTop = this._setScrollTop(this.touch.initialScrollTop + delta); + newItem[this.itemsData._fieldId] = util.randomUUID(); + var group = this.groupFromTarget(event); + if (group) { + newItem.group = group.groupId; + } - if (newScrollTop != oldScrollTop) { - this._redraw(); // TODO: this causes two redraws when dragging, the other is triggered by rangechange already - this.emit("verticalDrag"); + // execute async handler to customize (or cancel) adding an item + this.options.onAdd(newItem, function (item) { + if (item) { + me.itemsData.getDataSet().add(item); + // TODO: need to trigger a redraw? + } + }); } }; /** - * Apply a scrollTop - * @param {Number} scrollTop - * @returns {Number} scrollTop Returns the applied scrollTop + * Handle selecting/deselecting multiple items when holding an item + * @param {Event} event * @private */ - Core.prototype._setScrollTop = function (scrollTop) { - this.props.scrollTop = scrollTop; - this._updateScrollTop(); - return this.props.scrollTop; + ItemSet.prototype._onMultiSelectItem = function (event) { + if (!this.options.selectable) return; + + var selection, + item = ItemSet.itemFromTarget(event); + + if (item) { + // multi select items + selection = this.getSelection(); // current selection + + var shiftKey = event.srcEvent && event.srcEvent.shiftKey || false; + if (shiftKey) { + // select all items between the old selection and the tapped item + + // determine the selection range + selection.push(item.id); + var range = ItemSet._getItemRange(this.itemsData.get(selection, this.itemOptions)); + + // select all items within the selection range + selection = []; + for (var id in this.items) { + if (this.items.hasOwnProperty(id)) { + var _item = this.items[id]; + var start = _item.data.start; + var end = _item.data.end !== undefined ? _item.data.end : start; + + if (start >= range.min && end <= range.max) { + selection.push(_item.id); // do not use id but item.id, id itself is stringified + } + } + } + } else { + // add/remove this item from the current selection + var index = selection.indexOf(item.id); + if (index == -1) { + // item is not yet selected -> select it + selection.push(item.id); + } else { + // item is already selected -> deselect it + selection.splice(index, 1); + } + } + + this.setSelection(selection); + + this.body.emitter.emit("select", { + items: this.getSelection() + }); + } }; /** - * Update the current scrollTop when the height of the containers has been changed - * @returns {Number} scrollTop Returns the applied scrollTop + * Calculate the time range of a list of items + * @param {Array.} itemsData + * @return {{min: Date, max: Date}} Returns the range of the provided items * @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; + ItemSet._getItemRange = function (itemsData) { + var max = null; + var min = null; + + itemsData.forEach(function (data) { + if (min == null || data.start < min) { + min = data.start; } - this.props.scrollTopMin = scrollTopMin; + + if (data.end != undefined) { + if (max == null || data.end > max) { + max = data.end; + } + } else { + if (max == null || data.start > max) { + max = data.start; + } + } + }); + + return { + min: min, + max: max + }; + }; + + /** + * Find an item from an event target: + * searches for the attribute 'timeline-item' in the event target's element tree + * @param {Event} event + * @return {Item | null} item + */ + ItemSet.itemFromTarget = function (event) { + var target = event.target; + while (target) { + if (target.hasOwnProperty("timeline-item")) { + return target["timeline-item"]; + } + target = target.parentNode; } - // 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 null; + }; - return this.props.scrollTop; + /** + * 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.prototype.groupFromTarget = function (event) { + // TODO: cleanup when the new solution is stable (also on mobile) + //var target = event.target; + //while (target) { + // if (target.hasOwnProperty('timeline-group')) { + // return target['timeline-group']; + // } + // target = target.parentNode; + //} + // + + var clientY = event.gesture.center.clientY; + for (var i = 0; i < this.groupIds.length; i++) { + var groupId = this.groupIds[i]; + var group = this.groups[groupId]; + var foreground = group.dom.foreground; + var top = util.getAbsoluteTop(foreground); + if (clientY > top && clientY < top + foreground.offsetHeight) { + return group; + } + + if (this.options.orientation === "top") { + if (i === this.groupIds.length - 1 && clientY > top) { + return group; + } + } else { + if (i === 0 && clientY < top + foreground.offset) { + return group; + } + } + } + + return null; }; /** - * Get the current scrollTop - * @returns {number} scrollTop - * @private + * 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 */ - Core.prototype._getScrollTop = function () { - return this.props.scrollTop; + ItemSet.itemSetFromTarget = function (event) { + var target = event.target; + while (target) { + if (target.hasOwnProperty("timeline-itemset")) { + return target["timeline-itemset"]; + } + target = target.parentNode; + } + + return null; }; - module.exports = Core; + module.exports = ItemSet; /***/ }, -/* 26 */ +/* 33 */ /***/ function(module, exports, __webpack_require__) { "use strict"; - var Hammer = __webpack_require__(19); var util = __webpack_require__(1); - var DataSet = __webpack_require__(7); - var DataView = __webpack_require__(9); - var TimeStep = __webpack_require__(27); - var Component = __webpack_require__(23); - var Group = __webpack_require__(28); - var BackgroundGroup = __webpack_require__(32); - var BoxItem = __webpack_require__(33); - var PointItem = __webpack_require__(34); - var RangeItem = __webpack_require__(30); - var BackgroundItem = __webpack_require__(35); + var DOMutil = __webpack_require__(2); + var Component = __webpack_require__(25); + + /** + * Legend for Graph2d + */ + function Legend(body, options, side, linegraphOptions) { + 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); + this.linegraphOptions = linegraphOptions; + + this.svgElements = {}; + this.dom = {}; + this.groups = {}; + this.amountOfGroups = 0; + this._create(); + this.setOptions(options); + } - var UNGROUPED = "__ungrouped__"; // reserved group id for ungrouped items - var BACKGROUND = "__background__"; // reserved group id for background items without group + Legend.prototype = new Component(); + + Legend.prototype.clear = function () { + this.groups = {}; + this.amountOfGroups = 0; + }; + + Legend.prototype.addGroup = function (label, graphOptions) { + if (!this.groups.hasOwnProperty(label)) { + this.groups[label] = graphOptions; + } + 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; + } + }; + + 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.svg.style.height = "100%"; + + this.dom.frame.appendChild(this.svg); + this.dom.frame.appendChild(this.dom.textArea); + }; /** - * 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 + * Hide the component from the DOM */ - function ItemSet(body, options) { - this.body = body; + Legend.prototype.hide = function () { + // remove the frame containing the items + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } + }; - this.defaultOptions = { - type: null, // 'box', 'point', 'range', 'background' - orientation: "bottom", // 'top' or 'bottom' - align: "auto", // alignment of box items - stack: true, - groupOrder: null, + /** + * 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); + } + }; - selectable: true, - editable: { - updateTime: false, - updateGroup: false, - add: false, - remove: false - }, + Legend.prototype.setOptions = function (options) { + var fields = ["enabled", "orientation", "icons", "left", "right"]; + util.selectiveDeepExtend(fields, this.options, options); + }; - snap: TimeStep.snap, + Legend.prototype.redraw = function () { + var activeGroups = 0; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + if (this.groups[groupId].visible == true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] == true)) { + activeGroups++; + } + } + } - onAdd: function (item, callback) { - callback(item); + if (this.options[this.side].visible == false || this.amountOfGroups == 0 || this.options.enabled == false || activeGroups == 0) { + this.hide(); + } else { + this.show(); + if (this.options[this.side].position == "top-left" || this.options[this.side].position == "bottom-left") { + this.dom.frame.style.left = "4px"; + this.dom.frame.style.textAlign = "left"; + this.dom.textArea.style.textAlign = "left"; + this.dom.textArea.style.left = this.options.iconSize + 15 + "px"; + this.dom.textArea.style.right = ""; + this.svg.style.left = 0 + "px"; + this.svg.style.right = ""; + } else { + this.dom.frame.style.right = "4px"; + this.dom.frame.style.textAlign = "right"; + this.dom.textArea.style.textAlign = "right"; + this.dom.textArea.style.right = this.options.iconSize + 15 + "px"; + this.dom.textArea.style.left = ""; + this.svg.style.right = 0 + "px"; + this.svg.style.left = ""; + } + + if (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 { + var scrollableHeight = this.body.domProps.center.height - this.body.domProps.centerContainer.height; + this.dom.frame.style.bottom = 4 + scrollableHeight + Number(this.body.dom.center.style.top.replace("px", "")) + "px"; + this.dom.frame.style.top = ""; + } + + 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(); + } + + var content = ""; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + if (this.groups[groupId].visible == true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] == true)) { + content += this.groups[groupId].content + "
"; + } + } + } + this.dom.textArea.innerHTML = content; + this.dom.textArea.style.lineHeight = 0.75 * this.options.iconSize + this.options.iconSpacing + "px"; + } + }; + + Legend.prototype.drawLegendIcons = function () { + if (this.dom.frame.parentNode) { + DOMutil.prepareElements(this.svgElements); + var padding = window.getComputedStyle(this.dom.frame).paddingTop; + var iconOffset = Number(padding.replace("px", "")); + var x = iconOffset; + var iconWidth = this.options.iconSize; + var iconHeight = 0.75 * this.options.iconSize; + var y = iconOffset + 0.5 * iconHeight + 3; + + this.svg.style.width = iconWidth + 5 + iconOffset + "px"; + + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + if (this.groups[groupId].visible == true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] == true)) { + this.groups[groupId].drawIcon(x, y, this.svgElements, this.svg, iconWidth, iconHeight); + y += iconHeight + this.options.iconSpacing; + } + } + } + + DOMutil.cleanupElements(this.svgElements); + } + }; + + module.exports = Legend; + +/***/ }, +/* 34 */ +/***/ function(module, exports, __webpack_require__) { + + "use strict"; + + var util = __webpack_require__(1); + var DOMutil = __webpack_require__(2); + var DataSet = __webpack_require__(3); + var DataView = __webpack_require__(4); + var Component = __webpack_require__(25); + var DataAxis = __webpack_require__(28); + var GraphGroup = __webpack_require__(29); + var Legend = __webpack_require__(33); + var BarGraphFunctions = __webpack_require__(50); + + var UNGROUPED = "__ungrouped__"; // reserved group id for ungrouped items + + /** + * This is the constructor of the LineGraph. It requires a Timeline body and options. + * + * @param body + * @param options + * @constructor + */ + function LineGraph(body, options) { + this.id = util.randomUUID(); + this.body = body; + + this.defaultOptions = { + yAxisOrientation: "left", + defaultGroup: "default", + sort: true, + sampling: true, + graphHeight: "400px", + shaded: { + enabled: false, + orientation: "bottom" // top, bottom }, - onUpdate: function (item, callback) { - callback(item); + style: "line", // line, bar + barChart: { + width: 50, + handleOverlap: "overlap", + align: "center" // left, center, right }, - onMove: function (item, callback) { - callback(item); + catmullRom: { + enabled: true, + parametrization: "centripetal", // uniform (alpha = 0.0), chordal (alpha = 1.0), centripetal (alpha = 0.5) + alpha: 0.5 }, - onRemove: function (item, callback) { - callback(item); + drawPoints: { + enabled: true, + size: 6, + style: "square" // square, circle }, - onMoving: function (item, callback) { - callback(item); + dataAxis: { + showMinorLabels: true, + showMajorLabels: true, + icons: false, + width: "40px", + visible: true, + alignZeros: true, + customRange: { + left: { min: undefined, max: undefined }, + right: { min: undefined, max: undefined } + } + //, these options are not set by default, but this shows the format they will be in + //format: { + // left: {decimals: 2}, + // right: {decimals: 2} + //}, + //title: { + // left: { + // text: 'left', + // style: 'color:black;' + // }, + // right: { + // text: 'right', + // style: 'color:black;' + // } + //} }, - - margin: { - item: { - horizontal: 10, - vertical: 10 + legend: { + enabled: false, + icons: true, + left: { + visible: true, + position: "top-left" // top/bottom - left,right }, - axis: 20 + right: { + visible: true, + position: "top-right" // top/bottom - left,right + } }, - padding: 5 + groups: { + visibility: {} + } }; // options is shared by this ItemSet and all its items this.options = util.extend({}, this.defaultOptions); - - // options for getting items from the DataSet with the correct type - this.itemOptions = { - type: { start: "Date", end: "Date" } - }; - - this.conversion = { - toScreen: body.util.toScreen, - toTime: body.util.toTime - }; this.dom = {}; this.props = {}; this.hammer = null; + this.groups = {}; + this.abortedGraphUpdate = false; + this.updateSVGheight = false; + this.updateSVGheightOnResize = false; var me = this; this.itemsData = null; // DataSet @@ -14445,517 +14131,147 @@ return /******/ (function(modules) { // webpackBootstrap }; this.items = {}; // object with an Item for every data item - this.groups = {}; // Group object for every group - this.groupIds = []; - this.selection = []; // list with the ids of all selected nodes - this.stackDirty = true; // if true, all items will be restacked on next redraw - + this.lastStart = this.body.range.start; this.touchParams = {}; // stores properties while dragging - // create the HTML DOM - - this._create(); + this.svgElements = {}; this.setOptions(options); - } + this.groupsUsingDefaultStyles = [0]; + this.COUNTER = 0; + this.body.emitter.on("rangechanged", function () { + me.lastStart = me.body.range.start; + me.svg.style.left = util.option.asSize(-me.props.width); + me.redraw.call(me, true); + }); - ItemSet.prototype = new Component(); + // create the HTML DOM + this._create(); + this.framework = { svg: this.svg, svgElements: this.svgElements, options: this.options, groups: this.groups }; + this.body.emitter.emit("change"); + } - // available item types will be registered here - ItemSet.types = { - background: BackgroundItem, - box: BoxItem, - range: RangeItem, - point: PointItem - }; + LineGraph.prototype = new Component(); /** * Create the HTML DOM for the ItemSet */ - ItemSet.prototype._create = function () { + LineGraph.prototype._create = function () { var frame = document.createElement("div"); - frame.className = "itemset"; - frame["timeline-itemset"] = this; + frame.className = "LineGraph"; this.dom.frame = frame; - // create background panel - var background = document.createElement("div"); - background.className = "background"; - frame.appendChild(background); - this.dom.background = background; - - // create foreground panel - var foreground = document.createElement("div"); - foreground.className = "foreground"; - frame.appendChild(foreground); - this.dom.foreground = foreground; - - // create axis panel - var axis = document.createElement("div"); - axis.className = "axis"; - this.dom.axis = axis; - - // create labelset - var labelSet = document.createElement("div"); - labelSet.className = "labelset"; - this.dom.labelSet = labelSet; - - // create ungrouped Group - this._updateUngrouped(); - - // create background Group - var backgroundGroup = new BackgroundGroup(BACKGROUND, null, this); - backgroundGroup.show(); - this.groups[BACKGROUND] = backgroundGroup; - - // 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, { - preventDefault: 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)); + // 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); - // single select (or unselect) when tapping an item - this.hammer.on("tap", this._onSelectItem.bind(this)); + // data axis + this.options.dataAxis.orientation = "left"; + this.yAxisLeft = new DataAxis(this.body, this.options.dataAxis, this.svg, this.options.groups); - // multi select when holding mouse/touch, or on ctrl+click - this.hammer.on("hold", this._onMultiSelectItem.bind(this)); + this.options.dataAxis.orientation = "right"; + this.yAxisRight = new DataAxis(this.body, this.options.dataAxis, this.svg, this.options.groups); + delete this.options.dataAxis.orientation; - // add item on doubletap - this.hammer.on("doubletap", this._onAddItem.bind(this)); + // legends + this.legendLeft = new Legend(this.body, this.options.legend, "left", this.options.groups); + this.legendRight = new Legend(this.body, this.options.legend, "right", this.options.groups); - // attach to the DOM this.show(); }; /** - * 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', 'range', or 'background'. - * The default style can be overwritten by - * individual items. - * {String} align - * Alignment for the items, only applicable for - * BoxItem. 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. + * set the options of the LineGraph. the mergeOptions is used for subObjects that have an enabled element. + * @param {object} options */ - ItemSet.prototype.setOptions = function (options) { + LineGraph.prototype.setOptions = function (options) { if (options) { - // copy all options that we know - var fields = ["type", "align", "orientation", "padding", "stack", "selectable", "groupOrder", "dataAttributes", "template", "hide", "snap"]; - util.selectiveExtend(fields, this.options, options); + var fields = ["sampling", "defaultGroup", "height", "graphHeight", "yAxisOrientation", "style", "barChart", "dataAxis", "sort", "groups"]; + if (options.graphHeight === undefined && options.height !== undefined && this.body.domProps.centerContainer.height !== undefined) { + this.updateSVGheight = true; + this.updateSVGheightOnResize = true; + } else if (this.body.domProps.centerContainer.height !== undefined && options.graphHeight !== undefined) { + if (parseInt((options.graphHeight + "").replace("px", "")) < this.body.domProps.centerContainer.height) { + this.updateSVGheight = true; + } + } + 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 ("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 (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; + } else { + this.options.catmullRom.parametrization = "centripetal"; + this.options.catmullRom.alpha = 0.5; } } } } - if ("editable" in options) { - if (typeof options.editable === "boolean") { - this.options.editable.updateTime = options.editable; - this.options.editable.updateGroup = options.editable; - this.options.editable.add = options.editable; - this.options.editable.remove = options.editable; - } else if (typeof options.editable === "object") { - util.selectiveExtend(["updateTime", "updateGroup", "add", "remove"], this.options.editable, options.editable); + if (this.yAxisLeft) { + if (options.dataAxis !== undefined) { + this.yAxisLeft.setOptions(this.options.dataAxis); + this.yAxisRight.setOptions(this.options.dataAxis); } } - // callback functions - var addCallback = (function (name) { - var fn = options[name]; - if (fn) { - if (!(fn instanceof Function)) { - throw new Error("option " + name + " must be a function " + name + "(item, callback)"); - } - this.options[name] = fn; + if (this.legendLeft) { + if (options.legend !== undefined) { + this.legendLeft.setOptions(this.options.legend); + this.legendRight.setOptions(this.options.legend); } - }).bind(this); - ["onAdd", "onUpdate", "onRemove", "onMove", "onMoving"].forEach(addCallback); + } - // force the itemSet to refresh: options like orientation and margins may be changed - this.markDirty(); + if (this.groups.hasOwnProperty(UNGROUPED)) { + this.groups[UNGROUPED].setOptions(options); + } } - }; - - /** - * Mark the ItemSet dirty so it will refresh everything with next redraw. - * Optionally, all items can be marked as dirty and be refreshed. - * @param {{refreshItems: boolean}} [options] - */ - ItemSet.prototype.markDirty = function (options) { - this.groupIds = []; - this.stackDirty = true; - if (options && options.refreshItems) { - util.forEach(this.items, function (item) { - item.dirty = true; - if (item.displayed) item.redraw(); - }); + // this is used to redraw the graph if the visibility of the groups is changed. + if (this.dom.frame) { + this.redraw(true); } }; - /** - * Destroy the ItemSet - */ - ItemSet.prototype.destroy = function () { - this.hide(); - this.setItems(null); - this.setGroups(null); - - this.hammer = null; - - this.body = null; - this.conversion = null; - }; - /** * Hide the component from the DOM */ - ItemSet.prototype.hide = function () { + LineGraph.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); - } }; + /** * Show the component in the DOM (when not already visible). * @return {Boolean} changed */ - ItemSet.prototype.show = function () { + LineGraph.prototype.show = function () { // show frame containing the items if (!this.dom.frame.parentNode) { this.body.dom.center.appendChild(this.dom.frame); } - - // show axis with dots - if (!this.dom.axis.parentNode) { - this.body.dom.backgroundVertical.appendChild(this.dom.axis); - } - - // show labelset containing labels - if (!this.dom.labelSet.parentNode) { - this.body.dom.left.appendChild(this.dom.labelSet); - } - }; - - /** - * Set selected items by their id. Replaces the current selection - * Unknown id's are silently ignored. - * @param {string[] | string} [ids] An array with zero or more id's of the items to be - * selected, or a single item id. If ids is undefined - * or an empty array, all items will be unselected. - */ - ItemSet.prototype.setSelection = function (ids) { - var i, ii, id, item; - - if (ids == undefined) ids = []; - if (!Array.isArray(ids)) ids = [ids]; - - // unselect currently selected items - for (i = 0, ii = this.selection.length; i < ii; i++) { - id = this.selection[i]; - item = this.items[id]; - if (item) item.unselect(); - } - - // select items - this.selection = []; - for (i = 0, ii = ids.length; i < ii; i++) { - id = ids[i]; - item = this.items[id]; - if (item) { - this.selection.push(id); - item.select(); - } - } - }; - - /** - * Get the selected items by their id - * @return {Array} ids The ids of the selected items - */ - ItemSet.prototype.getSelection = function () { - return this.selection.concat([]); - }; - - /** - * 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); - - 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; - }; - - /** - * 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; - } - } - }; - - /** - * Repaint the component - * @return {boolean} Returns true if the component is resized - */ - ItemSet.prototype.redraw = function () { - var margin = this.options.margin, - range = this.body.range, - asSize = util.option.asSize, - options = this.options, - orientation = options.orientation, - resized = false, - frame = this.dom.frame, - editable = options.editable.updateTime || options.editable.updateGroup; - - // recalculate absolute position (before redrawing groups) - this.props.top = this.body.domProps.top.height + this.body.domProps.border.top; - this.props.left = this.body.domProps.left.width + this.body.domProps.border.left; - - // update class name - frame.className = "itemset" + (editable ? " editable" : ""); - - // reorder the groups (if needed) - resized = this._orderGroups() || resized; - - // check whether zoomed (in that case we need to re-stack everything) - // TODO: would be nicer to get this as a trigger from Range - var visibleInterval = range.end - range.start; - var zoomed = visibleInterval != this.lastVisibleInterval || this.props.width != this.props.lastWidth; - if (zoomed) this.stackDirty = true; - this.lastVisibleInterval = visibleInterval; - this.props.lastWidth = this.props.width; - - var restack = this.stackDirty; - var firstGroup = this._firstGroup(); - var firstMargin = { - item: margin.item, - axis: margin.axis - }; - var nonFirstMargin = { - item: margin.item, - axis: margin.item.vertical / 2 - }; - var height = 0; - var minHeight = margin.axis + margin.item.vertical; - - // redraw the background group - this.groups[BACKGROUND].redraw(range, nonFirstMargin, restack); - - // redraw all regular groups - util.forEach(this.groups, function (group) { - var groupMargin = group == firstGroup ? firstMargin : nonFirstMargin; - var groupResized = group.redraw(range, groupMargin, restack); - resized = groupResized || resized; - height += group.height; - }); - height = Math.max(height, minHeight); - this.stackDirty = false; - - // update frame height - frame.style.height = asSize(height); - - // calculate actual size - 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; - }; - - /** - * Get the first group, aligned with the axis - * @return {Group | null} firstGroup - * @private - */ - ItemSet.prototype._firstGroup = function () { - var firstGroupIndex = this.options.orientation == "top" ? 0 : this.groupIds.length - 1; - var firstGroupId = this.groupIds[firstGroupIndex]; - var firstGroup = this.groups[firstGroupId] || this.groups[UNGROUPED]; - - return firstGroup || null; - }; - - /** - * Create or delete the group holding all ungrouped items. This group is used when - * there are no groups specified. - * @protected - */ - ItemSet.prototype._updateUngrouped = function () { - var ungrouped = this.groups[UNGROUPED]; - var background = this.groups[BACKGROUND]; - var item, itemId; - - if (this.groupsData) { - // remove the group holding all ungrouped items - if (ungrouped) { - ungrouped.hide(); - delete this.groups[UNGROUPED]; - - for (itemId in this.items) { - if (this.items.hasOwnProperty(itemId)) { - item = this.items[itemId]; - item.parent && item.parent.remove(item); - var groupId = this._getGroupId(item.data); - var group = this.groups[groupId]; - group && group.add(item) || item.hide(); - } - } - } - } 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 (itemId in this.items) { - if (this.items.hasOwnProperty(itemId)) { - item = this.items[itemId]; - ungrouped.add(item); - } - } - - ungrouped.show(); - } - } }; - /** - * Get the element for the labelset - * @return {HTMLElement} labelSet - */ - ItemSet.prototype.getLabelSet = function () { - return this.dom.labelSet; - }; /** * Set items * @param {vis.DataSet | null} items */ - ItemSet.prototype.setItems = function (items) { + LineGraph.prototype.setItems = function (items) { var me = this, ids, oldItemsData = this.itemsData; @@ -14990,27 +14306,20 @@ return /******/ (function(modules) { // webpackBootstrap // add all new items ids = this.itemsData.getIds(); this._onAdd(ids); - - // update the group holding all ungrouped items - this._updateUngrouped(); } + this._updateUngrouped(); + //this._updateGraph(); + this.redraw(true); }; - /** - * Get the current items - * @returns {vis.DataSet | null} - */ - ItemSet.prototype.getItems = function () { - return this.itemsData; - }; - + /** * Set groups * @param {vis.DataSet} groups */ - ItemSet.prototype.setGroups = function (groups) { - var me = this, - ids; + LineGraph.prototype.setGroups = function (groups) { + var me = this; + var ids; // unsubscribe from current dataset if (this.groupsData) { @@ -15044,4501 +14353,5123 @@ return /******/ (function(modules) { // webpackBootstrap 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", { queue: true }); + this._onUpdate(); }; - /** - * Get the current groups - * @returns {vis.DataSet | null} groups - */ - ItemSet.prototype.getGroups = function () { - return this.groupsData; - }; /** - * Remove an item by its id - * @param {String | Number} id + * Update the data + * @param [ids] + * @private */ - ItemSet.prototype.removeItem = function (id) { - var item = this.itemsData.get(id), - dataset = this.itemsData.getDataSet(); - - if (item) { - // confirm deletion - this.options.onRemove(item, function (item) { - if (item) { - // remove by id here, it is possible that an item has no id defined - // itself, so better not delete by the item itself - dataset.remove(id); - } - }); + LineGraph.prototype._onUpdate = function (ids) { + this._updateUngrouped(); + this._updateAllGroupData(); + //this._updateGraph(); + this.redraw(true); + }; + 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(true); + }; + LineGraph.prototype._onAddGroups = function (groupIds) { + this._onUpdateGroups(groupIds); }; + /** - * Get the time of an item based on it's data and options.type - * @param {Object} itemData - * @returns {string} Returns the type + * this cleans the group out off the legends and the dataaxis, updates the ungrouped and updates the graph + * @param {Array} groupIds * @private */ - ItemSet.prototype._getType = function (itemData) { - return itemData.type || this.options.type || (itemData.end ? "range" : "box"); + 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(true); }; /** - * Get the group id for an item - * @param {Object} itemData - * @returns {string} Returns the groupId + * update a group object with the group dataset entree + * + * @param group + * @param groupId * @private */ - ItemSet.prototype._getGroupId = function (itemData) { - var type = this._getType(itemData); - if (type == "background" && itemData.group == undefined) { - return BACKGROUND; + 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 { - return this.groupsData ? itemData.group : UNGROUPED; + 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(); }; + /** - * Handle updated items - * @param {Number[]} ids - * @protected + * this updates all groups, it is used when there is an update the the itemset. + * + * @private */ - ItemSet.prototype._onUpdate = function (ids) { - var me = this; - - ids.forEach(function (id) { - var itemData = me.itemsData.get(id, me.itemOptions); - var item = me.items[id]; - var type = me._getType(itemData); - - 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); + 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 (!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 + "\""); + for (var itemId in this.itemsData._data) { + if (this.itemsData._data.hasOwnProperty(itemId)) { + var item = this.itemsData._data[itemId]; + if (groupsContent[item.group] === undefined) { + throw new Error("Cannot find referenced group. Possible reason: items added before groups? Groups need to be added before items, as items refer to groups."); + } + item.x = util.convert(item.x, "Date"); + groupsContent[item.group].push(item); } } - }); - - this._order(); - this.stackDirty = true; // force re-stacking of all items next redraw - this.body.emitter.emit("change", { queue: true }); + for (groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + this.groups[groupId].setItems(groupsContent[groupId]); + } + } + } }; - /** - * Handle added items - * @param {Number[]} ids - * @protected - */ - ItemSet.prototype._onAdd = ItemSet.prototype._onUpdate; /** - * Handle removed items - * @param {Number[]} ids + * 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 */ - 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); + LineGraph.prototype._updateUngrouped = function () { + if (this.itemsData && this.itemsData != null) { + var ungroupedCounter = 0; + 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 (count) { - // update order - this._order(); - this.stackDirty = true; // force re-stacking of all items next redraw - this.body.emitter.emit("change", { queue: true }); + if (ungroupedCounter == 0) { + delete this.groups[UNGROUPED]; + this.legendLeft.removeGroup(UNGROUPED); + this.legendRight.removeGroup(UNGROUPED); + this.yAxisLeft.removeGroup(UNGROUPED); + this.yAxisRight.removeGroup(UNGROUPED); + } else { + var group = { id: UNGROUPED, content: this.options.defaultGroup }; + this._updateGroup(group, UNGROUPED); + } + } else { + delete this.groups[UNGROUPED]; + this.legendLeft.removeGroup(UNGROUPED); + this.legendRight.removeGroup(UNGROUPED); + this.yAxisLeft.removeGroup(UNGROUPED); + this.yAxisRight.removeGroup(UNGROUPED); } - }; - /** - * Update the order of item in all groups - * @private - */ - ItemSet.prototype._order = function () { - // reorder the items in all groups - // TODO: optimization: only reorder groups affected by the changed items - util.forEach(this.groups, function (group) { - group.order(); - }); + this.legendLeft.redraw(); + this.legendRight.redraw(); }; - /** - * Handle updated groups - * @param {Number[]} ids - * @private - */ - ItemSet.prototype._onUpdateGroups = function (ids) { - this._onAddGroups(ids); - }; /** - * Handle changed groups (added or updated) - * @param {Number[]} ids - * @private + * Redraw the component, mandatory function + * @return {boolean} Returns true if the component is resized */ - ItemSet.prototype._onAddGroups = function (ids) { - var me = this; + LineGraph.prototype.redraw = function (forceGraphUpdate) { + var resized = false; - ids.forEach(function (id) { - var groupData = me.groupsData.get(id); - var group = me.groups[id]; + // calculate actual size and position + this.props.width = this.dom.frame.offsetWidth; + this.props.height = this.body.domProps.centerContainer.height; - if (!group) { - // check for reserved ids - if (id == UNGROUPED || id == BACKGROUND) { - throw new Error("Illegal group id. " + id + " is a reserved id."); - } + // update the graph if there is no lastWidth or with, used for the initial draw + if (this.lastWidth === undefined && this.props.width) { + forceGraphUpdate = true; + } - var groupOptions = Object.create(me.options); - util.extend(groupOptions, { - height: null - }); + // check if this component is resized + resized = this._isResized() || resized; - group = new Group(id, groupData, me); - me.groups[id] = group; + // 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.lastVisibleInterval = visibleInterval; - // add items with this groupId to the new group - for (var itemId in me.items) { - if (me.items.hasOwnProperty(itemId)) { - var item = me.items[itemId]; - if (item.data.group == id) { - group.add(item); - } - } - } - group.order(); - group.show(); - } else { - // update group - group.setData(groupData); + // 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.props.width); + this.svg.style.left = util.option.asSize(-this.props.width); + + // if the height of the graph is set as proportional, change the height of the svg + if ((this.options.height + "").indexOf("%") != -1 || this.updateSVGheightOnResize == true) { + this.updateSVGheight = true; } - }); + } - this.body.emitter.emit("change", { queue: true }); + // update the height of the graph on each redraw of the graph. + if (this.updateSVGheight == true) { + if (this.options.graphHeight != this.body.domProps.centerContainer.height + "px") { + this.options.graphHeight = this.body.domProps.centerContainer.height + "px"; + this.svg.style.height = this.body.domProps.centerContainer.height + "px"; + } + this.updateSVGheight = false; + } else { + this.svg.style.height = ("" + this.options.graphHeight).replace("px", "") + "px"; + } + + // zoomed is here to ensure that animations are shown correctly. + if (resized == true || zoomed == true || this.abortedGraphUpdate == true || forceGraphUpdate == true) { + resized = this._updateGraph() || resized; + } else { + // move the whole svg while dragging + if (this.lastStart != 0) { + var offset = this.body.range.start - this.lastStart; + var range = this.body.range.end - this.body.range.start; + if (this.props.width != 0) { + var rangePerPixelInv = this.props.width / range; + var xOffset = offset * rangePerPixelInv; + this.svg.style.left = -this.props.width - xOffset + "px"; + } + } + } + + this.legendLeft.redraw(); + this.legendRight.redraw(); + return resized; }; + /** - * Handle removed groups - * @param {Number[]} ids - * @private + * Update and redraw the graph. + * */ - ItemSet.prototype._onRemoveGroups = function (ids) { - var groups = this.groups; - ids.forEach(function (id) { - var group = groups[id]; + LineGraph.prototype._updateGraph = function () { + // reset the svg elements + DOMutil.prepareElements(this.svgElements); + if (this.props.width != 0 && this.itemsData != null) { + var group, i; + var preprocessedGroupData = {}; + var processedGroupData = {}; + var groupRanges = {}; + var changeCalled = false; - if (group) { - group.hide(); - delete groups[id]; + // getting group Ids + var groupIds = []; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + group = this.groups[groupId]; + if (group.visible == true && (this.options.groups.visibility[groupId] === undefined || this.options.groups.visibility[groupId] == 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 only loads the data we require based on the timewindow + this._getRelevantData(groupIds, groupsData, minDate, maxDate); - this.markDirty(); + // apply sampling, if disabled, it will pass through this function. + this._applySampling(groupIds, groupsData); - this.body.emitter.emit("change", { queue: true }); - }; + // we transform the X coordinates to detect collisions + for (i = 0; i < groupIds.length; i++) { + preprocessedGroupData[groupIds[i]] = this._convertXcoordinates(groupsData[groupIds[i]]); + } - /** - * 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 - }); + // now all needed data has been collected we start the processing. + this._getYRanges(groupIds, preprocessedGroupData, groupRanges); - 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(); - }); + // 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); + var MAX_CYCLES = 5; + if (changeCalled == true && this.COUNTER < MAX_CYCLES) { + DOMutil.cleanupElements(this.svgElements); + this.abortedGraphUpdate = true; + this.COUNTER++; + this.body.emitter.emit("change"); + return true; + } else { + if (this.COUNTER > MAX_CYCLES) { + console.log("WARNING: there may be an infinite loop in the _updateGraph emitter cycle."); + } + this.COUNTER = 0; + this.abortedGraphUpdate = false; - // show the groups again, attach them to the DOM in correct order - groupIds.forEach(function (groupId) { - groups[groupId].show(); - }); + // 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); + } - this.groupIds = groupIds; + // draw the groups + for (i = 0; i < groupIds.length; i++) { + group = this.groups[groupIds[i]]; + if (group.options.style != "bar") { + // bar needs to be drawn enmasse + group.draw(processedGroupData[groupIds[i]], group, this.framework); + } + } + BarGraphFunctions.draw(groupIds, processedGroupData, this.framework); + } } - - return changed; - } else { - return false; } - }; - - /** - * Add a new item - * @param {Item} item - * @private - */ - ItemSet.prototype._addItem = function (item) { - this.items[item.id] = item; - // add to group - var groupId = this._getGroupId(item.data); - var group = this.groups[groupId]; - if (group) group.add(item); + // cleanup unused svg elements + DOMutil.cleanupElements(this.svgElements); + return false; }; + /** - * Update an existing item - * @param {Item} item - * @param {Object} itemData + * 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. + * + * @param {array} groupIds + * @param {object} groupsData + * @param {date} minDate + * @param {date} maxDate * @private */ - ItemSet.prototype._updateItem = function (item, itemData) { - var oldGroupId = item.data.group; - - // update the items data (will redraw the item when displayed) - item.setData(itemData); - - // update group - if (oldGroupId != item.data.group) { - var oldGroup = this.groups[oldGroupId]; - if (oldGroup) oldGroup.remove(item); - - var groupId = this._getGroupId(item.data); - var group = this.groups[groupId]; - if (group) group.add(item); + LineGraph.prototype._getRelevantData = function (groupIds, groupsData, minDate, maxDate) { + 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.binarySearchValue(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 { + 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); + } + } + } + } + } } }; - /** - * Delete an item from the ItemSet: remove it from the DOM, from the map - * with items, and from the map with visible items, and from the selection - * @param {Item} item - * @private - */ - ItemSet.prototype._removeItem = function (item) { - // remove from DOM - item.hide(); - - // remove from items - delete this.items[item.id]; - - // remove from selection - var index = this.selection.indexOf(item.id); - if (index != -1) this.selection.splice(index, 1); - - // remove from group - item.parent && item.parent.remove(item); - }; /** - * Create an array containing all items being a range (having an end date) - * @param array - * @returns {Array} + * + * @param groupIds + * @param groupsData * @private */ - ItemSet.prototype._constructByEndArray = function (array) { - var endArray = []; + 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; - for (var i = 0; i < array.length; i++) { - if (array[i] instanceof RangeItem) { - endArray.push(array[i]); + // 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))); + + var sampledData = []; + for (var j = 0; j < amountOfPoints; j += increment) { + sampledData.push(dataContainer[j]); + } + groupsData[groupIds[i]] = sampledData; + } + } } } - return endArray; }; + /** - * Register the clicked item on touch, before dragStart is initiated. * - * dragStart is initiated from a mousemove event, which can have left the item - * already resulting in an item == null * - * @param {Event} event - * @private - */ - ItemSet.prototype._onTouch = function (event) { - // store the touched item, used in _onDragStart - this.touchParams.item = ItemSet.itemFromTarget(event); - }; - - /** - * Start dragging the selected events - * @param {Event} event + * @param {array} groupIds + * @param {object} groupsData + * @param {object} groupRanges | this is being filled here * @private */ - ItemSet.prototype._onDragStart = function (event) { - if (!this.options.editable.updateTime && !this.options.editable.updateGroup) { - return; - } - - var item = this.touchParams.item || null; - var me = this; - var props; - - if (item && item.selected) { - var dragLeftItem = event.target.dragLeftItem; - var dragRightItem = event.target.dragRightItem; - - if (dragLeftItem) { - props = { - item: dragLeftItem, - initialX: event.gesture.center.clientX - }; - - if (me.options.editable.updateTime) { - props.start = item.data.start.valueOf(); - } - if (me.options.editable.updateGroup) { - if ("group" in item.data) props.group = item.data.group; - } - - this.touchParams.itemProps = [props]; - } else if (dragRightItem) { - props = { - item: dragRightItem, - initialX: event.gesture.center.clientX - }; - - if (me.options.editable.updateTime) { - props.end = item.data.end.valueOf(); - } - if (me.options.editable.updateGroup) { - if ("group" in item.data) props.group = item.data.group; - } - - this.touchParams.itemProps = [props]; - } else { - this.touchParams.itemProps = this.getSelection().map(function (id) { - var item = me.items[id]; - var props = { - item: item, - initialX: event.gesture.center.clientX - }; - - if (me.options.editable.updateTime) { - if ("start" in item.data) { - props.start = item.data.start.valueOf(); - - if ("end" in item.data) { - // we store a duration here in order not to change the width - // of the item when moving it. - props.duration = item.data.end.valueOf() - props.start; - } + LineGraph.prototype._getYRanges = function (groupIds, groupsData, groupRanges) { + var groupData, group, i; + var barCombinedDataLeft = []; + var barCombinedDataRight = []; + var options; + if (groupIds.length > 0) { + for (i = 0; i < groupIds.length; i++) { + groupData = groupsData[groupIds[i]]; + options = this.groups[groupIds[i]].options; + if (groupData.length > 0) { + group = this.groups[groupIds[i]]; + // if bar graphs are stacked, their range need to be handled differently and accumulated over all groups. + if (options.barChart.handleOverlap == "stack" && options.style == "bar") { + if (options.yAxisOrientation == "left") { + barCombinedDataLeft = barCombinedDataLeft.concat(group.getYRange(groupData)); + } else { + barCombinedDataRight = barCombinedDataRight.concat(group.getYRange(groupData)); } + } else { + groupRanges[groupIds[i]] = group.getYRange(groupData, groupIds[i]); } - if (me.options.editable.updateGroup) { - if ("group" in item.data) props.group = item.data.group; - } - - return props; - }); + } } - event.stopPropagation(); + // if bar graphs are stacked, their range need to be handled differently and accumulated over all groups. + BarGraphFunctions.getStackedBarYRange(barCombinedDataLeft, groupRanges, groupIds, "__barchartLeft", "left"); + BarGraphFunctions.getStackedBarYRange(barCombinedDataRight, groupRanges, groupIds, "__barchartRight", "right"); } }; + /** - * Drag selected items - * @param {Event} event + * 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 */ - ItemSet.prototype._onDrag = function (event) { - event.preventDefault(); - - if (this.touchParams.itemProps) { - var me = this; - var snap = this.options.snap || null; - var xOffset = this.body.dom.root.offsetLeft + this.body.domProps.left.width; - var scale = this.body.util.getScale(); - var step = this.body.util.getStep(); - - // move - this.touchParams.itemProps.forEach(function (props) { - var newProps = {}; - var current = me.body.util.toTime(event.gesture.center.clientX - xOffset); - var initial = me.body.util.toTime(props.initialX - xOffset); - var offset = current - initial; - - if ("start" in props) { - var start = new Date(props.start + offset); - newProps.start = snap ? snap(start, scale, step) : start; + LineGraph.prototype._updateYAxis = function (groupIds, groupRanges) { + var resized = false; + var yAxisLeftUsed = false; + var yAxisRightUsed = false; + var minLeft = 1000000000, + minRight = 1000000000, + maxLeft = -1000000000, + maxRight = -1000000000, + minVal, + maxVal; + // if groups are present + if (groupIds.length > 0) { + // this is here to make sure that if there are no items in the axis but there are groups, that there is no infinite draw/redraw loop. + for (var i = 0; i < groupIds.length; i++) { + var group = this.groups[groupIds[i]]; + if (group && group.options.yAxisOrientation != "right") { + yAxisLeftUsed = true; + minLeft = 0; + maxLeft = 0; + } else if (group && group.options.yAxisOrientation) { + yAxisRightUsed = true; + minRight = 0; + maxRight = 0; } + } - if ("end" in props) { - var end = new Date(props.end + offset); - newProps.end = snap ? snap(end, scale, step) : end; - } else if ("duration" in props) { - newProps.end = new Date(newProps.start.valueOf() + props.duration); - } + // if there are items: + 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 ("group" in props) { - // drag from one group to another - var group = me.groupFromTarget(event); - newProps.group = group && group.groupId; + if (groupRanges[groupIds[i]].yAxisOrientation != "right") { + 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; + } + } } + } - // confirm moving the item - var itemData = util.extend({}, props.item.data, newProps); - me.options.onMoving(itemData, function (itemData) { - if (itemData) { - me._updateItemProps(props.item, itemData); - } - }); - }); + if (yAxisLeftUsed == true) { + this.yAxisLeft.setRange(minLeft, maxLeft); + } + if (yAxisRightUsed == true) { + this.yAxisRight.setRange(minRight, maxRight); + } + } + resized = this._toggleAxisVisiblity(yAxisLeftUsed, this.yAxisLeft) || resized; + resized = this._toggleAxisVisiblity(yAxisRightUsed, this.yAxisRight) || resized; - this.stackDirty = true; // force re-stacking of all items next redraw - this.body.emitter.emit("change"); + 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; + if (this.yAxisRight.master == false) { + if (yAxisRightUsed == true) { + this.yAxisLeft.lineOffset = this.yAxisRight.width; + } else { + this.yAxisLeft.lineOffset = 0; + } - event.stopPropagation(); + resized = this.yAxisLeft.redraw() || resized; + this.yAxisRight.stepPixelsForced = this.yAxisLeft.stepPixels; + this.yAxisRight.zeroCrossing = this.yAxisLeft.zeroCrossing; + resized = this.yAxisRight.redraw() || resized; + } else { + resized = this.yAxisRight.redraw() || resized; + } + + // 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 resized; }; + /** - * Update an items properties - * @param {Item} item - * @param {Object} props Can contain properties start, end, and group. + * 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 */ - ItemSet.prototype._updateItemProps = function (item, props) { - // TODO: copy all properties from props to item? (also new ones) - if ("start" in props) item.data.start = props.start; - if ("end" in props) item.data.end = props.end; - if ("group" in props && item.data.group != props.group) { - this._moveToGroup(item, props.group); + LineGraph.prototype._toggleAxisVisiblity = function (axisUsed, axis) { + var changed = false; + if (axisUsed == false) { + if (axis.dom.frame.parentNode && axis.hidden == false) { + axis.hide(); + changed = true; + } + } else { + if (!axis.dom.frame.parentNode && axis.hidden == true) { + axis.show(); + changed = true; + } } + return changed; }; + /** - * Move an item to another group - * @param {Item} item - * @param {String | Number} groupId + * 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 */ - ItemSet.prototype._moveToGroup = function (item, groupId) { - var group = this.groups[groupId]; - if (group && group.groupId != item.data.group) { - var oldGroup = item.parent; - oldGroup.remove(item); - oldGroup.order(); - group.add(item); - group.order(); + LineGraph.prototype._convertXcoordinates = function (datapoints) { + var extractedData = []; + var xValue, yValue; + var toScreen = this.body.util.toScreen; - item.data.group = group.groupId; + for (var i = 0; i < datapoints.length; i++) { + xValue = toScreen(datapoints[i].x) + this.props.width; + yValue = datapoints[i].y; + extractedData.push({ x: xValue, y: yValue }); } + + return extractedData; }; + /** - * End of dragging selected items - * @param {Event} event + * This uses the DataAxis object to generate the correct X coordinate on the SVG window. It uses the + * util function toScreen to get the x coordinate from the timestamp. It also pre-filters the data and get the minMax ranges for + * the yAxis. + * + * @param datapoints + * @param group + * @returns {Array} * @private */ - ItemSet.prototype._onDragEnd = function (event) { - event.preventDefault(); + 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; + } - if (this.touchParams.itemProps) { - // prepare a change set for the changed items - var changes = [], - me = this, - dataset = this.itemsData.getDataSet(); + for (var i = 0; i < datapoints.length; i++) { + var labelValue; + //if (datapoints[i].label) { + // labelValue = datapoints[i].label; + //} + //else { + // labelValue = null; + //} + labelValue = datapoints[i].label ? datapoints[i].label : null; + xValue = toScreen(datapoints[i].x) + this.props.width; + yValue = Math.round(axis.convertValue(datapoints[i].y)); + extractedData.push({ x: xValue, y: yValue, label: labelValue }); + } - 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); + group.setZeroPosition(Math.min(svgHeight, axis.convertValue(0))); - 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; - } + return extractedData; + }; - // 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 - me._updateItemProps(props.item, props); - me.stackDirty = true; // force re-stacking of all items next redraw - me.body.emitter.emit("change"); - } - }); - } - }); + module.exports = LineGraph; - // apply the changes to the data (if there are changes) - if (changes.length) { - dataset.update(changes); - } +/***/ }, +/* 35 */ +/***/ function(module, exports, __webpack_require__) { - event.stopPropagation(); - } - }; + "use strict"; + + var util = __webpack_require__(1); + var Component = __webpack_require__(25); + var TimeStep = __webpack_require__(19); + var DateUtil = __webpack_require__(15); + var moment = __webpack_require__(44); /** - * Handle selecting/deselecting an item when tapping it - * @param {Event} event - * @private + * 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 */ - ItemSet.prototype._onSelectItem = function (event) { - if (!this.options.selectable) return; + function TimeAxis(body, options) { + this.dom = { + foreground: null, + lines: [], + majorTexts: [], + minorTexts: [], + redundant: { + lines: [], + majorTexts: [], + minorTexts: [] + } + }; + this.props = { + range: { + start: 0, + end: 0, + minimumStep: 0 + }, + lineTop: 0 + }; - 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; - } + this.defaultOptions = { + orientation: "bottom", // supported: 'top', 'bottom' + // TODO: implement timeaxis orientations 'left' and 'right' + showMinorLabels: true, + showMajorLabels: true, + format: null, + timeAxis: null + }; + this.options = util.extend({}, this.defaultOptions); - var oldSelection = this.getSelection(); + this.body = body; - var item = ItemSet.itemFromTarget(event); - var selection = item ? [item.id] : []; - this.setSelection(selection); + // create the HTML DOM + this._create(); - var newSelection = this.getSelection(); + this.setOptions(options); + } - // 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: newSelection - }); + TimeAxis.prototype = new Component(); + + /** + * Set options for the TimeAxis. + * Parameters will be merged in current options. + * @param {Object} options Available options: + * {string} [orientation] + * {boolean} [showMinorLabels] + * {boolean} [showMajorLabels] + */ + TimeAxis.prototype.setOptions = function (options) { + if (options) { + // copy all options that we know + util.selectiveExtend(["orientation", "showMinorLabels", "showMajorLabels", "hiddenDates", "format", "timeAxis"], 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); + } else { + moment.lang(options.locale); + } + } } }; /** - * Handle creation and updates of an item on double tap - * @param event - * @private + * Create the HTML DOM for the TimeAxis */ - ItemSet.prototype._onAddItem = function (event) { - if (!this.options.selectable) return; - if (!this.options.editable.add) return; + TimeAxis.prototype._create = function () { + this.dom.foreground = document.createElement("div"); + this.dom.background = document.createElement("div"); - var me = this, - snap = this.options.snap || null, - item = ItemSet.itemFromTarget(event); + this.dom.foreground.className = "timeaxis foreground"; + this.dom.background.className = "timeaxis background"; + }; - if (item) { - // update item + /** + * 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); + } - // 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.getDataSet().update(itemData); - } - }); - } else { - // add item - var xAbs = util.getAbsoluteLeft(this.dom.frame); - var x = event.gesture.center.pageX - xAbs; - var start = this.body.util.toTime(x); - var scale = this.body.util.getScale(); - var step = this.body.util.getStep(); + this.body = null; + }; - var newItem = { - start: snap ? snap(start, scale, step) : start, - content: "new item" - }; + /** + * Repaint the component + * @return {boolean} Returns true if the component is resized + */ + TimeAxis.prototype.redraw = function () { + var options = this.options; + var props = this.props; + var foreground = this.dom.foreground; + var background = this.dom.background; - // 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, scale, step) : end; - } + // 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; - newItem[this.itemsData._fieldId] = util.randomUUID(); + // calculate character width and height + this._calculateCharSize(); - var group = this.groupFromTarget(event); - if (group) { - newItem.group = group.groupId; - } + // 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; - // execute async handler to customize (or cancel) adding an item - this.options.onAdd(newItem, function (item) { - if (item) { - me.itemsData.getDataSet().add(item); - // TODO: need to trigger a redraw? - } - }); + // determine the width and height of the elemens for the axis + props.minorLabelHeight = showMinorLabels ? props.minorCharHeight : 0; + props.majorLabelHeight = showMajorLabels ? props.majorCharHeight : 0; + props.height = props.minorLabelHeight + props.majorLabelHeight; + props.width = foreground.offsetWidth; + + props.minorLineHeight = this.body.domProps.root.height - props.majorLabelHeight - (options.orientation == "top" ? this.body.domProps.bottom.height : this.body.domProps.top.height); + props.minorLineWidth = 1; // TODO: really calculate width + props.majorLineHeight = props.minorLineHeight + props.majorLabelHeight; + props.majorLineWidth = 1; // TODO: really calculate width + + // take foreground and background offline while updating (is almost twice as fast) + var foregroundNextSibling = foreground.nextSibling; + var backgroundNextSibling = background.nextSibling; + foreground.parentNode && foreground.parentNode.removeChild(foreground); + background.parentNode && background.parentNode.removeChild(background); + + foreground.style.height = this.props.height + "px"; + + this._repaintLabels(); + + // put DOM online again (at the same place) + if (foregroundNextSibling) { + parent.insertBefore(foreground, foregroundNextSibling); + } else { + parent.appendChild(foreground); + } + if (backgroundNextSibling) { + this.body.dom.backgroundVertical.insertBefore(background, backgroundNextSibling); + } else { + this.body.dom.backgroundVertical.appendChild(background); } + + return this._isResized() || parentChanged; }; /** - * Handle selecting/deselecting multiple items when holding an item - * @param {Event} event + * Repaint major and minor text labels and vertical grid lines * @private */ - ItemSet.prototype._onMultiSelectItem = function (event) { - if (!this.options.selectable) return; + TimeAxis.prototype._repaintLabels = function () { + var orientation = this.options.orientation; - var selection, - item = ItemSet.itemFromTarget(event); + // calculate range and step (step such that we have space for 7 characters per label) + var start = util.convert(this.body.range.start, "Number"); + var end = util.convert(this.body.range.end, "Number"); + var timeLabelsize = this.body.util.toTime((this.props.minorCharWidth || 10) * 7).valueOf(); + var minimumStep = timeLabelsize - DateUtil.getHiddenDurationBefore(this.body.hiddenDates, this.body.range, timeLabelsize); + minimumStep -= this.body.util.toTime(0).valueOf(); - if (item) { - // multi select items - selection = this.getSelection(); // current selection + var step = new TimeStep(new Date(start), new Date(end), minimumStep, this.body.hiddenDates); + if (this.options.format) { + step.setFormat(this.options.format); + } + if (this.options.timeAxis) { + step.setScale(this.options.timeAxis); + } + this.step = step; - var shiftKey = event.gesture.touches[0] && event.gesture.touches[0].shiftKey || false; - if (shiftKey) { - // select all items between the old selection and the tapped item + // Move all DOM elements to a "redundant" list, where they + // can be picked for re-use, and clear the lists with lines and texts. + // At the end of the function _repaintLabels, left over elements will be cleaned up + var dom = this.dom; + dom.redundant.lines = dom.lines; + dom.redundant.majorTexts = dom.majorTexts; + dom.redundant.minorTexts = dom.minorTexts; + dom.lines = []; + dom.majorTexts = []; + dom.minorTexts = []; - // determine the selection range - selection.push(item.id); - var range = ItemSet._getItemRange(this.itemsData.get(selection, this.itemOptions)); + var cur; + var x = 0; + var isMajor; + var xPrev = 0; + var width = 0; + var prevLine; + var xFirstMajorLabel = undefined; + var max = 0; + var className; - // select all items within the selection range - selection = []; - for (var id in this.items) { - if (this.items.hasOwnProperty(id)) { - var _item = this.items[id]; - var start = _item.data.start; - var end = _item.data.end !== undefined ? _item.data.end : start; + step.first(); + while (step.hasNext() && max < 1000) { + max++; - if (start >= range.min && end <= range.max) { - selection.push(_item.id); // do not use id but item.id, id itself is stringified - } + cur = step.getCurrent(); + isMajor = step.isMajor(); + className = step.getClassName(); + + xPrev = x; + x = this.body.util.toScreen(cur); + width = x - xPrev; + if (prevLine) { + prevLine.style.width = width + "px"; + } + + if (this.options.showMinorLabels) { + this._repaintMinorText(x, step.getLabelMinor(), orientation, className); + } + + if (isMajor && this.options.showMajorLabels) { + if (x > 0) { + if (xFirstMajorLabel == undefined) { + xFirstMajorLabel = x; } + this._repaintMajorText(x, step.getLabelMajor(), orientation, className); } + prevLine = this._repaintMajorLine(x, orientation, className); } else { - // add/remove this item from the 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); - } + prevLine = this._repaintMinorLine(x, orientation, className); } - this.setSelection(selection); + step.next(); + } - this.body.emitter.emit("select", { - items: this.getSelection() - }); + // create a major label on the left when needed + if (this.options.showMajorLabels) { + var leftTime = this.body.util.toTime(0), + leftText = step.getLabelMajor(leftTime), + widthText = leftText.length * (this.props.majorCharWidth || 10) + 10; // upper bound estimation + + if (xFirstMajorLabel == undefined || widthText < xFirstMajorLabel) { + this._repaintMajorText(0, leftText, orientation, className); + } } + + // Cleanup leftover DOM elements from the redundant list + util.forEach(this.dom.redundant, function (arr) { + while (arr.length) { + var elem = arr.pop(); + if (elem && elem.parentNode) { + elem.parentNode.removeChild(elem); + } + } + }); }; /** - * Calculate the time range of a list of items - * @param {Array.} itemsData - * @return {{min: Date, max: Date}} Returns the range of the provided items + * Create a minor label for the axis at position x + * @param {Number} x + * @param {String} text + * @param {String} orientation "top" or "bottom" (default) + * @param {String} className * @private */ - ItemSet._getItemRange = function (itemsData) { - var max = null; - var min = null; + TimeAxis.prototype._repaintMinorText = function (x, text, orientation, className) { + // reuse redundant label + var label = this.dom.redundant.minorTexts.shift(); - itemsData.forEach(function (data) { - if (min == null || data.start < min) { - min = data.start; - } + if (!label) { + // create new label + var content = document.createTextNode(""); + label = document.createElement("div"); + label.appendChild(content); + this.dom.foreground.appendChild(label); + } + this.dom.minorTexts.push(label); - if (data.end != undefined) { - if (max == null || data.end > max) { - max = data.end; - } - } else { - if (max == null || data.start > max) { - max = data.start; - } - } - }); + label.childNodes[0].nodeValue = text; - return { - min: min, - max: max - }; + label.style.top = orientation == "top" ? this.props.majorLabelHeight + "px" : "0"; + label.style.left = x + "px"; + label.className = "text minor " + className; + //label.title = title; // TODO: this is a heavy operation }; /** - * 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 + * Create a Major label for the axis at position x + * @param {Number} x + * @param {String} text + * @param {String} orientation "top" or "bottom" (default) + * @param {String} className + * @private */ - ItemSet.itemFromTarget = function (event) { - var target = event.target; - while (target) { - if (target.hasOwnProperty("timeline-item")) { - return target["timeline-item"]; - } - target = target.parentNode; + TimeAxis.prototype._repaintMajorText = function (x, text, orientation, className) { + // reuse redundant label + var label = this.dom.redundant.majorTexts.shift(); + + if (!label) { + // create label + var content = document.createTextNode(text); + label = document.createElement("div"); + label.appendChild(content); + this.dom.foreground.appendChild(label); } + this.dom.majorTexts.push(label); - return null; + label.childNodes[0].nodeValue = text; + label.className = "text major " + className; + //label.title = title; // TODO: this is a heavy operation + + label.style.top = orientation == "top" ? "0" : this.props.minorLabelHeight + "px"; + label.style.left = x + "px"; }; /** - * 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 + * Create a minor line for the axis at position x + * @param {Number} x + * @param {String} orientation "top" or "bottom" (default) + * @param {String} className + * @return {Element} Returns the created line + * @private */ - ItemSet.prototype.groupFromTarget = function (event) { - // TODO: cleanup when the new solution is stable (also on mobile) - //var target = event.target; - //while (target) { - // if (target.hasOwnProperty('timeline-group')) { - // return target['timeline-group']; - // } - // target = target.parentNode; - //} - // + TimeAxis.prototype._repaintMinorLine = function (x, orientation, className) { + // reuse redundant line + var line = this.dom.redundant.lines.shift(); + if (!line) { + // create vertical line + line = document.createElement("div"); + this.dom.background.appendChild(line); + } + this.dom.lines.push(line); - var clientY = event.gesture.center.clientY; - for (var i = 0; i < this.groupIds.length; i++) { - var groupId = this.groupIds[i]; - var group = this.groups[groupId]; - var foreground = group.dom.foreground; - var top = util.getAbsoluteTop(foreground); - if (clientY > top && clientY < top + foreground.offsetHeight) { - return group; - } + var props = this.props; + if (orientation == "top") { + line.style.top = props.majorLabelHeight + "px"; + } else { + line.style.top = this.body.domProps.top.height + "px"; + } + line.style.height = props.minorLineHeight + "px"; + line.style.left = x - props.minorLineWidth / 2 + "px"; - if (this.options.orientation === "top") { - if (i === this.groupIds.length - 1 && clientY > top) { - return group; - } - } else { - if (i === 0 && clientY < top + foreground.offset) { - return group; - } - } + line.className = "grid vertical minor " + className; + + return line; + }; + + /** + * Create a Major line for the axis at position x + * @param {Number} x + * @param {String} orientation "top" or "bottom" (default) + * @param {String} className + * @return {Element} Returns the created line + * @private + */ + TimeAxis.prototype._repaintMajorLine = function (x, orientation, className) { + // reuse redundant line + var line = this.dom.redundant.lines.shift(); + if (!line) { + // create vertical line + line = document.createElement("div"); + this.dom.background.appendChild(line); } + this.dom.lines.push(line); - return null; + var props = this.props; + if (orientation == "top") { + line.style.top = "0"; + } else { + line.style.top = this.body.domProps.top.height + "px"; + } + line.style.left = x - props.majorLineWidth / 2 + "px"; + line.style.height = props.majorLineHeight + "px"; + + line.className = "grid vertical major " + className; + + return line; }; /** - * 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 + * 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 */ - ItemSet.itemSetFromTarget = function (event) { - var target = event.target; - while (target) { - if (target.hasOwnProperty("timeline-itemset")) { - return target["timeline-itemset"]; - } - target = target.parentNode; + TimeAxis.prototype._calculateCharSize = function () { + // Note: We calculate char size with every redraw. Size may change, for + // example when any of the timelines parents had display:none for example. + + // determine the char width and height on the minor axis + if (!this.dom.measureCharMinor) { + this.dom.measureCharMinor = document.createElement("DIV"); + this.dom.measureCharMinor.className = "text minor measure"; + this.dom.measureCharMinor.style.position = "absolute"; + + this.dom.measureCharMinor.appendChild(document.createTextNode("0")); + this.dom.foreground.appendChild(this.dom.measureCharMinor); } + this.props.minorCharHeight = this.dom.measureCharMinor.clientHeight; + this.props.minorCharWidth = this.dom.measureCharMinor.clientWidth; - return null; + // determine the char width and height on the major axis + if (!this.dom.measureCharMajor) { + this.dom.measureCharMajor = document.createElement("DIV"); + this.dom.measureCharMajor.className = "text major measure"; + this.dom.measureCharMajor.style.position = "absolute"; + + this.dom.measureCharMajor.appendChild(document.createTextNode("0")); + this.dom.foreground.appendChild(this.dom.measureCharMajor); + } + this.props.majorCharHeight = this.dom.measureCharMajor.clientHeight; + this.props.majorCharWidth = this.dom.measureCharMajor.clientWidth; }; - module.exports = ItemSet; + module.exports = TimeAxis; /***/ }, -/* 27 */ +/* 36 */ /***/ function(module, exports, __webpack_require__) { "use strict"; - var moment = __webpack_require__(2); - var DateUtil = __webpack_require__(24); + var Emitter = __webpack_require__(62); + var Hammer = __webpack_require__(45); + var keycharm = __webpack_require__(63); var util = __webpack_require__(1); + var hammerUtil = __webpack_require__(47); + var DataSet = __webpack_require__(3); + var DataView = __webpack_require__(4); + var dotparser = __webpack_require__(42); + var gephiParser = __webpack_require__(43); + var Groups = __webpack_require__(38); + var Images = __webpack_require__(39); + var Node = __webpack_require__(40); + var Edge = __webpack_require__(37); + var Popup = __webpack_require__(41); + var MixinLoader = __webpack_require__(52); + var Activator = __webpack_require__(53); + var locales = __webpack_require__(54); + + // Load custom shapes into CanvasRenderingContext2D + __webpack_require__(55); + + var PhysicsEngine = __webpack_require__(56).PhysicsEngine; + var ClusterEngine = __webpack_require__(57).ClusterEngine; + var CanvasRenderer = __webpack_require__(58).CanvasRenderer; + var Canvas = __webpack_require__(59).Canvas; + var View = __webpack_require__(60).View; + var TouchEventHandler = __webpack_require__(61).TouchEventHandler; + /** - * @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 + * @constructor Network + * Create a network visualization, displaying nodes and edges. * - * @param {Date} [start] The start date, for example new Date(2010, 9, 21) - * or new Date(2010, 9, 21, 23, 45, 00) - * @param {Date} [end] The end date - * @param {Number} [minimumStep] Optional. Minimum step size in milliseconds - */ - function TimeStep(start, end, minimumStep, hiddenDates) { - // variables - this.current = new Date(); - this._start = new Date(); - this._end = new Date(); + * @param {Element} container The DOM element in which the Network will + * be created. Normally a div element. + * @param {Object} data An object containing parameters + * {Array} nodes + * {Array} edges + * @param {Object} options Options + */ + function Network(container, data, options) { + if (!(this instanceof Network)) { + throw new SyntaxError("Constructor must be called with the new operator"); + } - this.autoScale = true; - this.scale = "day"; - this.step = 1; + this._initializeMixinLoaders(); - // initialize the range - this.setRange(start, end, minimumStep); - // hidden Dates options - this.switchedDay = false; - this.switchedMonth = false; - this.switchedYear = false; - this.hiddenDates = hiddenDates; - if (hiddenDates === undefined) { - this.hiddenDates = []; + // render and calculation settings + this.initializing = true; + + this.triggerFunctions = { add: null, edit: null, editEdge: null, connect: null, del: null }; + + var customScalingFunction = function (min, max, total, value) { + if (max == min) { + return 0.5; + } else { + var scale = 1 / (max - min); + return Math.max(0, (value - min) * scale); + } + }; + + // set constant values + this.defaultOptions = { + nodes: { + customScalingFunction: customScalingFunction, + mass: 1, + radiusMin: 10, + radiusMax: 30, + radius: 10, + shape: "ellipse", + image: undefined, + widthMin: 16, // px + widthMax: 64, // px + fontColor: "black", + fontSize: 14, // px + fontFace: "verdana", + fontFill: undefined, + fontStrokeWidth: 0, // px + fontStrokeColor: "#ffffff", + fontDrawThreshold: 3, + scaleFontWithValue: false, + fontSizeMin: 14, + fontSizeMax: 30, + fontSizeMaxVisible: 30, + value: 1, + level: -1, + color: { + border: "#2B7CE9", + background: "#97C2FC", + highlight: { + border: "#2B7CE9", + background: "#D2E5FF" + }, + hover: { + border: "#2B7CE9", + background: "#D2E5FF" + } + }, + group: undefined, + borderWidth: 1, + borderWidthSelected: undefined + }, + edges: { + customScalingFunction: customScalingFunction, + widthMin: 1, // + widthMax: 15, // + width: 1, + widthSelectionMultiplier: 2, + hoverWidth: 1.5, + value: 1, + style: "line", + color: { + color: "#848484", + highlight: "#848484", + hover: "#848484" + }, + opacity: 1, + fontColor: "#343434", + fontSize: 14, // px + fontFace: "arial", + fontFill: "white", + fontStrokeWidth: 0, // px + fontStrokeColor: "white", + labelAlignment: "horizontal", + arrowScaleFactor: 1, + dash: { + length: 10, + gap: 5, + altLength: undefined + }, + inheritColor: "from", // to, from, false, true (== from) + useGradients: false // release in 4.0 + }, + configurePhysics: false, + navigation: { + enabled: false + }, + keyboard: { + enabled: false, + speed: { x: 10, y: 10, zoom: 0.02 }, + bindToWindow: true + }, + dataManipulation: { + enabled: false, + initiallyVisible: false + }, + hierarchicalLayout: { + enabled: false, + levelSeparation: 150, + nodeSpacing: 100, + direction: "UD", // UD, DU, LR, RL + layout: "hubsize" // hubsize, directed + }, + + smoothCurves: { + enabled: true, + dynamic: true, + type: "continuous", + roundness: 0.5 + }, + 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, + useDefaultGroups: true + }; + this.constants = util.extend({}, this.defaultOptions); + + // containers for nodes and edges + this.body = { + nodes: {}, + nodeIndices: [], + supportNodes: {}, + supportNodeIndices: [], + edges: {}, + data: { + nodes: null, // A DataSet or DataView + edges: null // A DataSet or DataView + }, + functions: { + createNode: this._createNode.bind(this), + createEdge: this._createEdge.bind(this) + }, + emitter: { + on: this.on.bind(this), + off: this.off.bind(this), + emit: this.emit.bind(this), + once: this.once.bind(this) + }, + eventListeners: { + onTap: function () {}, + onTouch: function () {}, + onDoubleTap: function () {}, + onHold: function () {}, + onDragStart: function () {}, + onDrag: function () {}, + onDragEnd: function () {}, + onMouseWheel: function () {}, + onPinch: function () {}, + onMouseMove: function () {}, + onRelease: function () {} + }, + container: container + }; + + // modules + this.view = new View(this.body); + this.renderer = new CanvasRenderer(this.body); + this.clustering = new ClusterEngine(this.body); + this.physics = new PhysicsEngine(this.body); + this.canvas = new Canvas(this.body); + this.touchHandler = new TouchEventHandler(this.body); + + this.renderer.setCanvas(this.canvas); + this.view.setCanvas(this.canvas); + this.touchHandler.setCanvas(this.canvas); + + this.hoverObj = { nodes: {}, edges: {} }; + this.controlNodesActive = false; + this.navigationHammers = []; + this.manipulationHammers = []; + + // Node variables + var me = this; + this.groups = new Groups(); // object with groups + this.images = new Images(); // object with images + this.images.setOnloadCallback(function (status) { + me._requestRedraw(); + }); + + // keyboard navigation variables + this.xIncrement = 0; + this.yIncrement = 0; + this.zoomIncrement = 0; + + // loading all the mixins: + // load the force calculation functions, grouped under the physics system. + //this._loadPhysicsSystem(); + // create a frame and canvas + // load the cluster system. (mandatory, even when not using the cluster system, there are function calls to it) + // load the selection system. (mandatory, required by Network) + this._loadSelectionSystem(); + // load the selection system. (mandatory, required by Network) + //this._loadHierarchySystem(); + + // apply options + this.setOptions(options); + + // other vars + this.cachedFunctions = {}; + this.startedStabilization = false; + this.stabilized = false; + this.stabilizationIterations = null; + this.draggingNodes = false; + + // position and scale variables and objects + + this.pointerPosition = { x: 0, y: 0 }; // coordinates of the bottom right of the canvas. they will be set during _redraw + this.scale = 1; // defining the global scale variable in the constructor + + // create event listeners used to subscribe on the DataSets of the nodes and edges + this.nodesListeners = { + add: function (event, params) { + me._addNodes(params.items); + me.start(); + }, + update: function (event, params) { + me._updateNodes(params.items, params.data); + me.start(); + }, + remove: function (event, params) { + me._removeNodes(params.items); + me.start(); + } + }; + this.edgesListeners = { + add: function (event, params) { + me._addEdges(params.items); + me.start(); + }, + update: function (event, params) { + me._updateEdges(params.items); + me.start(); + }, + remove: function (event, params) { + me._removeEdges(params.items); + me.start(); + } + }; + + + // properties for the animation + this.moving = true; + this.renderTimer = 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.hierarchicalLayout.enabled); + + // hierarchical layout + 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({ duration: 0 }, true, this.constants.clustering.enabled); + } } - this.format = TimeStep.FORMAT; // default formatting + if (this.constants.stabilize == false) { + this.initializing = false; + } + + var me = this; + // this event will trigger a rebuilding of the cache of colors, nodes etc. + this.on("_dataChanged", function () { + me._updateNodeIndexList(); + me.physics._updateCalculationNodes(); + me._markAllEdgesAsDirty(); + if (me.initializing !== true) { + me.moving = true; + me.start(); + } + }); + + this.on("_newEdgesCreated", this._createBezierNodes.bind(this)); + //this.on("stabilizationIterationsDone", function () {me.initializing = false; me.start();}.bind(this)); } - // Time formatting - TimeStep.FORMAT = { - minorLabels: { - millisecond: "SSS", - second: "s", - minute: "HH:mm", - hour: "HH:mm", - weekday: "ddd D", - day: "D", - month: "MMM", - year: "YYYY" - }, - majorLabels: { - millisecond: "HH:mm:ss", - second: "D MMMM HH:mm", - minute: "ddd D MMMM", - hour: "ddd D MMMM", - weekday: "MMMM YYYY", - day: "MMMM YYYY", - month: "YYYY", - year: "" - } + // Extend Network with an Emitter mixin + Emitter(Network.prototype); + + + Network.prototype._createNode = function (properties) { + return new Node(properties, this.images, this.groups, this.constants); }; + Network.prototype._createEdge = function (properties) { + return new Edge(properties, this.body, this.constants); + }; + + + + /** - * Set custom formatting for the minor an major labels of the TimeStep. - * Both `minorLabels` and `majorLabels` are an Object with properties: - * 'millisecond, 'second, 'minute', 'hour', 'weekday, 'day, 'month, 'year'. - * @param {{minorLabels: Object, majorLabels: Object}} format + * Update the this.body.nodeIndices with the most recent node index list + * @private */ - TimeStep.prototype.setFormat = function (format) { - var defaultFormat = util.deepExtend({}, TimeStep.FORMAT); - this.format = util.deepExtend(defaultFormat, format); + Network.prototype._updateNodeIndexList = function () { + this.body.supportNodeIndices = Object.keys(this.body.supportNodes); + this.body.nodeIndices = Object.keys(this.body.nodes); }; + /** - * Set a new range - * If minimumStep is provided, the step size is chosen as close as possible - * to the minimumStep but larger than minimumStep. If minimumStep is not - * provided, the scale is set to 1 DAY. - * The minimumStep should correspond with the onscreen size of about 6 characters - * @param {Date} [start] The start date and time. - * @param {Date} [end] The end date and time. - * @param {int} [minimumStep] Optional. Minimum step size in milliseconds + * Set 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. */ - TimeStep.prototype.setRange = function (start, end, minimumStep) { - if (!(start instanceof Date) || !(end instanceof Date)) { - throw "No legal start or end date in method setRange"; + Network.prototype.setData = function (data, disableStart) { + if (disableStart === undefined) { + disableStart = false; } - this._start = start != undefined ? new Date(start.valueOf()) : new Date(); - this._end = end != undefined ? new Date(end.valueOf()) : new Date(); + // unselect all to ensure no selections from old data are carried over. + this._unselectAll(true); - if (this.autoScale) { - this.setMinimumStep(minimumStep); + // we set initializing to true to ensure that the hierarchical layout is not performed until both nodes and edges are added. + this.initializing = true; + + 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."); } - }; - /** - * Set the range iterator to the start date. - */ - TimeStep.prototype.first = function () { - this.current = new Date(this._start.valueOf()); - this.roundToMinor(); - }; + // clean up in case there is anyone in an active mode of the manipulation. This is the same option as bound to the escape button. + if (this.constants.dataManipulation.enabled == true) { + this._createManipulatorBar(); + } - /** - * 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 "year": - this.current.setFullYear(this.step * Math.floor(this.current.getFullYear() / this.step)); - this.current.setMonth(0); - case "month": - this.current.setDate(1); - case "day": - // intentional fall through - case "weekday": - this.current.setHours(0); - case "hour": - this.current.setMinutes(0); - case "minute": - this.current.setSeconds(0); - case "second": - this.current.setMilliseconds(0); - //case 'millisecond': // nothing to do for milliseconds + // set options + this.setOptions(data && data.options); + // set all data + if (data && data.dot) { + // parse DOT file + if (data && data.dot) { + var dotData = dotparser.DOTToGraph(data.dot); + this.setData(dotData); + return; + } + } else if (data && data.gephi) { + // parse DOT file + if (data && data.gephi) { + var gephiData = gephiParser.parseGephi(data.gephi); + this.setData(gephiData); + return; + } + } else { + this._setNodes(data && data.nodes); + this._setEdges(data && data.edges); } - if (this.step != 1) { - // round down to the first minor value that is a multiple of the current step size - switch (this.scale) { - case "millisecond": - this.current.setMilliseconds(this.current.getMilliseconds() - this.current.getMilliseconds() % this.step);break; - case "second": - this.current.setSeconds(this.current.getSeconds() - this.current.getSeconds() % this.step);break; - case "minute": - this.current.setMinutes(this.current.getMinutes() - this.current.getMinutes() % this.step);break; - case "hour": - this.current.setHours(this.current.getHours() - this.current.getHours() % this.step);break; - case "weekday": - // intentional fall through - case "day": - this.current.setDate(this.current.getDate() - 1 - (this.current.getDate() - 1) % this.step + 1);break; - case "month": - this.current.setMonth(this.current.getMonth() - this.current.getMonth() % this.step);break; - case "year": - this.current.setFullYear(this.current.getFullYear() - this.current.getFullYear() % this.step);break; - default: - break; + if (disableStart == false) { + if (this.constants.hierarchicalLayout.enabled == true) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } else { + // find a stable position or start animating to a stable position + this.physics.startSimulation(); } + } else { + this.initializing = false; } }; /** - * Check if the there is a next step - * @return {boolean} true if the current date has not passed the end date + * Set options + * @param {Object} options */ - TimeStep.prototype.hasNext = function () { - return this.current.valueOf() <= this._end.valueOf(); - }; + Network.prototype.setOptions = function (options) { + if (options) { + var prop; + var fields = ["nodes", "edges", "smoothCurves", "hierarchicalLayout", "navigation", "keyboard", "dataManipulation", "onAdd", "onEdit", "onEditEdge", "onConnect", "onDelete", "clickToUse"]; + // extend all but the values in fields + util.selectiveNotDeepExtend(fields, this.constants, options); + util.selectiveNotDeepExtend(["color"], this.constants.nodes, options.nodes); + util.selectiveNotDeepExtend(["color", "length"], this.constants.edges, options.edges); - /** - * Do the next step - */ - TimeStep.prototype.next = function () { - var prev = this.current.valueOf(); + this.groups.useDefaultGroups = this.constants.useDefaultGroups; - // 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 "millisecond": + this.physics.setOptions(options.physics); + this.canvas.setOptions(this.constants); - this.current = new Date(this.current.valueOf() + this.step);break; - case "second": - this.current = new Date(this.current.valueOf() + this.step * 1000);break; - case "minute": - this.current = new Date(this.current.valueOf() + this.step * 1000 * 60);break; - case "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 "weekday": - // intentional fall through - case "day": - this.current.setDate(this.current.getDate() + this.step);break; - case "month": - this.current.setMonth(this.current.getMonth() + this.step);break; - case "year": - this.current.setFullYear(this.current.getFullYear() + this.step);break; - default: - break; + if (options.onAdd) { + this.triggerFunctions.add = options.onAdd; } - } else { - switch (this.scale) { - case "millisecond": - this.current = new Date(this.current.valueOf() + this.step);break; - case "second": - this.current.setSeconds(this.current.getSeconds() + this.step);break; - case "minute": - this.current.setMinutes(this.current.getMinutes() + this.step);break; - case "hour": - this.current.setHours(this.current.getHours() + this.step);break; - case "weekday": - // intentional fall through - case "day": - this.current.setDate(this.current.getDate() + this.step);break; - case "month": - this.current.setMonth(this.current.getMonth() + this.step);break; - case "year": - this.current.setFullYear(this.current.getFullYear() + this.step);break; - default: - break; + if (options.onEdit) { + this.triggerFunctions.edit = options.onEdit; + } + if (options.onEditEdge) { + this.triggerFunctions.editEdge = options.onEditEdge; + } + if (options.onConnect) { + this.triggerFunctions.connect = options.onConnect; + } + if (options.onDelete) { + this.triggerFunctions.del = options.onDelete; } - } - if (this.step != 1) { - // round down to the correct major value - switch (this.scale) { - case "millisecond": - if (this.current.getMilliseconds() < this.step) this.current.setMilliseconds(0);break; - case "second": - if (this.current.getSeconds() < this.step) this.current.setSeconds(0);break; - case "minute": - if (this.current.getMinutes() < this.step) this.current.setMinutes(0);break; - case "hour": - if (this.current.getHours() < this.step) this.current.setHours(0);break; - case "weekday": - // intentional fall through - case "day": - if (this.current.getDate() < this.step + 1) this.current.setDate(1);break; - case "month": - if (this.current.getMonth() < this.step) this.current.setMonth(0);break; - case "year": - break; // nothing to do for year - default: - break; + 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; } - } - // safety mechanism: if current time is still unchanged, move to the end - if (this.current.valueOf() == prev) { - this.current = new Date(this._end.valueOf()); - } - DateUtil.stepOverHiddenDates(this, prev); + // 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; + } + } + this.constants.edges.inheritColor = false; + } + + 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); + } + } + } + + if (options.tooltip) { + for (prop in options.tooltip) { + if (options.tooltip.hasOwnProperty(prop)) { + this.constants.tooltip[prop] = options.tooltip[prop]; + } + } + if (options.tooltip.color) { + this.constants.tooltip.color = util.parseColor(options.tooltip.color); + } + } + + if ("clickToUse" in options) { + if (options.clickToUse) { + if (!this.activator) { + this.activator = new Activator(this.frame); + this.activator.on("change", this._createKeyBinds.bind(this)); + } + } else { + if (this.activator) { + this.activator.destroy(); + delete this.activator; + } + } + } + + if (options.labels) { + throw new Error("Option \"labels\" is deprecated. Use options \"locale\" and \"locales\" instead."); + } + + // (Re)loading the mixins that can be enabled or disabled in the options. + // load the force calculation functions, grouped under the physics system. + // load the navigation system. + //this._loadNavigationControls(); + //// load the data manipulation system + //this._loadManipulationSystem(); + //// configure the smooth curves + //this._configureSmoothCurves(); + + // bind hammer + this.canvas._bindHammer(); + + // bind keys. If disabled, this will not do anything; + //this._createKeyBinds(); + + this._markAllEdgesAsDirty(); + this.canvas.setSize(this.constants.width, this.constants.height); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } + + if (this.initializing !== true) { + this.moving = true; + this.start(); + } + } }; + /** - * Get the current datetime - * @return {Date} current The current date + * Binding the keys for keyboard navigation. These functions are defined in the NavigationMixin + * @private */ - TimeStep.prototype.getCurrent = function () { - return this.current; + Network.prototype._createKeyBinds = function () { + return; + + //var me = this; + //if (this.keycharm !== undefined) { + // this.keycharm.destroy(); + //} + // + //if (this.constants.keyboard.bindToWindow == true) { + // this.keycharm = keycharm({container: window, preventDefault: false}); + //} + //else { + // this.keycharm = keycharm({container: this.frame, preventDefault: false}); + //} + // + //this.keycharm.reset(); + // + //if (this.constants.keyboard.enabled && this.isActive()) { + // this.keycharm.bind("up", this._moveUp.bind(me) , "keydown"); + // this.keycharm.bind("up", this._yStopMoving.bind(me), "keyup"); + // this.keycharm.bind("down", this._moveDown.bind(me) , "keydown"); + // this.keycharm.bind("down", this._yStopMoving.bind(me), "keyup"); + // this.keycharm.bind("left", this._moveLeft.bind(me) , "keydown"); + // this.keycharm.bind("left", this._xStopMoving.bind(me), "keyup"); + // this.keycharm.bind("right",this._moveRight.bind(me), "keydown"); + // this.keycharm.bind("right",this._xStopMoving.bind(me), "keyup"); + // this.keycharm.bind("=", this._zoomIn.bind(me), "keydown"); + // this.keycharm.bind("=", this._stopZoom.bind(me), "keyup"); + // this.keycharm.bind("num+", this._zoomIn.bind(me), "keydown"); + // this.keycharm.bind("num+", this._stopZoom.bind(me), "keyup"); + // this.keycharm.bind("num-", this._zoomOut.bind(me), "keydown"); + // this.keycharm.bind("num-", this._stopZoom.bind(me), "keyup"); + // this.keycharm.bind("-", this._zoomOut.bind(me), "keydown"); + // this.keycharm.bind("-", this._stopZoom.bind(me), "keyup"); + // this.keycharm.bind("[", this._zoomIn.bind(me), "keydown"); + // this.keycharm.bind("[", this._stopZoom.bind(me), "keyup"); + // this.keycharm.bind("]", this._zoomOut.bind(me), "keydown"); + // this.keycharm.bind("]", this._stopZoom.bind(me), "keyup"); + // this.keycharm.bind("pageup",this._zoomIn.bind(me), "keydown"); + // this.keycharm.bind("pageup",this._stopZoom.bind(me), "keyup"); + // this.keycharm.bind("pagedown",this._zoomOut.bind(me),"keydown"); + // this.keycharm.bind("pagedown",this._stopZoom.bind(me), "keyup"); + //} + // + //if (this.constants.dataManipulation.enabled == true) { + // this.keycharm.bind("esc",this._createManipulatorBar.bind(me)); + // this.keycharm.bind("delete",this._deleteSelected.bind(me)); + //} }; /** - * Set a custom scale. Autoscaling will be disabled. - * For example setScale('minute', 5) will result - * in minor steps of 5 minutes, and major steps of an hour. - * - * @param {{scale: string, step: number}} params - * An object containing two properties: - * - A string 'scale'. Choose from 'millisecond', 'second', - * 'minute', 'hour', 'weekday, 'day, 'month, 'year'. - * - A number 'step'. A step size, by default 1. - * Choose for example 1, 2, 5, or 10. + * Cleans up all bindings of the network, removing it fully from the memory IF the variable is set to null after calling this function. + * var network = new vis.Network(..); + * network.destroy(); + * network = null; */ - TimeStep.prototype.setScale = function (params) { - if (params && typeof params.scale == "string") { - this.scale = params.scale; - this.step = params.step > 0 ? params.step : 1; - this.autoScale = false; + Network.prototype.destroy = function () { + this.start = function () {}; + this.redraw = function () {}; + this.renderTimer = false; + + // cleanup physicsConfiguration if it exists + this._cleanupPhysicsConfiguration(); + + // remove keybindings + this.keycharm.reset(); + + // clear hammer bindings + this.hammer.dispose(); + + // clear events + this.off(); + + this._recursiveDOMDelete(this.containerElement); + }; + + Network.prototype._recursiveDOMDelete = function (DOMobject) { + while (DOMobject.hasChildNodes() == true) { + this._recursiveDOMDelete(DOMobject.firstChild); + DOMobject.removeChild(DOMobject.firstChild); } }; /** - * Enable or disable autoscaling - * @param {boolean} enable If true, autoascaling is set true + * 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 */ - TimeStep.prototype.setAutoScale = function (enable) { - this.autoScale = enable; + Network.prototype._checkShowPopup = function (pointer) { + var obj = { + left: this._XconvertDOMtoCanvas(pointer.x), + top: this._YconvertDOMtoCanvas(pointer.y), + right: this._XconvertDOMtoCanvas(pointer.x), + bottom: this._YconvertDOMtoCanvas(pointer.y) + }; + + var id; + var previousPopupObjId = this.popupObj === undefined ? "" : this.popupObj.id; + var nodeUnderCursor = false; + var popupType = "node"; + + if (this.popupObj == undefined) { + // search the nodes for overlap, select the top one in case of multiple nodes + var nodes = this.body.nodes; + var overlappingNodes = []; + for (id in nodes) { + if (nodes.hasOwnProperty(id)) { + var node = nodes[id]; + if (node.isOverlappingWith(obj)) { + if (node.getTitle() !== undefined) { + overlappingNodes.push(id); + } + } + } + } + + if (overlappingNodes.length > 0) { + // if there are overlapping nodes, select the last one, this is the + // one which is drawn on top of the others + this.popupObj = this.body.nodes[overlappingNodes[overlappingNodes.length - 1]]; + // if you hover over a node, the title of the edge is not supposed to be shown. + nodeUnderCursor = true; + } + } + + if (this.popupObj === undefined && nodeUnderCursor == false) { + // search the edges for overlap + var edges = this.body.edges; + var overlappingEdges = []; + for (id in edges) { + if (edges.hasOwnProperty(id)) { + var edge = edges[id]; + if (edge.connected === true && edge.getTitle() !== undefined && edge.isOverlappingWith(obj)) { + overlappingEdges.push(id); + } + } + } + + if (overlappingEdges.length > 0) { + this.popupObj = this.body.edges[overlappingEdges[overlappingEdges.length - 1]]; + popupType = "edge"; + } + } + + if (this.popupObj) { + // show popup message window + if (this.popupObj.id != previousPopupObjId) { + if (this.popup === undefined) { + this.popup = new Popup(this.frame, this.constants.tooltip); + } + + this.popup.popupTargetType = popupType; + this.popup.popupTargetId = this.popupObj.id; + + // 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 + this.popup.setPosition(pointer.x + 3, pointer.y - 5); + this.popup.setText(this.popupObj.getTitle()); + this.popup.show(); + } + } else { + if (this.popup) { + this.popup.hide(); + } + } }; /** - * Automatically determine the scale that bests fits the provided minimum step - * @param {Number} [minimumStep] The minimum step size in milliseconds + * Check if the popup must be hidden, which is the case when the mouse is no + * longer hovering on the object + * @param {{x:Number, y:Number}} pointer + * @private */ - TimeStep.prototype.setMinimumStep = function (minimumStep) { - if (minimumStep == undefined) { - return; + Network.prototype._checkHidePopup = function (pointer) { + var pointerObj = { + left: this._XconvertDOMtoCanvas(pointer.x), + top: this._YconvertDOMtoCanvas(pointer.y), + right: this._XconvertDOMtoCanvas(pointer.x), + bottom: this._YconvertDOMtoCanvas(pointer.y) + }; + + var stillOnObj = false; + if (this.popup.popupTargetType == "node") { + stillOnObj = this.body.nodes[this.popup.popupTargetId].isOverlappingWith(pointerObj); + if (stillOnObj === true) { + var overNode = this._getNodeAt(pointer); + stillOnObj = overNode.id == this.popup.popupTargetId; + } + } else { + if (this._getNodeAt(pointer) === null) { + stillOnObj = this.body.edges[this.popup.popupTargetId].isOverlappingWith(pointerObj); + } } - //var b = asc + ds; - 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 (stillOnObj === false) { + this.popupObj = undefined; + this.popup.hide(); + } + }; - // find the smallest step that is larger than the provided minimumStep - if (stepYear * 1000 > minimumStep) { - this.scale = "year";this.step = 1000; + + /** + * 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.body.data.nodes; + + if (nodes instanceof DataSet || nodes instanceof DataView) { + this.body.data.nodes = nodes; + } else if (Array.isArray(nodes)) { + this.body.data.nodes = new DataSet(); + this.body.data.nodes.add(nodes); + } else if (!nodes) { + this.body.data.nodes = new DataSet(); + } else { + throw new TypeError("Array or DataSet expected"); } - if (stepYear * 500 > minimumStep) { - this.scale = "year";this.step = 500; + + if (oldNodesData) { + // unsubscribe from old dataset + util.forEach(this.nodesListeners, function (callback, event) { + oldNodesData.off(event, callback); + }); } - if (stepYear * 100 > minimumStep) { - this.scale = "year";this.step = 100; + + // remove drawn nodes + this.body.nodes = {}; + + if (this.body.data.nodes) { + // subscribe to new dataset + var me = this; + util.forEach(this.nodesListeners, function (callback, event) { + me.body.data.nodes.on(event, callback); + }); + + // draw all new nodes + var ids = this.body.data.nodes.getIds(); + this._addNodes(ids); } - if (stepYear * 50 > minimumStep) { - this.scale = "year";this.step = 50; + this._updateSelection(); + }; + + /** + * Add nodes + * @param {Number[] | String[]} ids + * @private + */ + Network.prototype._addNodes = function (ids) { + var id; + for (var i = 0, len = ids.length; i < len; i++) { + id = ids[i]; + var data = this.body.data.nodes.get(id); + var node = new Node(data, this.images, this.groups, this.constants); + this.body.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; } - if (stepYear * 10 > minimumStep) { - this.scale = "year";this.step = 10; - } - if (stepYear * 5 > minimumStep) { - this.scale = "year";this.step = 5; - } - if (stepYear > minimumStep) { - this.scale = "year";this.step = 1; - } - if (stepMonth * 3 > minimumStep) { - this.scale = "month";this.step = 3; - } - if (stepMonth > minimumStep) { - this.scale = "month";this.step = 1; - } - if (stepDay * 5 > minimumStep) { - this.scale = "day";this.step = 5; - } - if (stepDay * 2 > minimumStep) { - this.scale = "day";this.step = 2; - } - if (stepDay > minimumStep) { - this.scale = "day";this.step = 1; - } - if (stepDay / 2 > minimumStep) { - this.scale = "weekday";this.step = 1; - } - if (stepHour * 4 > minimumStep) { - this.scale = "hour";this.step = 4; - } - if (stepHour > minimumStep) { - this.scale = "hour";this.step = 1; - } - if (stepMinute * 15 > minimumStep) { - this.scale = "minute";this.step = 15; - } - if (stepMinute * 10 > minimumStep) { - this.scale = "minute";this.step = 10; - } - if (stepMinute * 5 > minimumStep) { - this.scale = "minute";this.step = 5; - } - if (stepMinute > minimumStep) { - this.scale = "minute";this.step = 1; - } - if (stepSecond * 15 > minimumStep) { - this.scale = "second";this.step = 15; - } - if (stepSecond * 10 > minimumStep) { - this.scale = "second";this.step = 10; - } - if (stepSecond * 5 > minimumStep) { - this.scale = "second";this.step = 5; - } - if (stepSecond > minimumStep) { - this.scale = "second";this.step = 1; - } - if (stepMillisecond * 200 > minimumStep) { - this.scale = "millisecond";this.step = 200; - } - if (stepMillisecond * 100 > minimumStep) { - this.scale = "millisecond";this.step = 100; - } - if (stepMillisecond * 50 > minimumStep) { - this.scale = "millisecond";this.step = 50; - } - if (stepMillisecond * 10 > minimumStep) { - this.scale = "millisecond";this.step = 10; - } - if (stepMillisecond * 5 > minimumStep) { - this.scale = "millisecond";this.step = 5; - } - if (stepMillisecond > minimumStep) { - this.scale = "millisecond";this.step = 1; + + this._updateNodeIndexList(); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); } + this.physics._updateCalculationNodes(); + this._reconnectEdges(); + this._updateValueRange(this.body.nodes); }; /** - * Snap a date to a rounded value. - * The snap intervals are dependent on the current scale and step. - * Static function - * @param {Date} date the date to be snapped. - * @param {string} scale Current scale, can be 'millisecond', 'second', - * 'minute', 'hour', 'weekday, 'day, 'month, 'year'. - * @param {number} step Current step (1, 2, 4, 5, ... - * @return {Date} snappedDate + * Update existing nodes, or create them when not yet existing + * @param {Number[] | String[]} ids + * @private */ - TimeStep.snap = function (date, scale, step) { - var clone = new Date(date.valueOf()); - - if (scale == "year") { - var year = clone.getFullYear() + Math.round(clone.getMonth() / 12); - clone.setFullYear(Math.round(year / step) * step); - clone.setMonth(0); - clone.setDate(0); - clone.setHours(0); - clone.setMinutes(0); - clone.setSeconds(0); - clone.setMilliseconds(0); - } else if (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. + Network.prototype._updateNodes = function (ids, changedData) { + var nodes = this.body.nodes; + for (var i = 0, len = ids.length; i < len; i++) { + var id = ids[i]; + var node = nodes[id]; + var data = changedData[i]; + if (node) { + // update node + node.setProperties(data, this.constants); } else { - clone.setDate(1); - } - - clone.setHours(0); - clone.setMinutes(0); - clone.setSeconds(0); - clone.setMilliseconds(0); - } else if (scale == "day") { - //noinspection FallthroughInSwitchStatementJS - switch (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 (scale == "weekday") { - //noinspection FallthroughInSwitchStatementJS - switch (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 (scale == "hour") { - switch (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 (scale == "minute") { - //noinspection FallthroughInSwitchStatementJS - switch (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 (scale == "second") { - //noinspection FallthroughInSwitchStatementJS - switch (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; + // create node + node = new Node(properties, this.images, this.groups, this.constants); + nodes[id] = node; } - } else if (scale == "millisecond") { - var _step = step > 5 ? step / 2 : 1; - clone.setMilliseconds(Math.round(clone.getMilliseconds() / _step) * _step); } + this.moving = true; + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } + this._updateNodeIndexList(); + this._updateValueRange(nodes); + this._markAllEdgesAsDirty(); + }; - return clone; + + Network.prototype._markAllEdgesAsDirty = function () { + for (var edgeId in this.body.edges) { + this.body.edges[edgeId].colorDirty = true; + } }; /** - * 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. + * Remove existing nodes. If nodes do not exist, the method will just ignore it. + * @param {Number[] | String[]} ids + * @private */ - TimeStep.prototype.isMajor = function () { - if (this.switchedYear == true) { - this.switchedYear = false; - switch (this.scale) { - case "year": - case "month": - case "weekday": - case "day": - case "hour": - case "minute": - case "second": - case "millisecond": - return true; - default: - return false; - } - } else if (this.switchedMonth == true) { - this.switchedMonth = false; - switch (this.scale) { - case "weekday": - case "day": - case "hour": - case "minute": - case "second": - case "millisecond": - return true; - default: - return false; - } - } else if (this.switchedDay == true) { - this.switchedDay = false; - switch (this.scale) { - case "millisecond": - case "second": - case "minute": - case "hour": - return true; - default: - return false; + Network.prototype._removeNodes = function (ids) { + var nodes = this.body.nodes; + + // remove from selection + for (var i = 0, len = ids.length; i < len; i++) { + if (this.selectionObj.nodes[ids[i]] !== undefined) { + this.body.nodes[ids[i]].unselect(); + this._removeFromSelection(this.body.nodes[ids[i]]); } } - switch (this.scale) { - case "millisecond": - return this.current.getMilliseconds() == 0; - case "second": - return this.current.getSeconds() == 0; - case "minute": - return this.current.getHours() == 0 && this.current.getMinutes() == 0; - case "hour": - return this.current.getHours() == 0; - case "weekday": - // intentional fall through - case "day": - return this.current.getDate() == 1; - case "month": - return this.current.getMonth() == 0; - case "year": - return false; - default: - return false; + for (var i = 0, len = ids.length; i < len; i++) { + var id = ids[i]; + delete nodes[id]; } - }; - /** - * 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; - } - var format = this.format.minorLabels[this.scale]; - return format && format.length > 0 ? moment(date).format(format) : ""; + this._updateNodeIndexList(); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } + this.physics._updateCalculationNodes(); + this._reconnectEdges(); + this._updateSelection(); + this._updateValueRange(nodes); }; /** - * 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 + * Load edges by reading the data table + * @param {Array | DataSet | DataView} edges The data containing the edges. + * @private + * @private */ - TimeStep.prototype.getLabelMajor = function (date) { - if (date == undefined) { - date = this.current; - } - - var format = this.format.majorLabels[this.scale]; - return format && format.length > 0 ? moment(date).format(format) : ""; - }; - - TimeStep.prototype.getClassName = function () { - var m = moment(this.current); - var date = m.locale ? m.locale("en") : m.lang("en"); // old versions of moment have .lang() function - var step = this.step; + Network.prototype._setEdges = function (edges) { + var oldEdgesData = this.body.data.edges; - function even(value) { - return value / step % 2 == 0 ? " even" : " odd"; + if (edges instanceof DataSet || edges instanceof DataView) { + this.body.data.edges = edges; + } else if (Array.isArray(edges)) { + this.body.data.edges = new DataSet(); + this.body.data.edges.add(edges); + } else if (!edges) { + this.body.data.edges = new DataSet(); + } else { + throw new TypeError("Array or DataSet expected"); } - function today(date) { - if (date.isSame(new Date(), "day")) { - return " today"; - } - if (date.isSame(moment().add(1, "day"), "day")) { - return " tomorrow"; - } - if (date.isSame(moment().add(-1, "day"), "day")) { - return " yesterday"; - } - return ""; + if (oldEdgesData) { + // unsubscribe from old dataset + util.forEach(this.edgesListeners, function (callback, event) { + oldEdgesData.off(event, callback); + }); } - function currentWeek(date) { - return date.isSame(new Date(), "week") ? " current-week" : ""; - } + // remove drawn edges + this.body.edges = {}; - function currentMonth(date) { - return date.isSame(new Date(), "month") ? " current-month" : ""; - } + if (this.body.data.edges) { + // subscribe to new dataset + var me = this; + util.forEach(this.edgesListeners, function (callback, event) { + me.body.data.edges.on(event, callback); + }); - function currentYear(date) { - return date.isSame(new Date(), "year") ? " current-year" : ""; + // draw all new nodes + var ids = this.body.data.edges.getIds(); + this._addEdges(ids); } - switch (this.scale) { - case "millisecond": - return even(date.milliseconds()).trim(); - - case "second": - return even(date.seconds()).trim(); - - case "minute": - return even(date.minutes()).trim(); - - case "hour": - var hours = date.hours(); - if (this.step == 4) { - hours = hours + "-h" + (hours + 4); - } - return "h" + hours + today(date) + even(date.hours()); - - case "weekday": - return date.format("dddd").toLowerCase() + today(date) + currentWeek(date) + even(date.date()); + this._reconnectEdges(); + }; - case "day": - var day = date.date(); - var month = date.format("MMMM").toLowerCase(); - return "day" + day + " " + month + currentMonth(date) + even(day - 1); + /** + * Add edges + * @param {Number[] | String[]} ids + * @private + */ + Network.prototype._addEdges = function (ids) { + var edges = this.body.edges, + edgesData = this.body.data.edges; - case "month": - return date.format("MMMM").toLowerCase() + currentMonth(date) + even(date.month()); + for (var i = 0, len = ids.length; i < len; i++) { + var id = ids[i]; - case "year": - var year = date.year(); - return "year" + year + currentYear(date) + even(year); + var oldEdge = edges[id]; + if (oldEdge) { + oldEdge.disconnect(); + } - default: - return ""; + var data = edgesData.get(id, { showInternalIds: true }); + edges[id] = new Edge(data, this.body, this.constants); + } + this.moving = true; + this._updateValueRange(edges); + this._createBezierNodes(); + this.physics._updateCalculationNodes(); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); } }; - module.exports = TimeStep; - -/***/ }, -/* 28 */ -/***/ function(module, exports, __webpack_require__) { - - "use strict"; - - var util = __webpack_require__(1); - var stack = __webpack_require__(29); - var RangeItem = __webpack_require__(30); - /** - * @constructor Group - * @param {Number | String} groupId - * @param {Object} data - * @param {ItemSet} itemSet + * Update existing edges, or create them when not yet existing + * @param {Number[] | String[]} ids + * @private */ - function Group(groupId, data, itemSet) { - this.groupId = groupId; - this.subgroups = {}; - this.subgroupIndex = 0; - this.subgroupOrderer = data && data.subgroupOrder; - this.itemSet = itemSet; + Network.prototype._updateEdges = function (ids) { + var edges = this.body.edges; + var edgesData = this.body.data.edges; + for (var i = 0, len = ids.length; i < len; i++) { + var id = ids[i]; - this.dom = {}; - this.props = { - label: { - width: 0, - height: 0 + var data = edgesData.get(id); + var edge = edges[id]; + if (edge) { + // update edge + edge.disconnect(); + edge.setProperties(data); + edge.connect(); + } else { + // create edge + edge = new Edge(data, this.body, this.constants); + this.body.edges[id] = edge; } - }; - this.className = null; - - this.items = {}; // items filtered by groupId of this group - this.visibleItems = []; // items currently visible in window - this.orderedItems = { - byStart: [], - byEnd: [] - }; - this.checkRangedItems = false; // needed to refresh the ranged items if the window is programatically changed with NO overlap. - var me = this; - this.itemSet.body.emitter.on("checkRangedItems", function () { - me.checkRangedItems = true; - }); - - this._create(); + } - this.setData(data); - } + this._createBezierNodes(); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } + this.moving = true; + this._updateValueRange(edges); + }; /** - * Create DOM elements for the group + * Remove existing edges. Non existing ids will be ignored + * @param {Number[] | String[]} ids * @private */ - Group.prototype._create = function () { - var label = document.createElement("div"); - label.className = "vlabel"; - this.dom.label = label; - - var inner = document.createElement("div"); - inner.className = "inner"; - label.appendChild(inner); - this.dom.inner = inner; + Network.prototype._removeEdges = function (ids) { + var edges = this.body.edges; - 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"; + // remove from selection + for (var i = 0, len = ids.length; i < len; i++) { + if (this.selectionObj.edges[ids[i]] !== undefined) { + edges[ids[i]].unselect(); + this._removeFromSelection(edges[ids[i]]); + } + } - this.dom.axis = document.createElement("div"); - this.dom.axis.className = "group"; + 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.body.supportNodes[edge.via.id]; + } + edge.disconnect(); + delete edges[id]; + } + } - // 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"; // TODO: ask jos why this is not none? - this.dom.marker.innerHTML = "?"; - this.dom.background.appendChild(this.dom.marker); + this.moving = true; + this._updateValueRange(edges); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } + this.physics._updateCalculationNodes(); }; /** - * Set the group data for this group - * @param {Object} data Group data, can contain properties content and className + * Reconnect all edges + * @private */ - Group.prototype.setData = function (data) { - // update contents - var content = data && data.content; - if (content instanceof Element) { - this.dom.inner.appendChild(content); - } else if (content !== undefined && content !== null) { - this.dom.inner.innerHTML = content; - } else { - this.dom.inner.innerHTML = this.groupId || ""; // groupId can be null + Network.prototype._reconnectEdges = function () { + var id, + nodes = this.body.nodes, + edges = this.body.edges; + for (id in nodes) { + if (nodes.hasOwnProperty(id)) { + nodes[id].edges = []; + } } - // update title - this.dom.label.title = data && data.title || ""; + for (id in edges) { + if (edges.hasOwnProperty(id)) { + var edge = edges[id]; + edge.from = null; + edge.to = null; + edge.connect(); + } + } + }; - if (!this.dom.inner.firstChild) { - util.addClassName(this.dom.inner, "hidden"); - } else { - util.removeClassName(this.dom.inner, "hidden"); + /** + * 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; + + // determine the range of the objects + var valueMin = undefined; + var valueMax = undefined; + var valueTotal = 0; + 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); + valueTotal += value; + } + } } - // update className - var className = data && data.className || null; - if (className != this.className) { - if (this.className) { - util.removeClassName(this.dom.label, this.className); - util.removeClassName(this.dom.foreground, this.className); - util.removeClassName(this.dom.background, this.className); - util.removeClassName(this.dom.axis, this.className); + // adjust the range of all objects + if (valueMin !== undefined && valueMax !== undefined) { + for (id in obj) { + if (obj.hasOwnProperty(id)) { + obj[id].setValueRange(valueMin, valueMax, valueTotal); + } } - 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.className = className; } + }; - // update style - if (this.style) { - util.removeCssText(this.dom.label, this.style); - this.style = null; + + /** + * Set the translation of the network + * @param {Number} offsetX Horizontal offset + * @param {Number} offsetY Vertical offset + * @private + */ + Network.prototype._setTranslation = function (offsetX, offsetY) { + if (this.translation === undefined) { + this.translation = { + x: 0, + y: 0 + }; } - if (data && data.style) { - util.addCssText(this.dom.label, data.style); - this.style = data.style; + + if (offsetX !== undefined) { + this.translation.x = offsetX; + } + if (offsetY !== undefined) { + this.translation.y = offsetY; } + + this.emit("viewChanged"); }; /** - * Get the width of the group label - * @return {number} width + * Get the translation of the network + * @return {Object} translation An object with parameters x and y, both a number + * @private */ - Group.prototype.getLabelWidth = function () { - return this.props.label.width; + Network.prototype._getTranslation = function () { + return { + x: this.translation.x, + y: this.translation.y + }; }; - /** - * 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 + * Scale the network + * @param {Number} scale Scaling factor 1.0 is unscaled + * @private */ - Group.prototype.redraw = function (range, margin, restack) { - var resized = false; - - this.visibleItems = this._updateVisibleItems(this.orderedItems, this.visibleItems, range); + Network.prototype._setScale = function (scale) { + this.scale = scale; + }; - // 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; + /** + * Get the current scale of the network + * @return {Number} scale Scaling factor 1.0 is unscaled + * @private + */ + Network.prototype._getScale = function () { + return this.scale; + }; - util.forEach(this.items, function (item) { - item.dirty = true; - if (item.displayed) item.redraw(); - }); - restack = true; + /** + * 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); } - - // 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, this.subgroups); + 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); } + }; - // recalculate the height of the group - var height = this._calculateHeight(margin); - - // calculate actual size and position - var foreground = this.dom.foreground; - this.top = foreground.offsetTop; - this.left = foreground.offsetLeft; - this.width = foreground.offsetWidth; - resized = util.updateProperty(this, "height", height) || resized; - - // recalculate size of label - resized = util.updateProperty(this.props.label, "width", this.dom.inner.clientWidth) || resized; - resized = util.updateProperty(this.props.label, "height", this.dom.inner.clientHeight) || resized; - - // apply new height - this.dom.background.style.height = height + "px"; - this.dom.foreground.style.height = height + "px"; - this.dom.label.style.height = height + "px"; - // update vertical position of items after they are re-stacked and the height of the group is calculated - for (var i = 0, ii = this.visibleItems.length; i < ii; i++) { - var item = this.visibleItems[i]; - item.repositionY(margin); + /** + * Freeze the _animationStep + */ + Network.prototype.freezeSimulation = function (freeze) { + if (freeze == true) { + this.freezeSimulationEnabled = true; + this.moving = false; + } else { + this.freezeSimulationEnabled = false; + this.moving = true; + this.start(); } - - return resized; }; + /** - * recalculate the height of the group - * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin - * @returns {number} Returns the height + * This function cleans the support nodes if they are not needed and adds them when they are. + * + * @param {boolean} [disableStart] * @private */ - Group.prototype._calculateHeight = function (margin) { - // recalculate the height of the group - var height; - var visibleItems = this.visibleItems; - //var visibleSubgroups = []; - //this.visibleSubgroups = 0; - this.resetSubgroups(); - var me = this; - 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 (item.data.subgroup !== undefined) { - me.subgroups[item.data.subgroup].height = Math.max(me.subgroups[item.data.subgroup].height, item.height); - me.subgroups[item.data.subgroup].visible = true; - //if (visibleSubgroups.indexOf(item.data.subgroup) == -1){ - // visibleSubgroups.push(item.data.subgroup); - // me.visibleSubgroups += 1; - //} + Network.prototype._configureSmoothCurves = function () { + var disableStart = arguments[0] === undefined ? true : arguments[0]; + if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { + this._createBezierNodes(); + // cleanup unused support nodes + for (var i = 0; i < this.body.supportNodeIndices.length; i++) { + var nodeId = this.body.supportNodeIndices[i]; + // delete support nodes for edges that have been deleted + if (this.body.edges[this.body.supportNodes[nodeId].parentEdgeId] === undefined) { + delete this.body.supportNodes[nodeId]; } - }); - 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; + // delete the support nodes + this.body.supportNodes = {}; + for (var edgeId in this.body.edges) { + if (this.body.edges.hasOwnProperty(edgeId)) { + this.body.edges[edgeId].via = null; + } + } } - height = Math.max(height, this.props.label.height); - - return height; - }; - /** - * Show this group: attach to the DOM - */ - 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); + this._updateNodeIndexList(); + this.physics._updateCalculationNodes(); + if (!disableStart) { + this.moving = true; + this.start(); } + }; - 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); + /** + * 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 () { + var specificEdges = arguments[0] === undefined ? this.body.edges : arguments[0]; + if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { + for (var edgeId in specificEdges) { + if (specificEdges.hasOwnProperty(edgeId)) { + var edge = specificEdges[edgeId]; + if (edge.via == null) { + var nodeId = "edgeId:".concat(edge.id); + var node = new Node({ id: nodeId, + mass: 1, + shape: "circle", + image: "", + internalMultiplier: 1 + }, {}, {}, this.constants); + this.body.supportNodes[nodeId] = node; + edge.via = node; + edge.via.parentEdgeId = edge.id; + edge.positionBezierNode(); + } + } + } + this._updateNodeIndexList(); } }; /** - * Hide this group: remove from the DOM + * load the functions that load the mixins into the prototype. + * + * @private */ - Group.prototype.hide = function () { - var label = this.dom.label; - if (label.parentNode) { - label.parentNode.removeChild(label); - } - - var foreground = this.dom.foreground; - if (foreground.parentNode) { - foreground.parentNode.removeChild(foreground); - } - - var background = this.dom.background; - if (background.parentNode) { - background.parentNode.removeChild(background); - } - - var axis = this.dom.axis; - if (axis.parentNode) { - axis.parentNode.removeChild(axis); + Network.prototype._initializeMixinLoaders = function () { + for (var mixin in MixinLoader) { + if (MixinLoader.hasOwnProperty(mixin)) { + Network.prototype[mixin] = MixinLoader[mixin]; + } } }; /** - * Add an item to the group - * @param {Item} item + * Load the XY positions of the nodes into the dataset. */ - Group.prototype.add = function (item) { - this.items[item.id] = item; - item.setParent(this); + Network.prototype.storePosition = function () { + console.log("storePosition is depricated: use .storePositions() from now on."); + this.storePositions(); + }; - // add to - if (item.data.subgroup !== undefined) { - if (this.subgroups[item.data.subgroup] === undefined) { - this.subgroups[item.data.subgroup] = { height: 0, visible: false, index: this.subgroupIndex, items: [] }; - this.subgroupIndex++; + /** + * Load the XY positions of the nodes into the dataset. + */ + Network.prototype.storePositions = function () { + var dataArray = []; + for (var nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + var node = this.body.nodes[nodeId]; + var allowedToMoveX = !this.body.nodes.xFixed; + var allowedToMoveY = !this.body.nodes.yFixed; + if (this.body.data.nodes._data[nodeId].x != Math.round(node.x) || this.body.data.nodes._data[nodeId].y != Math.round(node.y)) { + dataArray.push({ id: nodeId, x: Math.round(node.x), y: Math.round(node.y), allowedToMoveX: allowedToMoveX, allowedToMoveY: allowedToMoveY }); + } } - this.subgroups[item.data.subgroup].items.push(item); - } - this.orderSubgroups(); - - 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); } + this.body.data.nodes.update(dataArray); }; - Group.prototype.orderSubgroups = function () { - if (this.subgroupOrderer !== undefined) { - var sortArray = []; - if (typeof this.subgroupOrderer == "string") { - for (var subgroup in this.subgroups) { - sortArray.push({ subgroup: subgroup, sortField: this.subgroups[subgroup].items[0].data[this.subgroupOrderer] }); + /** + * Return the positions of the nodes. + */ + Network.prototype.getPositions = function (ids) { + var dataArray = {}; + if (ids !== undefined) { + if (Array.isArray(ids) == true) { + for (var i = 0; i < ids.length; i++) { + if (this.body.nodes[ids[i]] !== undefined) { + var node = this.body.nodes[ids[i]]; + dataArray[ids[i]] = { x: Math.round(node.x), y: Math.round(node.y) }; + } } - sortArray.sort(function (a, b) { - return a.sortField - b.sortField; - }); - } else if (typeof this.subgroupOrderer == "function") { - for (var subgroup in this.subgroups) { - sortArray.push(this.subgroups[subgroup].items[0].data); + } else { + if (this.body.nodes[ids] !== undefined) { + var node = this.body.nodes[ids]; + dataArray[ids] = { x: Math.round(node.x), y: Math.round(node.y) }; } - sortArray.sort(this.subgroupOrderer); } - - if (sortArray.length > 0) { - for (var i = 0; i < sortArray.length; i++) { - this.subgroups[sortArray[i].subgroup].index = i; + } else { + for (var nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + var node = this.body.nodes[nodeId]; + dataArray[nodeId] = { x: Math.round(node.x), y: Math.round(node.y) }; } } } + return dataArray; }; - Group.prototype.resetSubgroups = function () { - for (var subgroup in this.subgroups) { - if (this.subgroups.hasOwnProperty(subgroup)) { - this.subgroups[subgroup].visible = false; - } - } - }; /** - * Remove an item from the group - * @param {Item} item + * Returns true when the Network is active. + * @returns {boolean} */ - Group.prototype.remove = function (item) { - delete this.items[item.id]; - item.setParent(null); + Network.prototype.isActive = function () { + return !this.activator || this.activator.active; + }; - // remove from visible items - var index = this.visibleItems.indexOf(item); - if (index != -1) this.visibleItems.splice(index, 1); - // TODO: also remove from ordered items? + /** + * Sets the scale + * @returns {Number} + */ + Network.prototype.setScale = function () { + return this._setScale(); }; /** - * Remove an item from the corresponding DataSet - * @param {Item} item + * Returns the scale + * @returns {Number} */ - Group.prototype.removeFromDataSet = function (item) { - this.itemSet.removeItem(item.id); + Network.prototype.getScale = function () { + return this._getScale(); }; /** - * Reorder the items + * Check if a node is a cluster. + * @param nodeId + * @returns {*} */ - Group.prototype.order = function () { - var array = util.toArray(this.items); - var startArray = []; - var endArray = []; - - for (var i = 0; i < array.length; i++) { - if (array[i].data.end !== undefined) { - endArray.push(array[i]); - } - startArray.push(array[i]); + Network.prototype.isCluster = function (nodeId) { + if (this.body.nodes[nodeId] !== undefined) { + return this.body.nodes[nodeId].isCluster; + } else { + console.log("Node does not exist."); + return false; } - this.orderedItems = { - byStart: startArray, - byEnd: endArray - }; - - stack.orderByStart(this.orderedItems.byStart); - stack.orderByEnd(this.orderedItems.byEnd); }; - /** - * 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 + * Returns the scale + * @returns {Number} */ - Group.prototype._updateVisibleItems = function (orderedItems, oldVisibleItems, range) { - var visibleItems = []; - var visibleItemsLookup = {}; // we keep this to quickly look up if an item already exists in the list without using indexOf on visibleItems - var interval = (range.end - range.start) / 4; - var lowerBound = range.start - interval; - var upperBound = range.end + interval; - var item, i; + Network.prototype.getCenterCoordinates = function () { + return this.DOMtoCanvas({ x: 0.5 * this.frame.canvas.clientWidth, y: 0.5 * this.frame.canvas.clientHeight }); + }; - // this function is used to do the binary search. - var searchFunction = function (value) { - if (value < lowerBound) { - return -1; - } else if (value <= upperBound) { - return 0; - } else { - return 1; - } - }; - // first check if the items that were in view previously are still in view. - // IMPORTANT: this handles the case for the items with startdate before the window and enddate after the window! - // also cleans up invisible items. - if (oldVisibleItems.length > 0) { - for (i = 0; i < oldVisibleItems.length; i++) { - this._checkIfVisibleWithReference(oldVisibleItems[i], visibleItems, visibleItemsLookup, range); - } + Network.prototype.getBoundingBox = function (nodeId) { + if (this.body.nodes[nodeId] !== undefined) { + return this.body.nodes[nodeId].boundingBox; } + }; - // we do a binary search for the items that have only start values. - var initialPosByStart = util.binarySearchCustom(orderedItems.byStart, searchFunction, "data", "start"); - - // trace the visible items from the inital start pos both ways until an invisible item is found, we only look at the start values. - this._traceVisible(initialPosByStart, orderedItems.byStart, visibleItems, visibleItemsLookup, function (item) { - return item.data.start < lowerBound || item.data.start > upperBound; - }); - - // if the window has changed programmatically without overlapping the old window, the ranged items with start < lowerBound and end > upperbound are not shown. - // We therefore have to brute force check all items in the byEnd list - if (this.checkRangedItems == true) { - this.checkRangedItems = false; - for (i = 0; i < orderedItems.byEnd.length; i++) { - this._checkIfVisibleWithReference(orderedItems.byEnd[i], visibleItems, visibleItemsLookup, range); + Network.prototype.getConnectedNodes = function (nodeId) { + var nodeList = []; + if (this.body.nodes[nodeId] !== undefined) { + var node = this.body.nodes[nodeId]; + var nodeObj = { nodeId: true }; // used to quickly check if node already exists + for (var i = 0; i < node.edges.length; i++) { + var edge = node.edges[i]; + if (edge.toId == nodeId) { + if (nodeObj[edge.fromId] === undefined) { + nodeList.push(edge.fromId); + nodeObj[edge.fromId] = true; + } + } else if (edge.fromId == nodeId) { + if (nodeObj[edge.toId] === undefined) { + nodeList.push(edge.toId); + nodeObj[edge.toId] = true; + } + } } - } else { - // we do a binary search for the items that have defined end times. - var initialPosByEnd = util.binarySearchCustom(orderedItems.byEnd, searchFunction, "data", "end"); - - // trace the visible items from the inital start pos both ways until an invisible item is found, we only look at the end values. - this._traceVisible(initialPosByEnd, orderedItems.byEnd, visibleItems, visibleItemsLookup, function (item) { - return item.data.end < lowerBound || item.data.end > upperBound; - }); } + return nodeList; + }; - // finally, we reposition all the visible items. - for (i = 0; i < visibleItems.length; i++) { - item = visibleItems[i]; - if (!item.displayed) item.show(); - // reposition item horizontally - item.repositionX(); + Network.prototype.getEdgesFromNode = function (nodeId) { + var edgesList = []; + if (this.body.nodes[nodeId] !== undefined) { + var node = this.body.nodes[nodeId]; + for (var i = 0; i < node.edges.length; i++) { + edgesList.push(node.edges[i].id); + } } + return edgesList; + }; - // debug - //console.log("new line") - //if (this.groupId == null) { - // for (i = 0; i < orderedItems.byStart.length; i++) { - // item = orderedItems.byStart[i].data; - // console.log('start',i,initialPosByStart, item.start.valueOf(), item.content, item.start >= lowerBound && item.start <= upperBound,i == initialPosByStart ? "<------------------- HEREEEE" : "") - // } - // for (i = 0; i < orderedItems.byEnd.length; i++) { - // item = orderedItems.byEnd[i].data; - // console.log('rangeEnd',i,initialPosByEnd, item.end.valueOf(), item.content, item.end >= range.start && item.end <= range.end,i == initialPosByEnd ? "<------------------- HEREEEE" : "") - // } - //} - - return visibleItems; + Network.prototype.generateColorObject = function (color) { + return util.parseColor(color); }; - Group.prototype._traceVisible = function (initialPos, items, visibleItems, visibleItemsLookup, breakCondition) { - var item; - var i; + module.exports = Network; - if (initialPos != -1) { - for (i = initialPos; i >= 0; i--) { - item = items[i]; - if (breakCondition(item)) { - break; - } else { - if (visibleItemsLookup[item.id] === undefined) { - visibleItemsLookup[item.id] = true; - visibleItems.push(item); - } - } - } +/***/ }, +/* 37 */ +/***/ function(module, exports, __webpack_require__) { - for (i = initialPos + 1; i < items.length; i++) { - item = items[i]; - if (breakCondition(item)) { - break; - } else { - if (visibleItemsLookup[item.id] === undefined) { - visibleItemsLookup[item.id] = true; - visibleItems.push(item); - } - } - } - } - }; + "use strict"; + var util = __webpack_require__(1); + var Node = __webpack_require__(40); /** - * 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. + * @class Edge * - * @param {Item} item - * @param {Array} visibleItems - * @param {{start:number, end:number}} range - * @private + * 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 */ - 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(); + function Edge(properties, body, networkConstants) { + if (body === undefined) { + throw "No body provided"; } - }; + var fields = ["edges"]; + var constants = util.selectiveBridgeObject(fields, networkConstants); + this.options = constants.edges; + this.options.smoothCurves = networkConstants.smoothCurves; + this.body = body; - /** - * 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._checkIfVisibleWithReference = function (item, visibleItems, visibleItemsLookup, range) { - if (item.isVisible(range)) { - if (visibleItemsLookup[item.id] === undefined) { - visibleItemsLookup[item.id] = true; - visibleItems.push(item); - } - } else { - if (item.displayed) item.hide(); - } - }; + // initialize variables + this.id = undefined; + this.fromId = undefined; + this.toId = undefined; + this.title = undefined; + this.widthSelected = this.options.width * this.options.widthSelectionMultiplier; + this.value = undefined; + this.selected = false; + this.hover = false; + this.labelDimensions = { top: 0, left: 0, width: 0, height: 0, yLine: 0 }; // could be cached + this.dirtyLabel = true; + this.colorDirty = true; + this.from = null; // a node + this.to = null; // a node + this.via = null; // a temp node + this.fromBackup = null; // used to clean up after reconnect (used for manipulation) + this.toBackup = null; // used to clean up after reconnect (used for manipulation) - module.exports = Group; + // 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.fromArray = []; + this.toArray = []; -/***/ }, -/* 29 */ -/***/ function(module, exports, __webpack_require__) { + this.connected = false; - "use strict"; + this.widthFixed = false; + this.lengthFixed = false; - // Utility functions for ordering and stacking of items - var EPSILON = 0.001; // used when checking collisions, to prevent round-off errors + this.setProperties(properties); - /** - * Order items by their start data - * @param {Item[]} items - */ - exports.orderByStart = function (items) { - items.sort(function (a, b) { - return a.data.start - b.data.start; - }); - }; + this.controlNodesEnabled = false; + this.controlNodes = { from: null, to: null, positions: {} }; + this.connectedNode = null; + } /** - * Order items by their end date. If they have no end date, their start date - * is used. - * @param {Item[]} items + * Set or overwrite properties for the edge + * @param {Object} properties an object with properties + * @param {Object} constants and object with default, global properties */ - 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; + Edge.prototype.setProperties = function (properties) { + this.colorDirty = true; + if (!properties) { + return; + } + this.properties = properties; - return aTime - bTime; - }); - }; + var fields = ["style", "fontSize", "fontFace", "fontColor", "fontFill", "fontStrokeWidth", "fontStrokeColor", "width", "widthSelectionMultiplier", "hoverWidth", "arrowScaleFactor", "dash", "inheritColor", "labelAlignment", "opacity", "customScalingFunction", "useGradients", "value"]; + util.selectiveDeepExtend(fields, this.options, properties); - /** - * 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; + if (properties.from !== undefined) { + this.fromId = properties.from; + } + if (properties.to !== undefined) { + this.toId = properties.to; + } - if (force) { - // reset top position of all items - for (i = 0, iMax = items.length; i < iMax; i++) { - items[i].top = null; + if (properties.id !== undefined) { + this.id = properties.id; + } + if (properties.label !== undefined) { + this.label = properties.label;this.dirtyLabel = true; + } + + if (properties.title !== undefined) { + this.title = properties.title; + } + if (properties.value !== undefined) { + this.value = properties.value; + } + if (properties.length !== undefined) { + this.physics.springLength = properties.length; + } + + 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; + } } } - // calculate new, non-overlapping positions - for (i = 0, iMax = items.length; i < iMax; i++) { - var item = items[i]; - if (item.stack && item.top === null) { - // initialize top position - item.top = margin.axis; + // A node is connected when it has a from and to node that both exist in the network.body.nodes. + this.connect(); - 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 && other.stack && exports.collision(item, other, margin.item)) { - collidingItem = other; - break; - } - } + this.widthFixed = this.widthFixed || properties.width !== undefined; + this.lengthFixed = this.lengthFixed || properties.length !== undefined; - 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); - } + this.widthSelected = this.options.width * this.options.widthSelectionMultiplier; + + // set draw method based on style + switch (this.options.style) { + case "line": + this.draw = this._drawLine;break; + case "arrow": + this.draw = this._drawArrow;break; + case "arrow-center": + this.draw = this._drawArrowCenter;break; + case "dash-line": + this.draw = this._drawDashLine;break; + default: + this.draw = this._drawLine;break; } }; /** - * 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. + * Connect an edge to its nodes */ - exports.nostack = function (items, margin, subgroups) { - var i, iMax, newTop; + Edge.prototype.connect = function () { + this.disconnect(); - // reset top position of all items - for (i = 0, iMax = items.length; i < iMax; i++) { - if (items[i].data.subgroup !== undefined) { - newTop = margin.axis; - for (var subgroup in subgroups) { - if (subgroups.hasOwnProperty(subgroup)) { - if (subgroups[subgroup].visible == true && subgroups[subgroup].index < subgroups[items[i].data.subgroup].index) { - newTop += subgroups[subgroup].height + margin.item.vertical; - } - } - } - items[i].top = newTop; - } else { - items[i].top = margin.axis; + this.from = this.body.nodes[this.fromId] || null; + this.to = this.body.nodes[this.toId] || null; + this.connected = this.from !== null && this.to !== null; + + if (this.connected === true) { + this.from.attachEdge(this); + this.to.attachEdge(this); + } else { + if (this.from) { + this.from.detachEdge(this); + } + if (this.to) { + this.to.detachEdge(this); } } }; /** - * 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 + * Disconnect an edge from its nodes */ - 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; - }; + Edge.prototype.disconnect = function () { + if (this.from) { + this.from.detachEdge(this); + this.from = null; + } + if (this.to) { + this.to.detachEdge(this); + this.to = null; + } -/***/ }, -/* 30 */ -/***/ function(module, exports, __webpack_require__) { + this.connected = false; + }; - "use strict"; + /** + * 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; + }; - var Hammer = __webpack_require__(19); - var Item = __webpack_require__(31); /** - * @constructor RangeItem - * @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 + * Retrieve the value of the edge. Can be undefined + * @return {Number} value */ - function RangeItem(data, conversion, options) { - this.props = { - content: { - width: 0 - } - }; - this.overflow = false; // if contents can overflow (css styling), this flag is set to true + Edge.prototype.getValue = function () { + return this.value; + }; - // 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); - } + /** + * 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, total) { + if (!this.widthFixed && this.value !== undefined) { + var scale = this.options.customScalingFunction(min, max, total, this.value); + var widthDiff = this.options.widthMax - this.options.widthMin; + this.options.width = this.options.widthMin + scale * widthDiff; + this.widthSelected = this.options.width * this.options.widthSelectionMultiplier; } - - Item.call(this, data, conversion, options); - } - - RangeItem.prototype = new Item(null, null, null); - - RangeItem.prototype.baseClassName = "item range"; + }; /** - * Check whether this item is visible inside given range - * @returns {{start: Number, end: Number}} range with a timestamp for start and end - * @returns {boolean} True if visible + * Redraw 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 */ - RangeItem.prototype.isVisible = function (range) { - // determine visibility - return this.data.start < range.end && this.data.end > range.start; + Edge.prototype.draw = function (ctx) { + throw "Method draw not initialized in edge"; }; /** - * Repaint the item + * 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 */ - RangeItem.prototype.redraw = function () { - var dom = this.dom; - if (!dom) { - // create DOM - this.dom = {}; - dom = this.dom; + 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; - // background box - dom.box = document.createElement("div"); - // className is updated in redraw() + var dist = this._getDistanceToEdge(xFrom, yFrom, xTo, yTo, xObj, yObj); - // contents box - dom.content = document.createElement("div"); - dom.content.className = "content"; - dom.box.appendChild(dom.content); + return dist < distMax; + } else { + return false; + } + }; - // attach this item as attribute - dom.box["timeline-item"] = this; + Edge.prototype._getColor = function (ctx) { + var colorObj = this.options.color; + if (this.options.useGradients == true) { + var grd = ctx.createLinearGradient(this.from.x, this.from.y, this.to.x, this.to.y); + var fromColor, toColor; + fromColor = this.from.options.color.highlight.border; + toColor = this.to.options.color.highlight.border; - this.dirty = 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 item: parent has no foreground container element"); + if (this.from.selected == false && this.to.selected == false) { + fromColor = util.overrideOpacity(this.from.options.color.border, this.options.opacity); + toColor = util.overrideOpacity(this.to.options.color.border, this.options.opacity); + } else if (this.from.selected == true && this.to.selected == false) { + toColor = this.to.options.color.border; + } else if (this.from.selected == false && this.to.selected == true) { + fromColor = this.from.options.color.border; } - foreground.appendChild(dom.box); + grd.addColorStop(0, fromColor); + grd.addColorStop(1, toColor); + return grd; } - this.displayed = true; - - // Update DOM when item is marked dirty. An item is marked dirty when: - // - the item is not yet rendered - // - the item's data is changed - // - the item is selected/deselected - if (this.dirty) { - this._updateContents(this.dom.content); - this._updateTitle(this.dom.box); - this._updateDataAttributes(this.dom.box); - this._updateStyle(this.dom.box); - // update class - var className = (this.data.className ? " " + this.data.className : "") + (this.selected ? " selected" : ""); - dom.box.className = this.baseClassName + className; + if (this.colorDirty === true) { + if (this.options.inheritColor == "to") { + colorObj = { + highlight: this.to.options.color.highlight.border, + hover: this.to.options.color.hover.border, + color: util.overrideOpacity(this.from.options.color.border, this.options.opacity) + }; + } 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: util.overrideOpacity(this.from.options.color.border, this.options.opacity) + }; + } + this.options.color = colorObj; + this.colorDirty = false; + } - // determine from css whether this box has overflow - this.overflow = window.getComputedStyle(dom.content).overflow !== "hidden"; - // recalculate size - // turn off max-width to be able to calculate the real width - // this causes an extra browser repaint/reflow, but so be it - this.dom.content.style.maxWidth = "none"; - this.props.content.width = this.dom.content.offsetWidth; - this.height = this.dom.box.offsetHeight; - this.dom.content.style.maxWidth = ""; - this.dirty = false; + if (this.selected == true) { + return colorObj.highlight; + } else if (this.hover == true) { + return colorObj.hover; + } else { + return colorObj.color; } - - this._repaintDeleteButton(dom.box); - this._repaintDragLeft(); - this._repaintDragRight(); }; - /** - * Show the item in the DOM (when not already visible). The items DOM will - * be created when needed. - */ - RangeItem.prototype.show = function () { - if (!this.displayed) { - this.redraw(); - } - }; /** - * Hide the item from the DOM (when visible) - * @return {Boolean} changed + * 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 */ - RangeItem.prototype.hide = function () { - if (this.displayed) { - var box = this.dom.box; - - if (box.parentNode) { - box.parentNode.removeChild(box); - } + Edge.prototype._drawLine = function (ctx) { + // set style + ctx.strokeStyle = this._getColor(ctx); + ctx.lineWidth = this._getLineWidth(); - this.top = null; - this.left = null; + if (this.from != this.to) { + // draw line + var via = this._line(ctx); - this.displayed = false; + // 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); } }; /** - * Reposition the item horizontally - * @Override + * Get the line width of the edge. Depends on width and whether one of the + * connected nodes is selected. + * @return {Number} width + * @private */ - RangeItem.prototype.repositionX = function () { - var parentWidth = this.parent.width; - var start = this.conversion.toScreen(this.data.start); - var end = this.conversion.toScreen(this.data.end); - var contentLeft; - var contentWidth; - - // limit the width of the this, as browsers cannot draw very wide divs - if (start < -parentWidth) { - start = -parentWidth; - } - if (end > 2 * parentWidth) { - end = 2 * parentWidth; - } - var boxWidth = Math.max(end - start, 1); - - if (this.overflow) { - this.left = start; - this.width = boxWidth + this.props.content.width; - contentWidth = 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 re-stacking needed, which is nicer for the eye; + Edge.prototype._getLineWidth = function () { + if (this.selected == true) { + return Math.max(Math.min(this.widthSelected, this.options.widthMax), 0.3 * this.networkScaleInv); } else { - this.left = start; - this.width = boxWidth; - contentWidth = Math.min(end - start - 2 * this.options.padding, this.props.content.width); + if (this.hover == true) { + return Math.max(Math.min(this.options.hoverWidth, this.options.widthMax), 0.3 * this.networkScaleInv); + } else { + return Math.max(this.options.width, 0.3 * this.networkScaleInv); + } } + }; - this.dom.box.style.left = this.left + "px"; - this.dom.box.style.width = boxWidth + "px"; + Edge.prototype._getViaCoordinates = function () { + if (this.options.smoothCurves.dynamic == true && this.options.smoothCurves.enabled == true) { + return this.via; + } else if (this.options.smoothCurves.enabled == false) { + return { x: 0, y: 0 }; + } else { + var xVia = null; + var yVia = null; + var factor = this.options.smoothCurves.roundness; + var type = this.options.smoothCurves.type; + var dx = Math.abs(this.from.x - this.to.x); + var dy = Math.abs(this.from.y - this.to.y); + if (type == "discrete" || type == "diagonalCross") { + if (Math.abs(this.from.x - this.to.x) < Math.abs(this.from.y - this.to.y)) { + if (this.from.y > this.to.y) { + if (this.from.x < this.to.x) { + xVia = this.from.x + factor * dy; + yVia = this.from.y - factor * dy; + } else if (this.from.x > this.to.x) { + xVia = this.from.x - factor * dy; + yVia = this.from.y - factor * dy; + } + } else if (this.from.y < this.to.y) { + if (this.from.x < this.to.x) { + xVia = this.from.x + factor * dy; + yVia = this.from.y + factor * dy; + } else if (this.from.x > this.to.x) { + xVia = this.from.x - factor * dy; + yVia = this.from.y + factor * dy; + } + } + if (type == "discrete") { + xVia = dx < factor * dy ? this.from.x : xVia; + } + } else if (Math.abs(this.from.x - this.to.x) > Math.abs(this.from.y - this.to.y)) { + if (this.from.y > this.to.y) { + if (this.from.x < this.to.x) { + xVia = this.from.x + factor * dx; + yVia = this.from.y - factor * dx; + } else if (this.from.x > this.to.x) { + xVia = this.from.x - factor * dx; + yVia = this.from.y - factor * dx; + } + } else if (this.from.y < this.to.y) { + if (this.from.x < this.to.x) { + xVia = this.from.x + factor * dx; + yVia = this.from.y + factor * dx; + } else if (this.from.x > this.to.x) { + xVia = this.from.x - factor * dx; + yVia = this.from.y + factor * dx; + } + } + if (type == "discrete") { + yVia = dy < factor * dx ? this.from.y : yVia; + } + } + } else 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 if (type == "curvedCW") { + var dx = this.to.x - this.from.x; + var dy = this.from.y - this.to.y; + var radius = Math.sqrt(dx * dx + dy * dy); + var pi = Math.PI; - switch (this.options.align) { - case "left": - this.dom.content.style.left = "0"; - break; + var originalAngle = Math.atan2(dy, dx); + var myAngle = (originalAngle + (factor * 0.5 + 0.5) * pi) % (2 * pi); - case "right": - this.dom.content.style.left = Math.max(boxWidth - contentWidth - 2 * this.options.padding, 0) + "px"; - break; + xVia = this.from.x + (factor * 0.5 + 0.5) * radius * Math.sin(myAngle); + yVia = this.from.y + (factor * 0.5 + 0.5) * radius * Math.cos(myAngle); + } else if (type == "curvedCCW") { + var dx = this.to.x - this.from.x; + var dy = this.from.y - this.to.y; + var radius = Math.sqrt(dx * dx + dy * dy); + var pi = Math.PI; - case "center": - this.dom.content.style.left = Math.max((boxWidth - contentWidth - 2 * this.options.padding) / 2, 0) + "px"; - break; + var originalAngle = Math.atan2(dy, dx); + var myAngle = (originalAngle + (-factor * 0.5 + 0.5) * pi) % (2 * pi); - default: - // 'auto' - // when range exceeds left of the window, position the contents at the left of the visible area - if (this.overflow) { - if (end > 0) { - contentLeft = Math.max(-start, 0); - } else { - contentLeft = -contentWidth; // ensure it's not visible anymore + xVia = this.from.x + (factor * 0.5 + 0.5) * radius * Math.sin(myAngle); + yVia = this.from.y + (factor * 0.5 + 0.5) * radius * Math.cos(myAngle); + } 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) { + 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) { + 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) { + 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) { + xVia = this.from.x - factor * dy; + yVia = this.from.y + factor * dy; + xVia = this.to.x > xVia ? this.to.x : xVia; + } } - } else { - if (start < 0) { - contentLeft = Math.min(-start, end - start - contentWidth - 2 * this.options.padding); - // TODO: remove the need for options.padding. it's terrible. - } else { - contentLeft = 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; + yVia = this.to.y > yVia ? this.to.y : yVia; + } else if (this.from.x > this.to.x) { + 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) { + 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) { + xVia = this.from.x - factor * dx; + yVia = this.from.y + factor * dx; + yVia = this.to.y < yVia ? this.to.y : yVia; + } } } - this.dom.content.style.left = contentLeft + "px"; + } + + + return { x: xVia, y: yVia }; } }; /** - * Reposition the item vertically - * @Override + * Draw a line between two nodes + * @param {CanvasRenderingContext2D} ctx + * @private */ - RangeItem.prototype.repositionY = function () { - var orientation = this.options.orientation, - box = this.dom.box; - - if (orientation == "top") { - box.style.top = this.top + "px"; + 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(); + //ctx.circle(via.x,via.y,2) + //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 { - box.style.top = this.parent.height - this.top - this.height + "px"; + ctx.lineTo(this.to.x, this.to.y); + ctx.stroke(); + return null; } }; /** - * Repaint a drag area on the left side of the range when the range is selected - * @protected + * Draw a line from a node to itself, a circle + * @param {CanvasRenderingContext2D} ctx + * @param {Number} x + * @param {Number} y + * @param {Number} radius + * @private */ - RangeItem.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 () {}); - - 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; - } + 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(); }; /** - * Repaint a drag area on the right side of the range when the range is selected - * @protected + * 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 */ - RangeItem.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; + Edge.prototype._label = function (ctx, text, x, y) { + if (text) { + ctx.font = (this.from.selected || this.to.selected ? "bold " : "") + this.options.fontSize + "px " + this.options.fontFace; + var yLine; - // TODO: this should be redundant? - Hammer(dragRight, { - preventDefault: true - }).on("drag", function () {}); + if (this.dirtyLabel == true) { + var lines = String(text).split("\n"); + var lineCount = lines.length; + var fontSize = Number(this.options.fontSize); + yLine = y + (1 - lineCount) / 2 * fontSize; - 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); + var width = ctx.measureText(lines[0]).width; + for (var i = 1; i < lineCount; i++) { + var lineWidth = ctx.measureText(lines[i]).width; + width = lineWidth > width ? lineWidth : width; + } + var height = this.options.fontSize * lineCount; + var left = x - width / 2; + var top = y - height / 2; + + // cache + this.labelDimensions = { top: top, left: left, width: width, height: height, yLine: yLine }; } - this.dom.dragRight = null; - } - }; - module.exports = RangeItem; - //console.log('drag left') - //console.log('drag right') - -/***/ }, -/* 31 */ -/***/ function(module, exports, __webpack_require__) { - - "use strict"; - - var Hammer = __webpack_require__(19); - var util = __webpack_require__(1); + var yLine = this.labelDimensions.yLine; - /** - * @constructor Item - * @param {Object} data Object containing (optional) parameters type, - * start, end, content, group, className. - * @param {{toScreen: function, toTime: function}} conversion - * Conversion functions from time to screen and vice versa - * @param {Object} options Configuration options - * // TODO: describe available options - */ - function Item(data, conversion, options) { - this.id = null; - this.parent = null; - this.data = data; - this.dom = null; - this.conversion = conversion || {}; - this.options = options || {}; + ctx.save(); - this.selected = false; - this.displayed = false; - this.dirty = true; + if (this.options.labelAlignment != "horizontal") { + ctx.translate(x, yLine); + this._rotateForLabelAlignment(ctx); + x = 0; + yLine = 0; + } - this.top = null; - this.left = null; - this.width = null; - this.height = null; - } - Item.prototype.stack = true; + this._drawLabelRect(ctx); + this._drawLabelText(ctx, x, yLine, lines, lineCount, fontSize); - /** - * Select current item - */ - Item.prototype.select = function () { - this.selected = true; - this.dirty = true; - if (this.displayed) this.redraw(); + ctx.restore(); + } }; /** - * Unselect current item + * Rotates the canvas so the text is most readable + * @param {CanvasRenderingContext2D} ctx + * @private */ - Item.prototype.unselect = function () { - this.selected = false; - this.dirty = true; - if (this.displayed) this.redraw(); - }; + Edge.prototype._rotateForLabelAlignment = function (ctx) { + var dy = this.from.y - this.to.y; + var dx = this.from.x - this.to.x; + var angleInDegrees = Math.atan2(dy, dx); - /** - * Set data for the item. Existing data will be updated. The id should not - * be changed. When the item is displayed, it will be redrawn immediately. - * @param {Object} data - */ - Item.prototype.setData = function (data) { - this.data = data; - this.dirty = true; - if (this.displayed) this.redraw(); + // rotate so label it is readable + if (angleInDegrees < -1 && dx < 0 || angleInDegrees > 0 && dx < 0) { + angleInDegrees = angleInDegrees + Math.PI; + } + + ctx.rotate(angleInDegrees); }; /** - * Set a parent for the item - * @param {ItemSet | Group} parent + * Draws the label rectangle + * @param {CanvasRenderingContext2D} ctx + * @param {String} labelAlignment + * @private */ - Item.prototype.setParent = function (parent) { - if (this.displayed) { - this.hide(); - this.parent = parent; - if (this.parent) { - this.show(); + Edge.prototype._drawLabelRect = function (ctx) { + if (this.options.fontFill !== undefined && this.options.fontFill !== null && this.options.fontFill !== "none") { + ctx.fillStyle = this.options.fontFill; + + var lineMargin = 2; + + if (this.options.labelAlignment == "line-center") { + ctx.fillRect(-this.labelDimensions.width * 0.5, -this.labelDimensions.height * 0.5, this.labelDimensions.width, this.labelDimensions.height); + } else if (this.options.labelAlignment == "line-above") { + ctx.fillRect(-this.labelDimensions.width * 0.5, -(this.labelDimensions.height + lineMargin), this.labelDimensions.width, this.labelDimensions.height); + } else if (this.options.labelAlignment == "line-below") { + ctx.fillRect(-this.labelDimensions.width * 0.5, lineMargin, this.labelDimensions.width, this.labelDimensions.height); + } else { + ctx.fillRect(this.labelDimensions.left, this.labelDimensions.top, this.labelDimensions.width, this.labelDimensions.height); } - } else { - this.parent = parent; } }; /** - * Check whether this item is visible inside given range - * @returns {{start: Number, end: Number}} range with a timestamp for start and end - * @returns {boolean} True if visible + * Draws the label text + * @param {CanvasRenderingContext2D} ctx + * @param {Number} x + * @param {Number} yLine + * @param {Array} lines + * @param {Number} lineCount + * @param {Number} fontSize + * @private */ - Item.prototype.isVisible = function (range) { - // Should be implemented by Item implementations - return false; - }; + Edge.prototype._drawLabelText = function (ctx, x, yLine, lines, lineCount, fontSize) { + // draw text + ctx.fillStyle = this.options.fontColor || "black"; + ctx.textAlign = "center"; - /** - * Show the Item in the DOM (when not already visible) - * @return {Boolean} changed - */ - Item.prototype.show = function () { - return false; - }; + // check for label alignment + if (this.options.labelAlignment != "horizontal") { + var lineMargin = 2; + if (this.options.labelAlignment == "line-above") { + ctx.textBaseline = "alphabetic"; + yLine -= 2 * lineMargin; // distance from edge, required because we use alphabetic. Alphabetic has less difference between browsers + } else if (this.options.labelAlignment == "line-below") { + ctx.textBaseline = "hanging"; + yLine += 2 * lineMargin; // distance from edge, required because we use hanging. Hanging has less difference between browsers + } else { + ctx.textBaseline = "middle"; + } + } else { + ctx.textBaseline = "middle"; + } - /** - * Hide the Item from the DOM (when visible) - * @return {Boolean} changed - */ - Item.prototype.hide = function () { - return false; + // check for strokeWidth + if (this.options.fontStrokeWidth > 0) { + ctx.lineWidth = this.options.fontStrokeWidth; + ctx.strokeStyle = this.options.fontStrokeColor; + ctx.lineJoin = "round"; + } + for (var i = 0; i < lineCount; i++) { + if (this.options.fontStrokeWidth > 0) { + ctx.strokeText(lines[i], x, yLine); + } + ctx.fillText(lines[i], x, yLine); + yLine += fontSize; + } }; /** - * Repaint the item - */ - Item.prototype.redraw = function () {}; - - /** - * Reposition the Item horizontally + * 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 */ - Item.prototype.repositionX = function () {}; + Edge.prototype._drawDashLine = function (ctx) { + // set style + ctx.strokeStyle = this._getColor(ctx); + ctx.lineWidth = this._getLineWidth(); - /** - * Reposition the Item vertically - */ - Item.prototype.repositionY = function () {}; + var via = null; + // only firefox and chrome support this method, else we use the legacy one. + if (ctx.setLineDash !== undefined) { + ctx.save(); + // 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]; + } - /** - * 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; + // set dash settings for chrome or firefox + ctx.setLineDash(pattern); + ctx.lineDashOffset = 0; - var deleteButton = document.createElement("div"); - deleteButton.className = "delete"; - deleteButton.title = "Delete this item"; + // draw the line + via = this._line(ctx); - Hammer(deleteButton, { - preventDefault: true - }).on("tap", function (event) { - me.parent.removeFromDataSet(me); - event.stopPropagation(); - }); + // restore the dash settings. + ctx.setLineDash([0]); + ctx.lineDashOffset = 0; + ctx.restore(); + } 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(); + } - 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); + // 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.dom.deleteButton = null; + this._label(ctx, this.label, point.x, point.y); } }; /** - * Set HTML contents for the item - * @param {Element} element HTML element to fill with the contents + * Get a point on a line + * @param {Number} percentage. Value between 0 (line start) and 1 (line end) + * @return {Object} point * @private */ - Item.prototype._updateContents = function (element) { - var content; - if (this.options.template) { - var itemData = this.parent.itemSet.itemsData.get(this.id); // get a clone of the data from the dataset - content = this.options.template(itemData); - } else { - content = this.data.content; - } - - if (content !== this.content) { - // only replace the content when changed - if (content instanceof Element) { - element.innerHTML = ""; - element.appendChild(content); - } else if (content != undefined) { - element.innerHTML = content; - } else { - if (!(this.data.type == "background" && this.data.content === undefined)) { - throw new Error("Property \"content\" missing in item " + this.id); - } - } - - this.content = content; - } + Edge.prototype._pointOnLine = function (percentage) { + return { + x: (1 - percentage) * this.from.x + percentage * this.to.x, + y: (1 - percentage) * this.from.y + percentage * this.to.y + }; }; /** - * Set HTML contents for the item - * @param {Element} element HTML element to fill with the contents + * 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 */ - Item.prototype._updateTitle = function (element) { - if (this.data.title != null) { - element.title = this.data.title || ""; - } else { - element.removeAttribute("title"); - } + 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) + }; }; /** - * Process dataAttributes timeline option and set as data- attributes on dom.content - * @param {Element} element HTML element to which the attributes will be attached + * 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 */ - Item.prototype._updateDataAttributes = function (element) { - if (this.options.dataAttributes && this.options.dataAttributes.length > 0) { - var attributes = []; + Edge.prototype._drawArrowCenter = function (ctx) { + var point; + // set style + ctx.strokeStyle = this._getColor(ctx); + ctx.fillStyle = ctx.strokeStyle; + ctx.lineWidth = this._getLineWidth(); - if (Array.isArray(this.options.dataAttributes)) { - attributes = this.options.dataAttributes; - } else if (this.options.dataAttributes == "all") { - attributes = Object.keys(this.data); + if (this.from != this.to) { + // draw line + var via = this._line(ctx); + + 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 { - return; + point = this._pointOnLine(0.5); } - for (var i = 0; i < attributes.length; i++) { - var name = attributes[i]; - var value = this.data[name]; + ctx.arrow(point.x, point.y, angle, length); + ctx.fill(); + ctx.stroke(); - if (value != null) { - element.setAttribute("data-" + name, value); - } else { - element.removeAttribute("data-" + name); - } + // draw label + if (this.label) { + this._label(ctx, this.label, point.x, point.y); } - } - }; + } else { + // draw circle + var x, y; + var radius = 0.25 * Math.max(100, this.physics.springLength); + var node = this.from; + if (!node.width) { + node.resize(ctx); + } + if (node.width > node.height) { + x = node.x + node.width * 0.5; + y = node.y - radius; + } else { + x = node.x + radius; + y = node.y - node.height * 0.5; + } + this._circle(ctx, x, y, radius); - /** - * Update custom styles of the element - * @param element - * @private - */ - Item.prototype._updateStyle = function (element) { - // remove old styles - if (this.style) { - util.removeCssText(element, this.style); - this.style = null; - } + // draw all arrows + var angle = 0.2 * Math.PI; + var length = (10 + 5 * this.options.width) * this.options.arrowScaleFactor; + point = this._pointOnCircle(x, y, radius, 0.5); + ctx.arrow(point.x, point.y, angle, length); + ctx.fill(); + ctx.stroke(); - // append new styles - if (this.data.style) { - util.addCssText(element, this.data.style); - this.style = this.data.style; + // draw label + if (this.label) { + point = this._pointOnCircle(x, y, radius, 0.5); + this._label(ctx, this.label, point.x, point.y); + } } }; - module.exports = Item; - // should be implemented by the item - // should be implemented by the item - // should be implemented by the item - -/***/ }, -/* 32 */ -/***/ function(module, exports, __webpack_require__) { - - "use strict"; - - var util = __webpack_require__(1); - var Group = __webpack_require__(28); - - /** - * @constructor BackgroundGroup - * @param {Number | String} groupId - * @param {Object} data - * @param {ItemSet} itemSet - */ - function BackgroundGroup(groupId, data, itemSet) { - Group.call(this, groupId, data, itemSet); + Edge.prototype._pointOnBezier = function (t) { + var via = this._getViaCoordinates(); - this.width = 0; - this.height = 0; - this.top = 0; - this.left = 0; - } + var x = Math.pow(1 - t, 2) * this.from.x + 2 * t * (1 - t) * via.x + Math.pow(t, 2) * this.to.x; + var y = Math.pow(1 - t, 2) * this.from.y + 2 * t * (1 - t) * via.y + Math.pow(t, 2) * this.to.y; - BackgroundGroup.prototype = Object.create(Group.prototype); + return { x: x, y: y }; + }; /** - * 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 uses binary search to look for the point where the bezier curve crosses the border of the node. + * + * @param from + * @param ctx + * @returns {*} + * @private */ - BackgroundGroup.prototype.redraw = function (range, margin, restack) { - var resized = false; - - this.visibleItems = this._updateVisibleItems(this.orderedItems, this.visibleItems, range); + Edge.prototype._findBorderPosition = function (from, ctx) { + var maxIterations = 10; + var iteration = 0; + var low = 0; + var high = 1; + var pos, angle, distanceToBorder, distanceToNodes, difference; + var threshold = 0.2; + var node = this.to; + if (from == true) { + node = this.from; + } - // calculate actual size - this.width = this.dom.background.offsetWidth; + while (low <= high && iteration < maxIterations) { + var middle = (low + high) * 0.5; - // apply new height (just always zero for BackgroundGroup - this.dom.background.style.height = "0"; + pos = this._pointOnBezier(middle); + angle = Math.atan2(node.y - pos.y, node.x - pos.x); + distanceToBorder = node.distanceToBorder(ctx, angle); + distanceToNodes = Math.sqrt(Math.pow(pos.x - node.x, 2) + Math.pow(pos.y - node.y, 2)); + difference = distanceToBorder - distanceToNodes; + if (Math.abs(difference) < threshold) { + break; // found + } else if (difference < 0) { + // distance to nodes is larger than distance to border --> t needs to be bigger if we're looking at the to node. + if (from == false) { + low = middle; + } else { + high = middle; + } + } else { + if (from == false) { + high = middle; + } else { + low = middle; + } + } - // 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(margin); + iteration++; } + pos.t = middle; - return resized; + return pos; }; /** - * Show this group: attach to the DOM + * 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 */ - BackgroundGroup.prototype.show = function () { - if (!this.dom.background.parentNode) { - this.itemSet.dom.background.appendChild(this.dom.background); - } - }; - - module.exports = BackgroundGroup; + Edge.prototype._drawArrow = function (ctx) { + // set style + ctx.strokeStyle = this._getColor(ctx); + ctx.fillStyle = ctx.strokeStyle; + ctx.lineWidth = this._getLineWidth(); -/***/ }, -/* 33 */ -/***/ function(module, exports, __webpack_require__) { + // set vars + var angle, length, arrowPos; - "use strict"; + // if not connected to itself + if (this.from != this.to) { + // draw line + this._line(ctx); - var Item = __webpack_require__(31); - var util = __webpack_require__(1); + // draw arrow head + if (this.options.smoothCurves.enabled == true) { + var via = this._getViaCoordinates(); + arrowPos = this._findBorderPosition(false, ctx); + var guidePos = this._pointOnBezier(Math.max(0, arrowPos.t - 0.1)); + angle = Math.atan2(arrowPos.y - guidePos.y, arrowPos.x - guidePos.x); + } else { + 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 toBorderDist = this.to.distanceToBorder(ctx, angle); + var toBorderPoint = (edgeSegmentLength - toBorderDist) / edgeSegmentLength; - /** - * @constructor BoxItem - * @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 BoxItem(data, conversion, options) { - this.props = { - dot: { - width: 0, - height: 0 - }, - line: { - width: 0, - height: 0 + arrowPos = {}; + arrowPos.x = (1 - toBorderPoint) * this.from.x + toBorderPoint * this.to.x; + arrowPos.y = (1 - toBorderPoint) * this.from.y + toBorderPoint * this.to.y; } - }; - // validate data - if (data) { - if (data.start == undefined) { - throw new Error("Property \"start\" missing in item " + data); - } - } + // draw arrow at the end of the line + length = (10 + 5 * this.options.width) * this.options.arrowScaleFactor; + ctx.arrow(arrowPos.x, arrowPos.y, angle, length); + ctx.fill(); + ctx.stroke(); - Item.call(this, data, conversion, options); - } + // draw label + if (this.label) { + var point; + if (this.options.smoothCurves.enabled == true && via != null) { + point = this._pointOnBezier(0.5); + } 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(); - BoxItem.prototype = new Item(null, null, null); + // 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(); - /** - * 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 - */ - BoxItem.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; + // draw label + if (this.label) { + point = this._pointOnCircle(x, y, radius, 0.5); + this._label(ctx, this.label, point.x, point.y); + } + } }; /** - * Repaint the item + * 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 */ - BoxItem.prototype.redraw = function () { - var dom = this.dom; - if (!dom) { - // create DOM - this.dom = {}; - dom = this.dom; + Edge.prototype._getDistanceToEdge = function (x1, y1, x2, y2, x3, y3) { + // x3,y3 is the point + var returnValue = 0; + 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 = 1000000000; + 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; + } + returnValue = minDistance; + } else { + returnValue = 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; + returnValue = Math.abs(Math.sqrt(dx * dx + dy * dy) - radius); + } - // create main box - dom.box = document.createElement("DIV"); + if (this.labelDimensions.left < x3 && this.labelDimensions.left + this.labelDimensions.width > x3 && this.labelDimensions.top < y3 && this.labelDimensions.top + this.labelDimensions.height > y3) { + return 0; + } else { + return returnValue; + } + }; - // contents box (inside the background box). used for making margins - dom.content = document.createElement("DIV"); - dom.content.className = "content"; - dom.box.appendChild(dom.content); + 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; - // line to axis - dom.line = document.createElement("DIV"); - dom.line.className = "line"; + if (u > 1) { + u = 1; + } else if (u < 0) { + u = 0; + } - // dot on axis - dom.dot = document.createElement("DIV"); - dom.dot.className = "dot"; + var x = x1 + u * px, + y = y1 + u * py, + dx = x - x3, + dy = y - y3; - // attach this item as attribute - dom.box["timeline-item"] = 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 - this.dirty = true; - } + return Math.sqrt(dx * dx + dy * dy); + }; - // 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 item: 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 item: 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 item: parent has no axis container element"); - axis.appendChild(dom.dot); - } - this.displayed = true; + /** + * This allows the zoom level of the network to influence the rendering + * + * @param scale + */ + Edge.prototype.setScale = function (scale) { + this.networkScaleInv = 1 / scale; + }; - // Update DOM when item is marked dirty. An item is marked dirty when: - // - the item is not yet rendered - // - the item's data is changed - // - the item is selected/deselected - if (this.dirty) { - this._updateContents(this.dom.content); - this._updateTitle(this.dom.box); - this._updateDataAttributes(this.dom.box); - this._updateStyle(this.dom.box); - // update class - var className = (this.data.className ? " " + this.data.className : "") + (this.selected ? " selected" : ""); - dom.box.className = "item box" + className; - dom.line.className = "item line" + className; - dom.dot.className = "item dot" + className; + Edge.prototype.select = function () { + this.selected = true; + }; - // recalculate size - 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; + Edge.prototype.unselect = function () { + this.selected = false; + }; - this.dirty = false; + Edge.prototype.positionBezierNode = function () { + if (this.via !== null && this.from !== null && this.to !== null) { + this.via.x = 0.5 * (this.from.x + this.to.x); + this.via.y = 0.5 * (this.from.y + this.to.y); + } else if (this.via !== null) { + this.via.x = 0; + this.via.y = 0; } - - this._repaintDeleteButton(dom.box); }; /** - * Show the item in the DOM (when not already displayed). The items DOM will - * be created when needed. + * This function draws the control nodes for the manipulator. + * In order to enable this, only set the this.controlNodesEnabled to true. + * @param ctx */ - BoxItem.prototype.show = function () { - if (!this.displayed) { - this.redraw(); + 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: 7, borderWidth: 2, borderWidthSelected: 2 }, + physics: { damping: 0 }, + clustering: { maxNodeSizeIncrements: 0, nodeScaling: { width: 0, height: 0, radius: 0 } } + }; + this.controlNodes.from = new Node({ id: nodeIdFrom, + shape: "dot", + color: { background: "#ff0000", border: "#3c3c3c", highlight: { background: "#07f968" } } + }, {}, {}, constants); + this.controlNodes.to = new Node({ id: nodeIdTo, + shape: "dot", + color: { background: "#ff0000", border: "#3c3c3c", highlight: { background: "#07f968" } } + }, {}, {}, constants); + } + + this.controlNodes.positions = {}; + if (this.controlNodes.from.selected == false) { + this.controlNodes.positions.from = this.getControlNodeFromPosition(ctx); + this.controlNodes.from.x = this.controlNodes.positions.from.x; + this.controlNodes.from.y = this.controlNodes.positions.from.y; + } + if (this.controlNodes.to.selected == false) { + this.controlNodes.positions.to = this.getControlNodeToPosition(ctx); + this.controlNodes.to.x = this.controlNodes.positions.to.x; + this.controlNodes.to.y = this.controlNodes.positions.to.y; + } + + this.controlNodes.from.draw(ctx); + this.controlNodes.to.draw(ctx); + } else { + this.controlNodes = { from: null, to: null, positions: {} }; } }; /** - * Hide the item from the DOM (when visible) + * Enable control nodes. + * @private */ - BoxItem.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; + Edge.prototype._enableControlNodes = function () { + this.fromBackup = this.from; + this.toBackup = this.to; + this.controlNodesEnabled = true; + }; - this.displayed = false; + /** + * disable control nodes and remove from dynamicEdges from old node + * @private + */ + Edge.prototype._disableControlNodes = function () { + this.fromId = this.from.id; + this.toId = this.to.id; + if (this.fromId != this.fromBackup.id) { + // from was changed, remove edge from old 'from' node dynamic edges + this.fromBackup.detachEdge(this); + } else if (this.toId != this.toBackup.id) { + // to was changed, remove edge from old 'to' node dynamic edges + this.toBackup.detachEdge(this); } + + this.fromBackup = null; + this.toBackup = null; + this.controlNodesEnabled = false; }; + /** - * Reposition the item horizontally - * @Override + * 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 */ - BoxItem.prototype.repositionX = function () { - var start = this.conversion.toScreen(this.data.start); - var align = this.options.align; - var left; - var box = this.dom.box; - var line = this.dom.line; - var dot = this.dom.dot; + 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)); - // calculate left position of the box - if (align == "right") { - this.left = start - this.width; - } else if (align == "left") { - this.left = start; + 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 { - // default or 'center' - this.left = start - this.width / 2; + return null; } + }; - // reposition box - box.style.left = this.left + "px"; - - // reposition line - line.style.left = start - this.props.line.width / 2 + "px"; - // reposition dot - dot.style.left = start - this.props.dot.width / 2 + "px"; + /** + * this 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(); + } else if (this.controlNodes.to.selected == true) { + this.to = this.connectedNode; + this.connectedNode = null; + this.controlNodes.to.unselect(); + } }; /** - * Reposition the item vertically - * @Override + * this calculates the position of the control nodes on the edges of the parent nodes. + * + * @param ctx + * @returns {x: *, y: *} */ - BoxItem.prototype.repositionY = function () { - var orientation = this.options.orientation; - var box = this.dom.box; - var line = this.dom.line; - var dot = this.dom.dot; + Edge.prototype.getControlNodeFromPosition = function (ctx) { + // draw arrow head + var controlnodeFromPos; + if (this.options.smoothCurves.enabled == true) { + controlnodeFromPos = this._findBorderPosition(true, ctx); + } else { + 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); - if (orientation == "top") { - box.style.top = (this.top || 0) + "px"; + var fromBorderDist = this.from.distanceToBorder(ctx, angle + Math.PI); + var fromBorderPoint = (edgeSegmentLength - fromBorderDist) / edgeSegmentLength; + controlnodeFromPos = {}; + controlnodeFromPos.x = fromBorderPoint * this.from.x + (1 - fromBorderPoint) * this.to.x; + controlnodeFromPos.y = fromBorderPoint * this.from.y + (1 - fromBorderPoint) * this.to.y; + } - line.style.top = "0"; - line.style.height = this.parent.top + this.top + 1 + "px"; - line.style.bottom = ""; + return controlnodeFromPos; + }; + + /** + * 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.getControlNodeToPosition = function (ctx) { + // draw arrow head + var controlnodeFromPos, controlnodeToPos; + if (this.options.smoothCurves.enabled == true) { + controlnodeToPos = this._findBorderPosition(false, ctx); } 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; + 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 toBorderDist = this.to.distanceToBorder(ctx, angle); + var toBorderPoint = (edgeSegmentLength - toBorderDist) / edgeSegmentLength; - box.style.top = (this.parent.height - this.top - this.height || 0) + "px"; - line.style.top = itemSetHeight - lineHeight + "px"; - line.style.bottom = "0"; + controlnodeToPos = {}; + controlnodeToPos.x = (1 - toBorderPoint) * this.from.x + toBorderPoint * this.to.x; + controlnodeToPos.y = (1 - toBorderPoint) * this.from.y + toBorderPoint * this.to.y; } - dot.style.top = -this.props.dot.height / 2 + "px"; + return controlnodeToPos; }; - module.exports = BoxItem; + module.exports = Edge; /***/ }, -/* 34 */ +/* 38 */ /***/ function(module, exports, __webpack_require__) { "use strict"; - var Item = __webpack_require__(31); + var util = __webpack_require__(1); /** - * @constructor PointItem - * @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 + * @class Groups + * This class can store groups and properties specific for groups. */ - function PointItem(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); + function Groups() { + this.clear(); + this.defaultIndex = 0; + this.groupsArray = []; + this.groupIndex = 0; + this.useDefaultGroups = true; } - PointItem.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 - */ - PointItem.prototype.isVisible = function (range) { - // determine visibility - // TODO: account for the real width of the item. Right now we just add 1/4 to the window - var interval = (range.end - range.start) / 4; - return this.data.start > range.start - interval && this.data.start < range.end + interval; - }; /** - * Repaint the item + * default constants for group colors */ - PointItem.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() + Groups.DEFAULT = [{ border: "#2B7CE9", background: "#97C2FC", highlight: { border: "#2B7CE9", background: "#D2E5FF" }, hover: { border: "#2B7CE9", background: "#D2E5FF" } }, // 0: blue + { border: "#FFA500", background: "#FFFF00", highlight: { border: "#FFA500", background: "#FFFFA3" }, hover: { border: "#FFA500", background: "#FFFFA3" } }, // 1: yellow + { border: "#FA0A10", background: "#FB7E81", highlight: { border: "#FA0A10", background: "#FFAFB1" }, hover: { border: "#FA0A10", background: "#FFAFB1" } }, // 2: red + { border: "#41A906", background: "#7BE141", highlight: { border: "#41A906", background: "#A1EC76" }, hover: { border: "#41A906", background: "#A1EC76" } }, // 3: green + { border: "#E129F0", background: "#EB7DF4", highlight: { border: "#E129F0", background: "#F0B3F5" }, hover: { border: "#E129F0", background: "#F0B3F5" } }, // 4: magenta + { border: "#7C29F0", background: "#AD85E4", highlight: { border: "#7C29F0", background: "#D3BDF0" }, hover: { border: "#7C29F0", background: "#D3BDF0" } }, // 5: purple + { border: "#C37F00", background: "#FFA807", highlight: { border: "#C37F00", background: "#FFCA66" }, hover: { border: "#C37F00", background: "#FFCA66" } }, // 6: orange + { border: "#4220FB", background: "#6E6EFD", highlight: { border: "#4220FB", background: "#9B9BFD" }, hover: { border: "#4220FB", background: "#9B9BFD" } }, // 7: darkblue + { border: "#FD5A77", background: "#FFC0CB", highlight: { border: "#FD5A77", background: "#FFD1D9" }, hover: { border: "#FD5A77", background: "#FFD1D9" } }, // 8: pink + { border: "#4AD63A", background: "#C2FABC", highlight: { border: "#4AD63A", background: "#E6FFE3" }, hover: { border: "#4AD63A", background: "#E6FFE3" } }, // 9: mint - // contents box, right from the dot - dom.content = document.createElement("div"); - dom.content.className = "content"; - dom.point.appendChild(dom.content); + { border: "#990000", background: "#EE0000", highlight: { border: "#BB0000", background: "#FF3333" }, hover: { border: "#BB0000", background: "#FF3333" } }, // 10:bright red - // dot at start - dom.dot = document.createElement("div"); - dom.point.appendChild(dom.dot); + { border: "#FF6000", background: "#FF6000", highlight: { border: "#FF6000", background: "#FF6000" }, hover: { border: "#FF6000", background: "#FF6000" } }, // 12: real orange + { border: "#97C2FC", background: "#2B7CE9", highlight: { border: "#D2E5FF", background: "#2B7CE9" }, hover: { border: "#D2E5FF", background: "#2B7CE9" } }, // 13: blue + { border: "#399605", background: "#255C03", highlight: { border: "#399605", background: "#255C03" }, hover: { border: "#399605", background: "#255C03" } }, // 14: green + { border: "#B70054", background: "#FF007E", highlight: { border: "#B70054", background: "#FF007E" }, hover: { border: "#B70054", background: "#FF007E" } }, // 15: magenta + { border: "#AD85E4", background: "#7C29F0", highlight: { border: "#D3BDF0", background: "#7C29F0" }, hover: { border: "#D3BDF0", background: "#7C29F0" } }, // 16: purple + { border: "#4557FA", background: "#000EA1", highlight: { border: "#6E6EFD", background: "#000EA1" }, hover: { border: "#6E6EFD", background: "#000EA1" } }, // 17: darkblue + { border: "#FFC0CB", background: "#FD5A77", highlight: { border: "#FFD1D9", background: "#FD5A77" }, hover: { border: "#FFD1D9", background: "#FD5A77" } }, // 18: pink + { border: "#C2FABC", background: "#74D66A", highlight: { border: "#E6FFE3", background: "#74D66A" }, hover: { border: "#E6FFE3", background: "#74D66A" } }, // 19: mint - // attach this item as attribute - dom.point["timeline-item"] = this; + { border: "#EE0000", background: "#990000", highlight: { border: "#FF3333", background: "#BB0000" }, hover: { border: "#FF3333", background: "#BB0000" } }]; - this.dirty = true; - } - // 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 item: parent has no foreground container element"); + /** + * 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++; + } } - foreground.appendChild(dom.point); - } - this.displayed = true; - - // Update DOM when item is marked dirty. An item is marked dirty when: - // - the item is not yet rendered - // - the item's data is changed - // - the item is selected/deselected - if (this.dirty) { - this._updateContents(this.dom.content); - this._updateTitle(this.dom.point); - this._updateDataAttributes(this.dom.point); - this._updateStyle(this.dom.point); - - // update class - var className = (this.data.className ? " " + this.data.className : "") + (this.selected ? " selected" : ""); - dom.point.className = "item point" + className; - dom.dot.className = "item dot" + className; - - // recalculate size - 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 + return i; + }; + }; - 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; + /** + * 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) { + if (this.useDefaultGroups === false && this.groupsArray.length > 0) { + // create new group + var index = this.groupIndex % this.groupsArray.length; + this.groupIndex++; + group = {}; + group.color = this.groups[this.groupsArray[index]]; + this.groups[groupname] = group; + } else { + // create new group + var index = this.defaultIndex % Groups.DEFAULT.length; + this.defaultIndex++; + group = {}; + group.color = Groups.DEFAULT[index]; + this.groups[groupname] = group; + } } - this._repaintDeleteButton(dom.point); + return group; }; /** - * Show the item in the DOM (when not already visible). The items DOM will - * be created when needed. + * Add a custom group style + * @param {String} groupName + * @param {Object} style An object containing borderColor, + * backgroundColor, etc. + * @return {Object} group The created group object */ - PointItem.prototype.show = function () { - if (!this.displayed) { - this.redraw(); - } + Groups.prototype.add = function (groupName, style) { + this.groups[groupName] = style; + this.groupsArray.push(groupName); + return style; }; - /** - * Hide the item from the DOM (when visible) - */ - PointItem.prototype.hide = function () { - if (this.displayed) { - if (this.dom.point.parentNode) { - this.dom.point.parentNode.removeChild(this.dom.point); - } + module.exports = Groups; + // 20:bright red - this.top = null; - this.left = null; +/***/ }, +/* 39 */ +/***/ function(module, exports, __webpack_require__) { - this.displayed = false; - } - }; + "use strict"; /** - * Reposition the item horizontally - * @Override + * @class Images + * This class loads images and keeps them stored. */ - PointItem.prototype.repositionX = function () { - var start = this.conversion.toScreen(this.data.start); - - this.left = start - this.props.dot.width; + function Images() { + this.images = {}; + this.imageBroken = {}; + this.callback = undefined; + } - // reposition point - this.dom.point.style.left = this.left + "px"; + /** + * 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; }; /** - * Reposition the item vertically - * @Override + * + * @param {string} url Url of the image + * @param {string} url Url of an image to use if the url image is not found + * @return {Image} img The image object */ - PointItem.prototype.repositionY = function () { - var orientation = this.options.orientation, - point = this.dom.point; + Images.prototype.load = function (url, brokenUrl) { + var img = this.images[url]; // make a pointer + if (img === undefined) { + // create the image + var me = this; + img = new Image(); + img.onload = function () { + // IE11 fix -- thanks dponch! + if (this.width == 0) { + document.body.appendChild(this); + this.width = this.offsetWidth; + this.height = this.offsetHeight; + document.body.removeChild(this); + } - if (orientation == "top") { - point.style.top = this.top + "px"; - } else { - point.style.top = this.parent.height - this.top - this.height + "px"; + if (me.callback) { + me.images[url] = img; + me.callback(this); + } + }; + + img.onerror = function () { + if (brokenUrl === undefined) { + console.error("Could not load image:", url); + delete this.src; + if (me.callback) { + me.callback(this); + } + } else { + if (me.imageBroken[url] === true) { + if (this.src == brokenUrl) { + console.error("Could not load brokenImage:", brokenUrl); + delete this.src; + if (me.callback) { + me.callback(this); + } + } else { + console.error("Could not load image:", url); + this.src = brokenUrl; + } + } else { + console.error("Could not load image:", url); + this.src = brokenUrl; + me.imageBroken[url] = true; + } + } + }; + + img.src = url; } + + return img; }; - module.exports = PointItem; + module.exports = Images; /***/ }, -/* 35 */ +/* 40 */ /***/ function(module, exports, __webpack_require__) { "use strict"; - var Hammer = __webpack_require__(19); - var Item = __webpack_require__(31); - var BackgroundGroup = __webpack_require__(32); - var RangeItem = __webpack_require__(30); + var util = __webpack_require__(1); /** - * @constructor BackgroundItem - * @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 + * @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", "icon" + * {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 + * */ - // TODO: implement support for the BackgroundItem just having a start, then being displayed as a sort of an annotation - function BackgroundItem(data, conversion, options) { - this.props = { - content: { - width: 0 - } - }; - this.overflow = false; // if contents can overflow (css styling), this flag is set to true + function Node(properties, imagelist, grouplist, networkConstants) { + var constants = util.selectiveBridgeObject(["nodes"], networkConstants); + this.options = constants.nodes; - // validate data - if (data) { - if (data.start == undefined) { - throw new Error("Property \"start\" missing in item " + data.id); - } - if (data.end == undefined) { - throw new Error("Property \"end\" missing in item " + data.id); - } - } + this.selected = false; + this.hover = false; - Item.call(this, data, conversion, options); + this.edges = []; // all edges connected to this node - this.emptyContent = false; - } + // set defaults for the properties + this.id = undefined; + this.allowedToMoveX = false; + this.allowedToMoveY = false; + 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; + this.hierarchyEnumerated = false; + this.labelDimensions = { top: 0, left: 0, width: 0, height: 0, yLine: 0 }; // could be cached + this.boundingBox = { top: 0, left: 0, right: 0, bottom: 0 }; - BackgroundItem.prototype = new Item(null, null, null); + this.imagelist = imagelist; + this.grouplist = grouplist; + + // physics properties + this.x = null; + this.y = null; + this.predefinedPosition = false; // used to check if initial zoomExtent should just take the range or approximate + + // used for reverting to previous position on stabilization + this.previousState = { vx: 0, vy: 0, x: 0, y: 0 }; + + this.fixedData = { x: null, y: null }; + + this.setProperties(properties, constants); + + // 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; + } - BackgroundItem.prototype.baseClassName = "item background"; - BackgroundItem.prototype.stack = false; /** - * 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 + * Attach a edge to the node + * @param {Edge} edge */ - BackgroundItem.prototype.isVisible = function (range) { - // determine visibility - return this.data.start < range.end && this.data.end > range.start; + Node.prototype.attachEdge = function (edge) { + if (this.edges.indexOf(edge) == -1) { + this.edges.push(edge); + } }; /** - * Repaint the item + * Detach a edge from the node + * @param {Edge} edge */ - BackgroundItem.prototype.redraw = function () { - var dom = this.dom; - if (!dom) { - // create DOM - this.dom = {}; - dom = this.dom; + Node.prototype.detachEdge = function (edge) { + var index = this.edges.indexOf(edge); + if (index != -1) { + this.edges.splice(index, 1); + } + }; - // 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); + /** + * 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; + } + this.properties = properties; - // Note: we do NOT attach this item as attribute to the DOM, - // such that background items cannot be selected - //dom.box['timeline-item'] = this; + var fields = ["borderWidth", "borderWidthSelected", "shape", "image", "brokenImage", "radius", "fontColor", "fontSize", "fontFace", "fontFill", "fontStrokeWidth", "fontStrokeColor", "group", "mass", "fontDrawThreshold", "scaleFontWithValue", "fontSizeMaxVisible", "customScalingFunction", "iconFontFace", "icon", "iconColor", "iconSize", "value"]; + util.selectiveDeepExtend(fields, this.options, properties); - this.dirty = true; + // basic properties + if (properties.id !== undefined) { + this.id = properties.id; } - - // append DOM to parent DOM - if (!this.parent) { - throw new Error("Cannot redraw item: no parent attached"); + if (properties.label !== undefined) { + this.label = properties.label;this.originalLabel = properties.label; } - if (!dom.box.parentNode) { - var background = this.parent.dom.background; - if (!background) { - throw new Error("Cannot redraw item: parent has no background container element"); - } - background.appendChild(dom.box); + if (properties.title !== undefined) { + this.title = properties.title; + } + if (properties.x !== undefined) { + this.x = properties.x;this.predefinedPosition = true; + } + if (properties.y !== undefined) { + this.y = properties.y;this.predefinedPosition = true; + } + if (properties.value !== undefined) { + this.value = properties.value; + } + if (properties.level !== undefined) { + this.level = properties.level;this.preassignedLevel = true; } - this.displayed = true; - - // Update DOM when item is marked dirty. An item is marked dirty when: - // - the item is not yet rendered - // - the item's data is changed - // - the item is selected/deselected - if (this.dirty) { - this._updateContents(this.dom.content); - this._updateTitle(this.dom.content); - this._updateDataAttributes(this.dom.content); - this._updateStyle(this.dom.box); - - // update class - var className = (this.data.className ? " " + this.data.className : "") + (this.selected ? " selected" : ""); - dom.box.className = this.baseClassName + className; - // determine from css whether this box has overflow - this.overflow = window.getComputedStyle(dom.content).overflow !== "hidden"; + // 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; + } - // recalculate size - this.props.content.width = this.dom.content.offsetWidth; - this.height = 0; // set height zero, so this item will be ignored when stacking items + if (this.id === undefined) { + throw "Node must have an id"; + } - this.dirty = false; + // copy group properties + if (typeof properties.group === "number" || typeof properties.group === "string" && properties.group != "") { + var groupObj = this.grouplist.get(properties.group); + util.deepExtend(this.options, groupObj); + // the color object needs to be completely defined. Since groups can partially overwrite the colors, we parse it again, just in case. + this.options.color = util.parseColor(this.options.color); + } + // individual shape properties + if (properties.radius !== undefined) { + this.baseRadiusValue = this.options.radius; + } + if (properties.color !== undefined) { + this.options.color = util.parseColor(properties.color); } - }; - /** - * Show the item in the DOM (when not already visible). The items DOM will - * be created when needed. - */ - BackgroundItem.prototype.show = RangeItem.prototype.show; + if (this.options.image !== undefined && this.options.image != "") { + if (this.imagelist) { + this.imageObj = this.imagelist.load(this.options.image, this.options.brokenImage); + } else { + throw "No imagelist provided"; + } + } - /** - * Hide the item from the DOM (when visible) - * @return {Boolean} changed - */ - BackgroundItem.prototype.hide = RangeItem.prototype.hide; + if (properties.allowedToMoveX !== undefined) { + this.xFixed = !properties.allowedToMoveX; + this.allowedToMoveX = properties.allowedToMoveX; + } else if (properties.x !== undefined && this.allowedToMoveX == false) { + this.xFixed = true; + } - /** - * Reposition the item horizontally - * @Override - */ - BackgroundItem.prototype.repositionX = RangeItem.prototype.repositionX; - /** - * Reposition the item vertically - * @Override - */ - BackgroundItem.prototype.repositionY = function (margin) { - var onTop = this.options.orientation === "top"; - this.dom.content.style.top = onTop ? "" : "0"; - this.dom.content.style.bottom = onTop ? "0" : ""; - var height; + if (properties.allowedToMoveY !== undefined) { + this.yFixed = !properties.allowedToMoveY; + this.allowedToMoveY = properties.allowedToMoveY; + } else if (properties.y !== undefined && this.allowedToMoveY == false) { + this.yFixed = true; + } - // special positioning for subgroups - if (this.data.subgroup !== undefined) { - var itemSubgroup = this.data.subgroup; - var subgroups = this.parent.subgroups; - var subgroupIndex = subgroups[itemSubgroup].index; - // if the orientation is top, we need to take the difference in height into account. - if (onTop == true) { - // the first subgroup will have to account for the distance from the top to the first item. - height = this.parent.subgroups[itemSubgroup].height + margin.item.vertical; - height += subgroupIndex == 0 ? margin.axis - 0.5 * margin.item.vertical : 0; - var newTop = this.parent.top; - for (var subgroup in subgroups) { - if (subgroups.hasOwnProperty(subgroup)) { - if (subgroups[subgroup].visible == true && subgroups[subgroup].index < subgroupIndex) { - newTop += subgroups[subgroup].height + margin.item.vertical; - } - } - } + this.radiusFixed = this.radiusFixed || properties.radius !== undefined; - // the others will have to be offset downwards with this same distance. - newTop += subgroupIndex != 0 ? margin.axis - 0.5 * margin.item.vertical : 0; - this.dom.box.style.top = newTop + "px"; - this.dom.box.style.bottom = ""; - } - // and when the orientation is bottom: - else { - var newTop = this.parent.top; - for (var subgroup in subgroups) { - if (subgroups.hasOwnProperty(subgroup)) { - if (subgroups[subgroup].visible == true && subgroups[subgroup].index > subgroupIndex) { - newTop += subgroups[subgroup].height + margin.item.vertical; - } - } - } - height = this.parent.subgroups[itemSubgroup].height + margin.item.vertical; - this.dom.box.style.top = newTop + "px"; - this.dom.box.style.bottom = ""; - } + if (this.options.shape === "image" || this.options.shape === "circularImage") { + this.options.radiusMin = constants.nodes.widthMin; + this.options.radiusMax = constants.nodes.widthMax; } - // and in the case of no subgroups: - else { - // we want backgrounds with groups to only show in groups. - if (this.parent instanceof BackgroundGroup) { - // if the item is not in a group: - height = Math.max(this.parent.height, this.parent.itemSet.body.domProps.center.height, this.parent.itemSet.body.domProps.centerContainer.height); - this.dom.box.style.top = onTop ? "0" : ""; - this.dom.box.style.bottom = onTop ? "" : "0"; - } else { - height = this.parent.height; - // same alignment for items when orientation is top or bottom - this.dom.box.style.top = this.parent.top + "px"; - this.dom.box.style.bottom = ""; - } + + // 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 "circularImage": + this.draw = this._drawCircularImage;this.resize = this._resizeCircularImage;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; + case "icon": + this.draw = this._drawIcon;this.resize = this._resizeIcon;break; + default: + this.draw = this._drawEllipse;this.resize = this._resizeEllipse;break; } - this.dom.box.style.height = height + "px"; + // reset the size of the node, this can be changed + this._reset(); }; - module.exports = BackgroundItem; - -/***/ }, -/* 36 */ -/***/ function(module, exports, __webpack_require__) { + /** + * select this node + */ + Node.prototype.select = function () { + this.selected = true; + this._reset(); + }; - "use strict"; + /** + * unselect this node + */ + Node.prototype.unselect = function () { + this.selected = false; + this._reset(); + }; - var keycharm = __webpack_require__(37); - var Emitter = __webpack_require__(11); - var Hammer = __webpack_require__(19); - 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 + * Reset the calculated size of the node, forces it to recalculate its size */ - function Activator(container) { - this.active = false; + Node.prototype.clearSizeCache = function () { + this._reset(); + }; - this.dom = { - container: container - }; + /** + * Reset the calculated size of the node, forces it to recalculate its size + * @private + */ + Node.prototype._reset = function () { + this.width = undefined; + this.height = undefined; + }; - this.dom.overlay = document.createElement("div"); - this.dom.overlay.className = "overlay"; + /** + * 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.dom.container.appendChild(this.dom.overlay); + /** + * Calculate the distance to the border of the Node + * @param {CanvasRenderingContext2D} ctx + * @param {Number} angle Angle in radians + * @returns {number} distance Distance to the border in pixels + */ + Node.prototype.distanceToBorder = function (ctx, angle) { + var borderWidth = 1; - this.hammer = Hammer(this.dom.overlay, { prevent_default: false }); - this.hammer.on("tap", this._onTapOverlay.bind(this)); + if (!this.width) { + this.resize(ctx); + } - // 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(); - }); - }); + switch (this.options.shape) { + case "circle": + case "dot": + return this.options.radius + borderWidth; - // 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(); - } - }); + case "ellipse": + var a = this.width / 2; + var b = this.height / 2; + var w = Math.sin(angle) * a; + var h = Math.cos(angle) * b; + return a * b / Math.sqrt(w * w + h * h); - if (this.keycharm !== undefined) { - this.keycharm.destroy(); - } - this.keycharm = keycharm(); + // TODO: implement distanceToBorder for database + // TODO: implement distanceToBorder for triangle + // TODO: implement distanceToBorder for triangleDown - // keycharm listener only bounded when active) - this.escListener = this.deactivate.bind(this); - } + 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; + } - // turn into an event emitter - Emitter(Activator.prototype); + } + // TODO: implement calculation of distance to border for all shapes + }; - // The currently active activator - Activator.current = null; /** - * Destroy the activator. Cleans up all created DOM and event listeners + * Check if this node has a fixed x and y position + * @return {boolean} true if fixed, false if not */ - Activator.prototype.destroy = function () { - this.deactivate(); + Node.prototype.isFixed = function () { + return this.xFixed && this.yFixed; + }; - // remove dom - this.dom.overlay.parentNode.removeChild(this.dom.overlay); + /** + * check if this node is selecte + * @return {boolean} selected True if node is selected, else false + */ + Node.prototype.isSelected = function () { + return this.selected; + }; - // cleanup hammer instances - this.hammer = null; - this.windowHammer = null; - // FIXME: cleaning up hammer instances doesn't work (Timeline not removed from memory) + /** + * Retrieve the value of the node. Can be undefined + * @return {Number} value + */ + Node.prototype.getValue = function () { + return this.value; }; /** - * Activate the element - * Overlay is hidden, element is decorated with a blue shadow border + * Calculate the distance from the nodes location to the given location (x,y) + * @param {Number} x + * @param {Number} y + * @return {Number} value */ - Activator.prototype.activate = function () { - // we allow only one active activator at a time - if (Activator.current) { - Activator.current.deactivate(); - } - Activator.current = this; + Node.prototype.getDistance = function (x, y) { + var dx = this.x - x, + dy = this.y - y; + return Math.sqrt(dx * dx + dy * dy); + }; - this.active = true; - this.dom.overlay.style.display = "none"; - util.addClassName(this.dom.container, "vis-active"); - this.emit("change"); - this.emit("activate"); + /** + * Adjust the value range of the node. The node will adjust it's radius + * based on its value. + * @param {Number} min + * @param {Number} max + */ + Node.prototype.setValueRange = function (min, max, total) { + if (!this.radiusFixed && this.value !== undefined) { + var scale = this.options.customScalingFunction(min, max, total, this.value); + var radiusDiff = this.options.radiusMax - this.options.radiusMin; + if (this.options.scaleFontWithValue == true) { + var fontDiff = this.options.fontSizeMax - this.options.fontSizeMin; + this.options.fontSize = this.options.fontSizeMin + scale * fontDiff; + } + this.options.radius = this.options.radiusMin + scale * radiusDiff; + } - // ugly hack: bind ESC after emitting the events, as the Network rebinds all - // keyboard events on a 'change' event - this.keycharm.bind("esc", this.escListener); + this.baseRadiusValue = this.options.radius; }; /** - * Deactivate the element - * Overlay is displayed on top of the element + * Draw this node in the given canvas + * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); + * @param {CanvasRenderingContext2D} ctx */ - Activator.prototype.deactivate = function () { - this.active = false; - this.dom.overlay.style.display = ""; - util.removeClassName(this.dom.container, "vis-active"); - this.keycharm.unbind("esc", this.escListener); - - this.emit("change"); - this.emit("deactivate"); + Node.prototype.draw = function (ctx) { + throw "Draw method not initialized for node"; }; /** - * Handle a tap event: activate the container - * @param event - * @private + * 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 */ - Activator.prototype._onTapOverlay = function (event) { - // activate the container - this.activate(); - event.stopPropagation(); + Node.prototype.resize = function (ctx) { + throw "Resize method not initialized for node"; }; /** - * 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 + * 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 _hasParent(element, parent) { - while (element) { - if (element === parent) { - return true; + 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; + }; + + Node.prototype._resizeImage = function (ctx) { + // TODO: pre calculate the image size + + 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; } - element = element.parentNode; + this.width = width; + this.height = height; } - return false; - } + }; - module.exports = Activator; + Node.prototype._drawImageAtPosition = function (ctx) { + if (this.imageObj.width != 0) { + // draw the image + ctx.globalAlpha = 1; + ctx.drawImage(this.imageObj, this.left, this.top, this.width, this.height); + } + }; -/***/ }, -/* 37 */ -/***/ function(module, exports, __webpack_require__) { + Node.prototype._drawImageLabel = function (ctx) { + var yLabel; + var offset = 0; - var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;"use strict"; - /** - * Created by Alex on 11/6/2014. - */ + if (this.height) { + offset = this.height / 2; + var labelDimensions = this.getTextSize(ctx); - // https://github.com/umdjs/umd/blob/master/returnExports.js#L40-L60 - // if the module has no dependencies, the above pattern can be simplified to - (function (root, factory) { - if (true) { - // AMD. Register as an anonymous module. - !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory), __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ? (__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); - } else if (typeof exports === 'object') { - // Node. Does not work with strict CommonJS, but - // only CommonJS-like environments that support module.exports, - // like Node. - module.exports = factory(); - } else { - // Browser globals (root is window) - root.keycharm = factory(); + if (labelDimensions.lineCount >= 1) { + offset += labelDimensions.height / 2; + offset += 3; + } } - }(this, function () { - - function keycharm(options) { - var preventDefault = options && options.preventDefault || false; - var container = options && options.container || window; - var _exportFunctions = {}; - var _bound = {keydown:{}, keyup:{}}; - var _keys = {}; - var i; + yLabel = this.y + offset; - // a - z - for (i = 97; i <= 122; i++) {_keys[String.fromCharCode(i)] = {code:65 + (i - 97), shift: false};} - // A - Z - for (i = 65; i <= 90; i++) {_keys[String.fromCharCode(i)] = {code:i, shift: true};} - // 0 - 9 - for (i = 0; i <= 9; i++) {_keys['' + i] = {code:48 + i, shift: false};} - // F1 - F12 - for (i = 1; i <= 12; i++) {_keys['F' + i] = {code:111 + i, shift: false};} - // num0 - num9 - for (i = 0; i <= 9; i++) {_keys['num' + i] = {code:96 + i, shift: false};} + this._label(ctx, this.label, this.x, yLabel, undefined); + }; - // numpad misc - _keys['num*'] = {code:106, shift: false}; - _keys['num+'] = {code:107, shift: false}; - _keys['num-'] = {code:109, shift: false}; - _keys['num/'] = {code:111, shift: false}; - _keys['num.'] = {code:110, shift: false}; - // arrows - _keys['left'] = {code:37, shift: false}; - _keys['up'] = {code:38, shift: false}; - _keys['right'] = {code:39, shift: false}; - _keys['down'] = {code:40, shift: false}; - // extra keys - _keys['space'] = {code:32, shift: false}; - _keys['enter'] = {code:13, shift: false}; - _keys['shift'] = {code:16, shift: undefined}; - _keys['esc'] = {code:27, shift: false}; - _keys['backspace'] = {code:8, shift: false}; - _keys['tab'] = {code:9, shift: false}; - _keys['ctrl'] = {code:17, shift: false}; - _keys['alt'] = {code:18, shift: false}; - _keys['delete'] = {code:46, shift: false}; - _keys['pageup'] = {code:33, shift: false}; - _keys['pagedown'] = {code:34, shift: false}; - // symbols - _keys['='] = {code:187, shift: false}; - _keys['-'] = {code:189, shift: false}; - _keys[']'] = {code:221, shift: false}; - _keys['['] = {code:219, shift: false}; + Node.prototype._drawImage = function (ctx) { + this._resizeImage(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; + this._drawImageAtPosition(ctx); + this.boundingBox.top = this.top; + this.boundingBox.left = this.left; + this.boundingBox.right = this.left + this.width; + this.boundingBox.bottom = this.top + this.height; - var down = function(event) {handleEvent(event,'keydown');}; - var up = function(event) {handleEvent(event,'keyup');}; + this._drawImageLabel(ctx); + this.boundingBox.left = Math.min(this.boundingBox.left, this.labelDimensions.left); + this.boundingBox.right = Math.max(this.boundingBox.right, this.labelDimensions.left + this.labelDimensions.width); + this.boundingBox.bottom = Math.max(this.boundingBox.bottom, this.boundingBox.bottom + this.labelDimensions.height); + }; - // handle the actualy bound key with the event - var handleEvent = function(event,type) { - if (_bound[type][event.keyCode] !== undefined) { - var bound = _bound[type][event.keyCode]; - for (var i = 0; i < bound.length; i++) { - if (bound[i].shift === undefined) { - bound[i].fn(event); - } - else if (bound[i].shift == true && event.shiftKey == true) { - bound[i].fn(event); - } - else if (bound[i].shift == false && event.shiftKey == false) { - bound[i].fn(event); - } - } + Node.prototype._resizeCircularImage = function (ctx) { + if (!this.imageObj.src || !this.imageObj.width || !this.imageObj.height) { + if (!this.width) { + var diameter = this.options.radius * 2; + this.width = diameter; + this.height = diameter; + this._swapToImageResizeWhenImageLoaded = true; + } + } else { + if (this._swapToImageResizeWhenImageLoaded) { + this.width = 0; + this.height = 0; + delete this._swapToImageResizeWhenImageLoaded; + } + this._resizeImage(ctx); + } + }; - if (preventDefault == true) { - event.preventDefault(); - } - } - }; + Node.prototype._drawCircularImage = function (ctx) { + this._resizeCircularImage(ctx); - // bind a key to a callback - _exportFunctions.bind = function(key, callback, type) { - if (type === undefined) { - type = 'keydown'; - } - if (_keys[key] === undefined) { - throw new Error("unsupported key: " + key); - } - if (_bound[type][_keys[key].code] === undefined) { - _bound[type][_keys[key].code] = []; - } - _bound[type][_keys[key].code].push({fn:callback, shift:_keys[key].shift}); - }; + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; + var centerX = this.left + this.width / 2; + var centerY = this.top + this.height / 2; + var radius = Math.abs(this.height / 2); - // bind all keys to a call back (demo purposes) - _exportFunctions.bindAll = function(callback, type) { - if (type === undefined) { - type = 'keydown'; - } - for (var key in _keys) { - if (_keys.hasOwnProperty(key)) { - _exportFunctions.bind(key,callback,type); - } - } - }; + this._drawRawCircle(ctx, centerX, centerY, radius); - // get the key label from an event - _exportFunctions.getKey = function(event) { - for (var key in _keys) { - if (_keys.hasOwnProperty(key)) { - if (event.shiftKey == true && _keys[key].shift == true && event.keyCode == _keys[key].code) { - return key; - } - else if (event.shiftKey == false && _keys[key].shift == false && event.keyCode == _keys[key].code) { - return key; - } - else if (event.keyCode == _keys[key].code && key == 'shift') { - return key; - } - } - } - return "unknown key, currently not supported"; - }; + ctx.save(); + ctx.circle(this.x, this.y, radius); + ctx.stroke(); + ctx.clip(); - // unbind either a specific callback from a key or all of them (by leaving callback undefined) - _exportFunctions.unbind = function(key, callback, type) { - if (type === undefined) { - type = 'keydown'; - } - if (_keys[key] === undefined) { - throw new Error("unsupported key: " + key); - } - if (callback !== undefined) { - var newBindings = []; - var bound = _bound[type][_keys[key].code]; - if (bound !== undefined) { - for (var i = 0; i < bound.length; i++) { - if (!(bound[i].fn == callback && bound[i].shift == _keys[key].shift)) { - newBindings.push(_bound[type][_keys[key].code][i]); - } - } - } - _bound[type][_keys[key].code] = newBindings; - } - else { - _bound[type][_keys[key].code] = []; - } - }; + this._drawImageAtPosition(ctx); - // reset all bound variables. - _exportFunctions.reset = function() { - _bound = {keydown:{}, keyup:{}}; - }; + ctx.restore(); - // unbind all listeners and reset all variables. - _exportFunctions.destroy = function() { - _bound = {keydown:{}, keyup:{}}; - container.removeEventListener('keydown', down, true); - container.removeEventListener('keyup', up, true); - }; + this.boundingBox.top = this.y - this.options.radius; + this.boundingBox.left = this.x - this.options.radius; + this.boundingBox.right = this.x + this.options.radius; + this.boundingBox.bottom = this.y + this.options.radius; - // create listeners. - container.addEventListener('keydown',down,true); - container.addEventListener('keyup',up,true); + this._drawImageLabel(ctx); - // return the public functions. - return _exportFunctions; - } + this.boundingBox.left = Math.min(this.boundingBox.left, this.labelDimensions.left); + this.boundingBox.right = Math.max(this.boundingBox.right, this.labelDimensions.left + this.labelDimensions.width); + this.boundingBox.bottom = Math.max(this.boundingBox.bottom, this.boundingBox.bottom + this.labelDimensions.height); + }; - return keycharm; - })); + 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; + } + }; + Node.prototype._drawBox = function (ctx) { + this._resizeBox(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; -/***/ }, -/* 38 */ -/***/ function(module, exports, __webpack_require__) { + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + ctx.lineWidth = this.selected ? selectionLineWidth : borderWidth; + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width, ctx.lineWidth); - "use strict"; + ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; - var Hammer = __webpack_require__(19); - var util = __webpack_require__(1); - var Component = __webpack_require__(23); - var moment = __webpack_require__(2); - var locales = __webpack_require__(39); + ctx.roundRect(this.left, this.top, this.width, this.height, this.options.radius); + ctx.fill(); + ctx.stroke(); - /** - * A custom time bar - * @param {{range: Range, dom: Object}} body - * @param {Object} [options] Available parameters: - * {Boolean} [showCustomTime] - * @constructor CustomTime - * @extends Component - */ + this.boundingBox.top = this.top; + this.boundingBox.left = this.left; + this.boundingBox.right = this.left + this.width; + this.boundingBox.bottom = this.top + this.height; - function CustomTime(body, options) { - this.body = body; + this._label(ctx, this.label, this.x, this.y); + }; - // default options - this.defaultOptions = { - showCustomTime: false, - locales: locales, - locale: "en", - id: 0 - }; - this.options = util.extend({}, this.defaultOptions); - if (options && options.time) { - this.customTime = options.time; - } else { - this.customTime = new Date(); + 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; } + }; - this.eventParams = {}; // stores state parameters while dragging the bar + Node.prototype._drawDatabase = function (ctx) { + this._resizeDatabase(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - // create the DOM - this._create(); + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - this.setOptions(options); - } + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + ctx.lineWidth = this.selected ? selectionLineWidth : borderWidth; + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width, ctx.lineWidth); - CustomTime.prototype = new Component(); + 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 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", "id"], this.options, options); + this.boundingBox.top = this.top; + this.boundingBox.left = this.left; + this.boundingBox.right = this.left + this.width; + this.boundingBox.bottom = this.top + this.height; - // Triggered by addCustomTimeBar, redraw to add new bar - if (this.options.id) { - this.redraw(); - } - } + this._label(ctx, this.label, this.x, this.y); }; - /** - * Create the DOM for the custom time - * @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; - 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); + 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; - // 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)); + this.width = diameter; + this.height = diameter; + } }; - /** - * Destroy the CustomTime bar - */ - CustomTime.prototype.destroy = function () { - this.options.showCustomTime = false; - this.redraw(); // will remove the bar from the DOM + Node.prototype._drawRawCircle = function (ctx, x, y, radius) { + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - this.hammer.enable(false); - this.hammer = null; + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - this.body = null; + ctx.lineWidth = this.selected ? selectionLineWidth : borderWidth; + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width, ctx.lineWidth); + + ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; + ctx.circle(this.x, this.y, radius); + ctx.fill(); + ctx.stroke(); }; - /** - * Repaint the component - * @return {boolean} Returns true if the component is resized - */ - CustomTime.prototype.redraw = function () { - if (this.options.showCustomTime) { - var parent = this.body.dom.backgroundVertical; - if (this.bar.parentNode != parent) { - // attach to the dom - if (this.bar.parentNode) { - this.bar.parentNode.removeChild(this.bar); - } - parent.appendChild(this.bar); - } + Node.prototype._drawCircle = function (ctx) { + this._resizeCircle(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - var x = this.body.util.toScreen(this.customTime); + this._drawRawCircle(ctx, this.x, this.y, this.options.radius); - 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.boundingBox.top = this.y - this.options.radius; + this.boundingBox.left = this.x - this.options.radius; + this.boundingBox.right = this.x + this.options.radius; + this.boundingBox.bottom = this.y + this.options.radius; - 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._label(ctx, this.label, this.x, this.y); + }; + + 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; } - - return false; }; - /** - * Set custom time. - * @param {Date | number | string} time - */ - CustomTime.prototype.setCustomTime = function (time) { - this.customTime = util.convert(time, "Date"); - this.redraw(); - }; + Node.prototype._drawEllipse = function (ctx) { + this._resizeEllipse(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - /** - * Retrieve the current custom time. - * @return {Date} customTime - */ - CustomTime.prototype.getCustomTime = function () { - return new Date(this.customTime.valueOf()); - }; + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - /** - * Start moving horizontally - * @param {Event} event - * @private - */ - CustomTime.prototype._onDragStart = function (event) { - this.eventParams.dragging = true; - this.eventParams.customTime = this.customTime; + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - event.stopPropagation(); - event.preventDefault(); - }; + ctx.lineWidth = this.selected ? selectionLineWidth : borderWidth; + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width, ctx.lineWidth); - /** - * Perform moving operating. - * @param {Event} event - * @private - */ - CustomTime.prototype._onDrag = function (event) { - if (!this.eventParams.dragging) return; + ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; - var deltaX = event.gesture.deltaX, - x = this.body.util.toScreen(this.eventParams.customTime) + deltaX, - time = this.body.util.toTime(x); + ctx.ellipse(this.left, this.top, this.width, this.height); + ctx.fill(); + ctx.stroke(); - this.setCustomTime(time); + this.boundingBox.top = this.top; + this.boundingBox.left = this.left; + this.boundingBox.right = this.left + this.width; + this.boundingBox.bottom = this.top + this.height; - // fire a timechange event - this.body.emitter.emit("timechange", { - id: this.options.id, - time: new Date(this.customTime.valueOf()) - }); + this._label(ctx, this.label, this.x, this.y); + }; - event.stopPropagation(); - event.preventDefault(); + Node.prototype._drawDot = function (ctx) { + this._drawShape(ctx, "circle"); }; - /** - * Stop moving operating. - * @param {event} event - * @private - */ - CustomTime.prototype._onDragEnd = function (event) { - if (!this.eventParams.dragging) return; + Node.prototype._drawTriangle = function (ctx) { + this._drawShape(ctx, "triangle"); + }; - // fire a timechanged event - this.body.emitter.emit("timechanged", { - id: this.options.id, - time: new Date(this.customTime.valueOf()) - }); + Node.prototype._drawTriangleDown = function (ctx) { + this._drawShape(ctx, "triangleDown"); + }; - event.stopPropagation(); - event.preventDefault(); + Node.prototype._drawSquare = function (ctx) { + this._drawShape(ctx, "square"); }; - module.exports = CustomTime; + Node.prototype._drawStar = function (ctx) { + this._drawShape(ctx, "star"); + }; -/***/ }, -/* 39 */ -/***/ function(module, exports, __webpack_require__) { + 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; + } + }; - "use strict"; + Node.prototype._drawShape = function (ctx, shape) { + this._resizeShape(ctx); - // English - exports.en = { - current: "current", - time: "time" + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; + + 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; + } + + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + ctx.lineWidth = this.selected ? selectionLineWidth : borderWidth; + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width, ctx.lineWidth); + + ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; + ctx[shape](this.x, this.y, this.options.radius); + ctx.fill(); + ctx.stroke(); + + this.boundingBox.top = this.y - this.options.radius; + this.boundingBox.left = this.x - this.options.radius; + this.boundingBox.right = this.x + this.options.radius; + this.boundingBox.bottom = this.y + this.options.radius; + + if (this.label) { + this._label(ctx, this.label, this.x, this.y + this.height / 2, undefined, "hanging", true); + this.boundingBox.left = Math.min(this.boundingBox.left, this.labelDimensions.left); + this.boundingBox.right = Math.max(this.boundingBox.right, this.labelDimensions.left + this.labelDimensions.width); + this.boundingBox.bottom = Math.max(this.boundingBox.bottom, this.boundingBox.bottom + this.labelDimensions.height); + } }; - exports.en_EN = exports.en; - exports.en_US = exports.en; - // Dutch - exports.nl = { - custom: "aangepaste", - time: "tijd" + 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; + } }; - exports.nl_NL = exports.nl; - exports.nl_BE = exports.nl; -/***/ }, -/* 40 */ -/***/ function(module, exports, __webpack_require__) { + Node.prototype._drawText = function (ctx) { + this._resizeText(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - "use strict"; + this._label(ctx, this.label, this.x, this.y); - var util = __webpack_require__(1); - var Component = __webpack_require__(23); - var TimeStep = __webpack_require__(27); - var DateUtil = __webpack_require__(24); - var moment = __webpack_require__(2); + this.boundingBox.top = this.top; + this.boundingBox.left = this.left; + this.boundingBox.right = this.left + this.width; + this.boundingBox.bottom = this.top + this.height; + }; - /** - * A horizontal time axis - * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} body - * @param {Object} [options] See TimeAxis.setOptions for the available - * options. - * @constructor TimeAxis - * @extends Component - */ - function TimeAxis(body, options) { - this.dom = { - foreground: null, - lines: [], - majorTexts: [], - minorTexts: [], - redundant: { - lines: [], - majorTexts: [], - minorTexts: [] - } - }; - this.props = { - range: { - start: 0, - end: 0, - minimumStep: 0 - }, - lineTop: 0 - }; - - this.defaultOptions = { - orientation: "bottom", // supported: 'top', 'bottom' - // TODO: implement timeaxis orientations 'left' and 'right' - showMinorLabels: true, - showMajorLabels: true, - format: null, - timeAxis: null - }; - this.options = util.extend({}, this.defaultOptions); - - this.body = body; - - // create the HTML DOM - this._create(); - - this.setOptions(options); - } - - TimeAxis.prototype = new Component(); - - /** - * Set options for the TimeAxis. - * Parameters will be merged in current options. - * @param {Object} options Available options: - * {string} [orientation] - * {boolean} [showMinorLabels] - * {boolean} [showMajorLabels] - */ - TimeAxis.prototype.setOptions = function (options) { - if (options) { - // copy all options that we know - util.selectiveExtend(["orientation", "showMinorLabels", "showMajorLabels", "hiddenDates", "format", "timeAxis"], 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); - } else { - moment.lang(options.locale); - } - } - } - }; - - /** - * Create the HTML DOM for the TimeAxis - */ - TimeAxis.prototype._create = function () { - this.dom.foreground = document.createElement("div"); - this.dom.background = document.createElement("div"); - - this.dom.foreground.className = "timeaxis foreground"; - this.dom.background.className = "timeaxis background"; - }; - - /** - * Destroy the TimeAxis - */ - TimeAxis.prototype.destroy = function () { - // remove from DOM - if (this.dom.foreground.parentNode) { - this.dom.foreground.parentNode.removeChild(this.dom.foreground); - } - if (this.dom.background.parentNode) { - this.dom.background.parentNode.removeChild(this.dom.background); + Node.prototype._resizeIcon = function (ctx) { + if (!this.width) { + var margin = 5; + var iconSize = { + width: Number(this.options.iconSize), + height: Number(this.options.iconSize) + }; + this.width = iconSize.width + 2 * margin; + this.height = iconSize.height + 2 * margin; } - - this.body = null; }; - /** - * Repaint the component - * @return {boolean} Returns true if the component is resized - */ - TimeAxis.prototype.redraw = function () { - var options = this.options; - var props = this.props; - var foreground = this.dom.foreground; - var background = this.dom.background; - - // determine the correct parent DOM element (depending on option orientation) - var parent = options.orientation == "top" ? this.body.dom.top : this.body.dom.bottom; - var parentChanged = foreground.parentNode !== parent; - - // calculate character width and height - this._calculateCharSize(); - - // TODO: recalculate sizes only needed when parent is resized or options is changed - var orientation = this.options.orientation, - showMinorLabels = this.options.showMinorLabels, - showMajorLabels = this.options.showMajorLabels; + Node.prototype._drawIcon = function (ctx) { + this._resizeIcon(ctx); - // 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; + this.options.iconSize = this.options.iconSize || 50; - 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 + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; + this._icon(ctx); - // 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.boundingBox.top = this.y - this.options.iconSize / 2; + this.boundingBox.left = this.x - this.options.iconSize / 2; + this.boundingBox.right = this.x + this.options.iconSize / 2; + this.boundingBox.bottom = this.y + this.options.iconSize / 2; - this._repaintLabels(); + if (this.label) { + var iconTextSpacing = 5; + this._label(ctx, this.label, this.x, this.y + this.height / 2 + iconTextSpacing, "top", true); - // 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); + this.boundingBox.left = Math.min(this.boundingBox.left, this.labelDimensions.left); + this.boundingBox.right = Math.max(this.boundingBox.right, this.labelDimensions.left + this.labelDimensions.width); + this.boundingBox.bottom = Math.max(this.boundingBox.bottom, this.boundingBox.bottom + this.labelDimensions.height); } - - return this._isResized() || parentChanged; }; - /** - * Repaint major and minor text labels and vertical grid lines - * @private - */ - TimeAxis.prototype._repaintLabels = function () { - var orientation = this.options.orientation; + Node.prototype._icon = function (ctx) { + var relativeIconSize = Number(this.options.iconSize) * this.networkScale; - // calculate range and step (step such that we have space for 7 characters per label) - var start = util.convert(this.body.range.start, "Number"); - var end = util.convert(this.body.range.end, "Number"); - var timeLabelsize = this.body.util.toTime((this.props.minorCharWidth || 10) * 7).valueOf(); - var minimumStep = timeLabelsize - DateUtil.getHiddenDurationBefore(this.body.hiddenDates, this.body.range, timeLabelsize); - minimumStep -= this.body.util.toTime(0).valueOf(); + if (this.options.icon && relativeIconSize > this.options.fontDrawThreshold - 1) { + var iconSize = Number(this.options.iconSize); - var step = new TimeStep(new Date(start), new Date(end), minimumStep, this.body.hiddenDates); - if (this.options.format) { - step.setFormat(this.options.format); - } - if (this.options.timeAxis) { - step.setScale(this.options.timeAxis); + ctx.font = (this.selected ? "bold " : "") + iconSize + "px " + this.options.iconFontFace; + + // draw icon + ctx.fillStyle = this.options.iconColor || "black"; + ctx.textAlign = "center"; + ctx.textBaseline = "middle"; + ctx.fillText(this.options.icon, this.x, this.y); } - this.step = step; + }; - // Move all DOM elements to a "redundant" list, where they - // can be picked for re-use, and clear the lists with lines and texts. - // At the end of the function _repaintLabels, left over elements will be cleaned up - var dom = this.dom; - dom.redundant.lines = dom.lines; - dom.redundant.majorTexts = dom.majorTexts; - dom.redundant.minorTexts = dom.minorTexts; - dom.lines = []; - dom.majorTexts = []; - dom.minorTexts = []; + Node.prototype._label = function (ctx, text, x, y, align, baseline, labelUnderNode) { + var relativeFontSize = Number(this.options.fontSize) * this.networkScale; + if (text && relativeFontSize >= this.options.fontDrawThreshold - 1) { + var fontSize = Number(this.options.fontSize); - var cur; - var x = 0; - var isMajor; - var xPrev = 0; - var width = 0; - var prevLine; - var xFirstMajorLabel = undefined; - var max = 0; - var className; + // this ensures that there will not be HUGE letters on screen by setting an upper limit on the visible text size (regardless of zoomLevel) + if (relativeFontSize >= this.options.fontSizeMaxVisible) { + fontSize = Number(this.options.fontSizeMaxVisible) * this.networkScaleInv; + } - step.first(); - while (step.hasNext() && max < 1000) { - max++; + // fade in when relative scale is between threshold and threshold - 1 + var fontColor = this.options.fontColor || "#000000"; + var strokecolor = this.options.fontStrokeColor; + if (relativeFontSize <= this.options.fontDrawThreshold) { + var opacity = Math.max(0, Math.min(1, 1 - (this.options.fontDrawThreshold - relativeFontSize))); + fontColor = util.overrideOpacity(fontColor, opacity); + strokecolor = util.overrideOpacity(strokecolor, opacity); + } - cur = step.getCurrent(); - isMajor = step.isMajor(); - className = step.getClassName(); + ctx.font = (this.selected ? "bold " : "") + fontSize + "px " + this.options.fontFace; - xPrev = x; - x = this.body.util.toScreen(cur); - width = x - xPrev; - if (prevLine) { - prevLine.style.width = width + "px"; + var lines = text.split("\n"); + var lineCount = lines.length; + var yLine = y + (1 - lineCount) / 2 * fontSize; + if (labelUnderNode == true) { + yLine = y + (1 - lineCount) / (2 * fontSize); } - if (this.options.showMinorLabels) { - this._repaintMinorText(x, step.getLabelMinor(), orientation, className); + // font fill from edges now for nodes! + var width = ctx.measureText(lines[0]).width; + for (var i = 1; i < lineCount; i++) { + var lineWidth = ctx.measureText(lines[i]).width; + width = lineWidth > width ? lineWidth : width; } - - if (isMajor && this.options.showMajorLabels) { - if (x > 0) { - if (xFirstMajorLabel == undefined) { - xFirstMajorLabel = x; - } - this._repaintMajorText(x, step.getLabelMajor(), orientation, className); - } - prevLine = this._repaintMajorLine(x, orientation, className); - } else { - prevLine = this._repaintMinorLine(x, orientation, className); + var height = fontSize * lineCount; + var left = x - width / 2; + var top = y - height / 2; + if (baseline == "hanging") { + top += 0.5 * fontSize; + top += 4; // distance from node, required because we use hanging. Hanging has less difference between browsers + yLine += 4; // distance from node } + this.labelDimensions = { top: top, left: left, width: width, height: height, yLine: yLine }; - step.next(); - } - - // create a major label on the left when needed - if (this.options.showMajorLabels) { - var leftTime = this.body.util.toTime(0), - leftText = step.getLabelMajor(leftTime), - widthText = leftText.length * (this.props.majorCharWidth || 10) + 10; // upper bound estimation - - if (xFirstMajorLabel == undefined || widthText < xFirstMajorLabel) { - this._repaintMajorText(0, leftText, orientation, className); + // create the fontfill background + if (this.options.fontFill !== undefined && this.options.fontFill !== null && this.options.fontFill !== "none") { + ctx.fillStyle = this.options.fontFill; + ctx.fillRect(left, top, width, height); } - } - // 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); + // draw text + ctx.fillStyle = fontColor; + ctx.textAlign = align || "center"; + ctx.textBaseline = baseline || "middle"; + if (this.options.fontStrokeWidth > 0) { + ctx.lineWidth = this.options.fontStrokeWidth; + ctx.strokeStyle = strokecolor; + ctx.lineJoin = "round"; + } + for (var i = 0; i < lineCount; i++) { + if (this.options.fontStrokeWidth) { + ctx.strokeText(lines[i], x, yLine); } + ctx.fillText(lines[i], x, yLine); + yLine += fontSize; } - }); + } }; - /** - * Create a minor label for the axis at position x - * @param {Number} x - * @param {String} text - * @param {String} orientation "top" or "bottom" (default) - * @param {String} className - * @private - */ - TimeAxis.prototype._repaintMinorText = function (x, text, orientation, className) { - // reuse redundant label - var label = this.dom.redundant.minorTexts.shift(); - - if (!label) { - // create new label - var content = document.createTextNode(""); - label = document.createElement("div"); - label.appendChild(content); - this.dom.foreground.appendChild(label); - } - this.dom.minorTexts.push(label); - label.childNodes[0].nodeValue = text; + Node.prototype.getTextSize = function (ctx) { + if (this.label !== undefined) { + var fontSize = Number(this.options.fontSize); + if (fontSize * this.networkScale > this.options.fontSizeMaxVisible) { + fontSize = Number(this.options.fontSizeMaxVisible) * this.networkScaleInv; + } + ctx.font = (this.selected ? "bold " : "") + fontSize + "px " + this.options.fontFace; - label.style.top = orientation == "top" ? this.props.majorLabelHeight + "px" : "0"; - label.style.left = x + "px"; - label.className = "text minor " + className; - //label.title = title; // TODO: this is a heavy operation - }; + var lines = this.label.split("\n"), + height = (fontSize + 4) * lines.length, + width = 0; - /** - * Create a Major label for the axis at position x - * @param {Number} x - * @param {String} text - * @param {String} orientation "top" or "bottom" (default) - * @param {String} className - * @private - */ - TimeAxis.prototype._repaintMajorText = function (x, text, orientation, className) { - // reuse redundant label - var label = this.dom.redundant.majorTexts.shift(); + for (var i = 0, iMax = lines.length; i < iMax; i++) { + width = Math.max(width, ctx.measureText(lines[i]).width); + } - if (!label) { - // create label - var content = document.createTextNode(text); - label = document.createElement("div"); - label.appendChild(content); - this.dom.foreground.appendChild(label); + return { width: width, height: height, lineCount: lines.length }; + } else { + return { width: 0, height: 0, lineCount: 0 }; } - this.dom.majorTexts.push(label); - - label.childNodes[0].nodeValue = text; - label.className = "text major " + className; - //label.title = title; // TODO: this is a heavy operation - - label.style.top = orientation == "top" ? "0" : this.props.minorLabelHeight + "px"; - label.style.left = x + "px"; }; + /** - * Create a minor line for the axis at position x - * @param {Number} x - * @param {String} orientation "top" or "bottom" (default) - * @param {String} className - * @return {Element} Returns the created line - * @private + * 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} */ - TimeAxis.prototype._repaintMinorLine = function (x, orientation, className) { - // reuse redundant line - var line = this.dom.redundant.lines.shift(); - if (!line) { - // create vertical line - line = document.createElement("div"); - this.dom.background.appendChild(line); - } - this.dom.lines.push(line); - - var props = this.props; - if (orientation == "top") { - line.style.top = props.majorLabelHeight + "px"; + 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 { - line.style.top = this.body.domProps.top.height + "px"; + return true; } - line.style.height = props.minorLineHeight + "px"; - line.style.left = x - props.minorLineWidth / 2 + "px"; + }; - line.className = "grid vertical minor " + className; - return line; + /** + * 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 / scale; + this.networkScale = scale; + this.canvasTopLeft = canvasTopLeft; + this.canvasBottomRight = canvasBottomRight; }; + /** - * Create a Major line for the axis at position x - * @param {Number} x - * @param {String} orientation "top" or "bottom" (default) - * @param {String} className - * @return {Element} Returns the created line - * @private + * This allows the zoom level of the network to influence the rendering + * + * @param scale */ - TimeAxis.prototype._repaintMajorLine = function (x, orientation, className) { - // reuse redundant line - var line = this.dom.redundant.lines.shift(); - if (!line) { - // create vertical line - line = document.createElement("div"); - this.dom.background.appendChild(line); - } - this.dom.lines.push(line); - - var props = this.props; - if (orientation == "top") { - line.style.top = "0"; - } else { - line.style.top = this.body.domProps.top.height + "px"; - } - line.style.left = x - props.majorLineWidth / 2 + "px"; - line.style.height = props.majorLineHeight + "px"; + Node.prototype.setScale = function (scale) { + this.networkScaleInv = 1 / scale; + this.networkScale = scale; + }; - line.className = "grid vertical major " + className; - return line; - }; /** - * Determine the size of text on the axis (both major and minor axis). - * The size is calculated only once and then cached in this.props. - * @private + * set the velocity at 0. Is called when this node is contained in another during clustering */ - TimeAxis.prototype._calculateCharSize = function () { - // Note: We calculate char size with every redraw. Size may change, for - // example when any of the timelines parents had display:none for example. - - // determine the char width and height on the minor axis - if (!this.dom.measureCharMinor) { - this.dom.measureCharMinor = document.createElement("DIV"); - this.dom.measureCharMinor.className = "text minor measure"; - this.dom.measureCharMinor.style.position = "absolute"; - - this.dom.measureCharMinor.appendChild(document.createTextNode("0")); - this.dom.foreground.appendChild(this.dom.measureCharMinor); - } - this.props.minorCharHeight = this.dom.measureCharMinor.clientHeight; - this.props.minorCharWidth = this.dom.measureCharMinor.clientWidth; + Node.prototype.clearVelocity = function () { + this.vx = 0; + this.vy = 0; + }; - // determine the char width and height on the major axis - if (!this.dom.measureCharMajor) { - this.dom.measureCharMajor = document.createElement("DIV"); - this.dom.measureCharMajor.className = "text major measure"; - this.dom.measureCharMajor.style.position = "absolute"; - this.dom.measureCharMajor.appendChild(document.createTextNode("0")); - this.dom.foreground.appendChild(this.dom.measureCharMajor); - } - this.props.majorCharHeight = this.dom.measureCharMajor.clientHeight; - this.props.majorCharWidth = this.dom.measureCharMajor.clientWidth; + /** + * 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); }; - module.exports = TimeAxis; + module.exports = Node; /***/ }, /* 41 */ @@ -19546,168 +19477,138 @@ return /******/ (function(modules) { // webpackBootstrap "use strict"; - var util = __webpack_require__(1); - var Component = __webpack_require__(23); - var moment = __webpack_require__(2); - var locales = __webpack_require__(39); - /** - * A current time bar - * @param {{range: Range, dom: Object, domProps: Object}} body - * @param {Object} [options] Available parameters: - * {Boolean} [showCurrentTime] - * @constructor CurrentTime - * @extends Component + * 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 CurrentTime(body, options) { - this.body = body; + function Popup(container, x, y, text, style) { + if (container) { + this.container = container; + } else { + this.container = document.body; + } - // default options - this.defaultOptions = { - showCurrentTime: true, + // x, y and text are optional, see if a style object was passed in their place + if (style === undefined) { + if (typeof x === "object") { + style = x; + x = undefined; + } else if (typeof text === "object") { + style = text; + text = undefined; + } else { + // for backwards compatibility, in case clients other than Network are creating Popup directly + style = { + fontColor: "black", + fontSize: 14, // px + fontFace: "verdana", + color: { + border: "#666", + background: "#FFFFC6" + } + }; + } + } - locales: locales, - locale: "en" - }; - this.options = util.extend({}, this.defaultOptions); - this.offset = 0; + this.x = 0; + this.y = 0; + this.padding = 5; + this.hidden = false; - this._create(); + if (x !== undefined && y !== undefined) { + this.setPosition(x, y); + } + if (text !== undefined) { + this.setText(text); + } - this.setOptions(options); + // create the frame + this.frame = document.createElement("div"); + this.frame.className = "network-tooltip"; + this.frame.style.color = style.fontColor; + this.frame.style.backgroundColor = style.color.background; + this.frame.style.borderColor = style.color.border; + this.frame.style.fontSize = style.fontSize + "px"; + this.frame.style.fontFamily = style.fontFace; + this.container.appendChild(this.frame); } - CurrentTime.prototype = new Component(); - /** - * Create the HTML DOM for the current time bar - * @private + * @param {number} x Horizontal position of the popup window + * @param {number} y Vertical position of the popup window */ - CurrentTime.prototype._create = function () { - var bar = document.createElement("div"); - bar.className = "currenttime"; - bar.style.position = "absolute"; - bar.style.top = "0px"; - bar.style.height = "100%"; - - this.bar = bar; + Popup.prototype.setPosition = function (x, y) { + this.x = parseInt(x); + this.y = parseInt(y); }; /** - * Destroy the CurrentTime bar + * Set the content for the popup window. This can be HTML code or text. + * @param {string | Element} content */ - CurrentTime.prototype.destroy = function () { - this.options.showCurrentTime = false; - this.redraw(); // will remove the bar from the DOM and stop refreshing - - this.body = null; + Popup.prototype.setText = function (content) { + if (content instanceof Element) { + this.frame.innerHTML = ""; + this.frame.appendChild(content); + } else { + this.frame.innerHTML = content; // string containing text or HTML + } }; /** - * Set options for the component. Options will be merged in current options. - * @param {Object} options Available parameters: - * {boolean} [showCurrentTime] + * Show the popup window + * @param {boolean} show Optional. Show or hide the window */ - CurrentTime.prototype.setOptions = function (options) { - if (options) { - // copy all options that we know - util.selectiveExtend(["showCurrentTime", "locale", "locales"], this.options, options); + Popup.prototype.show = function (show) { + if (show === undefined) { + show = true; } - }; - /** - * 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); + if (show) { + var height = this.frame.clientHeight; + var width = this.frame.clientWidth; + var maxHeight = this.frame.parentNode.clientHeight; + var maxWidth = this.frame.parentNode.clientWidth; - this.start(); + var top = this.y - height; + if (top + height + this.padding > maxHeight) { + top = maxHeight - height - this.padding; } - - var now = new Date(new Date().valueOf() + this.offset); - 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); + if (top < this.padding) { + top = this.padding; } - this.stop(); - } - - return false; - }; - /** - * Start auto refreshing the current time bar - */ - CurrentTime.prototype.start = function () { - var me = this; - - function update() { - me.stop(); - - // determine interval to refresh - var scale = me.body.range.conversion(me.body.domProps.center.width).scale; - var interval = 1 / scale / 10; - if (interval < 30) interval = 30; - if (interval > 1000) interval = 1000; - - me.redraw(); - - // start a renderTimer to adjust for the new time - me.currentTimeTimer = setTimeout(update, interval); - } - - update(); - }; + var left = this.x; + if (left + width + this.padding > maxWidth) { + left = maxWidth - width - this.padding; + } + if (left < this.padding) { + left = this.padding; + } - /** - * Stop auto refreshing the current time bar - */ - CurrentTime.prototype.stop = function () { - if (this.currentTimeTimer !== undefined) { - clearTimeout(this.currentTimeTimer); - delete this.currentTimeTimer; + this.frame.style.left = left + "px"; + this.frame.style.top = top + "px"; + this.frame.style.visibility = "visible"; + this.hidden = false; + } else { + this.hide(); } }; /** - * Set a current time. This can be used for example to ensure that a client's - * time is synchronized with a shared server time. - * @param {Date | String | Number} time A Date, unix timestamp, or - * ISO date string. - */ - CurrentTime.prototype.setCurrentTime = function (time) { - var t = util.convert(time, "Date").valueOf(); - var now = new Date().valueOf(); - this.offset = t - now; - this.redraw(); - }; - - /** - * Get the current time. - * @return {Date} Returns the current time. + * Hide the popup window */ - CurrentTime.prototype.getCurrentTime = function () { - return new Date(new Date().valueOf() + this.offset); + Popup.prototype.hide = function () { + this.hidden = true; + this.frame.style.visibility = "hidden"; }; - module.exports = CurrentTime; + module.exports = Popup; /***/ }, /* 42 */ @@ -19715,2315 +19616,1932 @@ return /******/ (function(modules) { // webpackBootstrap "use strict"; - var Emitter = __webpack_require__(11); - var Hammer = __webpack_require__(19); - var util = __webpack_require__(1); - var DataSet = __webpack_require__(7); - var DataView = __webpack_require__(9); - var Range = __webpack_require__(21); - var Core = __webpack_require__(25); - var TimeAxis = __webpack_require__(40); - var CurrentTime = __webpack_require__(41); - var CustomTime = __webpack_require__(38); - var LineGraph = __webpack_require__(43); - /** - * 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 + * 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 Graph2d(container, items, groups, options) { - // if the third element is options, the forth is groups (optionally); - if (!(Array.isArray(groups) || groups instanceof DataSet) && groups instanceof Object) { - var forthArgument = options; - options = groups; - groups = forthArgument; - } - - 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); + function parseDOT(data) { + dot = data; + return parseGraph(); + } - // all components listed here will be repainted automatically - this.components = []; + // token types enumeration + var TOKENTYPE = { + NULL: 0, + DELIMITER: 1, + IDENTIFIER: 2, + UNKNOWN: 3 + }; - this.body = { - dom: this.dom, - domProps: this.props, - emitter: { - on: this.on.bind(this), - off: this.off.bind(this), - emit: this.emit.bind(this) - }, - hiddenDates: [], - util: { - 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) - } - }; + // map with all delimiters + var DELIMITERS = { + "{": true, + "}": true, + "[": true, + "]": true, + ";": true, + "=": true, + ",": true, - // range - this.range = new Range(this.body); - this.components.push(this.range); - this.body.range = this.range; + "->": true, + "--": true + }; - // time axis - this.timeAxis = new TimeAxis(this.body); - this.components.push(this.timeAxis); - //this.body.util.snap = this.timeAxis.snap.bind(this.timeAxis); + 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 - // current time bar - this.currentTime = new CurrentTime(this.body); - this.components.push(this.currentTime); + /** + * Get the first character from the dot file. + * The character is stored into the char c. If the end of the dot file is + * reached, the function puts an empty string in c. + */ + function first() { + index = 0; + c = dot.charAt(0); + } - // 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); + /** + * Get the next character from the dot file. + * The character is stored into the char c. If the end of the dot file is + * reached, the function puts an empty string in c. + */ + function next() { + index++; + c = dot.charAt(index); + } - // item set - this.linegraph = new LineGraph(this.body); - this.components.push(this.linegraph); + /** + * Preview the next character from the dot file. + * @return {String} cNext + */ + function nextPreview() { + return dot.charAt(index + 1); + } - this.itemsData = null; // DataSet - this.groupsData = null; // DataSet + /** + * Test whether given character is alphabetic or numeric + * @param {String} c + * @return {Boolean} isAlphaNumeric + */ + var regexAlphaNumeric = /[a-zA-Z_0-9.:#]/; + function isAlphaNumeric(c) { + return regexAlphaNumeric.test(c); + } - // apply options - if (options) { - this.setOptions(options); + /** + * 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 = {}; } - // IMPORTANT: THIS HAPPENS BEFORE SET ITEMS! - if (groups) { - this.setGroups(groups); + if (b) { + for (var name in b) { + if (b.hasOwnProperty(name)) { + a[name] = b[name]; + } + } } + return a; + } - // create itemset - if (items) { - this.setItems(items); - } else { - this._redraw(); + /** + * Set a value in an object, where the provided parameter name can be a + * path with nested parameters. For example: + * + * var obj = {a: 2}; + * setValue(obj, 'b.c', 3); // obj = {a: 2, b: {c: 3}} + * + * @param {Object} obj + * @param {String} path A parameter name or dot-separated parameter path, + * like "color.highlight.border". + * @param {*} value + */ + function setValue(obj, path, value) { + var keys = path.split("."); + var o = obj; + while (keys.length) { + var key = keys.shift(); + if (keys.length) { + // this isn't the end point + if (!o[key]) { + o[key] = {}; + } + o = o[key]; + } else { + // this is the end point + o[key] = value; + } } } - // Extend the functionality from Core - Graph2d.prototype = new Core(); - /** - * Set items - * @param {vis.DataSet | Array | google.visualization.DataTable | null} items + * 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 */ - Graph2d.prototype.setItems = function (items) { - var initialLoad = this.itemsData == null; + function addNode(graph, node) { + var i, len; + var current = null; - // convert to type DataSet when needed - var newDataSet; - if (!items) { - newDataSet = null; - } else if (items instanceof DataSet || items instanceof DataView) { - newDataSet = items; - } else { - // turn an array into a dataset - newDataSet = new DataSet(items, { - type: { - start: "Date", - end: "Date" + // 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; } - }); + } } - // set items - this.itemsData = newDataSet; - this.linegraph && this.linegraph.setItems(newDataSet); + if (!current) { + // this is a new node + current = { + id: node.id + }; + if (graph.node) { + // clone default attributes + current.attr = merge(current.attr, graph.node); + } + } - if (initialLoad) { - if (this.options.start != undefined || this.options.end != undefined) { - var start = this.options.start != undefined ? this.options.start : null; - var end = this.options.end != undefined ? this.options.end : null; + // add node to this (sub)graph and all its parent graphs + for (i = graphs.length - 1; i >= 0; i--) { + var g = graphs[i]; - this.setWindow(start, end, { animate: false }); - } else { - this.fit({ animate: false }); + if (!g.nodes) { + g.nodes = []; + } + if (g.nodes.indexOf(current) == -1) { + g.nodes.push(current); } } - }; - /** - * Set groups - * @param {vis.DataSet | Array | google.visualization.DataTable} groups - */ - 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); + // merge attributes + if (node.attr) { + current.attr = merge(current.attr, node.attr); } - - 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 + * Add an edge to a graph object + * @param {Object} graph + * @param {Object} edge */ - Graph2d.prototype.getLegend = function (groupId, width, height) { - if (width === undefined) { - width = 15; - } - if (height === undefined) { - height = 15; + function addEdge(graph, edge) { + if (!graph.edges) { + graph.edges = []; } - if (this.linegraph.groups[groupId] !== undefined) { - return this.linegraph.groups[groupId].getLegend(width, height); - } else { - return "cannot find group:" + groupId; + graph.edges.push(edge); + if (graph.edge) { + var attr = merge({}, graph.edge); // clone default attributes + edge.attr = merge(attr, edge.attr); // merge attributes } - }; + } /** - * This checks if the visible option of the supplied group (by ID) is true or false. - * @param groupId - * @returns {*} + * 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 */ - Graph2d.prototype.isGroupVisible = function (groupId) { - if (this.linegraph.groups[groupId] !== undefined) { - return this.linegraph.groups[groupId].visible && (this.linegraph.options.groups.visibility[groupId] === undefined || this.linegraph.options.groups.visibility[groupId] == true); - } else { - return false; + 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; + } /** - * 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 + * Get next token in the current dot file. + * The token and token type are available as token and tokenType */ - Graph2d.prototype.getItemRange = function () { - var min = null; - var max = null; + function getToken() { + tokenType = TOKENTYPE.NULL; + token = ""; - // 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; - } - } - } + // skip over whitespaces + while (c == " " || c == "\t" || c == "\n" || c == "\r") { + // space, tab, enter + next(); } - return { - min: min != null ? new Date(min) : null, - max: max != null ? new Date(max) : null - }; - }; - - - - module.exports = Graph2d; - -/***/ }, -/* 43 */ -/***/ function(module, exports, __webpack_require__) { - - "use strict"; - - var util = __webpack_require__(1); - var DOMutil = __webpack_require__(6); - var DataSet = __webpack_require__(7); - var DataView = __webpack_require__(9); - var Component = __webpack_require__(23); - var DataAxis = __webpack_require__(44); - var GraphGroup = __webpack_require__(46); - var Legend = __webpack_require__(50); - var BarGraphFunctions = __webpack_require__(49); - - var UNGROUPED = "__ungrouped__"; // reserved group id for ungrouped items - - /** - * This is the constructor of the LineGraph. It requires a Timeline body and options. - * - * @param body - * @param options - * @constructor - */ - function LineGraph(body, options) { - this.id = util.randomUUID(); - this.body = body; + do { + var isComment = false; - 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, - alignZeros: true, - customRange: { - left: { min: undefined, max: undefined }, - right: { min: undefined, max: undefined } + // skip comment + if (c == "#") { + // find the previous non-space character + var i = index - 1; + while (dot.charAt(i) == " " || dot.charAt(i) == "\t") { + i--; } - //, these options are not set by default, but this shows the format they will be in - //format: { - // left: {decimals: 2}, - // right: {decimals: 2} - //}, - //title: { - // left: { - // text: 'left', - // style: 'color:black;' - // }, - // right: { - // text: 'right', - // style: 'color:black;' - // } - //} - }, - 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 + 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; } - }, - groups: { - visibility: {} } - }; - - // options is shared by this ItemSet and all its items - this.options = util.extend({}, this.defaultOptions); - this.dom = {}; - this.props = {}; - this.hammer = null; - this.groups = {}; - this.abortedGraphUpdate = false; - this.updateSVGheight = false; - this.updateSVGheightOnResize = false; - - var me = this; - this.itemsData = null; // DataSet - this.groupsData = null; // DataSet - - // listeners for the DataSet of the items - this.itemListeners = { - add: function (event, params, senderId) { - me._onAdd(params.items); - }, - update: function (event, params, senderId) { - me._onUpdate(params.items); - }, - remove: function (event, params, senderId) { - me._onRemove(params.items); + if (c == "/" && nextPreview() == "/") { + // skip line comment + while (c != "" && c != "\n") { + next(); + } + isComment = true; } - }; - - // listeners for the DataSet of the groups - this.groupListeners = { - add: function (event, params, senderId) { - me._onAddGroups(params.items); - }, - update: function (event, params, senderId) { - me._onUpdateGroups(params.items); - }, - remove: function (event, params, senderId) { - me._onRemoveGroups(params.items); + 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; } - }; - - 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.COUNTER = 0; - this.body.emitter.on("rangechanged", function () { - me.lastStart = me.body.range.start; - me.svg.style.left = util.option.asSize(-me.props.width); - me.redraw.call(me, true); - }); - - // create the HTML DOM - this._create(); - this.framework = { svg: this.svg, svgElements: this.svgElements, options: this.options, groups: this.groups }; - this.body.emitter.emit("change"); - } - - LineGraph.prototype = new Component(); - - /** - * Create the HTML DOM for the ItemSet - */ - LineGraph.prototype._create = function () { - var frame = document.createElement("div"); - frame.className = "LineGraph"; - this.dom.frame = frame; - - // create svg element for graph drawing. - this.svg = document.createElementNS("http://www.w3.org/2000/svg", "svg"); - this.svg.style.position = "relative"; - this.svg.style.height = ("" + this.options.graphHeight).replace("px", "") + "px"; - this.svg.style.display = "block"; - frame.appendChild(this.svg); - // data axis - this.options.dataAxis.orientation = "left"; - this.yAxisLeft = new DataAxis(this.body, this.options.dataAxis, this.svg, this.options.groups); + // skip over whitespaces + while (c == " " || c == "\t" || c == "\n" || c == "\r") { + // space, tab, enter + next(); + } + } while (isComment); - this.options.dataAxis.orientation = "right"; - this.yAxisRight = new DataAxis(this.body, this.options.dataAxis, this.svg, this.options.groups); - delete this.options.dataAxis.orientation; + // check for end of dot file + if (c == "") { + // token is still empty + tokenType = TOKENTYPE.DELIMITER; + return; + } - // legends - this.legendLeft = new Legend(this.body, this.options.legend, "left", this.options.groups); - this.legendRight = new Legend(this.body, this.options.legend, "right", this.options.groups); + // check for delimiters consisting of 2 characters + var c2 = c + nextPreview(); + if (DELIMITERS[c2]) { + tokenType = TOKENTYPE.DELIMITER; + token = c2; + next(); + next(); + return; + } - this.show(); - }; + // check for delimiters consisting of 1 character + if (DELIMITERS[c]) { + tokenType = TOKENTYPE.DELIMITER; + token = c; + next(); + return; + } - /** - * set the options of the LineGraph. the mergeOptions is used for subObjects that have an enabled element. - * @param {object} options - */ - LineGraph.prototype.setOptions = function (options) { - if (options) { - var fields = ["sampling", "defaultGroup", "height", "graphHeight", "yAxisOrientation", "style", "barChart", "dataAxis", "sort", "groups"]; - if (options.graphHeight === undefined && options.height !== undefined && this.body.domProps.centerContainer.height !== undefined) { - this.updateSVGheight = true; - this.updateSVGheightOnResize = true; - } else if (this.body.domProps.centerContainer.height !== undefined && options.graphHeight !== undefined) { - if (parseInt((options.graphHeight + "").replace("px", "")) < this.body.domProps.centerContainer.height) { - this.updateSVGheight = true; - } - } - 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"); + // 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(); - 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; - } else { - this.options.catmullRom.parametrization = "centripetal"; - this.options.catmullRom.alpha = 0.5; - } - } - } + while (isAlphaNumeric(c)) { + token += c; + next(); } - - if (this.yAxisLeft) { - if (options.dataAxis !== undefined) { - this.yAxisLeft.setOptions(this.options.dataAxis); - this.yAxisRight.setOptions(this.options.dataAxis); - } + if (token == "false") { + token = false; // convert to boolean + } else if (token == "true") { + token = true; // convert to boolean + } else if (!isNaN(Number(token))) { + token = Number(token); // convert to number } + tokenType = TOKENTYPE.IDENTIFIER; + return; + } - if (this.legendLeft) { - if (options.legend !== undefined) { - this.legendLeft.setOptions(this.options.legend); - this.legendRight.setOptions(this.options.legend); + // 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 (this.groups.hasOwnProperty(UNGROUPED)) { - this.groups[UNGROUPED].setOptions(options); + if (c != "\"") { + throw newSyntaxError("End of string \" expected"); } + next(); + tokenType = TOKENTYPE.IDENTIFIER; + return; } - // this is used to redraw the graph if the visibility of the groups is changed. - if (this.dom.frame) { - this.redraw(true); + // 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) + "\""); + } /** - * Hide the component from the DOM + * Parse a graph. + * @returns {Object} graph */ - LineGraph.prototype.hide = function () { - // remove the frame containing the items - if (this.dom.frame.parentNode) { - this.dom.frame.parentNode.removeChild(this.dom.frame); - } - }; + function parseGraph() { + var graph = {}; + first(); + getToken(); - /** - * 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); + // optional strict keyword + if (token == "strict") { + graph.strict = true; + getToken(); } - }; + // graph or digraph keyword + if (token == "graph" || token == "digraph") { + graph.type = token; + getToken(); + } - /** - * Set items - * @param {vis.DataSet | null} items - */ - LineGraph.prototype.setItems = function (items) { - var me = this, - ids, - oldItemsData = this.itemsData; + // optional graph id + if (tokenType == TOKENTYPE.IDENTIFIER) { + graph.id = token; + getToken(); + } - // 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"); + // open angle bracket + if (token != "{") { + throw newSyntaxError("Angle bracket { expected"); } + getToken(); - if (oldItemsData) { - // unsubscribe from old dataset - util.forEach(this.itemListeners, function (callback, event) { - oldItemsData.off(event, callback); - }); + // statements + parseStatements(graph); - // remove all drawn items - ids = oldItemsData.getIds(); - this._onRemove(ids); + // close angle bracket + if (token != "}") { + throw newSyntaxError("Angle bracket } expected"); } + getToken(); - if (this.itemsData) { - // subscribe to new dataset - var id = this.id; - util.forEach(this.itemListeners, function (callback, event) { - me.itemsData.on(event, callback, id); - }); - - // add all new items - ids = this.itemsData.getIds(); - this._onAdd(ids); + // end of file + if (token !== "") { + throw newSyntaxError("End of file expected"); } - this._updateUngrouped(); - //this._updateGraph(); - this.redraw(true); - }; + getToken(); + + // remove temporary default properties + delete graph.node; + delete graph.edge; + delete graph.graph; + return graph; + } /** - * Set groups - * @param {vis.DataSet} groups + * Parse a list with statements. + * @param {Object} graph */ - LineGraph.prototype.setGroups = function (groups) { - var me = this; - var ids; + function parseStatements(graph) { + while (token !== "" && token != "}") { + parseStatement(graph); + if (token == ";") { + getToken(); + } + } + } - // unsubscribe from current dataset - if (this.groupsData) { - util.forEach(this.groupListeners, function (callback, event) { - me.groupsData.unsubscribe(event, callback); - }); + /** + * 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); - // remove all drawn groups - ids = this.groupsData.getIds(); - this.groupsData = null; - this._onRemoveGroups(ids); // note: this will cause a redraw + return; } - // 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"); + // parse an attribute statement + var attr = parseAttributeStatement(graph); + if (attr) { + return; } - 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); + // parse node + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError("Identifier expected"); } - this._onUpdate(); - }; - + var id = token; // id can be a string or a number + getToken(); - /** - * Update the data - * @param [ids] - * @private - */ - LineGraph.prototype._onUpdate = function (ids) { - this._updateUngrouped(); - this._updateAllGroupData(); - //this._updateGraph(); - this.redraw(true); - }; - 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]); + 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); } - - //this._updateGraph(); - this.redraw(true); - }; - LineGraph.prototype._onAddGroups = function (groupIds) { - this._onUpdateGroups(groupIds); - }; - + } /** - * this cleans the group out off the legends and the dataaxis, updates the ungrouped and updates the graph - * @param {Array} groupIds - * @private + * Parse a subgraph + * @param {Object} graph parent graph object + * @return {Object | null} subgraph */ - 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(true); - }; + function parseSubgraph(graph) { + var subgraph = null; + // optional subgraph keyword + if (token == "subgraph") { + subgraph = {}; + subgraph.type = "subgraph"; + getToken(); - /** - * update a group object with the group dataset entree - * - * @param group - * @param groupId - * @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]); - } - } 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]); + // optional graph id + if (tokenType == TOKENTYPE.IDENTIFIER) { + subgraph.id = token; + getToken(); } } - this.legendLeft.redraw(); - this.legendRight.redraw(); - }; + // open angle bracket + if (token == "{") { + getToken(); - /** - * this updates all groups, it is used when there is an update the the itemset. - * - * @private - */ - LineGraph.prototype._updateAllGroupData = function () { - if (this.itemsData != null) { - var groupsContent = {}; - var groupId; - for (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]; - if (groupsContent[item.group] === undefined) { - throw new Error("Cannot find referenced group. Possible reason: items added before groups? Groups need to be added before items, as items refer to groups."); - } - item.x = util.convert(item.x, "Date"); - groupsContent[item.group].push(item); - } - } - for (groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - this.groups[groupId].setItems(groupsContent[groupId]); - } + if (!subgraph) { + subgraph = {}; } - } - }; + subgraph.parent = graph; + subgraph.node = graph.node; + subgraph.edge = graph.edge; + subgraph.graph = graph.graph; + // statements + parseStatements(subgraph); - /** - * 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 - */ - LineGraph.prototype._updateUngrouped = function () { - if (this.itemsData && this.itemsData != null) { - var ungroupedCounter = 0; - 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; - } - } + // close angle bracket + if (token != "}") { + throw newSyntaxError("Angle bracket } expected"); } + getToken(); - if (ungroupedCounter == 0) { - delete this.groups[UNGROUPED]; - this.legendLeft.removeGroup(UNGROUPED); - this.legendRight.removeGroup(UNGROUPED); - this.yAxisLeft.removeGroup(UNGROUPED); - this.yAxisRight.removeGroup(UNGROUPED); - } else { - var group = { id: UNGROUPED, content: this.options.defaultGroup }; - this._updateGroup(group, UNGROUPED); + // 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 = []; } - } else { - delete this.groups[UNGROUPED]; - this.legendLeft.removeGroup(UNGROUPED); - this.legendRight.removeGroup(UNGROUPED); - this.yAxisLeft.removeGroup(UNGROUPED); - this.yAxisRight.removeGroup(UNGROUPED); + graph.subgraphs.push(subgraph); } - this.legendLeft.redraw(); - this.legendRight.redraw(); - }; - + return subgraph; + } /** - * Redraw the component, mandatory function - * @return {boolean} Returns true if the component is resized + * 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. */ - LineGraph.prototype.redraw = function (forceGraphUpdate) { - var resized = false; - - // calculate actual size and position - this.props.width = this.dom.frame.offsetWidth; - this.props.height = this.body.domProps.centerContainer.height; - - // update the graph if there is no lastWidth or with, used for the initial draw - if (this.lastWidth === undefined && this.props.width) { - forceGraphUpdate = true; - } + function parseAttributeStatement(graph) { + // attribute statements + if (token == "node") { + getToken(); - // check if this component is resized - resized = this._isResized() || resized; + // node attributes + graph.node = parseAttributeList(); + return "node"; + } else if (token == "edge") { + getToken(); - // 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.lastVisibleInterval = visibleInterval; + // edge attributes + graph.edge = parseAttributeList(); + return "edge"; + } else if (token == "graph") { + getToken(); + // graph attributes + graph.graph = parseAttributeList(); + return "graph"; + } - // 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.props.width); - this.svg.style.left = util.option.asSize(-this.props.width); + return null; + } - // if the height of the graph is set as proportional, change the height of the svg - if ((this.options.height + "").indexOf("%") != -1 || this.updateSVGheightOnResize == true) { - this.updateSVGheight = true; - } + /** + * 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); - // update the height of the graph on each redraw of the graph. - if (this.updateSVGheight == true) { - if (this.options.graphHeight != this.body.domProps.centerContainer.height + "px") { - this.options.graphHeight = this.body.domProps.centerContainer.height + "px"; - this.svg.style.height = this.body.domProps.centerContainer.height + "px"; - } - this.updateSVGheight = false; - } else { - this.svg.style.height = ("" + this.options.graphHeight).replace("px", "") + "px"; - } + // edge statements + parseEdge(graph, id); + } - // zoomed is here to ensure that animations are shown correctly. - if (resized == true || zoomed == true || this.abortedGraphUpdate == true || forceGraphUpdate == true) { - resized = this._updateGraph() || resized; - } else { - // move the whole svg while dragging - if (this.lastStart != 0) { - var offset = this.body.range.start - this.lastStart; - var range = this.body.range.end - this.body.range.start; - if (this.props.width != 0) { - var rangePerPixelInv = this.props.width / range; - var xOffset = offset * rangePerPixelInv; - this.svg.style.left = -this.props.width - xOffset + "px"; + /** + * 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(); } - } - this.legendLeft.redraw(); - this.legendRight.redraw(); - return resized; - }; + // parse edge attributes + var attr = parseAttributeList(); + // create edge + var edge = createEdge(graph, from, to, type, attr); + addEdge(graph, edge); + + from = to; + } + } /** - * Update and redraw the graph. - * + * Parse a set with attributes, + * for example [label="1.000", shape=solid] + * @return {Object | null} attr */ - LineGraph.prototype._updateGraph = function () { - // reset the svg elements - DOMutil.prepareElements(this.svgElements); - if (this.props.width != 0 && this.itemsData != null) { - var group, i; - var preprocessedGroupData = {}; - var processedGroupData = {}; - var groupRanges = {}; - var changeCalled = false; + function parseAttributeList() { + var attr = null; - // getting group Ids - var groupIds = []; - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - group = this.groups[groupId]; - if (group.visible == true && (this.options.groups.visibility[groupId] === undefined || this.options.groups.visibility[groupId] == true)) { - groupIds.push(groupId); - } + while (token == "[") { + getToken(); + attr = {}; + while (token !== "" && token != "]") { + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError("Attribute name expected"); } - } - 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 only loads the data we require based on the timewindow - this._getRelevantData(groupIds, groupsData, minDate, maxDate); - - // apply sampling, if disabled, it will pass through this function. - this._applySampling(groupIds, groupsData); + var name = token; - // we transform the X coordinates to detect collisions - for (i = 0; i < groupIds.length; i++) { - preprocessedGroupData[groupIds[i]] = this._convertXcoordinates(groupsData[groupIds[i]]); + getToken(); + if (token != "=") { + throw newSyntaxError("Equal sign = expected"); } + getToken(); - // 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); - var MAX_CYCLES = 5; - if (changeCalled == true && this.COUNTER < MAX_CYCLES) { - DOMutil.cleanupElements(this.svgElements); - this.abortedGraphUpdate = true; - this.COUNTER++; - this.body.emitter.emit("change"); - return true; - } else { - if (this.COUNTER > MAX_CYCLES) { - console.log("WARNING: there may be an infinite loop in the _updateGraph emitter cycle."); - } - this.COUNTER = 0; - this.abortedGraphUpdate = false; - - // 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); - } + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError("Attribute value expected"); + } + var value = token; + setValue(attr, name, value); // name can be a path - // draw the groups - for (i = 0; i < groupIds.length; i++) { - group = this.groups[groupIds[i]]; - if (group.options.style != "bar") { - // bar needs to be drawn enmasse - group.draw(processedGroupData[groupIds[i]], group, this.framework); - } - } - BarGraphFunctions.draw(groupIds, processedGroupData, this.framework); + getToken(); + if (token == ",") { + getToken(); } } + + if (token != "]") { + throw newSyntaxError("Bracket ] expected"); + } + getToken(); } - // cleanup unused svg elements - DOMutil.cleanupElements(this.svgElements); - return false; - }; + 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 + ")"); + } /** - * 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. - * - * @param {array} groupIds - * @param {object} groupsData - * @param {date} minDate - * @param {date} maxDate - * @private + * Chop off text after a maximum length + * @param {String} text + * @param {Number} maxLength + * @returns {String} */ - LineGraph.prototype._getRelevantData = function (groupIds, groupsData, minDate, maxDate) { - 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.binarySearchValue(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); - } - } - } + 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 (Array.isArray(array1)) { + array1.forEach(function (elem1) { + if (Array.isArray(array2)) { + array2.forEach(function (elem2) { + fn(elem1, elem2); + }); } else { - 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); - } - } - } + fn(elem1, array2); } + }); + } else { + if (Array.isArray(array2)) { + array2.forEach(function (elem2) { + fn(array1, elem2); + }); + } else { + fn(array1, array2); } } - }; - + } /** - * - * @param groupIds - * @param groupsData - * @private + * Convert a string containing a graph in DOT language into a map containing + * with nodes and edges in the format of graph. + * @param {String} data Text containing a graph in DOT-notation + * @return {Object} graphData */ - 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; - - // 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))); + function DOTToGraph(data) { + // parse the DOT file + var dotData = parseDOT(data); + var graphData = { + nodes: [], + edges: [], + options: {} + }; - var sampledData = []; - for (var j = 0; j < amountOfPoints; j += increment) { - sampledData.push(dataContainer[j]); - } - groupsData[groupIds[i]] = sampledData; - } + // 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 + */ + var convertEdge = function (dotEdge) { + var graphEdge = { + from: dotEdge.from, + to: dotEdge.to + }; + merge(graphEdge, dotEdge.attr); + graphEdge.style = dotEdge.type == "->" ? "arrow" : "line"; + return graphEdge; + }; - /** - * - * - * @param {array} groupIds - * @param {object} groupsData - * @param {object} groupRanges | this is being filled here - * @private - */ - LineGraph.prototype._getYRanges = function (groupIds, groupsData, groupRanges) { - var groupData, group, i; - var barCombinedDataLeft = []; - var barCombinedDataRight = []; - var options; - if (groupIds.length > 0) { - for (i = 0; i < groupIds.length; i++) { - groupData = groupsData[groupIds[i]]; - options = this.groups[groupIds[i]].options; - if (groupData.length > 0) { - group = this.groups[groupIds[i]]; - // if bar graphs are stacked, their range need to be handled differently and accumulated over all groups. - if (options.barChart.handleOverlap == "stack" && options.style == "bar") { - if (options.yAxisOrientation == "left") { - barCombinedDataLeft = barCombinedDataLeft.concat(group.getYRange(groupData)); - } else { - barCombinedDataRight = barCombinedDataRight.concat(group.getYRange(groupData)); - } - } else { - groupRanges[groupIds[i]] = group.getYRange(groupData, groupIds[i]); - } + dotData.edges.forEach(function (dotEdge) { + var from, to; + if (dotEdge.from instanceof Object) { + from = dotEdge.from.nodes; + } else { + from = { + id: dotEdge.from + }; } - } - - // if bar graphs are stacked, their range need to be handled differently and accumulated over all groups. - BarGraphFunctions.getStackedBarYRange(barCombinedDataLeft, groupRanges, groupIds, "__barchartLeft", "left"); - BarGraphFunctions.getStackedBarYRange(barCombinedDataRight, groupRanges, groupIds, "__barchartRight", "right"); - } - }; + if (dotEdge.to instanceof Object) { + to = dotEdge.to.nodes; + } else { + to = { + id: dotEdge.to + }; + } - /** - * 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 resized = false; - var yAxisLeftUsed = false; - var yAxisRightUsed = false; - var minLeft = 1000000000, - minRight = 1000000000, - maxLeft = -1000000000, - maxRight = -1000000000, - minVal, - maxVal; - // if groups are present - if (groupIds.length > 0) { - // this is here to make sure that if there are no items in the axis but there are groups, that there is no infinite draw/redraw loop. - for (var i = 0; i < groupIds.length; i++) { - var group = this.groups[groupIds[i]]; - if (group && group.options.yAxisOrientation != "right") { - yAxisLeftUsed = true; - minLeft = 0; - maxLeft = 0; - } else if (group && group.options.yAxisOrientation) { - yAxisRightUsed = true; - minRight = 0; - maxRight = 0; + if (dotEdge.from instanceof Object && dotEdge.from.edges) { + dotEdge.from.edges.forEach(function (subEdge) { + var graphEdge = convertEdge(subEdge); + graphData.edges.push(graphEdge); + }); } - } - // if there are items: - 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; + 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 (groupRanges[groupIds[i]].yAxisOrientation != "right") { - yAxisLeftUsed = true; - minLeft = minLeft > minVal ? minVal : minLeft; - maxLeft = maxLeft < maxVal ? maxVal : maxLeft; - } else { - yAxisRightUsed = true; - minRight = minRight > minVal ? minVal : minRight; - maxRight = maxRight < maxVal ? maxVal : maxRight; - } - } + if (dotEdge.to instanceof Object && dotEdge.to.edges) { + dotEdge.to.edges.forEach(function (subEdge) { + var graphEdge = convertEdge(subEdge); + graphData.edges.push(graphEdge); + }); } - } - - if (yAxisLeftUsed == true) { - this.yAxisLeft.setRange(minLeft, maxLeft); - } - if (yAxisRightUsed == true) { - this.yAxisRight.setRange(minRight, maxRight); - } + }); } - resized = this._toggleAxisVisiblity(yAxisLeftUsed, this.yAxisLeft) || resized; - resized = this._toggleAxisVisiblity(yAxisRightUsed, this.yAxisRight) || resized; - if (yAxisRightUsed == true && yAxisLeftUsed == true) { - this.yAxisLeft.drawIcons = true; - this.yAxisRight.drawIcons = true; - } else { - this.yAxisLeft.drawIcons = false; - this.yAxisRight.drawIcons = false; + // copy the options + if (dotData.attr) { + graphData.options = dotData.attr; } - this.yAxisRight.master = !yAxisLeftUsed; - if (this.yAxisRight.master == false) { - if (yAxisRightUsed == true) { - this.yAxisLeft.lineOffset = this.yAxisRight.width; - } else { - this.yAxisLeft.lineOffset = 0; - } - resized = this.yAxisLeft.redraw() || resized; - this.yAxisRight.stepPixelsForced = this.yAxisLeft.stepPixels; - this.yAxisRight.zeroCrossing = this.yAxisLeft.zeroCrossing; - resized = this.yAxisRight.redraw() || resized; - } else { - resized = this.yAxisRight.redraw() || resized; - } + return graphData; + } - // 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); - } + // exports + exports.parseDOT = parseDOT; + exports.DOTToGraph = DOTToGraph; - return resized; - }; +/***/ }, +/* 43 */ +/***/ function(module, exports, __webpack_require__) { + "use strict"; - /** - * 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 - */ - LineGraph.prototype._toggleAxisVisiblity = function (axisUsed, axis) { - var changed = false; - if (axisUsed == false) { - if (axis.dom.frame.parentNode && axis.hidden == false) { - axis.hide(); - changed = true; - } - } else { - if (!axis.dom.frame.parentNode && axis.hidden == true) { - axis.show(); - changed = true; + function parseGephi(gephiJSON, options) { + var edges = []; + var nodes = []; + this.options = { + edges: { + inheritColor: true + }, + nodes: { + allowedToMove: false, + parseColor: false } - } - return changed; - }; + }; + if (options !== undefined) { + this.options.nodes.allowedToMove = options.allowedToMove | false; + this.options.nodes.parseColor = options.parseColor | false; + this.options.edges.inheritColor = options.inheritColor | true; + } - /** - * This uses the DataAxis object to generate the correct X coordinate on the SVG window. It uses the - * util function toScreen to get the x coordinate from the timestamp. It also pre-filters the data and get the minMax ranges for - * the yAxis. - * - * @param datapoints - * @returns {Array} - * @private - */ - LineGraph.prototype._convertXcoordinates = function (datapoints) { - var extractedData = []; - var xValue, yValue; - var toScreen = this.body.util.toScreen; + 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 < datapoints.length; i++) { - xValue = toScreen(datapoints[i].x) + this.props.width; - yValue = datapoints[i].y; - extractedData.push({ x: xValue, y: yValue }); + 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 extractedData; - }; + return { nodes: nodes, edges: edges }; + } + exports.parseGephi = parseGephi; - /** - * 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 - * @param group - * @returns {Array} - * @private - */ - 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; - } +/***/ }, +/* 44 */ +/***/ function(module, exports, __webpack_require__) { - for (var i = 0; i < datapoints.length; i++) { - var labelValue; - //if (datapoints[i].label) { - // labelValue = datapoints[i].label; - //} - //else { - // labelValue = null; - //} - labelValue = datapoints[i].label ? datapoints[i].label : null; - xValue = toScreen(datapoints[i].x) + this.props.width; - yValue = Math.round(axis.convertValue(datapoints[i].y)); - extractedData.push({ x: xValue, y: yValue, label: labelValue }); - } + "use strict"; - group.setZeroPosition(Math.min(svgHeight, axis.convertValue(0))); + // 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__(64); - return extractedData; - }; +/***/ }, +/* 45 */ +/***/ function(module, exports, __webpack_require__) { + "use strict"; - module.exports = LineGraph; + // Only load hammer.js when in a browser environment + // (loading hammer.js in a node.js environment gives errors) + if (typeof window !== "undefined") { + var propagating = __webpack_require__(65); + var Hammer = window.Hammer || __webpack_require__(66); + module.exports = propagating(Hammer); + } else { + module.exports = function () { + throw Error("hammer.js is only available in a browser, not in node.js."); + }; + } /***/ }, -/* 44 */ +/* 46 */ /***/ function(module, exports, __webpack_require__) { "use strict"; + var Emitter = __webpack_require__(62); + var Hammer = __webpack_require__(45); var util = __webpack_require__(1); - var DOMutil = __webpack_require__(6); - var Component = __webpack_require__(23); - var DataStep = __webpack_require__(45); + var DataSet = __webpack_require__(3); + var DataView = __webpack_require__(4); + var Range = __webpack_require__(17); + var ItemSet = __webpack_require__(32); + var Activator = __webpack_require__(53); + var DateUtil = __webpack_require__(15); + var CustomTime = __webpack_require__(27); /** - * A horizontal time axis - * @param {Object} [options] See DataAxis.setOptions for the available - * options. - * @constructor DataAxis - * @extends Component - * @param body + * 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 DataAxis(body, options, svg, linegraphOptions) { - this.id = util.randomUUID(); - this.body = body; - - this.defaultOptions = { - orientation: "left", // supported: 'left', 'right' - showMinorLabels: true, - showMajorLabels: true, - icons: true, - majorLinesOffset: 7, - minorLinesOffset: 4, - labelOffsetX: 10, - labelOffsetY: 2, - iconWidth: 20, - width: "40px", - visible: true, - alignZeros: true, - customRange: { - left: { min: undefined, max: undefined }, - right: { min: undefined, max: undefined } - }, - title: { - left: { text: undefined }, - right: { text: undefined } - }, - format: { - left: { decimals: undefined }, - right: { decimals: undefined } - } - }; + function Core() {} - this.linegraphOptions = linegraphOptions; - this.linegraphSVG = svg; - this.props = {}; - this.DOMelements = { // dynamic elements - lines: {}, - labels: {}, - title: {} - }; + // 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.range = { start: 0, end: 0 }; - - this.options = util.extend({}, this.defaultOptions); - this.conversionFactor = 1; - - this.setOptions(options); - this.width = Number(("" + this.options.width).replace("px", "")); - this.minWidth = this.width; - this.height = this.linegraphSVG.offsetHeight; - this.hidden = false; + 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.stepPixels = 25; - this.stepPixelsForced = 25; - this.zeroCrossing = -1; + 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.lineOffset = 0; - this.master = true; - this.svgElements = {}; - this.iconsRemoved = false; + 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.groups = {}; - this.amountOfGroups = 0; + 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); - // create the HTML DOM - this._create(); + this.on("rangechange", this.redraw.bind(this)); var me = this; - this.body.emitter.on("verticalDrag", function () { - me.dom.lineContainer.style.top = me.body.domProps.scrollTop + "px"; + this.on("change", function (properties) { + if (properties && properties.queue == true) { + // redraw once on next tick + if (!me._redrawTimer) { + me._redrawTimer = setTimeout(function () { + me._redrawTimer = null; + me._redraw(); + }, 0); + } + } else { + // redraw immediately + me._redraw(); + } }); - } - DataAxis.prototype = new Component(); + // create event listeners for all interesting events, these events will be + // emitted via emitter + this.hammer = new Hammer(this.dom.root, { touchAction: "pan-y" }); + this.hammer.get("pinch").set({ enable: true }); + this.listeners = {}; + + var events = ["tap", "doubletap", "press", "pinch", "pan", "panstart", "panmove", "panend" + // TODO: cleanup + //'touch', 'pinch', + //'tap', 'doubletap', 'hold', + //'dragstart', 'drag', 'dragend', + //'mousewheel', 'DOMMouseScroll' // DOMMouseScroll is needed for Firefox + ]; + events.forEach(function (type) { + var listener = function (event) { + if (me.isActive()) { + me.emit(type, event); + } + }; + me.hammer.on(type, listener); + me.listeners[type] = listener; + }); + // emulate a touch event (emitted before the start of a pan, pinch, tap, or press) + this.hammer.on("hammer.input", (function (event) { + if (event.isFirst) { + if (me.isActive()) { + me.emit("touch", event); + } + } + }).bind(this)); - DataAxis.prototype.addGroup = function (label, graphOptions) { - if (!this.groups.hasOwnProperty(label)) { - this.groups[label] = graphOptions; + function onMouseWheel(event) { + if (me.isActive()) { + me.emit("mousewheel", event); + } } - this.amountOfGroups += 1; - }; + this.dom.root.addEventListener("mousewheel", onMouseWheel); + this.dom.root.addEventListener("DOMMouseScroll", onMouseWheel); - DataAxis.prototype.updateGroup = function (label, graphOptions) { - this.groups[label] = graphOptions; - }; + // size properties of each of the panels + this.props = { + root: {}, + background: {}, + centerContainer: {}, + leftContainer: {}, + rightContainer: {}, + center: {}, + left: {}, + right: {}, + top: {}, + bottom: {}, + border: {}, + scrollTop: 0, + scrollTopMin: 0 + }; - DataAxis.prototype.removeGroup = function (label) { - if (this.groups.hasOwnProperty(label)) { - delete this.groups[label]; - this.amountOfGroups -= 1; - } - }; + this.redrawCount = 0; + // attach the root panel to the provided container + if (!container) throw new Error("No container provided"); + container.appendChild(this.dom.root); + }; - DataAxis.prototype.setOptions = function (options) { + /** + * 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) { - 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", "title", "format", "alignZeros"]; + // copy the known options + var fields = ["width", "height", "minHeight", "maxHeight", "autoResize", "start", "end", "orientation", "clickToUse", "dataAttributes", "hiddenDates"]; util.selectiveExtend(fields, this.options, options); - this.minWidth = Number(("" + this.options.width).replace("px", "")); + if ("hiddenDates" in this.options) { + DateUtil.convertHiddenOptions(this.body, this.options.hiddenDates); + } - if (redraw == true && this.dom.frame) { - this.hide(); - this.show(); + if ("clickToUse" in options) { + if (options.clickToUse) { + if (!this.activator) { + 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) { + return 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(); + }; /** - * Create the HTML DOM for the DataAxis + * Returns true when the Timeline is active. + * @returns {boolean} */ - 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; + Core.prototype.isActive = function () { + return !this.activator || this.activator.active; + }; - this.dom.lineContainer = document.createElement("div"); - this.dom.lineContainer.style.width = "100%"; - this.dom.lineContainer.style.height = this.height; - this.dom.lineContainer.style.position = "relative"; + /** + * Destroy the Core, clean up all DOM elements and event listeners. + */ + Core.prototype.destroy = function () { + // unbind datasets + this.clear(); - // 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); - }; + // remove all event listeners + this.off(); - DataAxis.prototype._redrawGroupIcons = function () { - DOMutil.prepareElements(this.svgElements); + // stop checking for changed size + this._stopAutoResize(); - var x; - var iconWidth = this.options.iconWidth; - var iconHeight = 15; - var iconOffset = 4; - var y = iconOffset + 0.5 * iconHeight; + // remove from DOM + if (this.dom.root.parentNode) { + this.dom.root.parentNode.removeChild(this.dom.root); + } + this.dom = null; - if (this.options.orientation == "left") { - x = iconOffset; - } else { - x = this.width - iconWidth - iconOffset; + // remove Activator + if (this.activator) { + this.activator.destroy(); + delete this.activator; } - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - if (this.groups[groupId].visible == true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] == true)) { - this.groups[groupId].drawIcon(x, y, this.svgElements, this.svg, iconWidth, iconHeight); - y += iconHeight + iconOffset; - } + // 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; - DOMutil.cleanupElements(this.svgElements); - this.iconsRemoved = false; - }; + // give all components the opportunity to cleanup + this.components.forEach(function (component) { + return component.destroy(); + }); - DataAxis.prototype._cleanupIcons = function () { - if (this.iconsRemoved == false) { - DOMutil.prepareElements(this.svgElements); - DOMutil.cleanupElements(this.svgElements); - this.iconsRemoved = true; - } + this.body = null; }; + /** - * Create the HTML DOM for the DataAxis + * Set a custom time bar + * @param {Date} time + * @param {int} id */ - DataAxis.prototype.show = function () { - this.hidden = false; - 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); - } + Core.prototype.setCustomTime = function (time, id) { + if (!this.customTime) { + throw new Error("Cannot get custom time: Custom time bar is not enabled"); } - if (!this.dom.lineContainer.parentNode) { - this.body.dom.backgroundHorizontal.appendChild(this.dom.lineContainer); - } + var barId = id || 0; + + this.components.forEach(function (element, index, components) { + if (element instanceof CustomTime && element.options.id === barId) { + element.setCustomTime(time); + } + }); }; /** - * Create the HTML DOM for the DataAxis + * Retrieve the current custom time. + * @return {Date} customTime + * @param {int} id */ - DataAxis.prototype.hide = function () { - this.hidden = true; - if (this.dom.frame.parentNode) { - this.dom.frame.parentNode.removeChild(this.dom.frame); + Core.prototype.getCustomTime = function (id) { + if (!this.customTime) { + throw new Error("Cannot get custom time: Custom time bar is not enabled"); } - if (this.dom.lineContainer.parentNode) { - this.dom.lineContainer.parentNode.removeChild(this.dom.lineContainer); - } - }; + var barId = id || 0, + customTime = this.customTime.getCustomTime(); - /** - * Set a range (start and end) - * @param end - * @param start - * @param end - */ - DataAxis.prototype.setRange = function (start, end) { - if (this.master == false && this.options.alignZeros == true && this.zeroCrossing != -1) { - if (start > 0) { - start = 0; + this.components.forEach(function (element, index, components) { + if (element instanceof CustomTime && element.options.id === barId) { + customTime = element.getCustomTime(); } - } - this.range.start = start; - this.range.end = end; + }); + + return customTime; }; /** - * Repaint the component - * @return {boolean} Returns true if the component is resized + * Add custom vertical bar + * @param {Date | String | Number} time A Date, unix timestamp, or + * ISO date string. Time point where the new bar should be placed + * @param {Number | String} ID of the new bar + * @return {Number | String} ID of the new bar */ - DataAxis.prototype.redraw = function () { - var resized = false; - var activeGroups = 0; - - // Make sure the line container adheres to the vertical scrolling. - this.dom.lineContainer.style.top = this.body.domProps.scrollTop + "px"; - - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - if (this.groups[groupId].visible == true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] == true)) { - activeGroups++; - } - } + Core.prototype.addCustomTime = function (time, id) { + if (!this.currentTime) { + throw new Error("Option showCurrentTime must be true"); } - if (this.amountOfGroups == 0 || activeGroups == 0) { - this.hide(); - } else { - this.show(); - this.height = Number(this.linegraphSVG.style.height.replace("px", "")); - - // svg offsetheight did not work in firefox and explorer... - this.dom.lineContainer.style.height = this.height + "px"; - this.width = this.options.visible == true ? Number(("" + this.options.width).replace("px", "")) : 0; - var props = this.props; - var frame = this.dom.frame; + if (time === undefined) { + throw new Error("Time parameter for the custom bar must be provided"); + } - // update classname - frame.className = "dataaxis"; + var ts = util.convert(time, "Date").valueOf(), + numIds, + customTime, + customBarId; - // calculate character width and height - this._calculateCharSize(); + // All bar IDs are kept in 1 array, mixed types + // Bar with ID 0 is the default bar. + if (!this.customBarIds || this.customBarIds.constructor !== Array) { + this.customBarIds = [0]; + } - var orientation = this.options.orientation; - var showMinorLabels = this.options.showMinorLabels; - var showMajorLabels = this.options.showMajorLabels; + // If the ID is not provided, generate one, otherwise just use it + if (id === undefined) { + numIds = this.customBarIds.filter(function (element) { + return util.isNumber(element); + }); - // determine the width and height of the elements for the axis - props.minorLabelHeight = showMinorLabels ? props.minorCharHeight : 0; - props.majorLabelHeight = showMajorLabels ? props.majorCharHeight : 0; + customBarId = numIds.length > 0 ? Math.max.apply(null, numIds) + 1 : 1; + } else { + // Check for duplicates + this.customBarIds.forEach(function (element) { + if (element === id) { + throw new Error("Custom time ID already exists"); + } + }); - 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; + customBarId = id; + } - // 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"; - this.props.width = this.body.domProps.left.width; - this.props.height = this.body.domProps.left.height; - } 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"; - this.props.width = this.body.domProps.right.width; - this.props.height = this.body.domProps.right.height; - } + this.customBarIds.push(customBarId); - resized = this._redrawLabels(); - resized = this._isResized() || resized; + customTime = new CustomTime(this.body, { + showCustomTime: true, + time: ts, + id: customBarId + }); - if (this.options.icons == true) { - this._redrawGroupIcons(); - } else { - this._cleanupIcons(); - } + this.components.push(customTime); + this.redraw(); - this._redrawTitle(orientation); - } - return resized; + return customBarId; }; /** - * Repaint major and minor text labels and vertical grid lines - * @private + * Remove previously added custom bar + * @param {int} id ID of the custom bar to be removed + * @return {boolean} True if the bar exists and is removed, false otherwise */ - DataAxis.prototype._redrawLabels = function () { - var resized = false; - DOMutil.prepareElements(this.DOMelements.lines); - DOMutil.prepareElements(this.DOMelements.labels); - - var orientation = this.options.orientation; - - // calculate range and step (step such that we have space for 7 characters per label) - var minimumStep = this.master ? this.props.majorCharHeight || 10 : this.stepPixelsForced; + Core.prototype.removeCustomTime = function (id) { + var me = this; - var step = new DataStep(this.range.start, this.range.end, minimumStep, this.dom.frame.offsetHeight, this.options.customRange[this.options.orientation], this.master == false && this.options.alignZeros // doess the step have to align zeros? only if not master and the options is on - ); + this.components.forEach(function (bar, index, components) { + if (bar instanceof CustomTime && bar.options.id === id) { + // Only the lines added by the user will be removed + if (bar.options.id !== 0) { + me.customBarIds.splice(me.customBarIds.indexOf(id), 1); + components.splice(index, 1); + bar.destroy(); + } + } + }); + }; - 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; + /** + * 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() || []; + }; - var amountOfSteps = this.height / stepPixels; - var stepDifference = 0; - // the slave axis needs to use the same horizontal lines as the master axis. - 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; - if (this.zeroCrossing != -1 && this.options.alignZeros == true) { - var zeroStepDifference = step.marginEnd / step.step - this.zeroCrossing; - if (zeroStepDifference > 0) { - for (var i = 0; i < zeroStepDifference; i++) { - step.next(); - } - } else if (zeroStepDifference < 0) { - for (var i = 0; i < -zeroStepDifference; i++) { - step.previous(); - } - } - } - } else { - amountOfSteps += 0.25; + /** + * Clear the Core. By Default, items, groups and options are cleared. + * Example usage: + * + * timeline.clear(); // clear items, groups, and options + * timeline.clear({options: true}); // clear options only + * + * @param {Object} [what] Optionally specify what to clear. By default: + * {items: true, groups: true, options: true} + */ + Core.prototype.clear = function (what) { + // clear items + if (!what || what.items) { + this.setItems(null); } - - this.valueAtZero = step.marginEnd; - var marginStartPos = 0; - - // do not draw the first label - var max = 1; - - // Get the number of decimal places - var decimals; - if (this.options.format[orientation] !== undefined) { - decimals = this.options.format[orientation].decimals; + // clear groups + if (!what || what.groups) { + this.setGroups(null); } - this.maxLabelSize = 0; - var y = 0; - while (max < Math.round(amountOfSteps)) { - step.next(); - y = Math.round(max * stepPixels); - marginStartPos = max * stepPixels; - var isMajor = step.isMajor(); - - if (this.options.showMinorLabels && isMajor == false || this.master == false && this.options.showMinorLabels == true) { - this._redrawLabel(y - 2, step.getCurrent(decimals), orientation, "yAxis minor", this.props.minorCharHeight); - } + // clear options of timeline and of each of the components + if (!what || what.options) { + this.components.forEach(function (component) { + return component.setOptions(component.defaultOptions); + }); - 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(decimals), 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); - } + this.setOptions(this.defaultOptions); // this will also do a redraw + } + }; - if (this.master == true && step.current == 0) { - this.zeroCrossing = max; - } + /** + * Set Core window such that it fits all items + * @param {Object} [options] Available options: + * `animate: boolean | number` + * If true (default), the range is animated + * smoothly to the new window. + * If a number, the number is taken as duration + * for the animation. Default duration is 500 ms. + */ + Core.prototype.fit = function (options) { + var range = this._getDataRange(); - max++; + // skip range set if there is no start and end date + if (range.start === null && range.end === null) { + return; } - if (this.master == false) { - this.conversionFactor = y / (this.valueAtZero - step.current); - } else { - this.conversionFactor = this.dom.frame.offsetHeight / step.marginRange; - } + var animate = options && options.animate !== undefined ? options.animate : true; + this.range.setRange(range.start, range.end, animate); + }; - // Note that title is rotated, so we're using the height, not width! - var titleWidth = 0; - if (this.options.title[orientation] !== undefined && this.options.title[orientation].text !== undefined) { - titleWidth = this.props.titleCharHeight; - } - var offset = this.options.icons == true ? Math.max(this.options.iconWidth, titleWidth) + this.options.labelOffsetX + 15 : titleWidth + this.options.labelOffsetX + 15; + /** + * Calculate the data range of the items and applies a 5% window around it. + * @returns {{start: Date | null, end: Date | null}} + * @protected + */ + Core.prototype._getDataRange = function () { + // apply the data range as range + var dataRange = this.getItemRange(); - // this will resize the yAxis to accommodate 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(); - resized = 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(); - resized = true; - } else { - DOMutil.cleanupElements(this.DOMelements.lines); - DOMutil.cleanupElements(this.DOMelements.labels); - resized = false; + // 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); } - return resized; - }; - - DataAxis.prototype.convertValue = function (value) { - var invertedValue = this.valueAtZero - value; - var convertedValue = invertedValue * this.conversionFactor; - return convertedValue; + return { + start: start, + end: end + }; }; /** - * Create a label for the axis at position x - * @private - * @param y - * @param text - * @param orientation - * @param className - * @param characterHeight + * Set the visible window. Both parameters are optional, you can change only + * start or only end. Syntax: + * + * TimeLine.setWindow(start, end) + * TimeLine.setWindow(start, end, options) + * 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 + * @param {Object} [options] Available options: + * `animate: boolean | number` + * If true (default), the range is animated + * smoothly to the new window. + * If a number, the number is taken as duration + * for the animation. Default duration is 500 ms. */ - 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"; + Core.prototype.setWindow = function (start, end, options) { + var animate; + if (arguments.length == 1) { + var range = arguments[0]; + animate = range.animate !== undefined ? range.animate : true; + this.range.setRange(range.start, range.end, animate); } else { - label.style.right = "-" + this.options.labelOffsetX + "px"; - label.style.textAlign = "left"; + animate = options && options.animate !== undefined ? options.animate : true; + this.range.setRange(start, end, animate); } + }; - label.style.top = y - 0.5 * characterHeight + this.options.labelOffsetY + "px"; + /** + * Move the window such that given time is centered on screen. + * @param {Date | Number | String} time + * @param {Object} [options] Available options: + * `animate: boolean | number` + * If true (default), the range is animated + * smoothly to the new window. + * If a number, the number is taken as duration + * for the animation. Default duration is 500 ms. + */ + Core.prototype.moveTo = function (time, options) { + var interval = this.range.end - this.range.start; + var t = util.convert(time, "Date").valueOf(); - text += ""; + var start = t - interval / 2; + var end = t + interval / 2; + var animate = options && options.animate !== undefined ? options.animate : true; - var largestWidth = Math.max(this.props.majorCharWidth, this.props.minorCharWidth); - if (this.maxLabelSize < text.length * largestWidth) { - this.maxLabelSize = text.length * largestWidth; - } + this.range.setRange(start, end, animate); }; /** - * Create a minor line for the axis at position y - * @param y - * @param orientation - * @param className - * @param offset - * @param width + * Get the visible window + * @return {{start: Date, end: Date}} Visible range */ - DataAxis.prototype._redrawLine = function (y, orientation, className, offset, width) { - if (this.master == true) { - var line = DOMutil.getDOMElement("div", this.DOMelements.lines, this.dom.lineContainer); //this.dom.redundant.lines.shift(); - line.className = className; - line.innerHTML = ""; - - if (orientation == "left") { - line.style.left = this.width - offset + "px"; - } else { - line.style.right = this.width - offset + "px"; - } + Core.prototype.getWindow = function () { + var range = this.range.getRange(); + return { + start: new Date(range.start), + end: new Date(range.end) + }; + }; - line.style.width = width + "px"; - line.style.top = y + "px"; - } + /** + * Force a redraw. Can be overridden by implementations of Core + */ + Core.prototype.redraw = function () { + this._redraw(); }; /** - * Create a title for the axis - * @private - * @param orientation + * Redraw for internal use. Redraws all components. See also the public + * method redraw. + * @protected */ - DataAxis.prototype._redrawTitle = function (orientation) { - DOMutil.prepareElements(this.DOMelements.title); + Core.prototype._redraw = function () { + var resized = false; + var options = this.options; + var props = this.props; + var dom = this.dom; - // Check if the title is defined for this axes - if (this.options.title[orientation] !== undefined && this.options.title[orientation].text !== undefined) { - var title = DOMutil.getDOMElement("div", this.DOMelements.title, this.dom.frame); - title.className = "yAxis title " + orientation; - title.innerHTML = this.options.title[orientation].text; + if (!dom) return; // when destroyed - // Add style - if provided - if (this.options.title[orientation].style !== undefined) { - util.addCssText(title, this.options.title[orientation].style); - } + DateUtil.updateHiddenDates(this.body, this.options.hiddenDates); - if (orientation == "left") { - title.style.left = this.props.titleCharHeight + "px"; - } else { - title.style.right = this.props.titleCharHeight + "px"; - } + // 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"); + } - title.style.width = this.height + "px"; + // 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; + + // workaround for a bug in IE: the clientWidth of an element with + // a height:0px and overflow:hidden is not calculated and always has value 0 + if (dom.centerContainer.clientHeight === 0) { + props.border.left = props.border.top; + props.border.right = props.border.left; + } + if (dom.root.clientHeight === 0) { + borderRootWidth = borderRootHeight; } - // we need to clean up in case we did not use all elements. - DOMutil.cleanupElements(this.DOMelements.title); - }; + // 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; - /** - * Determine the size of text on the axis (both major and minor axis). - * The size is calculated only once and then cached in this.props. - * @private - */ - DataAxis.prototype._calculateCharSize = function () { - // determine the char width and height on the minor axis - if (!("minorCharHeight" in this.props)) { - var textMinor = document.createTextNode("0"); - var measureCharMinor = document.createElement("div"); - measureCharMinor.className = "yAxis minor measure"; - measureCharMinor.appendChild(textMinor); - this.dom.frame.appendChild(measureCharMinor); + // calculate the 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; - this.props.minorCharHeight = measureCharMinor.clientHeight; - this.props.minorCharWidth = measureCharMinor.clientWidth; + // resize the panels + dom.background.style.height = props.background.height + "px"; + dom.backgroundVertical.style.height = props.background.height + "px"; + dom.backgroundHorizontal.style.height = props.centerContainer.height + "px"; + dom.centerContainer.style.height = props.centerContainer.height + "px"; + dom.leftContainer.style.height = props.leftContainer.height + "px"; + dom.rightContainer.style.height = props.rightContainer.height + "px"; - this.dom.frame.removeChild(measureCharMinor); - } + 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"; - 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); + // reposition the panels + dom.background.style.left = "0"; + dom.background.style.top = "0"; + dom.backgroundVertical.style.left = props.left.width + props.border.left + "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"; - this.props.majorCharHeight = measureCharMajor.clientHeight; - this.props.majorCharWidth = measureCharMajor.clientWidth; + // 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(); - this.dom.frame.removeChild(measureCharMajor); + // 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"; - if (!("titleCharHeight" in this.props)) { - var textTitle = document.createTextNode("0"); - var measureCharTitle = document.createElement("div"); - measureCharTitle.className = "yAxis title measure"; - measureCharTitle.appendChild(textTitle); - this.dom.frame.appendChild(measureCharTitle); - - this.props.titleCharHeight = measureCharTitle.clientHeight; - this.props.titleCharWidth = measureCharTitle.clientWidth; + // 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; - this.dom.frame.removeChild(measureCharTitle); + // redraw all components + this.components.forEach(function (component) { + resized = component.redraw() || resized; + }); + if (resized) { + // keep repainting until all sizes are settled + var MAX_REDRAWS = 3; // maximum number of consecutive redraws + if (this.redrawCount < MAX_REDRAWS) { + this.redrawCount++; + this._redraw(); + } else { + console.log("WARNING: infinite loop in redraw?"); + } + this.redrawCount = 0; } + + this.emit("finishedRedraw"); }; - module.exports = DataAxis; + // TODO: deprecated since version 1.1.0, remove some day + Core.prototype.repaint = function () { + throw new Error("Function repaint is deprecated. Use redraw instead."); + }; -/***/ }, -/* 45 */ -/***/ function(module, exports, __webpack_require__) { + /** + * Set a current time. This can be used for example to ensure that a client's + * time is synchronized with a shared server time. + * Only applicable when option `showCurrentTime` is true. + * @param {Date | String | Number} time A Date, unix timestamp, or + * ISO date string. + */ + Core.prototype.setCurrentTime = function (time) { + if (!this.currentTime) { + throw new Error("Option showCurrentTime must be true"); + } - "use strict"; + this.currentTime.setCurrentTime(time); + }; /** - * @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 + * Get the current time. + * Only applicable when option `showCurrentTime` is true. + * @return {Date} Returns the current time. */ - function DataStep(start, end, minimumStep, containerHeight, customRange, alignZeros) { - // variables - this.current = 0; - - this.autoScale = true; - this.stepIndex = 0; - this.step = 1; - this.scale = 1; - - this.marginStart; - this.marginEnd; - this.deadSpace = 0; - - this.majorSteps = [1, 2, 5, 10]; - this.minorSteps = [0.25, 0.5, 1, 2]; - - this.alignZeros = alignZeros; - - this.setRange(start, end, minimumStep, containerHeight, customRange); - } - + Core.prototype.getCurrentTime = function () { + if (!this.currentTime) { + throw new Error("Option showCurrentTime must be true"); + } + return this.currentTime.getCurrentTime(); + }; /** - * 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 + * 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 */ - DataStep.prototype.setRange = function (start, end, minimumStep, containerHeight, customRange) { - this._start = customRange.min === undefined ? start : customRange.min; - this._end = customRange.max === undefined ? end : customRange.max; - - if (this._start == this._end) { - this._start -= 0.75; - this._end += 1; - } - - if (this.autoScale == true) { - this.setMinimumStep(minimumStep, containerHeight); - } + // TODO: move this function to Range + Core.prototype._toTime = function (x) { + return DateUtil.toTime(this, x, this.props.center.width); + }; - this.setFirst(customRange); + /** + * 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) { + return DateUtil.toTime(this, x, this.props.root.width); + //var conversion = this.range.conversion(this.props.root.width); + //return new Date(x / conversion.scale + conversion.offset); }; /** - * Automatically determine the scale that bests fits the provided minimum step - * @param {Number} [minimumStep] The minimum step size in milliseconds + * 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 */ - 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); + // TODO: move this function to Range + Core.prototype._toScreen = function (time) { + return DateUtil.toScreen(this, time, this.props.center.width); + }; - var minorStepIdx = -1; - var magnitudefactor = Math.pow(10, orderOfMagnitude); - var start = 0; - if (orderOfMagnitude < 0) { - start = orderOfMagnitude; - } - var solutionFound = false; - for (var i = start; Math.abs(i) <= Math.abs(orderOfMagnitude); i++) { - magnitudefactor = Math.pow(10, i); - for (var j = 0; j < this.minorSteps.length; j++) { - var stepSize = magnitudefactor * this.minorSteps[j]; - if (stepSize >= minimumStepValue) { - solutionFound = true; - minorStepIdx = j; - break; - } - } - if (solutionFound == true) { - break; - } - } - this.stepIndex = minorStepIdx; - this.scale = magnitudefactor; - this.step = magnitudefactor * this.minorSteps[minorStepIdx]; + /** + * 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) { + return DateUtil.toScreen(this, time, this.props.root.width); + //var conversion = this.range.conversion(this.props.root.width); + //return (time.valueOf() - conversion.offset) * conversion.scale; }; - /** - * Round the current date to the first minor date value - * This must be executed once when the current date is set to start Date + * Initialize watching when option autoResize is true + * @private */ - DataStep.prototype.setFirst = function (customRange) { - if (customRange === undefined) { - customRange = {}; + Core.prototype._initAutoResize = function () { + if (this.options.autoResize == true) { + this._startAutoResize(); + } else { + this._stopAutoResize(); } + }; - 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; - - // if we need to align the zero's we need to make sure that there is a zero to use. - if (this.alignZeros == true && (this.marginEnd - this.marginStart) % this.step != 0) { - this.marginEnd += this.marginEnd % this.step; - } + /** + * 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.deadSpace = this.roundToMinor(niceEnd) - niceEnd + this.roundToMinor(niceStart) - niceStart; - this.marginRange = this.marginEnd - this.marginStart; + this._stopAutoResize(); + this._onResize = function () { + if (me.options.autoResize != true) { + // stop watching when the option autoResize is changed to false + me._stopAutoResize(); + return; + } - this.current = this.marginEnd; - }; + if (me.dom.root) { + // check whether the frame is resized + // Note: we compare offsetWidth here, not clientWidth. For some reason, + // IE does not restore the clientWidth from 0 to the actual width after + // changing the timeline's container display style from none to visible + if (me.dom.root.offsetWidth != me.props.lastWidth || me.dom.root.offsetHeight != me.props.lastHeight) { + me.props.lastWidth = me.dom.root.offsetWidth; + me.props.lastHeight = me.dom.root.offsetHeight; - 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; - } - }; + me.emit("change"); + } + } + }; + // add event listener to window resize + util.addEventListener(window, "resize", this._onResize); - /** - * Check if the there is a next step - * @return {boolean} true if the current date has not passed the end date - */ - DataStep.prototype.hasNext = function () { - return this.current >= this.marginStart; + this.watchTimer = setInterval(this._onResize, 1000); }; /** - * Do the next step + * Stop watching for a resize of the frame. + * @private */ - DataStep.prototype.next = function () { - var prev = this.current; - this.current -= this.step; - - // safety mechanism: if current time is still unchanged, move to the end - if (this.current == prev) { - this.current = this._end; + 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; }; /** - * Do the next step + * Apply a scrollTop + * @param {Number} scrollTop + * @returns {Number} scrollTop Returns the applied scrollTop + * @private */ - DataStep.prototype.previous = function () { - this.current += this.step; - this.marginEnd += this.step; - this.marginRange = this.marginEnd - this.marginStart; + Core.prototype._setScrollTop = function (scrollTop) { + this.props.scrollTop = scrollTop; + this._updateScrollTop(); + return this.props.scrollTop; }; - - /** - * Get the current datetime - * @return {String} current The current date + * Update the current scrollTop when the height of the containers has been changed + * @returns {Number} scrollTop Returns the applied scrollTop + * @private */ - DataStep.prototype.getCurrent = function (decimals) { - // prevent round-off errors when close to zero - var current = Math.abs(this.current) < this.step / 2 ? 0 : this.current; - var toPrecision = "" + Number(current).toPrecision(5); - - // If decimals is specified, then limit or extend the string as required - if (decimals !== undefined && !isNaN(Number(decimals))) { - // If string includes exponent, then we need to add it to the end - var exp = ""; - var index = toPrecision.indexOf("e"); - if (index != -1) { - // Get the exponent - exp = toPrecision.slice(index); - // Remove the exponent in case we need to zero-extend - toPrecision = toPrecision.slice(0, index); - } - index = Math.max(toPrecision.indexOf(","), toPrecision.indexOf(".")); - if (index === -1) { - // No decimal found - if we want decimals, then we need to add it - if (decimals !== 0) { - toPrecision += "."; - } - // Calculate how long the string should be - index = toPrecision.length + decimals; - } else if (decimals !== 0) { - // Calculate how long the string should be - accounting for the decimal place - index += decimals + 1; - } - if (index > toPrecision.length) { - // We need to add zeros! - for (var cnt = index - toPrecision.length; cnt > 0; cnt--) { - toPrecision += "0"; - } - } else { - // we need to remove characters - toPrecision = toPrecision.slice(0, index); - } - // Add the exponent if there is one - toPrecision += exp; - } else { - if (toPrecision.indexOf(",") != -1 || toPrecision.indexOf(".") != -1) { - // If no decimal is specified, and there are decimal places, remove trailing zeros - 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; - } - } + 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; } - return toPrecision; + // 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; }; /** - * 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 current scrollTop + * @returns {number} scrollTop + * @private */ - DataStep.prototype.isMajor = function () { - return this.current % (this.scale * this.majorSteps[this.stepIndex]) == 0; + Core.prototype._getScrollTop = function () { + return this.props.scrollTop; }; - module.exports = DataStep; + module.exports = Core; /***/ }, -/* 46 */ +/* 47 */ /***/ function(module, exports, __webpack_require__) { "use strict"; - var util = __webpack_require__(1); - var DOMutil = __webpack_require__(6); - var Line = __webpack_require__(47); - var Bar = __webpack_require__(49); - var Points = __webpack_require__(48); - - /** - * /** - * @param {object} group | the object of the group from the dataset - * @param {string} groupId | ID of the group - * @param {object} options | the default options - * @param {array} groupsUsingDefaultStyles | this array has one entree. - * It is passed as an array so it is passed by reference. - * It enumerates through the default styles - * @constructor - */ - 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 Hammer = __webpack_require__(45); /** - * this loads a reference to all items in this group into this group. - * @param {array} items + * Register a touch event, taking place before a gesture + * @param {Hammer} hammer A hammer instance + * @param {function} callback Callback, called as callback(event) */ - 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; - }); + exports.onTouch = function (hammer, callback) { + callback.inputHandler = function (event) { + if (event.isFirst) { + callback(event); } - } else { - this.itemsData = []; - } - }; - + }; - /** - * this is used for plotting barcharts, this way, we only have to calculate it once. - * @param pos - */ - GraphGroup.prototype.setZeroPosition = function (pos) { - this.zeroPosition = pos; + hammer.on("hammer.input", callback.inputHandler); }; - /** - * set the options of the graph group over the default options. - * @param options + * Register a release event, taking place after a gesture + * @param {Hammer} hammer A hammer instance + * @param {function} callback Callback, called as callback(event) */ - 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; - } else { - this.options.catmullRom.parametrization = "centripetal"; - this.options.catmullRom.alpha = 0.5; - } - } - } + exports.onRelease = function (hammer, callback) { + callback.inputHandler = function (event) { + if (event.isFinal) { + callback(event); } - } + }; - if (this.options.style == "line") { - this.type = new Line(this.id, this.options); - } else if (this.options.style == "bar") { - this.type = new Bar(this.id, this.options); - } else if (this.options.style == "points") { - this.type = new Points(this.id, this.options); - } + return hammer.on("hammer.input", callback.inputHandler); }; - /** - * this updates the current group class with the latest group dataset entree, used in _updateGroup in linegraph - * @param group + * Unregister a touch event, taking place before a gesture + * @param {Hammer} hammer A hammer instance + * @param {function} callback Callback, called as callback(event) */ - 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.style = group.style; - this.setOptions(group.options); + exports.offTouch = function (hammer, callback) { + hammer.off("hammer.input", callback.inputHandler); }; - /** - * draw the icon for the legend. - * - * @param x - * @param y - * @param JSONcontainer - * @param SVGcontainer - * @param iconWidth - * @param iconHeight + * Unregister a release event, taking place before a gesture + * @param {Hammer} hammer A hammer instance + * @param {function} callback Callback, called as callback(event) */ - 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); - if (this.style !== undefined) { - path.setAttributeNS(null, "style", this.style); - } - - path.setAttributeNS(null, "d", "M" + x + "," + y + " L" + (x + iconWidth) + "," + y + ""); - if (this.options.shaded.enabled == true) { - fillPath = DOMutil.getSVGElement("path", JSONcontainer, SVGcontainer); - if (this.options.shaded.orientation == "top") { - fillPath.setAttributeNS(null, "d", "M" + x + ", " + (y - fillHeight) + "L" + x + "," + y + " L" + (x + iconWidth) + "," + y + " L" + (x + iconWidth) + "," + (y - fillHeight)); - } else { - fillPath.setAttributeNS(null, "d", "M" + x + "," + y + " " + "L" + x + "," + (y + fillHeight) + " " + "L" + (x + iconWidth) + "," + (y + fillHeight) + "L" + (x + iconWidth) + "," + y); - } - fillPath.setAttributeNS(null, "class", this.className + " iconFill"); - } - - if (this.options.drawPoints.enabled == true) { - DOMutil.drawPoint(x + 0.5 * iconWidth, y, this, JSONcontainer, SVGcontainer); - } - } else { - var barWidth = Math.round(0.3 * iconWidth); - var bar1Height = Math.round(0.4 * iconHeight); - var bar2Height = Math.round(0.75 * iconHeight); - - var offset = Math.round((iconWidth - 2 * barWidth) / 3); - - DOMutil.drawBar(x + 0.5 * barWidth + offset, y + fillHeight - bar1Height - 1, barWidth, bar1Height, this.className + " bar", JSONcontainer, SVGcontainer); - DOMutil.drawBar(x + 1.5 * barWidth + offset + 2, y + fillHeight - bar2Height - 1, barWidth, bar2Height, this.className + " bar", JSONcontainer, SVGcontainer); - } - }; + exports.offRelease = exports.offTouch; +/***/ }, +/* 48 */ +/***/ function(module, exports, __webpack_require__) { - /** - * return the legend entree for this group. - * - * @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 }; - }; + "use strict"; - GraphGroup.prototype.getYRange = function (groupData) { - return this.type.getYRange(groupData); + // English + exports.en = { + current: "current", + time: "time" }; + exports.en_EN = exports.en; + exports.en_US = exports.en; - GraphGroup.prototype.draw = function (dataset, group, framework) { - this.type.draw(dataset, group, framework); + // Dutch + exports.nl = { + custom: "aangepaste", + time: "tijd" }; - - - module.exports = GraphGroup; + exports.nl_NL = exports.nl; + exports.nl_BE = exports.nl; /***/ }, -/* 47 */ +/* 49 */ /***/ function(module, exports, __webpack_require__) { "use strict"; @@ -22031,8 +21549,8 @@ return /******/ (function(modules) { // webpackBootstrap /** * Created by Alex on 11/11/2014. */ - var DOMutil = __webpack_require__(6); - var Points = __webpack_require__(48); + var DOMutil = __webpack_require__(2); + var Points = __webpack_require__(51); function Line(groupId, options) { this.groupId = groupId; @@ -22238,7 +21756,7 @@ return /******/ (function(modules) { // webpackBootstrap module.exports = Line; /***/ }, -/* 48 */ +/* 50 */ /***/ function(module, exports, __webpack_require__) { "use strict"; @@ -22246,85 +21764,33 @@ return /******/ (function(modules) { // webpackBootstrap /** * Created by Alex on 11/11/2014. */ - var DOMutil = __webpack_require__(6); + var DOMutil = __webpack_require__(2); + var Points = __webpack_require__(51); - function Points(groupId, options) { + function Bargraph(groupId, options) { this.groupId = groupId; this.options = options; } - - Points.prototype.getYRange = function (groupData) { - 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; - } - return { min: yMin, max: yMax, yAxisOrientation: this.options.yAxisOrientation }; - }; - - Points.prototype.draw = function (dataset, group, framework, offset) { - Points.draw(dataset, group, framework, offset); - }; - - /** - * draw the data points - * - * @param {Array} dataset - * @param {Object} JSONcontainer - * @param {Object} svg | SVG DOM element - * @param {GraphGroup} group - * @param {Number} [offset] - */ - Points.draw = function (dataset, group, framework, offset) { - if (offset === undefined) { - offset = 0; - } - for (var i = 0; i < dataset.length; i++) { - DOMutil.drawPoint(dataset[i].x + offset, dataset[i].y, group, framework.svgElements, framework.svg, dataset[i].label); - } - }; - - - module.exports = Points; - -/***/ }, -/* 49 */ -/***/ function(module, exports, __webpack_require__) { - - "use strict"; - - /** - * Created by Alex on 11/11/2014. - */ - var DOMutil = __webpack_require__(6); - var Points = __webpack_require__(48); - - function Bargraph(groupId, options) { - this.groupId = groupId; - this.options = options; - } - - Bargraph.prototype.getYRange = function (groupData) { - if (this.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; - } - return { min: yMin, max: yMax, yAxisOrientation: this.options.yAxisOrientation }; - } else { - var barCombinedData = []; - for (var j = 0; j < groupData.length; j++) { - barCombinedData.push({ - x: groupData[j].x, - y: groupData[j].y, - groupId: this.groupId - }); - } - return barCombinedData; + Bargraph.prototype.getYRange = function (groupData) { + if (this.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; + } + return { min: yMin, max: yMax, yAxisOrientation: this.options.yAxisOrientation }; + } else { + var barCombinedData = []; + for (var j = 0; j < groupData.length; j++) { + barCombinedData.push({ + x: groupData[j].x, + y: groupData[j].y, + groupId: this.groupId + }); + } + return barCombinedData; } }; @@ -22534,10217 +22000,10193 @@ return /******/ (function(modules) { // webpackBootstrap module.exports = Bargraph; /***/ }, -/* 50 */ +/* 51 */ /***/ function(module, exports, __webpack_require__) { "use strict"; - var util = __webpack_require__(1); - var DOMutil = __webpack_require__(6); - var Component = __webpack_require__(23); - /** - * Legend for Graph2d + * Created by Alex on 11/11/2014. */ - function Legend(body, options, side, linegraphOptions) { - 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); - this.linegraphOptions = linegraphOptions; - - this.svgElements = {}; - this.dom = {}; - this.groups = {}; - this.amountOfGroups = 0; - this._create(); + var DOMutil = __webpack_require__(2); - this.setOptions(options); + function Points(groupId, options) { + this.groupId = groupId; + this.options = options; } - Legend.prototype = new Component(); - - Legend.prototype.clear = function () { - this.groups = {}; - this.amountOfGroups = 0; - }; - Legend.prototype.addGroup = function (label, graphOptions) { - if (!this.groups.hasOwnProperty(label)) { - this.groups[label] = graphOptions; + Points.prototype.getYRange = function (groupData) { + 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; } - this.amountOfGroups += 1; + return { min: yMin, max: yMax, yAxisOrientation: this.options.yAxisOrientation }; }; - Legend.prototype.updateGroup = function (label, graphOptions) { - this.groups[label] = graphOptions; + Points.prototype.draw = function (dataset, group, framework, offset) { + Points.draw(dataset, group, framework, offset); }; - Legend.prototype.removeGroup = function (label) { - if (this.groups.hasOwnProperty(label)) { - delete this.groups[label]; - this.amountOfGroups -= 1; + /** + * draw the data points + * + * @param {Array} dataset + * @param {Object} JSONcontainer + * @param {Object} svg | SVG DOM element + * @param {GraphGroup} group + * @param {Number} [offset] + */ + Points.draw = function (dataset, group, framework, offset) { + if (offset === undefined) { + offset = 0; + } + for (var i = 0; i < dataset.length; i++) { + DOMutil.drawPoint(dataset[i].x + offset, dataset[i].y, group, framework.svgElements, framework.svg, dataset[i].label); } }; - 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"; + module.exports = Points; - 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.svg.style.height = "100%"; +/***/ }, +/* 52 */ +/***/ function(module, exports, __webpack_require__) { - this.dom.frame.appendChild(this.svg); - this.dom.frame.appendChild(this.dom.textArea); + "use strict"; + + var SelectionMixin = __webpack_require__(74); + var ManipulationMixin = __webpack_require__(75); + var NavigationMixin = __webpack_require__(76); + var HierarchicalLayoutMixin = __webpack_require__(77); + + /** + * 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]; + } + } }; + /** - * Hide the component from the DOM + * removes a mixin from the network object. + * + * @param {Object} sourceVariable | this object has to contain functions. + * @private */ - Legend.prototype.hide = function () { - // remove the frame containing the items - if (this.dom.frame.parentNode) { - this.dom.frame.parentNode.removeChild(this.dom.frame); + exports._clearMixin = function (sourceVariable) { + for (var mixinFunction in sourceVariable) { + if (sourceVariable.hasOwnProperty(mixinFunction)) { + this[mixinFunction] = undefined; + } } }; + /** - * Show the component in the DOM (when not already visible). - * @return {Boolean} changed + * Mixin the physics system and initialize the parameters required. + * + * @private */ - Legend.prototype.show = function () { - // show frame containing the items - if (!this.dom.frame.parentNode) { - this.body.dom.center.appendChild(this.dom.frame); + exports._loadPhysicsSystem = function () { + this._loadMixin(PhysicsMixin); + this._loadSelectedForceSolver(); + if (this.constants.configurePhysics == true) { + this._loadPhysicsConfiguration(); + } else { + this._cleanupPhysicsConfiguration(); } }; - Legend.prototype.setOptions = function (options) { - var fields = ["enabled", "orientation", "icons", "left", "right"]; - util.selectiveDeepExtend(fields, this.options, options); + + + + /** + * Mixin the selection system and initialize the parameters required + * + * @private + */ + exports._loadSelectionSystem = function () { + this.selectionObj = { nodes: {}, edges: {} }; + + this._loadMixin(SelectionMixin); }; - Legend.prototype.redraw = function () { - var activeGroups = 0; - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - if (this.groups[groupId].visible == true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] == true)) { - activeGroups++; + + /** + * 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"; + if (this.editMode == true) { + this.manipulationDiv.style.display = "block"; + } else { + this.manipulationDiv.style.display = "none"; } + this.frame.appendChild(this.manipulationDiv); } - } - if (this.options[this.side].visible == false || this.amountOfGroups == 0 || this.options.enabled == false || activeGroups == 0) { - this.hide(); - } else { - this.show(); - if (this.options[this.side].position == "top-left" || this.options[this.side].position == "bottom-left") { - this.dom.frame.style.left = "4px"; - this.dom.frame.style.textAlign = "left"; - this.dom.textArea.style.textAlign = "left"; - this.dom.textArea.style.left = this.options.iconSize + 15 + "px"; - this.dom.textArea.style.right = ""; - this.svg.style.left = 0 + "px"; - this.svg.style.right = ""; - } else { - this.dom.frame.style.right = "4px"; - this.dom.frame.style.textAlign = "right"; - this.dom.textArea.style.textAlign = "right"; - this.dom.textArea.style.right = this.options.iconSize + 15 + "px"; - this.dom.textArea.style.left = ""; - this.svg.style.right = 0 + "px"; - this.svg.style.left = ""; + if (this.editModeDiv === undefined) { + this.editModeDiv = document.createElement("div"); + this.editModeDiv.className = "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.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 { - var scrollableHeight = this.body.domProps.center.height - this.body.domProps.centerContainer.height; - this.dom.frame.style.bottom = 4 + scrollableHeight + Number(this.body.dom.center.style.top.replace("px", "")) + "px"; - this.dom.frame.style.top = ""; + if (this.closeDiv === undefined) { + this.closeDiv = document.createElement("div"); + this.closeDiv.className = "network-manipulation-closeDiv"; + this.closeDiv.style.display = this.manipulationDiv.style.display; + this.frame.appendChild(this.closeDiv); } - 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(); - } + // load the manipulation functions + this._loadMixin(ManipulationMixin); - var content = ""; - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - if (this.groups[groupId].visible == true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] == true)) { - content += this.groups[groupId].content + "
"; - } - } + // create the manipulator toolbar + this._createManipulatorBar(); + } else { + if (this.manipulationDiv !== undefined) { + // removes all the bindings and overloads + this._createManipulatorBar(); + + // remove the manipulation divs + this.frame.removeChild(this.manipulationDiv); + this.frame.removeChild(this.editModeDiv); + this.frame.removeChild(this.closeDiv); + + this.manipulationDiv = undefined; + this.editModeDiv = undefined; + this.closeDiv = undefined; + // remove the mixin functions + this._clearMixin(ManipulationMixin); } - this.dom.textArea.innerHTML = content; - this.dom.textArea.style.lineHeight = 0.75 * this.options.iconSize + this.options.iconSpacing + "px"; } }; - Legend.prototype.drawLegendIcons = function () { - if (this.dom.frame.parentNode) { - DOMutil.prepareElements(this.svgElements); - var padding = window.getComputedStyle(this.dom.frame).paddingTop; - var iconOffset = Number(padding.replace("px", "")); - var x = iconOffset; - var iconWidth = this.options.iconSize; - var iconHeight = 0.75 * this.options.iconSize; - var y = iconOffset + 0.5 * iconHeight + 3; - - this.svg.style.width = iconWidth + 5 + iconOffset + "px"; - - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - if (this.groups[groupId].visible == true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] == true)) { - this.groups[groupId].drawIcon(x, y, this.svgElements, this.svg, iconWidth, iconHeight); - y += iconHeight + this.options.iconSpacing; - } - } - } - DOMutil.cleanupElements(this.svgElements); + /** + * 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(); } }; - module.exports = Legend; + + /** + * Mixin the hierarchical layout system. + * + * @private + */ + exports._loadHierarchySystem = function () { + this._loadMixin(HierarchicalLayoutMixin); + }; /***/ }, -/* 51 */ +/* 53 */ /***/ function(module, exports, __webpack_require__) { "use strict"; - var Emitter = __webpack_require__(11); - var Hammer = __webpack_require__(19); - var keycharm = __webpack_require__(37); + var keycharm = __webpack_require__(63); + var Emitter = __webpack_require__(62); + var Hammer = __webpack_require__(45); var util = __webpack_require__(1); - var hammerUtil = __webpack_require__(22); - var DataSet = __webpack_require__(7); - var DataView = __webpack_require__(9); - var dotparser = __webpack_require__(52); - var gephiParser = __webpack_require__(53); - var Groups = __webpack_require__(54); - var Images = __webpack_require__(55); - var Node = __webpack_require__(56); - var Edge = __webpack_require__(57); - var Popup = __webpack_require__(58); - var MixinLoader = __webpack_require__(59); - var Activator = __webpack_require__(36); - var locales = __webpack_require__(64); - // Load custom shapes into CanvasRenderingContext2D - __webpack_require__(65); + /** + * 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(); + } + }); + + if (this.keycharm !== undefined) { + this.keycharm.destroy(); + } + this.keycharm = keycharm(); + + // keycharm listener only bounded when active) + this.escListener = this.deactivate.bind(this); + } - var PhysicsEngine = __webpack_require__(66).PhysicsEngine; - var ClusterEngine = __webpack_require__(73).ClusterEngine; - var CanvasRenderer = __webpack_require__(74).CanvasRenderer; - var Canvas = __webpack_require__(75).Canvas; - var View = __webpack_require__(76).View; - var TouchEventHandler = __webpack_require__(77).TouchEventHandler; + // turn into an event emitter + Emitter(Activator.prototype); + // The currently active activator + Activator.current = null; /** - * @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 + * Destroy the activator. Cleans up all created DOM and event listeners */ - function Network(container, data, options) { - if (!(this instanceof Network)) { - throw new SyntaxError("Constructor must be called with the new operator"); + 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._initializeMixinLoaders(); + this.active = true; + this.dom.overlay.style.display = "none"; + util.addClassName(this.dom.container, "vis-active"); + this.emit("change"); + this.emit("activate"); - // render and calculation settings - this.initializing = true; + // ugly hack: bind ESC after emitting the events, as the Network rebinds all + // keyboard events on a 'change' event + this.keycharm.bind("esc", this.escListener); + }; - this.triggerFunctions = { add: null, edit: null, editEdge: null, connect: null, del: null }; + /** + * 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"); + this.keycharm.unbind("esc", this.escListener); - var customScalingFunction = function (min, max, total, value) { - if (max == min) { - return 0.5; - } else { - var scale = 1 / (max - min); - return Math.max(0, (value - min) * scale); - } - }; + this.emit("change"); + this.emit("deactivate"); + }; - // set constant values - this.defaultOptions = { - nodes: { - customScalingFunction: customScalingFunction, - mass: 1, - radiusMin: 10, - radiusMax: 30, - radius: 10, - shape: "ellipse", - image: undefined, - widthMin: 16, // px - widthMax: 64, // px - fontColor: "black", - fontSize: 14, // px - fontFace: "verdana", - fontFill: undefined, - fontStrokeWidth: 0, // px - fontStrokeColor: "#ffffff", - fontDrawThreshold: 3, - scaleFontWithValue: false, - fontSizeMin: 14, - fontSizeMax: 30, - fontSizeMaxVisible: 30, - value: 1, - level: -1, - color: { - border: "#2B7CE9", - background: "#97C2FC", - highlight: { - border: "#2B7CE9", - background: "#D2E5FF" - }, - hover: { - border: "#2B7CE9", - background: "#D2E5FF" - } - }, - group: undefined, - borderWidth: 1, - borderWidthSelected: undefined - }, - edges: { - customScalingFunction: customScalingFunction, - widthMin: 1, // - widthMax: 15, // - width: 1, - widthSelectionMultiplier: 2, - hoverWidth: 1.5, - value: 1, - style: "line", - color: { - color: "#848484", - highlight: "#848484", - hover: "#848484" - }, - opacity: 1, - fontColor: "#343434", - fontSize: 14, // px - fontFace: "arial", - fontFill: "white", - fontStrokeWidth: 0, // px - fontStrokeColor: "white", - labelAlignment: "horizontal", - arrowScaleFactor: 1, - dash: { - length: 10, - gap: 5, - altLength: undefined - }, - inheritColor: "from", // to, from, false, true (== from) - useGradients: false // release in 4.0 - }, - configurePhysics: false, - navigation: { - enabled: false - }, - keyboard: { - enabled: false, - speed: { x: 10, y: 10, zoom: 0.02 }, - bindToWindow: true - }, - dataManipulation: { - enabled: false, - initiallyVisible: false - }, - hierarchicalLayout: { - enabled: false, - levelSeparation: 150, - nodeSpacing: 100, - direction: "UD", // UD, DU, LR, RL - layout: "hubsize" // hubsize, directed - }, + /** + * Handle a tap event: activate the container + * @param event + * @private + */ + Activator.prototype._onTapOverlay = function (event) { + // activate the container + this.activate(); + event.stopPropagation(); + }; - smoothCurves: { - enabled: true, - dynamic: true, - type: "continuous", - roundness: 0.5 - }, - 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, - useDefaultGroups: true - }; - this.constants = util.extend({}, this.defaultOptions); + /** + * 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; + } - // containers for nodes and edges - this.body = { - nodes: {}, - nodeIndices: [], - supportNodes: {}, - supportNodeIndices: [], - edges: {}, - data: { - nodes: null, // A DataSet or DataView - edges: null // A DataSet or DataView - }, - functions: { - createNode: this._createNode.bind(this), - createEdge: this._createEdge.bind(this) - }, - emitter: { - on: this.on.bind(this), - off: this.off.bind(this), - emit: this.emit.bind(this), - once: this.once.bind(this) - }, - eventListeners: { - onTap: function () {}, - onTouch: function () {}, - onDoubleTap: function () {}, - onHold: function () {}, - onDragStart: function () {}, - onDrag: function () {}, - onDragEnd: function () {}, - onMouseWheel: function () {}, - onPinch: function () {}, - onMouseMove: function () {}, - onRelease: function () {} - }, - container: container - }; + module.exports = Activator; - // modules - this.view = new View(this.body); - this.renderer = new CanvasRenderer(this.body); - this.clustering = new ClusterEngine(this.body); - this.physics = new PhysicsEngine(this.body); - this.canvas = new Canvas(this.body); - this.touchHandler = new TouchEventHandler(this.body); +/***/ }, +/* 54 */ +/***/ function(module, exports, __webpack_require__) { - this.renderer.setCanvas(this.canvas); - this.view.setCanvas(this.canvas); - this.touchHandler.setCanvas(this.canvas); + "use strict"; - this.hoverObj = { nodes: {}, edges: {} }; - this.controlNodesActive = false; - this.navigationHammers = []; - this.manipulationHammers = []; + // 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; - // Node variables - var me = this; - this.groups = new Groups(); // object with groups - this.images = new Images(); // object with images - this.images.setOnloadCallback(function (status) { - me._requestRedraw(); - }); + // 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; - // keyboard navigation variables - this.xIncrement = 0; - this.yIncrement = 0; - this.zoomIncrement = 0; +/***/ }, +/* 55 */ +/***/ function(module, exports, __webpack_require__) { - // loading all the mixins: - // load the force calculation functions, grouped under the physics system. - //this._loadPhysicsSystem(); - // create a frame and canvas - // load the cluster system. (mandatory, even when not using the cluster system, there are function calls to it) - // load the selection system. (mandatory, required by Network) - this._loadSelectionSystem(); - // load the selection system. (mandatory, required by Network) - //this._loadHierarchySystem(); + "use strict"; - // apply options - this.setOptions(options); + /** + * 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); + }; - // other vars - this.cachedFunctions = {}; - this.startedStabilization = false; - this.stabilized = false; - this.stabilizationIterations = null; - this.draggingNodes = 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); + }; - // position and scale variables and objects + /** + * 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(); - this.pointerPosition = { x: 0, y: 0 }; // coordinates of the bottom right of the canvas. they will be set during _redraw - this.scale = 1; // defining the global scale variable in the constructor + 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 - // create event listeners used to subscribe on the DataSets of the nodes and edges - this.nodesListeners = { - add: function (event, params) { - me._addNodes(params.items); - me.start(); - }, - update: function (event, params) { - me._updateNodes(params.items, params.data); - me.start(); - }, - remove: function (event, params) { - me._removeNodes(params.items); - me.start(); - } - }; - this.edgesListeners = { - add: function (event, params) { - me._addEdges(params.items); - me.start(); - }, - update: function (event, params) { - me._updateEdges(params.items); - me.start(); - }, - remove: function (event, params) { - me._removeEdges(params.items); - me.start(); - } + 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(); - // properties for the animation - this.moving = true; - this.renderTimer = 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.hierarchicalLayout.enabled); + 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 - // hierarchical layout - 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({ duration: 0 }, true, this.constants.clustering.enabled); - } - } + this.moveTo(x, y + (h - ir)); + this.lineTo(x + s2, y - ir); + this.lineTo(x - s2, y - ir); + this.lineTo(x, y + (h - ir)); + this.closePath(); + }; - if (this.constants.stabilize == false) { - this.initializing = false; - } + /** + * 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(); - var me = this; - // this event will trigger a rebuilding of the cache of colors, nodes etc. - this.on("_dataChanged", function () { - me._updateNodeIndexList(); - me.physics._updateCalculationNodes(); - me._markAllEdgesAsDirty(); - if (me.initializing !== true) { - me.moving = true; - me.start(); + 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.on("_newEdgesCreated", this._createBezierNodes.bind(this)); - //this.on("stabilizationIterationsDone", function () {me.initializing = false; me.start();}.bind(this)); - } + this.closePath(); + }; - // Extend Network with an Emitter mixin - Emitter(Network.prototype); + /** + * 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 = 0.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 - Network.prototype._createNode = function (properties) { - return new Node(properties, this.images, this.groups, this.constants); - }; + 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); + }; - Network.prototype._createEdge = function (properties) { - return new Edge(properties, this.body, this.constants); - }; + /** + * 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 = 0.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 - /** - * Update the this.body.nodeIndices with the most recent node index list - * @private - */ - Network.prototype._updateNodeIndexList = function () { - this.body.supportNodeIndices = Object.keys(this.body.supportNodes); - this.body.nodeIndices = Object.keys(this.body.nodes); - }; + 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); - /** - * 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; - } + this.bezierCurveTo(x, ym - oy, xm - ox, y, xm, y); + this.bezierCurveTo(xm + ox, y, xe, ym - oy, xe, ym); - // unselect all to ensure no selections from old data are carried over. - this._unselectAll(true); + this.lineTo(xe, ymb); - // we set initializing to true to ensure that the hierarchical layout is not performed until both nodes and edges are added. - this.initializing = true; + this.bezierCurveTo(xe, ymb + oy, xm + ox, yeb, xm, yeb); + this.bezierCurveTo(xm - ox, yeb, x, ymb + oy, x, ymb); - 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."); - } + this.lineTo(x, ym); + }; - // clean up in case there is anyone in an active mode of the manipulation. This is the same option as bound to the escape button. - if (this.constants.dataManipulation.enabled == true) { - this._createManipulatorBar(); - } - // set options - this.setOptions(data && data.options); - // set all data - if (data && data.dot) { - // parse DOT file - if (data && data.dot) { - var dotData = dotparser.DOTToGraph(data.dot); - this.setData(dotData); - return; - } - } else if (data && data.gephi) { - // parse DOT file - if (data && data.gephi) { - var gephiData = gephiParser.parseGephi(data.gephi); - this.setData(gephiData); - return; - } - } else { - this._setNodes(data && data.nodes); - this._setEdges(data && data.edges); - } + /** + * 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); - if (disableStart == false) { - if (this.constants.hierarchicalLayout.enabled == true) { - this._resetLevels(); - this._setupHierarchicalLayout(); - } else { - // find a stable position or start animating to a stable position - this.physics.startSimulation(); + // 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; } - } else { - this.initializing = false; - } - }; + }; + + // TODO: add diamond shape + } + +/***/ }, +/* 56 */ +/***/ function(module, exports, __webpack_require__) { + + "use strict"; + + var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; + + var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; /** - * Set options - * @param {Object} options + * Created by Alex on 2/23/2015. */ - Network.prototype.setOptions = function (options) { - if (options) { - var prop; - var fields = ["nodes", "edges", "smoothCurves", "hierarchicalLayout", "navigation", "keyboard", "dataManipulation", "onAdd", "onEdit", "onEditEdge", "onConnect", "onDelete", "clickToUse"]; - // extend all but the values in fields - util.selectiveNotDeepExtend(fields, this.constants, options); - util.selectiveNotDeepExtend(["color"], this.constants.nodes, options.nodes); - util.selectiveNotDeepExtend(["color", "length"], this.constants.edges, options.edges); - this.groups.useDefaultGroups = this.constants.useDefaultGroups; + var BarnesHutSolver = __webpack_require__(67).BarnesHutSolver; + var Repulsion = __webpack_require__(68).Repulsion; + var HierarchicalRepulsion = __webpack_require__(69).HierarchicalRepulsion; + var SpringSolver = __webpack_require__(70).SpringSolver; + var HierarchicalSpringSolver = __webpack_require__(71).HierarchicalSpringSolver; + var CentralGravitySolver = __webpack_require__(72).CentralGravitySolver; - this.physics.setOptions(options.physics); - this.canvas.setOptions(this.constants); + var util = __webpack_require__(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"); + var PhysicsEngine = (function () { + function PhysicsEngine(body, options) { + var _this = this; + _classCallCheck(this, PhysicsEngine); + this.body = body; + this.physicsBody = { calculationNodes: {}, calculationNodeIndices: [], forces: {}, velocities: {} }; + this.scale = 1; + this.viewFunction = undefined; - if (options.dataManipulation) { - this.editMode = this.constants.dataManipulation.initiallyVisible; - } + this.body.emitter.on("_setScale", function (scale) { + return _this.scale = scale; + }); + this.simulationInterval = 1000 / 60; + this.requiresTimeout = true; + this.previousStates = {}; + this.renderTimer == undefined; - // 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; - } - } - this.constants.edges.inheritColor = false; + this.stabilized = false; + this.stabilizationIterations = 0; + + // default options + this.options = { + barnesHut: { + thetaInverted: 1 / 0.5, // inverted to save time during calculation + gravitationalConstant: -2000, + centralGravity: 0.3, + springLength: 95, + springConstant: 0.04, + damping: 0.09 + }, + repulsion: { + centralGravity: 0, + springLength: 200, + springConstant: 0.05, + nodeDistance: 100, + damping: 0.09 + }, + hierarchicalRepulsion: { + centralGravity: 0, + springLength: 100, + springConstant: 0.01, + nodeDistance: 150, + damping: 0.09 + }, + model: "BarnesHut", + timestep: 0.5, + maxVelocity: 50, + minVelocity: 0.1, // px/s + stabilization: { + enabled: true, + iterations: 1000, // maximum number of iteration to stabilize + updateInterval: 100, + onlyDynamicEdges: false, + zoomExtent: true } + }; - 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; + this.setOptions(options); + } + + _prototypeProperties(PhysicsEngine, null, { + setOptions: { + value: function setOptions(options) { + if (options !== undefined) { + if (typeof options.stabilization == "boolean") { + options.stabilization = { + enabled: options.stabilization + }; } + util.deepExtend(this.options, options); + } + this.init(); + }, + writable: true, + configurable: true + }, + init: { + value: function init() { + var options; + if (this.options.model == "repulsion") { + options = this.options.repulsion; + this.nodesSolver = new Repulsion(this.body, this.physicsBody, options); + this.edgesSolver = new SpringSolver(this.body, this.physicsBody, options); + } else if (this.options.model == "hierarchicalRepulsion") { + options = this.options.hierarchicalRepulsion; + this.nodesSolver = new HierarchicalRepulsion(this.body, this.physicsBody, options); + this.edgesSolver = new HierarchicalSpringSolver(this.body, this.physicsBody, options); + } else { + // barnesHut + options = this.options.barnesHut; + this.nodesSolver = new BarnesHutSolver(this.body, this.physicsBody, options); + this.edgesSolver = new SpringSolver(this.body, this.physicsBody, options); } - } - } - 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); + this.gravitySolver = new CentralGravitySolver(this.body, this.physicsBody, options); + this.modelOptions = options; + }, + writable: true, + configurable: true + }, + startSimulation: { + value: function startSimulation() { + this.stabilized = false; + if (this.options.stabilization.enabled === true) { + this.stabilize(); + } else { + this.runSimulation(); } - } - } + }, + writable: true, + configurable: true + }, + runSimulation: { + value: function runSimulation() { + if (this.viewFunction === undefined) { + this.viewFunction = this.simulationStep.bind(this); + this.body.emitter.on("_beforeRender", this.viewFunction); + this.body.emitter.emit("_startRendering"); + } + }, + writable: true, + configurable: true + }, + simulationStep: { + value: function simulationStep() { + // check if the physics have settled + var startTime = Date.now(); + this.physicsTick(); + var physicsTime = Date.now() - startTime; - if (options.tooltip) { - for (prop in options.tooltip) { - if (options.tooltip.hasOwnProperty(prop)) { - this.constants.tooltip[prop] = options.tooltip[prop]; + // run double speed if it is a little graph + if ((physicsTime < 0.4 * this.simulationInterval || this.runDoubleSpeed == true) && this.stabilized === false) { + this.physicsTick(); + + // this makes sure there is no jitter. The decision is taken once to run it at double speed. + this.runDoubleSpeed = true; } - } - if (options.tooltip.color) { - this.constants.tooltip.color = util.parseColor(options.tooltip.color); - } - } - if ("clickToUse" in options) { - if (options.clickToUse) { - if (!this.activator) { - this.activator = new Activator(this.frame); - this.activator.on("change", this._createKeyBinds.bind(this)); + if (this.stabilized === true) { + if (this.stabilizationIterations > 1) { + // trigger the "stabilized" event. + // The event is triggered on the next tick, to prevent the case that + // it is fired while initializing the Network, in which case you would not + // be able to catch it + var me = this; + var params = { + iterations: this.stabilizationIterations + }; + this.stabilizationIterations = 0; + this.startedStabilization = false; + setTimeout(function () { + me.body.emitter.emit("stabilized", params); + }, 0); + } else { + this.stabilizationIterations = 0; + } + this.body.emitter.emit("_stopRendering"); } - } else { - if (this.activator) { - this.activator.destroy(); - delete this.activator; + }, + writable: true, + configurable: true + }, + physicsTick: { + + /** + * A single simulation step (or "tick") in the physics simulation + * + * @private + */ + value: function physicsTick() { + if (this.stabilized === false) { + this.calculateForces(); + this.stabilized = this.moveNodes(); + + // determine if the network has stabilzied + if (this.stabilized === true) { + this.revert(); + } else { + // this is here to ensure that there is no start event when the network is already stable. + if (this.startedStabilization == false) { + this.body.emitter.emit("startStabilizing"); + this.startedStabilization = true; + } + } + + this.stabilizationIterations++; } - } - } + }, + writable: true, + configurable: true + }, + _updateCalculationNodes: { - if (options.labels) { - throw new Error("Option \"labels\" is deprecated. Use options \"locale\" and \"locales\" instead."); - } + /** + * 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.body.nodes with the support nodes. + * + * @private + */ + value: function _updateCalculationNodes() { + this.physicsBody.calculationNodes = {}; + this.physicsBody.forces = {}; + this.physicsBody.calculationNodeIndices = []; - // (Re)loading the mixins that can be enabled or disabled in the options. - // load the force calculation functions, grouped under the physics system. - // load the navigation system. - //this._loadNavigationControls(); - //// load the data manipulation system - //this._loadManipulationSystem(); - //// configure the smooth curves - //this._configureSmoothCurves(); + for (var i = 0; i < this.body.nodeIndices.length; i++) { + var nodeId = this.body.nodeIndices[i]; + this.physicsBody.calculationNodes[nodeId] = this.body.nodes[nodeId]; + } - // bind hammer - this.canvas._bindHammer(); + // if support nodes are used, we have them here + var supportNodes = this.body.supportNodes; + for (var i = 0; i < this.body.supportNodeIndices.length; i++) { + var supportNodeId = this.body.supportNodeIndices[i]; + if (this.body.edges[supportNodes[supportNodeId].parentEdgeId] !== undefined) { + this.physicsBody.calculationNodes[supportNodeId] = supportNodes[supportNodeId]; + } else { + console.error("Support node detected that does not have an edge!"); + } + } - // bind keys. If disabled, this will not do anything; - //this._createKeyBinds(); + this.physicsBody.calculationNodeIndices = Object.keys(this.physicsBody.calculationNodes); + for (var i = 0; i < this.physicsBody.calculationNodeIndices.length; i++) { + var nodeId = this.physicsBody.calculationNodeIndices[i]; + this.physicsBody.forces[nodeId] = { x: 0, y: 0 }; - this._markAllEdgesAsDirty(); - this.canvas.setSize(this.constants.width, this.constants.height); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); - } + // forces can be reset because they are recalculated. Velocities have to persist. + if (this.physicsBody.velocities[nodeId] === undefined) { + this.physicsBody.velocities[nodeId] = { x: 0, y: 0 }; + } + } - if (this.initializing !== true) { - this.moving = true; - this.start(); - } - } - }; + // clean deleted nodes from the velocity vector + for (var nodeId in this.physicsBody.velocities) { + if (this.physicsBody.calculationNodes[nodeId] === undefined) { + delete this.physicsBody.velocities[nodeId]; + } + } + }, + writable: true, + configurable: true + }, + revert: { + value: function revert() { + var nodeIds = Object.keys(this.previousStates); + var nodes = this.physicsBody.calculationNodes; + var velocities = this.physicsBody.velocities; + for (var i = 0; i < nodeIds.length; i++) { + var nodeId = nodeIds[i]; + if (nodes[nodeId] !== undefined) { + velocities[nodeId].x = this.previousStates[nodeId].vx; + velocities[nodeId].y = this.previousStates[nodeId].vy; + nodes[nodeId].x = this.previousStates[nodeId].x; + nodes[nodeId].y = this.previousStates[nodeId].y; + } else { + delete this.previousStates[nodeId]; + } + } + }, + writable: true, + configurable: true + }, + moveNodes: { + value: function moveNodes() { + var nodesPresent = false; + var nodeIndices = this.physicsBody.calculationNodeIndices; + var maxVelocity = this.options.maxVelocity === 0 ? 1000000000 : this.options.maxVelocity; + var stabilized = true; + var vminCorrected = this.options.minVelocity / Math.max(this.scale, 0.05); + for (var i = 0; i < nodeIndices.length; i++) { + var nodeId = nodeIndices[i]; + var nodeVelocity = this._performStep(nodeId, maxVelocity); + // stabilized is true if stabilized is true and velocity is smaller than vmin --> all nodes must be stabilized + stabilized = nodeVelocity < vminCorrected && stabilized === true; + nodesPresent = true; + } - /** - * Binding the keys for keyboard navigation. These functions are defined in the NavigationMixin - * @private - */ - Network.prototype._createKeyBinds = function () { - return; - //var me = this; - //if (this.keycharm !== undefined) { - // this.keycharm.destroy(); - //} - // - //if (this.constants.keyboard.bindToWindow == true) { - // this.keycharm = keycharm({container: window, preventDefault: false}); - //} - //else { - // this.keycharm = keycharm({container: this.frame, preventDefault: false}); - //} - // - //this.keycharm.reset(); - // - //if (this.constants.keyboard.enabled && this.isActive()) { - // this.keycharm.bind("up", this._moveUp.bind(me) , "keydown"); - // this.keycharm.bind("up", this._yStopMoving.bind(me), "keyup"); - // this.keycharm.bind("down", this._moveDown.bind(me) , "keydown"); - // this.keycharm.bind("down", this._yStopMoving.bind(me), "keyup"); - // this.keycharm.bind("left", this._moveLeft.bind(me) , "keydown"); - // this.keycharm.bind("left", this._xStopMoving.bind(me), "keyup"); - // this.keycharm.bind("right",this._moveRight.bind(me), "keydown"); - // this.keycharm.bind("right",this._xStopMoving.bind(me), "keyup"); - // this.keycharm.bind("=", this._zoomIn.bind(me), "keydown"); - // this.keycharm.bind("=", this._stopZoom.bind(me), "keyup"); - // this.keycharm.bind("num+", this._zoomIn.bind(me), "keydown"); - // this.keycharm.bind("num+", this._stopZoom.bind(me), "keyup"); - // this.keycharm.bind("num-", this._zoomOut.bind(me), "keydown"); - // this.keycharm.bind("num-", this._stopZoom.bind(me), "keyup"); - // this.keycharm.bind("-", this._zoomOut.bind(me), "keydown"); - // this.keycharm.bind("-", this._stopZoom.bind(me), "keyup"); - // this.keycharm.bind("[", this._zoomIn.bind(me), "keydown"); - // this.keycharm.bind("[", this._stopZoom.bind(me), "keyup"); - // this.keycharm.bind("]", this._zoomOut.bind(me), "keydown"); - // this.keycharm.bind("]", this._stopZoom.bind(me), "keyup"); - // this.keycharm.bind("pageup",this._zoomIn.bind(me), "keydown"); - // this.keycharm.bind("pageup",this._stopZoom.bind(me), "keyup"); - // this.keycharm.bind("pagedown",this._zoomOut.bind(me),"keydown"); - // this.keycharm.bind("pagedown",this._stopZoom.bind(me), "keyup"); - //} - // - //if (this.constants.dataManipulation.enabled == true) { - // this.keycharm.bind("esc",this._createManipulatorBar.bind(me)); - // this.keycharm.bind("delete",this._deleteSelected.bind(me)); - //} - }; + if (nodesPresent == true) { + if (vminCorrected > 0.5 * this.options.maxVelocity) { + return false; + } else { + return stabilized; + } + } + return true; + }, + writable: true, + configurable: true + }, + _performStep: { + value: function _performStep(nodeId, maxVelocity) { + var node = this.physicsBody.calculationNodes[nodeId]; + var timestep = this.options.timestep; + var forces = this.physicsBody.forces; + var velocities = this.physicsBody.velocities; - /** - * Cleans up all bindings of the network, removing it fully from the memory IF the variable is set to null after calling this function. - * var network = new vis.Network(..); - * network.destroy(); - * network = null; - */ - Network.prototype.destroy = function () { - this.start = function () {}; - this.redraw = function () {}; - this.renderTimer = false; + // store the state so we can revert + this.previousStates[nodeId] = { x: node.x, y: node.y, vx: velocities[nodeId].x, vy: velocities[nodeId].y }; - // cleanup physicsConfiguration if it exists - this._cleanupPhysicsConfiguration(); + if (!node.xFixed) { + var dx = this.modelOptions.damping * velocities[nodeId].x; // damping force + var ax = (forces[nodeId].x - dx) / node.options.mass; // acceleration + velocities[nodeId].x += ax * timestep; // velocity + velocities[nodeId].x = Math.abs(velocities[nodeId].x) > maxVelocity ? velocities[nodeId].x > 0 ? maxVelocity : -maxVelocity : velocities[nodeId].x; + node.x += velocities[nodeId].x * timestep; // position + } else { + forces[nodeId].x = 0; + velocities[nodeId].x = 0; + } - // remove keybindings - this.keycharm.reset(); + if (!node.yFixed) { + var dy = this.modelOptions.damping * velocities[nodeId].y; // damping force + var ay = (forces[nodeId].y - dy) / node.options.mass; // acceleration + velocities[nodeId].y += ay * timestep; // velocity + velocities[nodeId].y = Math.abs(velocities[nodeId].y) > maxVelocity ? velocities[nodeId].y > 0 ? maxVelocity : -maxVelocity : velocities[nodeId].y; + node.y += velocities[nodeId].y * timestep; // position + } else { + forces[nodeId].y = 0; + velocities[nodeId].y = 0; + } - // clear hammer bindings - this.hammer.dispose(); + var totalVelocity = Math.sqrt(Math.pow(velocities[nodeId].x, 2) + Math.pow(velocities[nodeId].y, 2)); + return totalVelocity; + }, + writable: true, + configurable: true + }, + calculateForces: { + value: function calculateForces() { + this.gravitySolver.solve(); + this.nodesSolver.solve(); + this.edgesSolver.solve(); + }, + writable: true, + configurable: true + }, + _freezeNodes: { - // clear events - this.off(); - this._recursiveDOMDelete(this.containerElement); - }; - Network.prototype._recursiveDOMDelete = function (DOMobject) { - while (DOMobject.hasChildNodes() == true) { - this._recursiveDOMDelete(DOMobject.firstChild); - DOMobject.removeChild(DOMobject.firstChild); - } - }; - /** - * Check if there is an element on the given position in the network - * (a node or edge). If so, and if this element has a title, - * show a popup window with its title. - * - * @param {{x:Number, y:Number}} pointer - * @private - */ - Network.prototype._checkShowPopup = function (pointer) { - var obj = { - left: this._XconvertDOMtoCanvas(pointer.x), - top: this._YconvertDOMtoCanvas(pointer.y), - right: this._XconvertDOMtoCanvas(pointer.x), - bottom: this._YconvertDOMtoCanvas(pointer.y) - }; - var id; - var previousPopupObjId = this.popupObj === undefined ? "" : this.popupObj.id; - var nodeUnderCursor = false; - var popupType = "node"; - if (this.popupObj == undefined) { - // search the nodes for overlap, select the top one in case of multiple nodes - var nodes = this.body.nodes; - var overlappingNodes = []; - for (id in nodes) { - if (nodes.hasOwnProperty(id)) { - var node = nodes[id]; - if (node.isOverlappingWith(obj)) { - if (node.getTitle() !== undefined) { - overlappingNodes.push(id); + + + + /** + * 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 + */ + value: function _freezeNodes() { + var nodes = this.body.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; + } } } - } - } + }, + writable: true, + configurable: true + }, + _restoreFrozenNodes: { - if (overlappingNodes.length > 0) { - // if there are overlapping nodes, select the last one, this is the - // one which is drawn on top of the others - this.popupObj = this.body.nodes[overlappingNodes[overlappingNodes.length - 1]]; - // if you hover over a node, the title of the edge is not supposed to be shown. - nodeUnderCursor = true; - } - } + /** + * Unfreezes the nodes that have been frozen by _freezeDefinedNodes. + * + * @private + */ + value: function _restoreFrozenNodes() { + var nodes = this.body.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; + } + } + } + }, + writable: true, + configurable: true + }, + stabilize: { - if (this.popupObj === undefined && nodeUnderCursor == false) { - // search the edges for overlap - var edges = this.body.edges; - var overlappingEdges = []; - for (id in edges) { - if (edges.hasOwnProperty(id)) { - var edge = edges[id]; - if (edge.connected === true && edge.getTitle() !== undefined && edge.isOverlappingWith(obj)) { - overlappingEdges.push(id); + /** + * Find a stable position for all nodes + * @private + */ + value: function stabilize() { + if (this.options.stabilization.onlyDynamicEdges == true) { + this._freezeNodes(); } - } - } + this.stabilizationSteps = 0; - if (overlappingEdges.length > 0) { - this.popupObj = this.body.edges[overlappingEdges[overlappingEdges.length - 1]]; - popupType = "edge"; - } - } + setTimeout(this._stabilizationBatch.bind(this), 0); + }, + writable: true, + configurable: true + }, + _stabilizationBatch: { + value: function _stabilizationBatch() { + var count = 0; + while (this.stabilized == false && count < this.options.stabilization.updateInterval && this.stabilizationSteps < this.options.stabilization.iterations) { + this.physicsTick(); + this.stabilizationSteps++; + count++; + } - if (this.popupObj) { - // show popup message window - if (this.popupObj.id != previousPopupObjId) { - if (this.popup === undefined) { - this.popup = new Popup(this.frame, this.constants.tooltip); - } + if (this.stabilized == false && this.stabilizationSteps < this.options.stabilization.iterations) { + this.body.emitter.emit("stabilizationProgress", { steps: this.stabilizationSteps, total: this.options.stabilization.iterations }); + setTimeout(this._stabilizationBatch.bind(this), 0); + } else { + this._finalizeStabilization(); + } + }, + writable: true, + configurable: true + }, + _finalizeStabilization: { + value: function _finalizeStabilization() { + if (this.options.stabilization.zoomExtent == true) { + this.body.emitter.emit("zoomExtent", { duration: 0 }); + } - this.popup.popupTargetType = popupType; - this.popup.popupTargetId = this.popupObj.id; + if (this.options.stabilization.onlyDynamicEdges == true) { + this._restoreFrozenNodes(); + } - // 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 - this.popup.setPosition(pointer.x + 3, pointer.y - 5); - this.popup.setText(this.popupObj.getTitle()); - this.popup.show(); - } - } else { - if (this.popup) { - this.popup.hide(); + this.body.emitter.emit("stabilizationIterationsDone"); + this.body.emitter.emit("_requestRedraw"); + }, + writable: true, + configurable: true } - } - }; + }); + return PhysicsEngine; + })(); - /** - * Check if the popup must be hidden, 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) { - var pointerObj = { - left: this._XconvertDOMtoCanvas(pointer.x), - top: this._YconvertDOMtoCanvas(pointer.y), - right: this._XconvertDOMtoCanvas(pointer.x), - bottom: this._YconvertDOMtoCanvas(pointer.y) - }; + exports.PhysicsEngine = PhysicsEngine; + Object.defineProperty(exports, "__esModule", { + value: true + }); - var stillOnObj = false; - if (this.popup.popupTargetType == "node") { - stillOnObj = this.body.nodes[this.popup.popupTargetId].isOverlappingWith(pointerObj); - if (stillOnObj === true) { - var overNode = this._getNodeAt(pointer); - stillOnObj = overNode.id == this.popup.popupTargetId; - } - } else { - if (this._getNodeAt(pointer) === null) { - stillOnObj = this.body.edges[this.popup.popupTargetId].isOverlappingWith(pointerObj); - } - } +/***/ }, +/* 57 */ +/***/ function(module, exports, __webpack_require__) { + "use strict"; - if (stillOnObj === false) { - this.popupObj = undefined; - this.popup.hide(); - } - }; + var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; + var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; /** - * Set a data set with nodes for the network - * @param {Array | DataSet | DataView} nodes The data containing the nodes. - * @private + * Created by Alex on 24-Feb-15. */ - Network.prototype._setNodes = function (nodes) { - var oldNodesData = this.body.data.nodes; - if (nodes instanceof DataSet || nodes instanceof DataView) { - this.body.data.nodes = nodes; - } else if (Array.isArray(nodes)) { - this.body.data.nodes = new DataSet(); - this.body.data.nodes.add(nodes); - } else if (!nodes) { - this.body.data.nodes = new DataSet(); - } else { - throw new TypeError("Array or DataSet expected"); - } + var util = __webpack_require__(1); - if (oldNodesData) { - // unsubscribe from old dataset - util.forEach(this.nodesListeners, function (callback, event) { - oldNodesData.off(event, callback); - }); - } + var ClusterEngine = (function () { + function ClusterEngine(body) { + _classCallCheck(this, ClusterEngine); - // remove drawn nodes - this.body.nodes = {}; + this.body = body; + this.clusteredNodes = {}; + } - if (this.body.data.nodes) { - // subscribe to new dataset - var me = this; - util.forEach(this.nodesListeners, function (callback, event) { - me.body.data.nodes.on(event, callback); - }); + _prototypeProperties(ClusterEngine, null, { + clusterByConnectionCount: { - // draw all new nodes - var ids = this.body.data.nodes.getIds(); - this._addNodes(ids); - } - this._updateSelection(); - }; - /** - * Add nodes - * @param {Number[] | String[]} ids - * @private - */ - Network.prototype._addNodes = function (ids) { - var id; - for (var i = 0, len = ids.length; i < len; i++) { - id = ids[i]; - var data = this.body.data.nodes.get(id); - var node = new Node(data, this.images, this.groups, this.constants); - this.body.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; - } + /** + * + * @param hubsize + * @param options + */ + value: function clusterByConnectionCount(hubsize, options) { + if (hubsize === undefined) { + hubsize = this._getHubSize(); + } else if (tyepof(hubsize) == "object") { + options = this._checkOptions(hubsize); + hubsize = this._getHubSize(); + } - this._updateNodeIndexList(); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); - } - this.physics._updateCalculationNodes(); - this._reconnectEdges(); - this._updateValueRange(this.body.nodes); - }; + var nodesToCluster = []; + for (var i = 0; i < this.body.nodeIndices.length; i++) { + var node = this.body.nodes[this.body.nodeIndices[i]]; + if (node.edges.length >= hubsize) { + nodesToCluster.push(node.id); + } + } - /** - * Update existing nodes, or create them when not yet existing - * @param {Number[] | String[]} ids - * @private - */ - Network.prototype._updateNodes = function (ids, changedData) { - var nodes = this.body.nodes; - for (var i = 0, len = ids.length; i < len; i++) { - var id = ids[i]; - var node = nodes[id]; - var data = changedData[i]; - 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._updateValueRange(nodes); - this._markAllEdgesAsDirty(); - }; + for (var i = 0; i < nodesToCluster.length; i++) { + var node = this.body.nodes[nodesToCluster[i]]; + this.clusterByConnection(node, options, {}, {}, true); + } + this.body.emitter.emit("_dataChanged"); + }, + writable: true, + configurable: true + }, + clusterByNodeData: { - Network.prototype._markAllEdgesAsDirty = function () { - for (var edgeId in this.body.edges) { - this.body.edges[edgeId].colorDirty = true; - } - }; + /** + * loop over all nodes, check if they adhere to the condition and cluster if needed. + * @param options + * @param doNotUpdateCalculationNodes + */ + value: function clusterByNodeData() { + var options = arguments[0] === undefined ? {} : arguments[0]; + var doNotUpdateCalculationNodes = arguments[1] === undefined ? false : arguments[1]; + if (options.joinCondition === undefined) { + throw new Error("Cannot call clusterByNodeData without a joinCondition function in the options."); + } - /** - * 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.body.nodes; + // check if the options object is fine, append if needed + options = this._checkOptions(options); - // remove from selection - for (var i = 0, len = ids.length; i < len; i++) { - if (this.selectionObj.nodes[ids[i]] !== undefined) { - this.body.nodes[ids[i]].unselect(); - this._removeFromSelection(this.body.nodes[ids[i]]); - } - } + var childNodesObj = {}; + var childEdgesObj = {}; - for (var i = 0, len = ids.length; i < len; i++) { - var id = ids[i]; - delete nodes[id]; - } + // collect the nodes that will be in the cluster + for (var i = 0; i < this.body.nodeIndices.length; i++) { + var nodeId = this.body.nodeIndices[i]; + var clonedOptions = this._cloneOptions(nodeId); + if (options.joinCondition(clonedOptions) == true) { + childNodesObj[nodeId] = this.body.nodes[nodeId]; + } + } + this._cluster(childNodesObj, childEdgesObj, options, doNotUpdateCalculationNodes); + }, + writable: true, + configurable: true + }, + clusterOutliers: { - this._updateNodeIndexList(); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); - } - this.physics._updateCalculationNodes(); - this._reconnectEdges(); - this._updateSelection(); - this._updateValueRange(nodes); - }; + /** + * Cluster all nodes in the network that have only 1 edge + * @param options + * @param doNotUpdateCalculationNodes + */ + value: function clusterOutliers(options, doNotUpdateCalculationNodes) { + options = this._checkOptions(options); + var clusters = []; - /** - * 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.body.data.edges; + // collect the nodes that will be in the cluster + for (var i = 0; i < this.body.nodeIndices.length; i++) { + var childNodesObj = {}; + var childEdgesObj = {}; + var nodeId = this.body.nodeIndices[i]; + if (this.body.nodes[nodeId].edges.length == 1) { + var edge = this.body.nodes[nodeId].edges[0]; + var childNodeId = this._getConnectedId(edge, nodeId); + if (childNodeId != nodeId) { + if (options.joinCondition === undefined) { + childNodesObj[nodeId] = this.body.nodes[nodeId]; + childNodesObj[childNodeId] = this.body.nodes[childNodeId]; + } else { + var clonedOptions = this._cloneOptions(nodeId); + if (options.joinCondition(clonedOptions) == true) { + childNodesObj[nodeId] = this.body.nodes[nodeId]; + } + clonedOptions = this._cloneOptions(childNodeId); + if (options.joinCondition(clonedOptions) == true) { + childNodesObj[childNodeId] = this.body.nodes[childNodeId]; + } + } + clusters.push({ nodes: childNodesObj, edges: childEdgesObj }); + } + } + } - if (edges instanceof DataSet || edges instanceof DataView) { - this.body.data.edges = edges; - } else if (Array.isArray(edges)) { - this.body.data.edges = new DataSet(); - this.body.data.edges.add(edges); - } else if (!edges) { - this.body.data.edges = new DataSet(); - } else { - throw new TypeError("Array or DataSet expected"); - } + for (var i = 0; i < clusters.length; i++) { + this._cluster(clusters[i].nodes, clusters[i].edges, options, true); + } - if (oldEdgesData) { - // unsubscribe from old dataset - util.forEach(this.edgesListeners, function (callback, event) { - oldEdgesData.off(event, callback); - }); - } + if (doNotUpdateCalculationNodes !== true) { + this.body.emitter.emit("_dataChanged"); + } + }, + writable: true, + configurable: true + }, + clusterByConnection: { - // remove drawn edges - this.body.edges = {}; + /** + * + * @param nodeId + * @param options + * @param doNotUpdateCalculationNodes + */ + value: function clusterByConnection(nodeId, options, doNotUpdateCalculationNodes) { + // kill conditions + if (nodeId === undefined) { + throw new Error("No nodeId supplied to clusterByConnection!"); + } + if (this.body.nodes[nodeId] === undefined) { + throw new Error("The nodeId given to clusterByConnection does not exist!"); + } - if (this.body.data.edges) { - // subscribe to new dataset - var me = this; - util.forEach(this.edgesListeners, function (callback, event) { - me.body.data.edges.on(event, callback); - }); + var node = this.body.nodes[nodeId]; + options = this._checkOptions(options, node); + if (options.clusterNodeProperties.x === undefined) { + options.clusterNodeProperties.x = node.x;options.clusterNodeProperties.allowedToMoveX = !node.xFixed; + } + if (options.clusterNodeProperties.y === undefined) { + options.clusterNodeProperties.y = node.y;options.clusterNodeProperties.allowedToMoveY = !node.yFixed; + } - // draw all new nodes - var ids = this.body.data.edges.getIds(); - this._addEdges(ids); - } + var childNodesObj = {}; + var childEdgesObj = {}; + var parentNodeId = node.id; + var parentClonedOptions = this._cloneOptions(parentNodeId); + childNodesObj[parentNodeId] = node; - this._reconnectEdges(); - }; + // collect the nodes that will be in the cluster + for (var i = 0; i < node.edges.length; i++) { + var edge = node.edges[i]; + var childNodeId = this._getConnectedId(edge, parentNodeId); - /** - * Add edges - * @param {Number[] | String[]} ids - * @private - */ - Network.prototype._addEdges = function (ids) { - var edges = this.body.edges, - edgesData = this.body.data.edges; + if (childNodeId !== parentNodeId) { + if (options.joinCondition === undefined) { + childEdgesObj[edge.id] = edge; + childNodesObj[childNodeId] = this.body.nodes[childNodeId]; + } else { + // clone the options and insert some additional parameters that could be interesting. + var childClonedOptions = this._cloneOptions(childNodeId); + if (options.joinCondition(parentClonedOptions, childClonedOptions) == true) { + childEdgesObj[edge.id] = edge; + childNodesObj[childNodeId] = this.body.nodes[childNodeId]; + } + } + } else { + childEdgesObj[edge.id] = edge; + } + } - for (var i = 0, len = ids.length; i < len; i++) { - var id = ids[i]; + this._cluster(childNodesObj, childEdgesObj, options, doNotUpdateCalculationNodes); + }, + writable: true, + configurable: true + }, + _cloneOptions: { - var oldEdge = edges[id]; - if (oldEdge) { - oldEdge.disconnect(); - } - var data = edgesData.get(id, { showInternalIds: true }); - edges[id] = new Edge(data, this.body, this.constants); - } - this.moving = true; - this._updateValueRange(edges); - this._createBezierNodes(); - this.physics._updateCalculationNodes(); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); - } - }; + /** + * This returns a clone of the options or properties of the edge or node to be used for construction of new edges or check functions for new nodes. + * @param objId + * @param type + * @returns {{}} + * @private + */ + value: function _cloneOptions(objId, type) { + var clonedOptions = {}; + if (type === undefined || type == "node") { + util.deepExtend(clonedOptions, this.body.nodes[objId].options, true); + util.deepExtend(clonedOptions, this.body.nodes[objId].properties, true); + clonedOptions.amountOfConnections = this.body.nodes[objId].edges.length; + } else { + util.deepExtend(clonedOptions, this.body.edges[objId].properties, true); + } + return clonedOptions; + }, + writable: true, + configurable: true + }, + _createClusterEdges: { - /** - * Update existing edges, or create them when not yet existing - * @param {Number[] | String[]} ids - * @private - */ - Network.prototype._updateEdges = function (ids) { - var edges = this.body.edges; - var edgesData = this.body.data.edges; - 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); - edge.connect(); - } else { - // create edge - edge = new Edge(data, this.body, this.constants); - this.body.edges[id] = edge; - } - } + /** + * This function creates the edges that will be attached to the cluster. + * + * @param childNodesObj + * @param childEdgesObj + * @param newEdges + * @param options + * @private + */ + value: function _createClusterEdges(childNodesObj, childEdgesObj, newEdges, options) { + var edge, childNodeId, childNode; - this._createBezierNodes(); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); - } - this.moving = true; - this._updateValueRange(edges); - }; + var childKeys = Object.keys(childNodesObj); + for (var i = 0; i < childKeys.length; i++) { + childNodeId = childKeys[i]; + childNode = childNodesObj[childNodeId]; - /** - * Remove existing edges. Non existing ids will be ignored - * @param {Number[] | String[]} ids - * @private - */ - Network.prototype._removeEdges = function (ids) { - var edges = this.body.edges; + // mark all edges for removal from global and construct new edges from the cluster to others + for (var j = 0; j < childNode.edges.length; j++) { + edge = childNode.edges[j]; + childEdgesObj[edge.id] = edge; - // remove from selection - for (var i = 0, len = ids.length; i < len; i++) { - if (this.selectionObj.edges[ids[i]] !== undefined) { - edges[ids[i]].unselect(); - this._removeFromSelection(edges[ids[i]]); - } - } + var otherNodeId = edge.toId; + var otherOnTo = true; + if (edge.toId != childNodeId) { + otherNodeId = edge.toId; + otherOnTo = true; + } else if (edge.fromId != childNodeId) { + otherNodeId = edge.fromId; + otherOnTo = false; + } - 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.body.supportNodes[edge.via.id]; - } - edge.disconnect(); - delete edges[id]; - } - } + if (childNodesObj[otherNodeId] === undefined) { + var clonedOptions = this._cloneOptions(edge.id, "edge"); + util.deepExtend(clonedOptions, options.clusterEdgeProperties); + if (otherOnTo === true) { + clonedOptions.from = options.clusterNodeProperties.id; + clonedOptions.to = otherNodeId; + } else { + clonedOptions.from = otherNodeId; + clonedOptions.to = options.clusterNodeProperties.id; + } + clonedOptions.id = "clusterEdge:" + util.randomUUID(); + newEdges.push(this.body.functions.createEdge(clonedOptions)); + } + } + } + }, + writable: true, + configurable: true + }, + _checkOptions: { - this.moving = true; - this._updateValueRange(edges); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); - } - this.physics._updateCalculationNodes(); - }; - /** - * Reconnect all edges - * @private - */ - Network.prototype._reconnectEdges = function () { - var id, - nodes = this.body.nodes, - edges = this.body.edges; - for (id in nodes) { - if (nodes.hasOwnProperty(id)) { - nodes[id].edges = []; - } - } + /** + * This function checks the options that can be supplied to the different cluster functions + * for certain fields and inserts defaults if needed + * @param options + * @returns {*} + * @private + */ + value: function _checkOptions() { + var options = arguments[0] === undefined ? {} : arguments[0]; + if (options.clusterEdgeProperties === undefined) { + options.clusterEdgeProperties = {}; + } + if (options.clusterNodeProperties === undefined) { + options.clusterNodeProperties = {}; + } - for (id in edges) { - if (edges.hasOwnProperty(id)) { - var edge = edges[id]; - edge.from = null; - edge.to = null; - edge.connect(); - } - } - }; + return options; + }, + writable: true, + configurable: true + }, + _cluster: { - /** - * 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; + /** + * + * @param {Object} childNodesObj | object with node objects, id as keys, same as childNodes except it also contains a source node + * @param {Object} childEdgesObj | object with edge objects, id as keys + * @param {Array} options | object with {clusterNodeProperties, clusterEdgeProperties, processProperties} + * @param {Boolean} doNotUpdateCalculationNodes | when true, do not wrap up + * @private + */ + value: function _cluster(childNodesObj, childEdgesObj, options) { + var doNotUpdateCalculationNodes = arguments[3] === undefined ? false : arguments[3]; + // kill condition: no children so cant cluster + if (Object.keys(childNodesObj).length == 0) { + return; + } - // determine the range of the objects - var valueMin = undefined; - var valueMax = undefined; - var valueTotal = 0; - 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); - valueTotal += value; - } - } - } + // check if we have an unique id; + if (options.clusterNodeProperties.id === undefined) { + options.clusterNodeProperties.id = "cluster:" + util.randomUUID(); + } + var clusterId = options.clusterNodeProperties.id; - // adjust the range of all objects - if (valueMin !== undefined && valueMax !== undefined) { - for (id in obj) { - if (obj.hasOwnProperty(id)) { - obj[id].setValueRange(valueMin, valueMax, valueTotal); - } - } - } - }; + // create the new edges that will connect to the cluster + var newEdges = []; + this._createClusterEdges(childNodesObj, childEdgesObj, newEdges, options); + // construct the clusterNodeProperties + var clusterNodeProperties = options.clusterNodeProperties; + if (options.processProperties !== undefined) { + // get the childNode options + var childNodesOptions = []; + for (var nodeId in childNodesObj) { + var clonedOptions = this._cloneOptions(nodeId); + childNodesOptions.push(clonedOptions); + } - /** - * 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 - }; - } + // get clusterproperties based on childNodes + var childEdgesOptions = []; + for (var edgeId in childEdgesObj) { + var clonedOptions = this._cloneOptions(edgeId, "edge"); + childEdgesOptions.push(clonedOptions); + } - if (offsetX !== undefined) { - this.translation.x = offsetX; - } - if (offsetY !== undefined) { - this.translation.y = offsetY; - } + clusterNodeProperties = options.processProperties(clusterNodeProperties, childNodesOptions, childEdgesOptions); + if (!clusterNodeProperties) { + throw new Error("The processClusterProperties function does not return properties!"); + } + } + if (clusterNodeProperties.label === undefined) { + clusterNodeProperties.label = "cluster"; + } - 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 - }; - }; + // give the clusterNode a postion if it does not have one. + var pos = undefined; + if (clusterNodeProperties.x === undefined) { + pos = this._getClusterPosition(childNodesObj); + clusterNodeProperties.x = pos.x; + clusterNodeProperties.allowedToMoveX = true; + } + if (clusterNodeProperties.x === undefined) { + if (pos === undefined) { + pos = this._getClusterPosition(childNodesObj); + } + clusterNodeProperties.y = pos.y; + clusterNodeProperties.allowedToMoveY = true; + } - /** - * 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; - }; + // force the ID to remain the same + clusterNodeProperties.id = clusterId; - /** - * 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); - } - }; + // create the clusterNode + var clusterNode = this.body.functions.createNode(clusterNodeProperties); + clusterNode.isCluster = true; + clusterNode.containedNodes = childNodesObj; + clusterNode.containedEdges = childEdgesObj; - /** - * Freeze the _animationStep - */ - Network.prototype.freezeSimulation = function (freeze) { - if (freeze == true) { - this.freezeSimulationEnabled = true; - this.moving = false; - } else { - this.freezeSimulationEnabled = false; - this.moving = true; - this.start(); - } - }; - - - /** - * 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 () { - var disableStart = arguments[0] === undefined ? true : arguments[0]; - if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { - this._createBezierNodes(); - // cleanup unused support nodes - for (var i = 0; i < this.body.supportNodeIndices.length; i++) { - var nodeId = this.body.supportNodeIndices[i]; - // delete support nodes for edges that have been deleted - if (this.body.edges[this.body.supportNodes[nodeId].parentEdgeId] === undefined) { - delete this.body.supportNodes[nodeId]; - } - } - } else { - // delete the support nodes - this.body.supportNodes = {}; - for (var edgeId in this.body.edges) { - if (this.body.edges.hasOwnProperty(edgeId)) { - this.body.edges[edgeId].via = null; - } - } - } - - - this._updateNodeIndexList(); - this.physics._updateCalculationNodes(); - if (!disableStart) { - this.moving = true; - this.start(); - } - }; + // delete contained edges from global + for (var edgeId in childEdgesObj) { + if (childEdgesObj.hasOwnProperty(edgeId)) { + if (this.body.edges[edgeId] !== undefined) { + if (this.body.edges[edgeId].via !== null) { + var viaId = this.body.edges[edgeId].via.id; + if (viaId) { + this.body.edges[edgeId].via = null; + delete this.body.supportNodes[viaId]; + } + } + this.body.edges[edgeId].disconnect(); + delete this.body.edges[edgeId]; + } + } + } - /** - * 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 () { - var specificEdges = arguments[0] === undefined ? this.body.edges : arguments[0]; - if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { - for (var edgeId in specificEdges) { - if (specificEdges.hasOwnProperty(edgeId)) { - var edge = specificEdges[edgeId]; - if (edge.via == null) { - var nodeId = "edgeId:".concat(edge.id); - var node = new Node({ id: nodeId, - mass: 1, - shape: "circle", - image: "", - internalMultiplier: 1 - }, {}, {}, this.constants); - this.body.supportNodes[nodeId] = node; - edge.via = node; - edge.via.parentEdgeId = edge.id; - edge.positionBezierNode(); + // remove contained nodes from global + for (var nodeId in childNodesObj) { + if (childNodesObj.hasOwnProperty(nodeId)) { + this.clusteredNodes[nodeId] = { clusterId: clusterNodeProperties.id, node: this.body.nodes[nodeId] }; + delete this.body.nodes[nodeId]; + } } - } - } - this._updateNodeIndexList(); - } - }; - /** - * 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]; - } - } - }; - /** - * Load the XY positions of the nodes into the dataset. - */ - Network.prototype.storePosition = function () { - console.log("storePosition is depricated: use .storePositions() from now on."); - this.storePositions(); - }; + // finally put the cluster node into global + this.body.nodes[clusterNodeProperties.id] = clusterNode; - /** - * Load the XY positions of the nodes into the dataset. - */ - Network.prototype.storePositions = function () { - var dataArray = []; - for (var nodeId in this.body.nodes) { - if (this.body.nodes.hasOwnProperty(nodeId)) { - var node = this.body.nodes[nodeId]; - var allowedToMoveX = !this.body.nodes.xFixed; - var allowedToMoveY = !this.body.nodes.yFixed; - if (this.body.data.nodes._data[nodeId].x != Math.round(node.x) || this.body.data.nodes._data[nodeId].y != Math.round(node.y)) { - dataArray.push({ id: nodeId, x: Math.round(node.x), y: Math.round(node.y), allowedToMoveX: allowedToMoveX, allowedToMoveY: allowedToMoveY }); - } - } - } - this.body.data.nodes.update(dataArray); - }; - /** - * Return the positions of the nodes. - */ - Network.prototype.getPositions = function (ids) { - var dataArray = {}; - if (ids !== undefined) { - if (Array.isArray(ids) == true) { - for (var i = 0; i < ids.length; i++) { - if (this.body.nodes[ids[i]] !== undefined) { - var node = this.body.nodes[ids[i]]; - dataArray[ids[i]] = { x: Math.round(node.x), y: Math.round(node.y) }; + // push new edges to global + for (var i = 0; i < newEdges.length; i++) { + this.body.edges[newEdges[i].id] = newEdges[i]; + this.body.edges[newEdges[i].id].connect(); } - } - } else { - if (this.body.nodes[ids] !== undefined) { - var node = this.body.nodes[ids]; - dataArray[ids] = { x: Math.round(node.x), y: Math.round(node.y) }; - } - } - } else { - for (var nodeId in this.body.nodes) { - if (this.body.nodes.hasOwnProperty(nodeId)) { - var node = this.body.nodes[nodeId]; - dataArray[nodeId] = { x: Math.round(node.x), y: Math.round(node.y) }; - } - } - } - return dataArray; - }; - - /** - * Returns true when the Network is active. - * @returns {boolean} - */ - Network.prototype.isActive = function () { - return !this.activator || this.activator.active; - }; + // create bezier nodes for smooth curves if needed + this.body.emitter.emit("_newEdgesCreated"); - /** - * Sets the scale - * @returns {Number} - */ - Network.prototype.setScale = function () { - return this._setScale(); - }; + // set ID to undefined so no duplicates arise + clusterNodeProperties.id = undefined; - /** - * Returns the scale - * @returns {Number} - */ - Network.prototype.getScale = function () { - return this._getScale(); - }; + // wrap up + if (doNotUpdateCalculationNodes !== true) { + this.body.emitter.emit("_dataChanged"); + } + }, + writable: true, + configurable: true + }, + isCluster: { - /** - * Check if a node is a cluster. - * @param nodeId - * @returns {*} - */ - Network.prototype.isCluster = function (nodeId) { - if (this.body.nodes[nodeId] !== undefined) { - return this.body.nodes[nodeId].isCluster; - } else { - console.log("Node does not exist."); - return false; - } - }; - /** - * Returns the scale - * @returns {Number} - */ - Network.prototype.getCenterCoordinates = function () { - return this.DOMtoCanvas({ x: 0.5 * this.frame.canvas.clientWidth, y: 0.5 * this.frame.canvas.clientHeight }); - }; + /** + * Check if a node is a cluster. + * @param nodeId + * @returns {*} + */ + value: function isCluster(nodeId) { + if (this.body.nodes[nodeId] !== undefined) { + return this.body.nodes[nodeId].isCluster; + } else { + console.log("Node does not exist."); + return false; + } + }, + writable: true, + configurable: true + }, + _getClusterPosition: { + /** + * get the position of the cluster node based on what's inside + * @param {object} childNodesObj | object with node objects, id as keys + * @returns {{x: number, y: number}} + * @private + */ + value: function _getClusterPosition(childNodesObj) { + var childKeys = Object.keys(childNodesObj); + var minX = childNodesObj[childKeys[0]].x; + var maxX = childNodesObj[childKeys[0]].x; + var minY = childNodesObj[childKeys[0]].y; + var maxY = childNodesObj[childKeys[0]].y; + var node; + for (var i = 0; i < childKeys.lenght; i++) { + node = childNodesObj[childKeys[0]]; + minX = node.x < minX ? node.x : minX; + maxX = node.x > maxX ? node.x : maxX; + minY = node.y < minY ? node.y : minY; + maxY = node.y > maxY ? node.y : maxY; + } + return { x: 0.5 * (minX + maxX), y: 0.5 * (minY + maxY) }; + }, + writable: true, + configurable: true + }, + openCluster: { - Network.prototype.getBoundingBox = function (nodeId) { - if (this.body.nodes[nodeId] !== undefined) { - return this.body.nodes[nodeId].boundingBox; - } - }; - Network.prototype.getConnectedNodes = function (nodeId) { - var nodeList = []; - if (this.body.nodes[nodeId] !== undefined) { - var node = this.body.nodes[nodeId]; - var nodeObj = { nodeId: true }; // used to quickly check if node already exists - for (var i = 0; i < node.edges.length; i++) { - var edge = node.edges[i]; - if (edge.toId == nodeId) { - if (nodeObj[edge.fromId] === undefined) { - nodeList.push(edge.fromId); - nodeObj[edge.fromId] = true; + /** + * Open a cluster by calling this function. + * @param {String} clusterNodeId | the ID of the cluster node + * @param {Boolean} doNotUpdateCalculationNodes | wrap up afterwards if not true + */ + value: function openCluster(clusterNodeId, doNotUpdateCalculationNodes) { + // kill conditions + if (clusterNodeId === undefined) { + throw new Error("No clusterNodeId supplied to openCluster."); } - } else if (edge.fromId == nodeId) { - if (nodeObj[edge.toId] === undefined) { - nodeList.push(edge.toId); - nodeObj[edge.toId] = true; + if (this.body.nodes[clusterNodeId] === undefined) { + throw new Error("The clusterNodeId supplied to openCluster does not exist."); } - } - } - } - return nodeList; - }; + if (this.body.nodes[clusterNodeId].containedNodes === undefined) { + console.log("The node:" + clusterNodeId + " is not a cluster.");return; + }; + var node = this.body.nodes[clusterNodeId]; + var containedNodes = node.containedNodes; + var containedEdges = node.containedEdges; - Network.prototype.getEdgesFromNode = function (nodeId) { - var edgesList = []; - if (this.body.nodes[nodeId] !== undefined) { - var node = this.body.nodes[nodeId]; - for (var i = 0; i < node.edges.length; i++) { - edgesList.push(node.edges[i].id); - } - } - return edgesList; - }; + // release nodes + for (var nodeId in containedNodes) { + if (containedNodes.hasOwnProperty(nodeId)) { + this.body.nodes[nodeId] = containedNodes[nodeId]; + // inherit position + this.body.nodes[nodeId].x = node.x; + this.body.nodes[nodeId].y = node.y; - Network.prototype.generateColorObject = function (color) { - return util.parseColor(color); - }; + // inherit speed + this.body.nodes[nodeId].vx = node.vx; + this.body.nodes[nodeId].vy = node.vy; - module.exports = Network; + delete this.clusteredNodes[nodeId]; + } + } -/***/ }, -/* 52 */ -/***/ function(module, exports, __webpack_require__) { + // release edges + for (var edgeId in containedEdges) { + if (containedEdges.hasOwnProperty(edgeId)) { + this.body.edges[edgeId] = containedEdges[edgeId]; + this.body.edges[edgeId].connect(); + var edge = this.body.edges[edgeId]; + if (edge.connected === false) { + if (this.clusteredNodes[edge.fromId] !== undefined) { + this._connectEdge(edge, edge.fromId, true); + } + if (this.clusteredNodes[edge.toId] !== undefined) { + this._connectEdge(edge, edge.toId, false); + } + } + } + } - "use strict"; + this.body.emitter.emit("_newEdgesCreated", containedEdges); - /** - * 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(); - } - // token types enumeration - var TOKENTYPE = { - NULL: 0, - DELIMITER: 1, - IDENTIFIER: 2, - UNKNOWN: 3 - }; + var edgeIds = []; + for (var i = 0; i < node.edges.length; i++) { + edgeIds.push(node.edges[i].id); + } - // map with all delimiters - var DELIMITERS = { - "{": true, - "}": true, - "[": true, - "]": true, - ";": true, - "=": true, - ",": true, + // remove edges in clusterNode + for (var i = 0; i < edgeIds.length; i++) { + var edge = this.body.edges[edgeIds[i]]; + // if the edge should have been connected to a contained node + if (edge.fromArray.length > 0 && edge.fromId == clusterNodeId) { + // the node in the from array was contained in the cluster + if (this.body.nodes[edge.fromArray[0].id] !== undefined) { + this._connectEdge(edge, edge.fromArray[0].id, true); + } + } else if (edge.toArray.length > 0 && edge.toId == clusterNodeId) { + // the node in the to array was contained in the cluster + if (this.body.nodes[edge.toArray[0].id] !== undefined) { + this._connectEdge(edge, edge.toArray[0].id, false); + } + } else { + var edgeId = edgeIds[i]; + var viaId = this.body.edges[edgeId].via.id; + if (viaId) { + this.body.edges[edgeId].via = null; + delete this.body.supportNodes[viaId]; + } + // this removes the edge from node.edges, which is why edgeIds is formed + this.body.edges[edgeId].disconnect(); + delete this.body.edges[edgeId]; + } + } - "->": true, - "--": true - }; + // remove clusterNode + delete this.body.nodes[clusterNodeId]; - 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 + if (doNotUpdateCalculationNodes !== true) { + this.body.emitter.emit("_dataChanged"); + } + }, + writable: true, + configurable: true + }, + _connectEdge: { - /** - * Get the first character from the dot file. - * The character is stored into the char c. If the end of the dot file is - * reached, the function puts an empty string in c. - */ - function first() { - index = 0; - c = dot.charAt(0); - } - /** - * Get the next character from the dot file. - * The character is stored into the char c. If the end of the dot file is - * reached, the function puts an empty string in c. - */ - function next() { - index++; - c = dot.charAt(index); - } - /** - * Preview the next character from the dot file. - * @return {String} cNext - */ - function nextPreview() { - return dot.charAt(index + 1); - } + /** + * Connect an edge that was previously contained from cluster A to cluster B if the node that it was originally connected to + * is currently residing in cluster B + * @param edge + * @param nodeId + * @param from + * @private + */ + value: function _connectEdge(edge, nodeId, from) { + var clusterStack = this._getClusterStack(nodeId); + if (from == true) { + edge.from = clusterStack[clusterStack.length - 1]; + edge.fromId = clusterStack[clusterStack.length - 1].id; + clusterStack.pop(); + edge.fromArray = clusterStack; + } else { + edge.to = clusterStack[clusterStack.length - 1]; + edge.toId = clusterStack[clusterStack.length - 1].id; + clusterStack.pop(); + edge.toArray = clusterStack; + } + edge.connect(); + }, + writable: true, + configurable: true + }, + _getClusterStack: { - /** - * Test whether given character is alphabetic or numeric - * @param {String} c - * @return {Boolean} isAlphaNumeric - */ - var regexAlphaNumeric = /[a-zA-Z_0-9.:#]/; - function isAlphaNumeric(c) { - return regexAlphaNumeric.test(c); - } + /** + * Get the stack clusterId's that a certain node resides in. cluster A -> cluster B -> cluster C -> node + * @param nodeId + * @returns {Array} + * @private + */ + value: function _getClusterStack(nodeId) { + var stack = []; + var max = 100; + var counter = 0; - /** - * 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 = {}; - } + while (this.clusteredNodes[nodeId] !== undefined && counter < max) { + stack.push(this.clusteredNodes[nodeId].node); + nodeId = this.clusteredNodes[nodeId].clusterId; + counter++; + } + stack.push(this.body.nodes[nodeId]); + return stack; + }, + writable: true, + configurable: true + }, + _getConnectedId: { - 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 - */ - 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; - } - } - } + /** + * Get the Id the node is connected to + * @param edge + * @param nodeId + * @returns {*} + * @private + */ + value: function _getConnectedId(edge, nodeId) { + if (edge.toId != nodeId) { + return edge.toId; + } else if (edge.fromId != nodeId) { + return edge.fromId; + } else { + return edge.fromId; + } + }, + writable: true, + configurable: true + }, + _getHubSize: { - /** - * Add a node to a graph object. If there is already a node with - * the same id, their attributes will be merged. - * @param {Object} graph - * @param {Object} node - */ - function addNode(graph, node) { - var i, len; - var current = null; + /** + * 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%) + * + * @private + */ + value: function _getHubSize() { + var average = 0; + var averageSquared = 0; + var hubCounter = 0; + var largestHub = 0; - // 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; - } + for (var i = 0; i < this.body.nodeIndices.length; i++) { + var node = this.body.nodes[this.body.nodeIndices[i]]; + if (node.edges.length > largestHub) { + largestHub = node.edges.length; + } + average += node.edges.length; + averageSquared += Math.pow(node.edges.length, 2); + hubCounter += 1; + } + average = average / hubCounter; + averageSquared = averageSquared / hubCounter; - // 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; - } - } - } + var variance = averageSquared - Math.pow(average, 2); + var standardDeviation = Math.sqrt(variance); - 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 hubThreshold = Math.floor(average + 2 * standardDeviation); - // add node to this (sub)graph and all its parent graphs - for (i = graphs.length - 1; i >= 0; i--) { - var g = graphs[i]; + // always have at least one to cluster + if (hubThreshold > largestHub) { + hubThreshold = largestHub; + } - if (!g.nodes) { - g.nodes = []; - } - if (g.nodes.indexOf(current) == -1) { - g.nodes.push(current); + return hubThreshold; + }, + writable: true, + configurable: true } - } + }); - // merge attributes - if (node.attr) { - current.attr = merge(current.attr, node.attr); - } - } + return ClusterEngine; + })(); - /** - * 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 - } - } + exports.ClusterEngine = ClusterEngine; + Object.defineProperty(exports, "__esModule", { + value: 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 - }; +/***/ }, +/* 58 */ +/***/ function(module, exports, __webpack_require__) { - if (graph.edge) { - edge.attr = merge({}, graph.edge); // clone default attributes - } - edge.attr = merge(edge.attr || {}, attr); // merge attributes + "use strict"; - return edge; - } + var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; + + var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; /** - * Get next token in the current dot file. - * The token and token type are available as token and tokenType + * Created by Alex on 26-Feb-15. */ - function getToken() { - tokenType = TOKENTYPE.NULL; - token = ""; - // skip over whitespaces - while (c == " " || c == "\t" || c == "\n" || c == "\r") { - // space, tab, enter - next(); - } + if (typeof window !== "undefined") { + window.requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame || window.webkitRequestAnimationFrame || window.msRequestAnimationFrame; + } - do { - var isComment = false; + var CanvasRenderer = (function () { + function CanvasRenderer(body) { + var _this = this; + _classCallCheck(this, CanvasRenderer); - // skip comment - if (c == "#") { - // find the previous non-space character - var i = index - 1; - while (dot.charAt(i) == " " || dot.charAt(i) == "\t") { - i--; - } - if (dot.charAt(i) == "\n" || dot.charAt(i) == "") { - // the # is at the start of a line, this is indeed a line comment - while (c != "" && c != "\n") { - next(); - } - isComment = true; - } - } - if (c == "/" && nextPreview() == "/") { - // skip line comment - while (c != "" && c != "\n") { - next(); - } - isComment = true; - } - if (c == "/" && nextPreview() == "*") { - // skip block comment - while (c != "") { - if (c == "*" && nextPreview() == "/") { - // end of block comment found. skip these last two characters - next(); - next(); - break; - } else { - next(); - } - } - isComment = true; - } + this.body = body; - // skip over whitespaces - while (c == " " || c == "\t" || c == "\n" || c == "\r") { - // space, tab, enter - next(); - } - } while (isComment); + this.redrawRequested = false; + this.renderTimer = false; + this.requiresTimeout = true; + this.continueRendering = true; + this.renderRequests = 0; - // check for end of dot file - if (c == "") { - // token is still empty - tokenType = TOKENTYPE.DELIMITER; - return; - } + this.translation = { x: 0, y: 0 }; + this.scale = 1; + this.canvasTopLeft = { x: 0, y: 0 }; + this.canvasBottomRight = { x: 0, y: 0 }; - // check for delimiters consisting of 2 characters - var c2 = c + nextPreview(); - if (DELIMITERS[c2]) { - tokenType = TOKENTYPE.DELIMITER; - token = c2; - next(); - next(); - return; - } + this.body.emitter.on("_setScale", function (scale) { + return _this.scale = scale; + }); + this.body.emitter.on("_setTranslation", function (translation) { + _this.translation.x = translation.x;_this.translation.y = translation.y; + }); + this.body.emitter.on("_redraw", this._redraw.bind(this)); + this.body.emitter.on("_redrawHidden", this._redraw.bind(this, true)); + this.body.emitter.on("_requestRedraw", this._requestRedraw.bind(this)); + this.body.emitter.on("_startRendering", function () { + _this.renderRequests += 1;_this.continueRendering = true;_this.startRendering(); + }); + this.body.emitter.on("_stopRendering", function () { + _this.renderRequests -= 1;_this.continueRendering = _this.renderRequests > 0; + }); - // check for delimiters consisting of 1 character - if (DELIMITERS[c]) { - tokenType = TOKENTYPE.DELIMITER; - token = c; - next(); - return; + this._determineBrowserMethod(); } - // 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(); + _prototypeProperties(CanvasRenderer, null, { + startRendering: { + value: function startRendering() { + if (this.continueRendering === true) { + if (!this.renderTimer) { + if (this.requiresTimeout == true) { + this.renderTimer = window.setTimeout(this.renderStep.bind(this), this.simulationInterval); // wait this.renderTimeStep milliseconds and perform the animation step function + } else { + this.renderTimer = window.requestAnimationFrame(this.renderStep.bind(this)); // wait this.renderTimeStep milliseconds and perform the animation step function + } + } + } else {} + }, + writable: true, + configurable: true + }, + renderStep: { + value: function renderStep() { + // reset the renderTimer so a new scheduled animation step can be set + this.renderTimer = undefined; - while (isAlphaNumeric(c)) { - token += c; - next(); - } - if (token == "false") { - token = false; // convert to boolean - } else if (token == "true") { - token = true; // convert to boolean - } else if (!isNaN(Number(token))) { - token = Number(token); // convert to number - } - tokenType = TOKENTYPE.IDENTIFIER; - return; - } + if (this.requiresTimeout == true) { + // this schedules a new simulation step + this.startRendering(); + } - // 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; - } + this._redraw(); - // 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) + "\""); - } + if (this.requiresTimeout == false) { + // this schedules a new simulation step + this.startRendering(); + } + }, + writable: true, + configurable: true + }, + setCanvas: { + value: function setCanvas(canvas) { + this.canvas = canvas; + }, + writable: true, + configurable: true + }, + redraw: { + /** + * Redraw the network with the current data + * chart will be resized too. + */ + value: function redraw() { + this.setSize(this.constants.width, this.constants.height); + this._redraw(); + }, + writable: true, + configurable: true + }, + _requestRedraw: { - /** - * Parse a graph. - * @returns {Object} graph - */ - function parseGraph() { - var graph = {}; + /** + * Redraw the network with the current data + * @param hidden | used to get the first estimate of the node sizes. only the nodes are drawn after which they are quickly drawn over. + * @private + */ + value: function _requestRedraw(hidden) { + if (this.redrawRequested !== true) { + this.redrawRequested = true; + if (this.requiresTimeout === true) { + window.setTimeout(this._redraw.bind(this, hidden), 0); + } else { + window.requestAnimationFrame(this._redraw.bind(this, hidden, true)); + } + } + }, + writable: true, + configurable: true + }, + _redraw: { + value: function _redraw() { + var hidden = arguments[0] === undefined ? false : arguments[0]; + this.body.emitter.emit("_beforeRender"); - first(); - getToken(); + this.redrawRequested = false; + var ctx = this.canvas.frame.canvas.getContext("2d"); - // optional strict keyword - if (token == "strict") { - graph.strict = true; - getToken(); - } + ctx.setTransform(this.pixelRatio, 0, 0, this.pixelRatio, 0, 0); - // graph or digraph keyword - if (token == "graph" || token == "digraph") { - graph.type = token; - getToken(); - } + // clear the canvas + var w = this.canvas.frame.canvas.clientWidth; + var h = this.canvas.frame.canvas.clientHeight; + ctx.clearRect(0, 0, w, h); - // optional graph id - if (tokenType == TOKENTYPE.IDENTIFIER) { - graph.id = token; - getToken(); - } + // set scaling and translation + ctx.save(); + ctx.translate(this.translation.x, this.translation.y); + ctx.scale(this.scale, this.scale); - // open angle bracket - if (token != "{") { - throw newSyntaxError("Angle bracket { expected"); - } - getToken(); + this.canvasTopLeft = this.canvas.DOMtoCanvas({ x: 0, y: 0 }); + this.canvasBottomRight = this.canvas.DOMtoCanvas({ x: this.canvas.frame.canvas.clientWidth, y: this.canvas.frame.canvas.clientHeight }); - // statements - parseStatements(graph); + if (hidden === false) { + // todo: solve this + //if (this.drag.dragging == false || this.drag.dragging === undefined || this.constants.hideEdgesOnDrag == false) { + this._drawEdges(ctx); + //} + } - // close angle bracket - if (token != "}") { - throw newSyntaxError("Angle bracket } expected"); - } - getToken(); + // todo: solve this + //if (this.drag.dragging == false || this.drag.dragging === undefined || this.constants.hideNodesOnDrag == false) { + this._drawNodes(ctx, this.body.nodes, hidden); + //} - // end of file - if (token !== "") { - throw newSyntaxError("End of file expected"); - } - getToken(); + if (hidden === false) { + if (this.controlNodesActive == true) { + this._drawControlNodes(ctx); + } + } - // remove temporary default properties - delete graph.node; - delete graph.edge; - delete graph.graph; + //this._drawNodes(ctx,this.body.supportNodes,true); + // this.physics.nodesSolver._debug(ctx,"#F00F0F"); - return graph; - } + // restore original scaling and translation + ctx.restore(); - /** - * Parse a list with statements. - * @param {Object} graph - */ - function parseStatements(graph) { - while (token !== "" && token != "}") { - parseStatement(graph); - if (token == ";") { - getToken(); - } - } - } + if (hidden === true) { + ctx.clearRect(0, 0, w, h); + } + }, + writable: true, + configurable: true + }, + _drawNodes: { - /** - * 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; - } + /** + * Redraw all nodes + * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); + * @param {CanvasRenderingContext2D} ctx + * @param {Boolean} [alwaysShow] + * @private + */ + value: function _drawNodes(ctx, nodes) { + var alwaysShow = arguments[2] === undefined ? false : arguments[2]; + // first draw the unselected nodes + var selected = []; - // parse an attribute statement - var attr = parseAttributeStatement(graph); - if (attr) { - return; - } + 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 (alwaysShow === true) { + nodes[id].draw(ctx); + } else if (nodes[id].inArea() === true) { + nodes[id].draw(ctx); + } + } + } + } - // parse node - if (tokenType != TOKENTYPE.IDENTIFIER) { - throw newSyntaxError("Identifier expected"); - } - var id = token; // id can be a string or a number - getToken(); + // 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); + } + } + }, + writable: true, + configurable: true + }, + _drawEdges: { - 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; + /** + * Redraw all edges + * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); + * @param {CanvasRenderingContext2D} ctx + * @private + */ + value: function _drawEdges(ctx) { + var edges = this.body.edges; + for (var id in edges) { + if (edges.hasOwnProperty(id)) { + var edge = edges[id]; + edge.setScale(this.scale); + if (edge.connected === true) { + edges[id].draw(ctx); + } + } + } + }, + writable: true, + configurable: true + }, + _drawControlNodes: { - // optional subgraph keyword - if (token == "subgraph") { - subgraph = {}; - subgraph.type = "subgraph"; - getToken(); + /** + * Redraw all edges + * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); + * @param {CanvasRenderingContext2D} ctx + * @private + */ + value: function _drawControlNodes(ctx) { + var edges = this.body.edges; + for (var id in edges) { + if (edges.hasOwnProperty(id)) { + edges[id]._drawControlNodes(ctx); + } + } + }, + writable: true, + configurable: true + }, + _determineBrowserMethod: { - // optional graph id - if (tokenType == TOKENTYPE.IDENTIFIER) { - subgraph.id = token; - getToken(); + /** + * Determine if the browser requires a setTimeout or a requestAnimationFrame. This was required because + * some implementations (safari and IE9) did not support requestAnimationFrame + * @private + */ + value: function _determineBrowserMethod() { + if (typeof window !== "undefined") { + var browserType = navigator.userAgent.toLowerCase(); + this.requiresTimeout = false; + if (browserType.indexOf("msie 9.0") != -1) { + // IE 9 + this.requiresTimeout = true; + } else if (browserType.indexOf("safari") != -1) { + // safari + if (browserType.indexOf("chrome") <= -1) { + this.requiresTimeout = true; + } + } + } else { + this.requiresTimeout = true; + } + }, + writable: true, + configurable: true } - } - - // open angle bracket - if (token == "{") { - getToken(); + }); - if (!subgraph) { - subgraph = {}; - } - subgraph.parent = graph; - subgraph.node = graph.node; - subgraph.edge = graph.edge; - subgraph.graph = graph.graph; + return CanvasRenderer; + })(); - // statements - parseStatements(subgraph); + exports.CanvasRenderer = CanvasRenderer; + Object.defineProperty(exports, "__esModule", { + value: true + }); - // close angle bracket - if (token != "}") { - throw newSyntaxError("Angle bracket } expected"); - } - getToken(); +/***/ }, +/* 59 */ +/***/ function(module, exports, __webpack_require__) { - // remove temporary default properties - delete subgraph.node; - delete subgraph.edge; - delete subgraph.graph; - delete subgraph.parent; + "use strict"; - // register at the parent graph - if (!graph.subgraphs) { - graph.subgraphs = []; - } - graph.subgraphs.push(subgraph); - } + var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; - return subgraph; - } + var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; /** - * 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. + * Created by Alex on 26-Feb-15. */ - function parseAttributeStatement(graph) { - // attribute statements - if (token == "node") { - getToken(); - // node attributes - graph.node = parseAttributeList(); - return "node"; - } else if (token == "edge") { - getToken(); - // edge attributes - graph.edge = parseAttributeList(); - return "edge"; - } else if (token == "graph") { - getToken(); + var Hammer = __webpack_require__(45); - // graph attributes - graph.graph = parseAttributeList(); - return "graph"; - } + var Canvas = (function () { + /** + * 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 Canvas(body, options) { + var _this = this; + _classCallCheck(this, Canvas); - return null; - } + this.body = body; + this.setOptions(options); - /** - * 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); + this.translation = { x: 0, y: 0 }; + this.scale = 1; + this.body.emitter.on("_setScale", function (scale) { + _this.scale = scale; + }); + this.body.emitter.on("_setTranslation", function (translation) { + _this.translation.x = translation.x;_this.translation.y = translation.y; + }); + this.body.emitter.once("resize", function (obj) { + _this.translation.x = obj.width * 0.5;_this.translation.y = obj.height * 0.5;_this.body.emitter.emit("_setTranslation", _this.translation); + }); - // edge statements - parseEdge(graph, id); - } + this.pixelRatio = 1; - /** - * 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(); + // remove all elements from the container element. + while (this.body.container.hasChildNodes()) { + this.body.container.removeChild(this.body.container.firstChild); + } - var subgraph = parseSubgraph(graph); - if (subgraph) { - to = subgraph; + this.frame = document.createElement("div"); + this.frame.className = "vis network-frame"; + this.frame.style.position = "relative"; + this.frame.style.overflow = "hidden"; + this.frame.tabIndex = 900; + + ////////////////////////////////////////////////////////////////// + + 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); } else { - if (tokenType != TOKENTYPE.IDENTIFIER) { - throw newSyntaxError("Identifier or subgraph expected"); - } - to = token; - addNode(graph, { - id: to - }); - getToken(); + var ctx = this.frame.canvas.getContext("2d"); + this.pixelRatio = (window.devicePixelRatio || 1) / (ctx.webkitBackingStorePixelRatio || ctx.mozBackingStorePixelRatio || ctx.msBackingStorePixelRatio || ctx.oBackingStorePixelRatio || ctx.backingStorePixelRatio || 1); + + //this.pixelRatio = Math.max(1,this.pixelRatio); // this is to account for browser zooming out. The pixel ratio is ment to switch between 1 and 2 for HD screens. + this.frame.canvas.getContext("2d").setTransform(this.pixelRatio, 0, 0, this.pixelRatio, 0, 0); } - // parse edge attributes - var attr = parseAttributeList(); + // add the frame to the container element + this.body.container.appendChild(this.frame); - // create edge - var edge = createEdge(graph, from, to, type, attr); - addEdge(graph, edge); + this.body.emitter.emit("_setScale", 1);; + this.body.emitter.emit("_setTranslation", { x: 0.5 * this.frame.canvas.clientWidth, y: 0.5 * this.frame.canvas.clientHeight });; - from = to; + this._bindHammer(); } - } - /** - * Parse a set with attributes, - * for example [label="1.000", shape=solid] - * @return {Object | null} attr - */ - function parseAttributeList() { - var attr = null; + _prototypeProperties(Canvas, null, { + _bindHammer: { - 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(); + /** + * This function binds hammer, it can be repeated over and over due to the uniqueness check. + * @private + */ + value: function _bindHammer() { + var me = this; + if (this.hammer !== undefined) { + this.hammer.dispose(); + } + this.drag = {}; + this.pinch = {}; + this.hammer = Hammer(this.frame.canvas, { + prevent_default: true + }); + this.hammer.on("tap", me.body.eventListeners.onTap); + this.hammer.on("doubletap", me.body.eventListeners.onDoubleTap); + this.hammer.on("hold", me.body.eventListeners.onHold); + this.hammer.on("touch", me.body.eventListeners.onTouch); + this.hammer.on("dragstart", me.body.eventListeners.onDragStart); + this.hammer.on("drag", me.body.eventListeners.onDrag); + this.hammer.on("dragend", me.body.eventListeners.onDragEnd); - if (tokenType != TOKENTYPE.IDENTIFIER) { - throw newSyntaxError("Attribute value expected"); - } - var value = token; - setValue(attr, name, value); // name can be a path + if (this.options.zoomable == true) { + this.hammer.on("mousewheel", me.body.eventListeners.onMouseWheel.bind(me)); + this.hammer.on("DOMMouseScroll", me.body.eventListeners.onMouseWheel.bind(me)); // for FF + this.hammer.on("pinch", me.body.eventListeners.onPinch.bind(me)); + } - getToken(); - if (token == ",") { - getToken(); - } - } + this.hammer.on("mousemove", me.body.eventListeners.onMouseMove.bind(me)); - if (token != "]") { - throw newSyntaxError("Bracket ] expected"); - } - getToken(); - } + this.hammerFrame = Hammer(this.frame, { + prevent_default: true + }); + this.hammerFrame.on("release", me.body.eventListeners.onRelease.bind(me)); + }, + writable: true, + configurable: true + }, + setOptions: { + value: function setOptions() { + var options = arguments[0] === undefined ? {} : arguments[0]; + this.options = options; + }, + writable: true, + configurable: true + }, + setSize: { - return attr; - } + /** + * 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%') + */ + value: function setSize(width, height) { + var emitEvent = false; + var oldWidth = this.frame.canvas.width; + var oldHeight = this.frame.canvas.height; + if (width != this.options.width || height != this.options.height || this.frame.style.width != width || this.frame.style.height != height) { + this.frame.style.width = width; + this.frame.style.height = height; - /** - * 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 + ")"); - } + this.frame.canvas.style.width = "100%"; + this.frame.canvas.style.height = "100%"; - /** - * Chop off text after a maximum length - * @param {String} text - * @param {Number} maxLength - * @returns {String} - */ - function chop(text, maxLength) { - return text.length <= maxLength ? text : text.substr(0, 27) + "..."; - } + this.frame.canvas.width = this.frame.canvas.clientWidth * this.pixelRatio; + this.frame.canvas.height = this.frame.canvas.clientHeight * this.pixelRatio; - /** - * 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 (Array.isArray(array1)) { - array1.forEach(function (elem1) { - if (Array.isArray(array2)) { - array2.forEach(function (elem2) { - fn(elem1, elem2); - }); - } else { - fn(elem1, array2); - } - }); - } else { - if (Array.isArray(array2)) { - array2.forEach(function (elem2) { - fn(array1, elem2); - }); - } else { - fn(array1, array2); - } - } - } + this.options.width = width; + this.options.height = height; - /** - * 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 - */ - var convertEdge = function (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); - }); + emitEvent = true; + } else { + // this would adapt the width of the canvas to the width from 100% if and only if + // there is a change. - if (dotEdge.to instanceof Object && dotEdge.to.edges) { - dotEdge.to.edges.forEach(function (subEdge) { - var graphEdge = convertEdge(subEdge); - graphData.edges.push(graphEdge); - }); - } - }); - } + if (this.frame.canvas.width != this.frame.canvas.clientWidth * this.pixelRatio) { + this.frame.canvas.width = this.frame.canvas.clientWidth * this.pixelRatio; + emitEvent = true; + } + if (this.frame.canvas.height != this.frame.canvas.clientHeight * this.pixelRatio) { + this.frame.canvas.height = this.frame.canvas.clientHeight * this.pixelRatio; + emitEvent = true; + } + } - // copy the options - if (dotData.attr) { - graphData.options = dotData.attr; - } + if (emitEvent === true) { + this.body.emitter.emit("resize", { width: this.frame.canvas.width * this.pixelRatio, height: this.frame.canvas.height * this.pixelRatio, oldWidth: oldWidth * this.pixelRatio, oldHeight: oldHeight * this.pixelRatio }); + } + }, + writable: true, + configurable: true + }, + _XconvertDOMtoCanvas: { - return graphData; - } - // exports - exports.parseDOT = parseDOT; - exports.DOTToGraph = DOTToGraph; + /** + * 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 + */ + value: function _XconvertDOMtoCanvas(x) { + return (x - this.translation.x) / this.scale; + }, + writable: true, + configurable: true + }, + _XconvertCanvasToDOM: { -/***/ }, -/* 53 */ -/***/ function(module, exports, __webpack_require__) { + /** + * 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 + */ + value: function _XconvertCanvasToDOM(x) { + return x * this.scale + this.translation.x; + }, + writable: true, + configurable: true + }, + _YconvertDOMtoCanvas: { - "use strict"; + /** + * 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 + */ + value: function _YconvertDOMtoCanvas(y) { + return (y - this.translation.y) / this.scale; + }, + writable: true, + configurable: true + }, + _YconvertCanvasToDOM: { - function parseGephi(gephiJSON, options) { - var edges = []; - var nodes = []; - this.options = { - edges: { - inheritColor: true + /** + * Convert the Y coordinate in canvas-space (the simulation sandbox, which the camera looks upon) to + * the Y coordinate in DOM-space (coordinate point in browser relative to the container div) + * @param {number} y + * @returns {number} + * @private + */ + value: function _YconvertCanvasToDOM(y) { + return y * this.scale + this.translation.y; + }, + writable: true, + configurable: true }, - nodes: { - allowedToMove: false, - parseColor: false - } - }; + canvasToDOM: { - 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); - } + /** + * + * @param {object} pos = {x: number, y: number} + * @returns {{x: number, y: number}} + * @constructor + */ + value: function canvasToDOM(pos) { + return { x: this._XconvertCanvasToDOM(pos.x), y: this._YconvertCanvasToDOM(pos.y) }; + }, + writable: true, + configurable: true + }, + DOMtoCanvas: { - 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; + /** + * + * @param {object} pos = {x: number, y: number} + * @returns {{x: number, y: number}} + * @constructor + */ + value: function DOMtoCanvas(pos) { + return { x: this._XconvertDOMtoCanvas(pos.x), y: this._YconvertDOMtoCanvas(pos.y) }; + }, + writable: true, + configurable: true } - node.radius = gNode.size; - node.allowedToMoveX = this.options.nodes.allowedToMove; - node.allowedToMoveY = this.options.nodes.allowedToMove; - nodes.push(node); - } + }); - return { nodes: nodes, edges: edges }; - } + return Canvas; + })(); - exports.parseGephi = parseGephi; + exports.Canvas = Canvas; + Object.defineProperty(exports, "__esModule", { + value: true + }); /***/ }, -/* 54 */ +/* 60 */ /***/ function(module, exports, __webpack_require__) { "use strict"; - var util = __webpack_require__(1); - - /** - * @class Groups - * This class can store groups and properties specific for groups. - */ - function Groups() { - this.clear(); - this.defaultIndex = 0; - this.groupsArray = []; - this.groupIndex = 0; - this.useDefaultGroups = true; - } + var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; + var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; /** - * default constants for group colors + * Created by Alex on 26-Feb-15. */ - Groups.DEFAULT = [{ border: "#2B7CE9", background: "#97C2FC", highlight: { border: "#2B7CE9", background: "#D2E5FF" }, hover: { border: "#2B7CE9", background: "#D2E5FF" } }, // 0: blue - { border: "#FFA500", background: "#FFFF00", highlight: { border: "#FFA500", background: "#FFFFA3" }, hover: { border: "#FFA500", background: "#FFFFA3" } }, // 1: yellow - { border: "#FA0A10", background: "#FB7E81", highlight: { border: "#FA0A10", background: "#FFAFB1" }, hover: { border: "#FA0A10", background: "#FFAFB1" } }, // 2: red - { border: "#41A906", background: "#7BE141", highlight: { border: "#41A906", background: "#A1EC76" }, hover: { border: "#41A906", background: "#A1EC76" } }, // 3: green - { border: "#E129F0", background: "#EB7DF4", highlight: { border: "#E129F0", background: "#F0B3F5" }, hover: { border: "#E129F0", background: "#F0B3F5" } }, // 4: magenta - { border: "#7C29F0", background: "#AD85E4", highlight: { border: "#7C29F0", background: "#D3BDF0" }, hover: { border: "#7C29F0", background: "#D3BDF0" } }, // 5: purple - { border: "#C37F00", background: "#FFA807", highlight: { border: "#C37F00", background: "#FFCA66" }, hover: { border: "#C37F00", background: "#FFCA66" } }, // 6: orange - { border: "#4220FB", background: "#6E6EFD", highlight: { border: "#4220FB", background: "#9B9BFD" }, hover: { border: "#4220FB", background: "#9B9BFD" } }, // 7: darkblue - { border: "#FD5A77", background: "#FFC0CB", highlight: { border: "#FD5A77", background: "#FFD1D9" }, hover: { border: "#FD5A77", background: "#FFD1D9" } }, // 8: pink - { border: "#4AD63A", background: "#C2FABC", highlight: { border: "#4AD63A", background: "#E6FFE3" }, hover: { border: "#4AD63A", background: "#E6FFE3" } }, // 9: mint - { border: "#990000", background: "#EE0000", highlight: { border: "#BB0000", background: "#FF3333" }, hover: { border: "#BB0000", background: "#FF3333" } }, // 10:bright red + var util = __webpack_require__(1); - { border: "#FF6000", background: "#FF6000", highlight: { border: "#FF6000", background: "#FF6000" }, hover: { border: "#FF6000", background: "#FF6000" } }, // 12: real orange - { border: "#97C2FC", background: "#2B7CE9", highlight: { border: "#D2E5FF", background: "#2B7CE9" }, hover: { border: "#D2E5FF", background: "#2B7CE9" } }, // 13: blue - { border: "#399605", background: "#255C03", highlight: { border: "#399605", background: "#255C03" }, hover: { border: "#399605", background: "#255C03" } }, // 14: green - { border: "#B70054", background: "#FF007E", highlight: { border: "#B70054", background: "#FF007E" }, hover: { border: "#B70054", background: "#FF007E" } }, // 15: magenta - { border: "#AD85E4", background: "#7C29F0", highlight: { border: "#D3BDF0", background: "#7C29F0" }, hover: { border: "#D3BDF0", background: "#7C29F0" } }, // 16: purple - { border: "#4557FA", background: "#000EA1", highlight: { border: "#6E6EFD", background: "#000EA1" }, hover: { border: "#6E6EFD", background: "#000EA1" } }, // 17: darkblue - { border: "#FFC0CB", background: "#FD5A77", highlight: { border: "#FFD1D9", background: "#FD5A77" }, hover: { border: "#FFD1D9", background: "#FD5A77" } }, // 18: pink - { border: "#C2FABC", background: "#74D66A", highlight: { border: "#E6FFE3", background: "#74D66A" }, hover: { border: "#E6FFE3", background: "#74D66A" } }, // 19: mint + var View = (function () { + function View(body, options) { + var _this = this; + _classCallCheck(this, View); - { border: "#EE0000", background: "#990000", highlight: { border: "#FF3333", background: "#BB0000" }, hover: { border: "#FF3333", background: "#BB0000" } }]; + this.body = body; + this.setOptions(options); + this.animationSpeed = 1 / this.renderRefreshRate; + this.animationEasingFunction = "easeInOutQuint"; + this.easingTime = 0; + this.sourceScale = 0; + this.targetScale = 0; + this.sourceTranslation = 0; + this.targetTranslation = 0; + this.lockedOnNodeId = null; + this.lockedOnNodeOffset = null; + this.touchTime = 0; - /** - * 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; - }; - }; + this.translation = { x: 0, y: 0 }; + this.scale = 1; + this.viewFunction = undefined; - /** - * 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) { - if (this.useDefaultGroups === false && this.groupsArray.length > 0) { - // create new group - var index = this.groupIndex % this.groupsArray.length; - this.groupIndex++; - group = {}; - group.color = this.groups[this.groupsArray[index]]; - this.groups[groupname] = group; - } else { - // create new group - var index = this.defaultIndex % Groups.DEFAULT.length; - this.defaultIndex++; - group = {}; - group.color = Groups.DEFAULT[index]; - this.groups[groupname] = group; - } + this.body.emitter.on("zoomExtent", this.zoomExtent.bind(this)); + this.body.emitter.on("_setScale", function (scale) { + return _this.scale = scale; + }); + this.body.emitter.on("_setTranslation", function (translation) { + _this.translation.x = translation.x;_this.translation.y = translation.y; + }); + this.body.emitter.on("animationFinished", function () { + _this.body.emitter.emit("_stopRendering"); + }); + this.body.emitter.on("unlockNode", this.releaseNode.bind(this)); } - return group; - }; - - /** - * Add a custom group style - * @param {String} groupName - * @param {Object} style An object containing borderColor, - * backgroundColor, etc. - * @return {Object} group The created group object - */ - Groups.prototype.add = function (groupName, style) { - this.groups[groupName] = style; - this.groupsArray.push(groupName); - return style; - }; + _prototypeProperties(View, null, { + setOptions: { + value: function setOptions() { + var options = arguments[0] === undefined ? {} : arguments[0]; + this.options = options; + }, + writable: true, + configurable: true + }, + setCanvas: { + value: function setCanvas(canvas) { + this.canvas = canvas; + }, + writable: true, + configurable: true + }, + _getRange: { - module.exports = Groups; - // 20:bright red + // zoomExtent + /** + * Find the center position of the network + * @private + */ + value: function _getRange() { + var specificNodes = arguments[0] === undefined ? [] : arguments[0]; + var minY = 1000000000, + maxY = -1000000000, + minX = 1000000000, + maxX = -1000000000, + node; + if (specificNodes.length > 0) { + for (var i = 0; i < specificNodes.length; i++) { + node = this.body.nodes[specificNodes[i]]; + if (minX > node.boundingBox.left) { + minX = node.boundingBox.left; + } + if (maxX < node.boundingBox.right) { + maxX = node.boundingBox.right; + } + if (minY > node.boundingBox.bottom) { + minY = node.boundingBox.top; + } // top is negative, bottom is positive + if (maxY < node.boundingBox.top) { + maxY = node.boundingBox.bottom; + } // top is negative, bottom is positive + } + } else { + for (var nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + node = this.body.nodes[nodeId]; + if (minX > node.boundingBox.left) { + minX = node.boundingBox.left; + } + if (maxX < node.boundingBox.right) { + maxX = node.boundingBox.right; + } + if (minY > node.boundingBox.bottom) { + minY = node.boundingBox.top; + } // top is negative, bottom is positive + if (maxY < node.boundingBox.top) { + maxY = node.boundingBox.bottom; + } // top is negative, bottom is positive + } + } + } -/***/ }, -/* 55 */ -/***/ function(module, exports, __webpack_require__) { + if (minX == 1000000000 && maxX == -1000000000 && minY == 1000000000 && maxY == -1000000000) { + minY = 0, maxY = 0, minX = 0, maxX = 0; + } + return { minX: minX, maxX: maxX, minY: minY, maxY: maxY }; + }, + writable: true, + configurable: true + }, + _findCenter: { - "use strict"; - /** - * @class Images - * This class loads images and keeps them stored. - */ - function Images() { - this.images = {}; - this.imageBroken = {}; - this.callback = undefined; - } + /** + * @param {object} range = {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; + * @returns {{x: number, y: number}} + * @private + */ + value: function _findCenter(range) { + return { x: 0.5 * (range.maxX + range.minX), + y: 0.5 * (range.maxY + range.minY) }; + }, + writable: true, + configurable: true + }, + zoomExtent: { - /** - * 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; - }; - /** - * - * @param {string} url Url of the image - * @param {string} url Url of an image to use if the url image is not found - * @return {Image} img The image object - */ - Images.prototype.load = function (url, brokenUrl) { - var img = this.images[url]; // make a pointer - if (img === undefined) { - // create the image - var me = this; - img = new Image(); - img.onload = function () { - // IE11 fix -- thanks dponch! - if (this.width == 0) { - document.body.appendChild(this); - this.width = this.offsetWidth; - this.height = this.offsetHeight; - document.body.removeChild(this); - } + /** + * This function zooms out to fit all data on screen based on amount of nodes + * @param {Object} + * @param {Boolean} [initialZoom] | zoom based on fitted formula or range, true = fitted, default = false; + * @param {Boolean} [disableStart] | If true, start is not called. + */ + value: function zoomExtent() { + var options = arguments[0] === undefined ? { nodes: [] } : arguments[0]; + var initialZoom = arguments[1] === undefined ? false : arguments[1]; + var range; + var zoomLevel; - if (me.callback) { - me.images[url] = img; - me.callback(this); - } - }; - - img.onerror = function () { - if (brokenUrl === undefined) { - console.error("Could not load image:", url); - delete this.src; - if (me.callback) { - me.callback(this); - } - } else { - if (me.imageBroken[url] === true) { - if (this.src == brokenUrl) { - console.error("Could not load brokenImage:", brokenUrl); - delete this.src; - if (me.callback) { - me.callback(this); + if (initialZoom == true) { + // check if more than half of the nodes have a predefined position. If so, we use the range, not the approximation. + var positionDefined = 0; + for (var nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + var node = this.body.nodes[nodeId]; + if (node.predefinedPosition == true) { + positionDefined += 1; + } } - } else { - console.error("Could not load image:", url); - this.src = brokenUrl; } - } else { - console.error("Could not load image:", url); - this.src = brokenUrl; - me.imageBroken[url] = true; - } - } - }; - - img.src = url; - } - - return img; - }; + if (positionDefined > 0.5 * this.body.nodeIndices.length) { + this.zoomExtent(options, false); + return; + } - module.exports = Images; + range = this._getRange(options.nodes); -/***/ }, -/* 56 */ -/***/ function(module, exports, __webpack_require__) { + var numberOfNodes = this.body.nodeIndices.length; + if (this.options.smoothCurves == true) { + 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 { + zoomLevel = 30.5062972 / (numberOfNodes + 19.93597763) + 0.08413486; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. + } - "use strict"; + // correct for larger canvasses. + var factor = Math.min(this.canvas.frame.canvas.clientWidth / 600, this.canvas.frame.canvas.clientHeight / 600); + zoomLevel *= factor; + } else { + this.body.emitter.emit("_redrawHidden"); + range = this._getRange(options.nodes); + var xDistance = Math.abs(range.maxX - range.minX) * 1.1; + var yDistance = Math.abs(range.maxY - range.minY) * 1.1; - var util = __webpack_require__(1); + var xZoomLevel = this.canvas.frame.canvas.clientWidth / xDistance; + var yZoomLevel = this.canvas.frame.canvas.clientHeight / yDistance; + zoomLevel = xZoomLevel <= yZoomLevel ? xZoomLevel : yZoomLevel; + } - /** - * @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", "icon" - * {string} image An image url - * {string} title An title text, can be HTML - * {anytype} group A group name or number - * @param {Network.Images} imagelist A list with images. Only needed - * when the node has an image - * @param {Network.Groups} grouplist A list with groups. Needed for - * retrieving group properties - * @param {Object} constants An object with default values for - * example for the color - * - */ - function Node(properties, imagelist, grouplist, networkConstants) { - var constants = util.selectiveBridgeObject(["nodes"], networkConstants); - this.options = constants.nodes; + if (zoomLevel > 1) { + zoomLevel = 1; + } - this.selected = false; - this.hover = false; - this.edges = []; // all edges connected to this node + var center = this._findCenter(range); + var animationOptions = { position: center, scale: zoomLevel, animation: options }; + this.moveTo(animationOptions); + }, + writable: true, + configurable: true + }, + focusOnNode: { - // set defaults for the properties - this.id = undefined; - this.allowedToMoveX = false; - this.allowedToMoveY = false; - 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; - this.hierarchyEnumerated = false; - this.labelDimensions = { top: 0, left: 0, width: 0, height: 0, yLine: 0 }; // could be cached - this.boundingBox = { top: 0, left: 0, right: 0, bottom: 0 }; + // animation - this.imagelist = imagelist; - this.grouplist = grouplist; + /** + * Center a node in view. + * + * @param {Number} nodeId + * @param {Number} [options] + */ + value: function focusOnNode(nodeId) { + var options = arguments[1] === undefined ? {} : arguments[1]; + if (this.body.nodes[nodeId] !== undefined) { + var nodePosition = { x: this.body.nodes[nodeId].x, y: this.body.nodes[nodeId].y }; + options.position = nodePosition; + options.lockedOnNode = nodeId; - // physics properties - this.x = null; - this.y = null; - this.predefinedPosition = false; // used to check if initial zoomExtent should just take the range or approximate + this.moveTo(options); + } else { + console.log("Node: " + nodeId + " cannot be found."); + } + }, + writable: true, + configurable: true + }, + moveTo: { - // used for reverting to previous position on stabilization - this.previousState = { vx: 0, vy: 0, x: 0, y: 0 }; + /** + * + * @param {Object} options | options.offset = {x:Number, y:Number} // offset from the center in DOM pixels + * | options.scale = Number // scale to move to + * | options.position = {x:Number, y:Number} // position to move to + * | options.animation = {duration:Number, easingFunction:String} || Boolean // position to move to + */ + value: function moveTo(options) { + if (options === undefined) { + options = {}; + return; + } + if (options.offset === undefined) { + options.offset = { x: 0, y: 0 }; + } + if (options.offset.x === undefined) { + options.offset.x = 0; + } + if (options.offset.y === undefined) { + options.offset.y = 0; + } + if (options.scale === undefined) { + options.scale = this.scale; + } + if (options.position === undefined) { + options.position = this.translation; + } + if (options.animation === undefined) { + options.animation = { duration: 0 }; + } + if (options.animation === false) { + options.animation = { duration: 0 }; + } + if (options.animation === true) { + options.animation = {}; + } + if (options.animation.duration === undefined) { + options.animation.duration = 1000; + } // default duration + if (options.animation.easingFunction === undefined) { + options.animation.easingFunction = "easeInOutQuad"; + } // default easing function - this.fixedData = { x: null, y: null }; + this.animateView(options); + }, + writable: true, + configurable: true + }, + animateView: { - this.setProperties(properties, constants); + /** + * + * @param {Object} options | options.offset = {x:Number, y:Number} // offset from the center in DOM pixels + * | options.time = Number // animation time in milliseconds + * | options.scale = Number // scale to animate to + * | options.position = {x:Number, y:Number} // position to animate to + * | options.easingFunction = String // linear, easeInQuad, easeOutQuad, easeInOutQuad, + * // easeInCubic, easeOutCubic, easeInOutCubic, + * // easeInQuart, easeOutQuart, easeInOutQuart, + * // easeInQuint, easeOutQuint, easeInOutQuint + */ + value: function animateView(options) { + if (options === undefined) { + return; + } + this.animationEasingFunction = options.animation.easingFunction; + // release if something focussed on the node + this.releaseNode(); + if (options.locked == true) { + this.lockedOnNodeId = options.lockedOnNode; + this.lockedOnNodeOffset = options.offset; + } - // 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; - } + // forcefully complete the old animation if it was still running + if (this.easingTime != 0) { + this._transitionRedraw(true); // by setting easingtime to 1, we finish the animation. + } + this.sourceScale = this.scale; + this.sourceTranslation = this.translation; + this.targetScale = options.scale; - /** - * Attach a edge to the node - * @param {Edge} edge - */ - Node.prototype.attachEdge = function (edge) { - if (this.edges.indexOf(edge) == -1) { - this.edges.push(edge); - } - }; + // set the scale so the viewCenter is based on the correct zoom level. This is overridden in the transitionRedraw + // but at least then we'll have the target transition + this.body.emitter.emit("_setScale", this.targetScale); + var viewCenter = this.canvas.DOMtoCanvas({ x: 0.5 * this.canvas.frame.canvas.clientWidth, y: 0.5 * this.canvas.frame.canvas.clientHeight }); + var distanceFromCenter = { // offset from view, distance view has to change by these x and y to center the node + x: viewCenter.x - options.position.x, + y: viewCenter.y - options.position.y + }; + this.targetTranslation = { + x: this.sourceTranslation.x + distanceFromCenter.x * this.targetScale + options.offset.x, + y: this.sourceTranslation.y + distanceFromCenter.y * this.targetScale + options.offset.y + }; - /** - * 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); - } - }; + // if the time is set to 0, don't do an animation + if (options.animation.duration == 0) { + if (this.lockedOnNodeId != null) { + this.viewFunction = this._lockedRedraw.bind(this); + this.body.emitter.on("_beforeRender", this.viewFunction); + } else { + this.body.emitter.emit("_setScale", this.targetScale);; + this.body.emitter.emit("_setTranslation", this.targetTranslation); + this.body.emitter.emit("_requestRedraw"); + } + } else { + this.animationSpeed = 1 / (60 * options.animation.duration * 0.001) || 1 / 60; // 60 for 60 seconds, 0.001 for milli's + this.animationEasingFunction = options.animation.easingFunction; - /** - * 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; - } - this.properties = properties; + this.viewFunction = this._transitionRedraw.bind(this); + this.body.emitter.on("_beforeRender", this.viewFunction); + this.body.emitter.emit("_startRendering"); + } + }, + writable: true, + configurable: true + }, + _lockedRedraw: { - var fields = ["borderWidth", "borderWidthSelected", "shape", "image", "brokenImage", "radius", "fontColor", "fontSize", "fontFace", "fontFill", "fontStrokeWidth", "fontStrokeColor", "group", "mass", "fontDrawThreshold", "scaleFontWithValue", "fontSizeMaxVisible", "customScalingFunction", "iconFontFace", "icon", "iconColor", "iconSize", "value"]; - util.selectiveDeepExtend(fields, this.options, properties); + /** + * used to animate smoothly by hijacking the redraw function. + * @private + */ + value: function _lockedRedraw() { + var nodePosition = { x: this.body.nodes[this.lockedOnNodeId].x, y: this.body.nodes[this.lockedOnNodeId].y }; + var viewCenter = this.DOMtoCanvas({ x: 0.5 * this.frame.canvas.clientWidth, y: 0.5 * this.frame.canvas.clientHeight }); + var distanceFromCenter = { // offset from view, distance view has to change by these x and y to center the node + x: viewCenter.x - nodePosition.x, + y: viewCenter.y - nodePosition.y + }; + var sourceTranslation = this.translation; + var targetTranslation = { + x: sourceTranslation.x + distanceFromCenter.x * this.scale + this.lockedOnNodeOffset.x, + y: sourceTranslation.y + distanceFromCenter.y * this.scale + this.lockedOnNodeOffset.y + }; - // 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;this.predefinedPosition = true; - } - if (properties.y !== undefined) { - this.y = properties.y;this.predefinedPosition = true; - } - if (properties.value !== undefined) { - this.value = properties.value; - } - if (properties.level !== undefined) { - this.level = properties.level;this.preassignedLevel = true; - } + this.body.emitter.emit("_setTranslation", targetTranslation); + }, + writable: true, + configurable: true + }, + releaseNode: { + value: function releaseNode() { + if (this.lockedOnNodeId !== undefined) { + this.body.emitter.off("_beforeRender", this.viewFunction); + this.lockedOnNodeId = undefined; + this.lockedOnNodeOffset = undefined; + } + }, + writable: true, + configurable: true + }, + _transitionRedraw: { - // 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; - } + /** + * + * @param easingTime + * @private + */ + value: function _transitionRedraw() { + var finished = arguments[0] === undefined ? false : arguments[0]; + this.easingTime += this.animationSpeed; + this.easingTime = finished === true ? 1 : this.easingTime; - if (this.id === undefined) { - throw "Node must have an id"; - } + var progress = util.easingFunctions[this.animationEasingFunction](this.easingTime); - // copy group properties - if (typeof properties.group === "number" || typeof properties.group === "string" && properties.group != "") { - var groupObj = this.grouplist.get(properties.group); - util.deepExtend(this.options, groupObj); - // the color object needs to be completely defined. Since groups can partially overwrite the colors, we parse it again, just in case. - this.options.color = util.parseColor(this.options.color); - } - // individual shape properties - if (properties.radius !== undefined) { - this.baseRadiusValue = this.options.radius; - } - if (properties.color !== undefined) { - this.options.color = util.parseColor(properties.color); - } + this.body.emitter.emit("_setScale", this.sourceScale + (this.targetScale - this.sourceScale) * progress); + this.body.emitter.emit("_setTranslation", { + x: this.sourceTranslation.x + (this.targetTranslation.x - this.sourceTranslation.x) * progress, + y: this.sourceTranslation.y + (this.targetTranslation.y - this.sourceTranslation.y) * progress + }); - if (this.options.image !== undefined && this.options.image != "") { - if (this.imagelist) { - this.imageObj = this.imagelist.load(this.options.image, this.options.brokenImage); - } else { - throw "No imagelist provided"; + // cleanup + if (this.easingTime >= 1) { + this.body.emitter.off("_beforeRender", this.viewFunction); + this.easingTime = 0; + if (this.lockedOnNodeId != null) { + this.viewFunction = this._lockedRedraw.bind(this); + this.body.emitter.on("_beforeRender", this.viewFunction); + } + this.body.emitter.emit("animationFinished"); + } + }, + writable: true, + configurable: true } - } + }); - if (properties.allowedToMoveX !== undefined) { - this.xFixed = !properties.allowedToMoveX; - this.allowedToMoveX = properties.allowedToMoveX; - } else if (properties.x !== undefined && this.allowedToMoveX == false) { - this.xFixed = true; - } + return View; + })(); + exports.View = View; + Object.defineProperty(exports, "__esModule", { + value: true + }); - if (properties.allowedToMoveY !== undefined) { - this.yFixed = !properties.allowedToMoveY; - this.allowedToMoveY = properties.allowedToMoveY; - } else if (properties.y !== undefined && this.allowedToMoveY == false) { - this.yFixed = true; - } +/***/ }, +/* 61 */ +/***/ function(module, exports, __webpack_require__) { - this.radiusFixed = this.radiusFixed || properties.radius !== undefined; + "use strict"; - if (this.options.shape === "image" || this.options.shape === "circularImage") { - this.options.radiusMin = constants.nodes.widthMin; - this.options.radiusMax = constants.nodes.widthMax; - } + var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; - // 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 "circularImage": - this.draw = this._drawCircularImage;this.resize = this._resizeCircularImage;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; - case "icon": - this.draw = this._drawIcon;this.resize = this._resizeIcon;break; - default: - this.draw = this._drawEllipse;this.resize = this._resizeEllipse;break; - } - // reset the size of the node, this can be changed - this._reset(); - }; + var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; /** - * select this node + * Created by Alex on 2/27/2015. + * */ - Node.prototype.select = function () { - this.selected = true; - this._reset(); - }; - /** - * unselect this node - */ - Node.prototype.unselect = function () { - this.selected = false; - this._reset(); - }; + var SelectionHandler = __webpack_require__(73).SelectionHandler; + var util = __webpack_require__(1); + var TouchEventHandler = (function () { + function TouchEventHandler(body) { + var _this = this; + _classCallCheck(this, TouchEventHandler); - /** - * Reset the calculated size of the node, forces it to recalculate its size - */ - Node.prototype.clearSizeCache = function () { - this._reset(); - }; + this.body = body; - /** - * Reset the calculated size of the node, forces it to recalculate its size - * @private - */ - Node.prototype._reset = function () { - this.width = undefined; - this.height = undefined; - }; + this.body.eventListeners.onTap = this.onTap.bind(this); + this.body.eventListeners.onTouch = this.onTouch.bind(this); + this.body.eventListeners.onDoubleTap = this.onDoubleTap.bind(this); + this.body.eventListeners.onHold = this.onHold.bind(this); + this.body.eventListeners.onDragStart = this.onDragStart.bind(this); + this.body.eventListeners.onDrag = this.onDrag.bind(this); + this.body.eventListeners.onDragEnd = this.onDragEnd.bind(this); + this.body.eventListeners.onMouseWheel = this.onMouseWheel.bind(this); + this.body.eventListeners.onPinch = this.onPinch.bind(this); + this.body.eventListeners.onMouseMove = this.onMouseMove.bind(this); + this.body.eventListeners.onRelease = this.onRelease.bind(this); - /** - * 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.touchTime = 0; + this.drag = {}; + this.pinch = {}; + this.pointerPosition = { x: 0, y: 0 }; - /** - * Calculate the distance to the border of the Node - * @param {CanvasRenderingContext2D} ctx - * @param {Number} angle Angle in radians - * @returns {number} distance Distance to the border in pixels - */ - Node.prototype.distanceToBorder = function (ctx, angle) { - var borderWidth = 1; + this.scale = 1; + this.body.emitter.on("_setScale", function (scale) { + return _this.scale = scale; + }); - if (!this.width) { - this.resize(ctx); + this.selectionHandler = new SelectionHandler(body); } - switch (this.options.shape) { - case "circle": - case "dot": - return this.options.radius + borderWidth; - - case "ellipse": - var a = this.width / 2; - var b = this.height / 2; - var w = Math.sin(angle) * a; - var h = Math.cos(angle) * b; - return a * b / Math.sqrt(w * w + h * h); - - // 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; - } + _prototypeProperties(TouchEventHandler, null, { + setCanvas: { + value: function setCanvas(canvas) { + this.canvas = canvas; + this.selectionHandler.setCanvas(canvas); + }, + writable: true, + configurable: true + }, + getPointer: { - } - // TODO: implement calculation of distance to border for all shapes - }; + /** + * Get the pointer location from a touch location + * @param {{pageX: Number, pageY: Number}} touch + * @return {{x: Number, y: Number}} pointer + * @private + */ + value: function getPointer(touch) { + return { + x: touch.pageX - util.getAbsoluteLeft(this.canvas.frame.canvas), + y: touch.pageY - util.getAbsoluteTop(this.canvas.frame.canvas) + }; + }, + writable: true, + configurable: true + }, + onTouch: { - /** - * Check if this node has a fixed x and y position - * @return {boolean} true if fixed, false if not - */ - Node.prototype.isFixed = function () { - return this.xFixed && this.yFixed; - }; + /** + * On start of a touch gesture, store the pointer + * @param event + * @private + */ + value: function onTouch(event) { + if (new Date().valueOf() - this.touchTime > 100) { + this.drag.pointer = this.getPointer(event.gesture.center); + this.drag.pinched = false; + this.pinch.scale = this.scale; - /** - * check if this node is selecte - * @return {boolean} selected True if node is selected, else false - */ - Node.prototype.isSelected = function () { - return this.selected; - }; + // to avoid double fireing of this event because we have two hammer instances. (on canvas and on frame) + this.touchTime = new Date().valueOf(); + } + }, + writable: true, + configurable: true + }, + onTap: { - /** - * Retrieve the value of the node. Can be undefined - * @return {Number} value - */ - Node.prototype.getValue = function () { - return this.value; - }; + /** + * handle tap/click event: select/unselect a node + * @private + */ + value: function onTap(event) { + console.log("tap", event); + var pointer = this.getPointer(event.gesture.center); + this.pointerPosition = pointer; + this.selectionHandler.selectOnPoint(pointer); + }, + writable: true, + configurable: true + }, + onDragStart: { - /** - * 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); - }; + /** + * handle drag start event + * @private + */ + /** + * This function is called by onDragStart. + * It is separated out because we can then overload it for the datamanipulation system. + * + * @private + */ + value: function onDragStart(event) {}, + writable: true, + configurable: true + }, + onDrag: { - /** - * Adjust the value range of the node. The node will adjust it's radius - * based on its value. - * @param {Number} min - * @param {Number} max - */ - Node.prototype.setValueRange = function (min, max, total) { - if (!this.radiusFixed && this.value !== undefined) { - var scale = this.options.customScalingFunction(min, max, total, this.value); - var radiusDiff = this.options.radiusMax - this.options.radiusMin; - if (this.options.scaleFontWithValue == true) { - var fontDiff = this.options.fontSizeMax - this.options.fontSizeMin; - this.options.fontSize = this.options.fontSizeMin + scale * fontDiff; - } - this.options.radius = this.options.radiusMin + scale * radiusDiff; - } - this.baseRadiusValue = this.options.radius; - }; + /** + * handle drag event + * @private + */ + value: function onDrag(event) {}, + writable: true, + configurable: true + }, + onDragEnd: { - /** - * 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"; - }; - /** - * 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"; - }; + /** + * handle drag start event + * @private + */ + value: function onDragEnd(event) {}, + writable: true, + configurable: true + }, + onDoubleTap: { - /** - * 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; - }; + /** + * handle doubletap event + * @private + */ + value: function onDoubleTap(event) {}, + writable: true, + configurable: true + }, + onHold: { - Node.prototype._resizeImage = function (ctx) { - // TODO: pre calculate the image size - 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; - } - }; - Node.prototype._drawImageAtPosition = function (ctx) { - if (this.imageObj.width != 0) { - // draw the image - ctx.globalAlpha = 1; - ctx.drawImage(this.imageObj, this.left, this.top, this.width, this.height); - } - }; + /** + * handle long tap event: multi select nodes + * @private + */ + value: function onHold(event) {}, + writable: true, + configurable: true + }, + onRelease: { - Node.prototype._drawImageLabel = function (ctx) { - var yLabel; - var offset = 0; - if (this.height) { - offset = this.height / 2; - var labelDimensions = this.getTextSize(ctx); + /** + * handle the release of the screen + * + * @private + */ + value: function onRelease(event) {}, + writable: true, + configurable: true + }, + onPinch: { - if (labelDimensions.lineCount >= 1) { - offset += labelDimensions.height / 2; - offset += 3; - } - } - yLabel = this.y + offset; + /** + * Handle pinch event + * @param event + * @private + */ + value: function onPinch(event) {}, + writable: true, + configurable: true + }, + _zoom: { - this._label(ctx, this.label, this.x, yLabel, undefined); - }; - Node.prototype._drawImage = function (ctx) { - this._resizeImage(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + /** + * 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 + */ + value: function _zoom(scale, pointer) {}, + writable: true, + configurable: true + }, + onMouseWheel: { - this._drawImageAtPosition(ctx); - this.boundingBox.top = this.top; - this.boundingBox.left = this.left; - this.boundingBox.right = this.left + this.width; - this.boundingBox.bottom = this.top + this.height; + /** + * 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 + */ + value: function onMouseWheel(event) {}, + writable: true, + configurable: true + }, + onMouseMove: { - this._drawImageLabel(ctx); - this.boundingBox.left = Math.min(this.boundingBox.left, this.labelDimensions.left); - this.boundingBox.right = Math.max(this.boundingBox.right, this.labelDimensions.left + this.labelDimensions.width); - this.boundingBox.bottom = Math.max(this.boundingBox.bottom, this.boundingBox.bottom + this.labelDimensions.height); - }; - Node.prototype._resizeCircularImage = function (ctx) { - if (!this.imageObj.src || !this.imageObj.width || !this.imageObj.height) { - if (!this.width) { - var diameter = this.options.radius * 2; - this.width = diameter; - this.height = diameter; - this._swapToImageResizeWhenImageLoaded = true; - } - } else { - if (this._swapToImageResizeWhenImageLoaded) { - this.width = 0; - this.height = 0; - delete this._swapToImageResizeWhenImageLoaded; + /** + * Mouse move handler for checking whether the title moves over a node with a title. + * @param {Event} event + * @private + */ + value: function onMouseMove(event) {}, + writable: true, + configurable: true } - this._resizeImage(ctx); - } - }; - - Node.prototype._drawCircularImage = function (ctx) { - this._resizeCircularImage(ctx); - - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; - - var centerX = this.left + this.width / 2; - var centerY = this.top + this.height / 2; - var radius = Math.abs(this.height / 2); - - this._drawRawCircle(ctx, centerX, centerY, radius); - - ctx.save(); - ctx.circle(this.x, this.y, radius); - ctx.stroke(); - ctx.clip(); - - this._drawImageAtPosition(ctx); - - ctx.restore(); - - this.boundingBox.top = this.y - this.options.radius; - this.boundingBox.left = this.x - this.options.radius; - this.boundingBox.right = this.x + this.options.radius; - this.boundingBox.bottom = this.y + this.options.radius; - - this._drawImageLabel(ctx); - - this.boundingBox.left = Math.min(this.boundingBox.left, this.labelDimensions.left); - this.boundingBox.right = Math.max(this.boundingBox.right, this.labelDimensions.left + this.labelDimensions.width); - this.boundingBox.bottom = Math.max(this.boundingBox.bottom, this.boundingBox.bottom + this.labelDimensions.height); - }; - - 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; - } - }; - - Node.prototype._drawBox = function (ctx) { - this._resizeBox(ctx); - - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; - - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - ctx.lineWidth = this.selected ? selectionLineWidth : borderWidth; - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width, ctx.lineWidth); - - ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; - - ctx.roundRect(this.left, this.top, this.width, this.height, this.options.radius); - ctx.fill(); - ctx.stroke(); - - this.boundingBox.top = this.top; - this.boundingBox.left = this.left; - this.boundingBox.right = this.left + this.width; - this.boundingBox.bottom = this.top + this.height; - - this._label(ctx, this.label, this.x, this.y); - }; - - - 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; - } - }; - - Node.prototype._drawDatabase = function (ctx) { - this._resizeDatabase(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; - - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - ctx.lineWidth = this.selected ? selectionLineWidth : borderWidth; - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width, ctx.lineWidth); - - ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; - ctx.database(this.x - this.width / 2, this.y - this.height * 0.5, this.width, this.height); - ctx.fill(); - ctx.stroke(); - - this.boundingBox.top = this.top; - this.boundingBox.left = this.left; - this.boundingBox.right = this.left + this.width; - this.boundingBox.bottom = this.top + this.height; - - this._label(ctx, this.label, this.x, this.y); - }; - + }); - 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; + return TouchEventHandler; + })(); - this.width = diameter; - this.height = diameter; - } - }; + exports.TouchEventHandler = TouchEventHandler; + Object.defineProperty(exports, "__esModule", { + value: true + }); - Node.prototype._drawRawCircle = function (ctx, x, y, radius) { - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + // in case the touch event was triggered on an external div, do the initial touch now. + //if (this.drag.pointer === undefined) { + // this.onTouch(event); + //} + // + //var node = this._getNodeAt(this.drag.pointer); + //// note: drag.pointer is set in onTouch to get the initial touch location + // + //this.drag.dragging = true; + //this.drag.selection = []; + //this.drag.translation = this._getTranslation(); + //this.drag.nodeId = null; + //this.draggingNodes = false; + // + //if (node != null && this.constants.dragNodes == true) { + // this.draggingNodes = true; + // this.drag.nodeId = node.id; + // // select the clicked node if not yet selected + // if (!node.isSelected()) { + // this._selectObject(node, false); + // } + // + // this.emit("dragStart", {nodeIds: this.getSelection().nodes}); + // + // // create an array with the selected nodes and their original location and status + // for (var objectId in this.selectionObj.nodes) { + // if (this.selectionObj.nodes.hasOwnProperty(objectId)) { + // var object = this.selectionObj.nodes[objectId]; + // var s = { + // id: object.id, + // node: object, + // + // // store original x, y, xFixed and yFixed, make the node temporarily Fixed + // x: object.x, + // y: object.y, + // xFixed: object.xFixed, + // yFixed: object.yFixed + // }; + // + // object.xFixed = true; + // object.yFixed = true; + // + // this.drag.selection.push(s); + // } + // } + //} + //if (this.drag.pinched) { + // return; + //} + // + //// remove the focus on node if it is focussed on by the focusOnNode + //this.releaseNode(); + // + //var pointer = this.getPointer(event.gesture.center); + //var me = this; + //var drag = this.drag; + //var selection = drag.selection; + //if (selection && selection.length && this.constants.dragNodes == true) { + // // calculate delta's and new location + // var deltaX = pointer.x - drag.pointer.x; + // var deltaY = pointer.y - drag.pointer.y; + // + // // update position of all selected nodes + // selection.forEach(function (s) { + // var node = s.node; + // + // 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 { + // // move the network + // if (this.constants.dragNetwork == true) { + // // if the drag was not started properly because the click started outside the network div, start it now. + // if (this.drag.pointer === undefined) { + // this._handleDragStart(event); + // return; + // } + // var diffX = pointer.x - this.drag.pointer.x; + // var diffY = pointer.y - this.drag.pointer.y; + // + // this._setTranslation( + // this.drag.translation.x + diffX, + // this.drag.translation.y + diffY + // ); + // this._redraw(); + // } + //} + //this.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(); + //} + //if (this.draggingNodes == false) { + // this.emit("dragEnd", {nodeIds: []}); + //} + //else { + // this.emit("dragEnd", {nodeIds: this.getSelection().nodes}); + //} + //var pointer = this.getPointer(event.gesture.center); + //this._handleDoubleTap(pointer); + //var pointer = this.getPointer(event.gesture.center); + //this.pointerPosition = pointer; + //this._handleOnHold(pointer); + //var pointer = this.getPointer(event.gesture.center); + //this._handleOnRelease(pointer); + //var pointer = this.getPointer(event.gesture.center); + // + //this.drag.pinched = true; + //if (!('scale' in this.pinch)) { + // this.pinch.scale = 1; + //} + // + //// TODO: enabled moving while pinching? + //var scale = this.pinch.scale * event.gesture.scale; + //this._zoom(scale, pointer) + //if (this.constants.zoomable == true) { + // var scaleOld = this._getScale(); + // if (scale < 0.00001) { + // scale = 0.00001; + // } + // if (scale > 10) { + // scale = 10; + // } + // + // var preScaleDragPointer = null; + // if (this.drag !== undefined) { + // if (this.drag.dragging == true) { + // preScaleDragPointer = this.canvas.DOMtoCanvas(this.drag.pointer); + // } + // } + // // + this.canvas.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; + // + // this._setScale(scale); + // this._setTranslation(tx, ty); + // + // if (preScaleDragPointer != null) { + // var postScaleDragPointer = this.canvas.canvasToDOM(preScaleDragPointer); + // this.drag.pointer.x = postScaleDragPointer.x; + // this.drag.pointer.y = postScaleDragPointer.y; + // } + // + // this._redraw(); + // + // if (scaleOld < scale) { + // this.emit("zoom", {direction: "+"}); + // } + // else { + // this.emit("zoom", {direction: "-"}); + // } + // + // return scale; + //} + //// 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(); + //var gesture = hammerUtil.fakeGesture(this, event); + //var pointer = this.getPointer(gesture.center); + //var popupVisible = false; + // + //// check if the previously selected node is still selected + //if (this.popup !== undefined) { + // if (this.popup.hidden === false) { + // this._checkHidePopup(pointer); + // } + // + // // if the popup was not hidden above + // if (this.popup.hidden === false) { + // popupVisible = true; + // this.popup.setPosition(pointer.x + 3, pointer.y - 5) + // this.popup.show(); + // } + //} + // + //// if we bind the keyboard to the div, we have to highlight it to use it. This highlights it on mouse over + //if (this.constants.keyboard.bindToWindow == false && this.constants.keyboard.enabled == true) { + // this.canvas.frame.focus(); + //} + // + //// start a timeout that will check if the mouse is positioned above an element + //if (popupVisible === false) { + // var me = this; + // var checkShow = function() { + // me._checkShowPopup(pointer); + // }; + // + // if (this.popupTimer) { + // clearInterval(this.popupTimer); // stop any running calculationTimer + // } + // if (!this.drag.dragging) { + // this.popupTimer = setTimeout(checkShow, this.constants.tooltip.delay); + // } + //} + // + ///** + // * Adding hover highlights + // */ + //if (this.constants.hover == true) { + // // removing all hover highlights + // for (var edgeId in this.hoverObj.edges) { + // if (this.hoverObj.edges.hasOwnProperty(edgeId)) { + // this.hoverObj.edges[edgeId].hover = false; + // delete this.hoverObj.edges[edgeId]; + // } + // } + // + // // adding hover highlights + // var obj = this._getNodeAt(pointer); + // if (obj == null) { + // obj = this._getEdgeAt(pointer); + // } + // if (obj != null) { + // this._hoverObject(obj); + // } + // + // // removing all node hover highlights except for the selected one. + // for (var nodeId in this.hoverObj.nodes) { + // if (this.hoverObj.nodes.hasOwnProperty(nodeId)) { + // if (obj instanceof Node && obj.id != nodeId || obj instanceof Edge || obj == null) { + // this._blurObject(this.hoverObj.nodes[nodeId]); + // delete this.hoverObj.nodes[nodeId]; + // } + // } + // } + // this.redraw(); + //} - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; +/***/ }, +/* 62 */ +/***/ function(module, exports, __webpack_require__) { - ctx.lineWidth = this.selected ? selectionLineWidth : borderWidth; - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width, ctx.lineWidth); + + /** + * Expose `Emitter`. + */ - 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, radius); - ctx.fill(); - ctx.stroke(); + module.exports = Emitter; + + /** + * Initialize a new `Emitter`. + * + * @api public + */ + + function Emitter(obj) { + if (obj) return mixin(obj); }; - Node.prototype._drawCircle = function (ctx) { - this._resizeCircle(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + /** + * Mixin the emitter properties. + * + * @param {Object} obj + * @return {Object} + * @api private + */ - this._drawRawCircle(ctx, this.x, this.y, this.options.radius); + function mixin(obj) { + for (var key in Emitter.prototype) { + obj[key] = Emitter.prototype[key]; + } + return obj; + } - this.boundingBox.top = this.y - this.options.radius; - this.boundingBox.left = this.x - this.options.radius; - this.boundingBox.right = this.x + this.options.radius; - this.boundingBox.bottom = this.y + this.options.radius; + /** + * Listen on the given `event` with `fn`. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public + */ - this._label(ctx, this.label, this.x, this.y); + Emitter.prototype.on = + Emitter.prototype.addEventListener = function(event, fn){ + this._callbacks = this._callbacks || {}; + (this._callbacks[event] = this._callbacks[event] || []) + .push(fn); + return this; }; - Node.prototype._resizeEllipse = function (ctx) { - if (!this.width) { - var textSize = this.getTextSize(ctx); + /** + * Adds an `event` listener that will be invoked a single + * time then automatically removed. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public + */ - this.width = textSize.width * 1.5; - this.height = textSize.height * 2; - if (this.width < this.height) { - this.width = this.height; - } - var defaultSize = this.width; + 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; }; - Node.prototype._drawEllipse = function (ctx) { - this._resizeEllipse(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + /** + * Remove the given callback for `event` or all + * registered callbacks. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public + */ - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + Emitter.prototype.off = + Emitter.prototype.removeListener = + Emitter.prototype.removeAllListeners = + Emitter.prototype.removeEventListener = function(event, fn){ + this._callbacks = this._callbacks || {}; - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + // all + if (0 == arguments.length) { + this._callbacks = {}; + return this; + } - ctx.lineWidth = this.selected ? selectionLineWidth : borderWidth; - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width, ctx.lineWidth); + // specific event + var callbacks = this._callbacks[event]; + if (!callbacks) return this; - ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; + // remove all handlers + if (1 == arguments.length) { + delete this._callbacks[event]; + return this; + } - ctx.ellipse(this.left, this.top, this.width, this.height); - ctx.fill(); - ctx.stroke(); + // 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; + }; - this.boundingBox.top = this.top; - this.boundingBox.left = this.left; - this.boundingBox.right = this.left + this.width; - this.boundingBox.bottom = this.top + this.height; + /** + * Emit `event` with the given args. + * + * @param {String} event + * @param {Mixed} ... + * @return {Emitter} + */ - this._label(ctx, this.label, this.x, this.y); - }; + Emitter.prototype.emit = function(event){ + this._callbacks = this._callbacks || {}; + var args = [].slice.call(arguments, 1) + , callbacks = this._callbacks[event]; - Node.prototype._drawDot = function (ctx) { - this._drawShape(ctx, "circle"); - }; + if (callbacks) { + callbacks = callbacks.slice(0); + for (var i = 0, len = callbacks.length; i < len; ++i) { + callbacks[i].apply(this, args); + } + } - Node.prototype._drawTriangle = function (ctx) { - this._drawShape(ctx, "triangle"); + return this; }; - Node.prototype._drawTriangleDown = function (ctx) { - this._drawShape(ctx, "triangleDown"); - }; + /** + * Return array of callbacks for `event`. + * + * @param {String} event + * @return {Array} + * @api public + */ - Node.prototype._drawSquare = function (ctx) { - this._drawShape(ctx, "square"); + Emitter.prototype.listeners = function(event){ + this._callbacks = this._callbacks || {}; + return this._callbacks[event] || []; }; - Node.prototype._drawStar = function (ctx) { - this._drawShape(ctx, "star"); - }; + /** + * Check if this emitter has `event` handlers. + * + * @param {String} event + * @return {Boolean} + * @api public + */ - 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; - } + Emitter.prototype.hasListeners = function(event){ + return !! this.listeners(event).length; }; - Node.prototype._drawShape = function (ctx, shape) { - this._resizeShape(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; +/***/ }, +/* 63 */ +/***/ function(module, exports, __webpack_require__) { - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - var radiusMultiplier = 2; + var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;"use strict"; + /** + * Created by Alex on 11/6/2014. + */ - // 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; + // https://github.com/umdjs/umd/blob/master/returnExports.js#L40-L60 + // if the module has no dependencies, the above pattern can be simplified to + (function (root, factory) { + if (true) { + // AMD. Register as an anonymous module. + !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory), __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ? (__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); + } else if (typeof exports === 'object') { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(); + } else { + // Browser globals (root is window) + root.keycharm = factory(); } + }(this, function () { - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - ctx.lineWidth = this.selected ? selectionLineWidth : borderWidth; - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width, ctx.lineWidth); - - ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; - ctx[shape](this.x, this.y, this.options.radius); - ctx.fill(); - ctx.stroke(); + function keycharm(options) { + var preventDefault = options && options.preventDefault || false; - this.boundingBox.top = this.y - this.options.radius; - this.boundingBox.left = this.x - this.options.radius; - this.boundingBox.right = this.x + this.options.radius; - this.boundingBox.bottom = this.y + this.options.radius; + var container = options && options.container || window; - if (this.label) { - this._label(ctx, this.label, this.x, this.y + this.height / 2, undefined, "hanging", true); - this.boundingBox.left = Math.min(this.boundingBox.left, this.labelDimensions.left); - this.boundingBox.right = Math.max(this.boundingBox.right, this.labelDimensions.left + this.labelDimensions.width); - this.boundingBox.bottom = Math.max(this.boundingBox.bottom, this.boundingBox.bottom + this.labelDimensions.height); - } - }; + var _exportFunctions = {}; + var _bound = {keydown:{}, keyup:{}}; + var _keys = {}; + var i; - 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; - } - }; + // a - z + for (i = 97; i <= 122; i++) {_keys[String.fromCharCode(i)] = {code:65 + (i - 97), shift: false};} + // A - Z + for (i = 65; i <= 90; i++) {_keys[String.fromCharCode(i)] = {code:i, shift: true};} + // 0 - 9 + for (i = 0; i <= 9; i++) {_keys['' + i] = {code:48 + i, shift: false};} + // F1 - F12 + for (i = 1; i <= 12; i++) {_keys['F' + i] = {code:111 + i, shift: false};} + // num0 - num9 + for (i = 0; i <= 9; i++) {_keys['num' + i] = {code:96 + i, shift: false};} - Node.prototype._drawText = function (ctx) { - this._resizeText(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + // numpad misc + _keys['num*'] = {code:106, shift: false}; + _keys['num+'] = {code:107, shift: false}; + _keys['num-'] = {code:109, shift: false}; + _keys['num/'] = {code:111, shift: false}; + _keys['num.'] = {code:110, shift: false}; + // arrows + _keys['left'] = {code:37, shift: false}; + _keys['up'] = {code:38, shift: false}; + _keys['right'] = {code:39, shift: false}; + _keys['down'] = {code:40, shift: false}; + // extra keys + _keys['space'] = {code:32, shift: false}; + _keys['enter'] = {code:13, shift: false}; + _keys['shift'] = {code:16, shift: undefined}; + _keys['esc'] = {code:27, shift: false}; + _keys['backspace'] = {code:8, shift: false}; + _keys['tab'] = {code:9, shift: false}; + _keys['ctrl'] = {code:17, shift: false}; + _keys['alt'] = {code:18, shift: false}; + _keys['delete'] = {code:46, shift: false}; + _keys['pageup'] = {code:33, shift: false}; + _keys['pagedown'] = {code:34, shift: false}; + // symbols + _keys['='] = {code:187, shift: false}; + _keys['-'] = {code:189, shift: false}; + _keys[']'] = {code:221, shift: false}; + _keys['['] = {code:219, shift: false}; - this._label(ctx, this.label, this.x, this.y); - this.boundingBox.top = this.top; - this.boundingBox.left = this.left; - this.boundingBox.right = this.left + this.width; - this.boundingBox.bottom = this.top + this.height; - }; - Node.prototype._resizeIcon = function (ctx) { - if (!this.width) { - var margin = 5; - var iconSize = { - width: Number(this.options.iconSize), - height: Number(this.options.iconSize) - }; - this.width = iconSize.width + 2 * margin; - this.height = iconSize.height + 2 * margin; - } - }; + var down = function(event) {handleEvent(event,'keydown');}; + var up = function(event) {handleEvent(event,'keyup');}; - Node.prototype._drawIcon = function (ctx) { - this._resizeIcon(ctx); + // handle the actualy bound key with the event + var handleEvent = function(event,type) { + if (_bound[type][event.keyCode] !== undefined) { + var bound = _bound[type][event.keyCode]; + for (var i = 0; i < bound.length; i++) { + if (bound[i].shift === undefined) { + bound[i].fn(event); + } + else if (bound[i].shift == true && event.shiftKey == true) { + bound[i].fn(event); + } + else if (bound[i].shift == false && event.shiftKey == false) { + bound[i].fn(event); + } + } - this.options.iconSize = this.options.iconSize || 50; + if (preventDefault == true) { + event.preventDefault(); + } + } + }; - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; - this._icon(ctx); + // bind a key to a callback + _exportFunctions.bind = function(key, callback, type) { + if (type === undefined) { + type = 'keydown'; + } + if (_keys[key] === undefined) { + throw new Error("unsupported key: " + key); + } + if (_bound[type][_keys[key].code] === undefined) { + _bound[type][_keys[key].code] = []; + } + _bound[type][_keys[key].code].push({fn:callback, shift:_keys[key].shift}); + }; - this.boundingBox.top = this.y - this.options.iconSize / 2; - this.boundingBox.left = this.x - this.options.iconSize / 2; - this.boundingBox.right = this.x + this.options.iconSize / 2; - this.boundingBox.bottom = this.y + this.options.iconSize / 2; + // bind all keys to a call back (demo purposes) + _exportFunctions.bindAll = function(callback, type) { + if (type === undefined) { + type = 'keydown'; + } + for (var key in _keys) { + if (_keys.hasOwnProperty(key)) { + _exportFunctions.bind(key,callback,type); + } + } + }; - if (this.label) { - var iconTextSpacing = 5; - this._label(ctx, this.label, this.x, this.y + this.height / 2 + iconTextSpacing, "top", true); + // get the key label from an event + _exportFunctions.getKey = function(event) { + for (var key in _keys) { + if (_keys.hasOwnProperty(key)) { + if (event.shiftKey == true && _keys[key].shift == true && event.keyCode == _keys[key].code) { + return key; + } + else if (event.shiftKey == false && _keys[key].shift == false && event.keyCode == _keys[key].code) { + return key; + } + else if (event.keyCode == _keys[key].code && key == 'shift') { + return key; + } + } + } + return "unknown key, currently not supported"; + }; - this.boundingBox.left = Math.min(this.boundingBox.left, this.labelDimensions.left); - this.boundingBox.right = Math.max(this.boundingBox.right, this.labelDimensions.left + this.labelDimensions.width); - this.boundingBox.bottom = Math.max(this.boundingBox.bottom, this.boundingBox.bottom + this.labelDimensions.height); - } - }; + // unbind either a specific callback from a key or all of them (by leaving callback undefined) + _exportFunctions.unbind = function(key, callback, type) { + if (type === undefined) { + type = 'keydown'; + } + if (_keys[key] === undefined) { + throw new Error("unsupported key: " + key); + } + if (callback !== undefined) { + var newBindings = []; + var bound = _bound[type][_keys[key].code]; + if (bound !== undefined) { + for (var i = 0; i < bound.length; i++) { + if (!(bound[i].fn == callback && bound[i].shift == _keys[key].shift)) { + newBindings.push(_bound[type][_keys[key].code][i]); + } + } + } + _bound[type][_keys[key].code] = newBindings; + } + else { + _bound[type][_keys[key].code] = []; + } + }; - Node.prototype._icon = function (ctx) { - var relativeIconSize = Number(this.options.iconSize) * this.networkScale; + // reset all bound variables. + _exportFunctions.reset = function() { + _bound = {keydown:{}, keyup:{}}; + }; - if (this.options.icon && relativeIconSize > this.options.fontDrawThreshold - 1) { - var iconSize = Number(this.options.iconSize); + // unbind all listeners and reset all variables. + _exportFunctions.destroy = function() { + _bound = {keydown:{}, keyup:{}}; + container.removeEventListener('keydown', down, true); + container.removeEventListener('keyup', up, true); + }; - ctx.font = (this.selected ? "bold " : "") + iconSize + "px " + this.options.iconFontFace; + // create listeners. + container.addEventListener('keydown',down,true); + container.addEventListener('keyup',up,true); - // draw icon - ctx.fillStyle = this.options.iconColor || "black"; - ctx.textAlign = "center"; - ctx.textBaseline = "middle"; - ctx.fillText(this.options.icon, this.x, this.y); + // return the public functions. + return _exportFunctions; } - }; - - Node.prototype._label = function (ctx, text, x, y, align, baseline, labelUnderNode) { - var relativeFontSize = Number(this.options.fontSize) * this.networkScale; - if (text && relativeFontSize >= this.options.fontDrawThreshold - 1) { - var fontSize = Number(this.options.fontSize); - - // this ensures that there will not be HUGE letters on screen by setting an upper limit on the visible text size (regardless of zoomLevel) - if (relativeFontSize >= this.options.fontSizeMaxVisible) { - fontSize = Number(this.options.fontSizeMaxVisible) * this.networkScaleInv; - } - // fade in when relative scale is between threshold and threshold - 1 - var fontColor = this.options.fontColor || "#000000"; - var strokecolor = this.options.fontStrokeColor; - if (relativeFontSize <= this.options.fontDrawThreshold) { - var opacity = Math.max(0, Math.min(1, 1 - (this.options.fontDrawThreshold - relativeFontSize))); - fontColor = util.overrideOpacity(fontColor, opacity); - strokecolor = util.overrideOpacity(strokecolor, opacity); - } + return keycharm; + })); - ctx.font = (this.selected ? "bold " : "") + fontSize + "px " + this.options.fontFace; - var lines = text.split("\n"); - var lineCount = lines.length; - var yLine = y + (1 - lineCount) / 2 * fontSize; - if (labelUnderNode == true) { - yLine = y + (1 - lineCount) / (2 * fontSize); - } - // font fill from edges now for nodes! - var width = ctx.measureText(lines[0]).width; - for (var i = 1; i < lineCount; i++) { - var lineWidth = ctx.measureText(lines[i]).width; - width = lineWidth > width ? lineWidth : width; - } - var height = fontSize * lineCount; - var left = x - width / 2; - var top = y - height / 2; - if (baseline == "hanging") { - top += 0.5 * fontSize; - top += 4; // distance from node, required because we use hanging. Hanging has less difference between browsers - yLine += 4; // distance from node - } - this.labelDimensions = { top: top, left: left, width: width, height: height, yLine: yLine }; - // create the fontfill background - if (this.options.fontFill !== undefined && this.options.fontFill !== null && this.options.fontFill !== "none") { - ctx.fillStyle = this.options.fontFill; - ctx.fillRect(left, top, width, height); - } +/***/ }, +/* 64 */ +/***/ function(module, exports, __webpack_require__) { - // draw text - ctx.fillStyle = fontColor; - ctx.textAlign = align || "center"; - ctx.textBaseline = baseline || "middle"; - if (this.options.fontStrokeWidth > 0) { - ctx.lineWidth = this.options.fontStrokeWidth; - ctx.strokeStyle = strokecolor; - ctx.lineJoin = "round"; - } - for (var i = 0; i < lineCount; i++) { - if (this.options.fontStrokeWidth) { - ctx.strokeText(lines[i], x, yLine); - } - ctx.fillText(lines[i], x, yLine); - yLine += fontSize; - } - } - }; + var __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(global, module) {//! moment.js + //! version : 2.9.0 + //! authors : Tim Wood, Iskren Chernev, Moment.js contributors + //! license : MIT + //! momentjs.com + (function (undefined) { + /************************************ + Constants + ************************************/ - Node.prototype.getTextSize = function (ctx) { - if (this.label !== undefined) { - var fontSize = Number(this.options.fontSize); - if (fontSize * this.networkScale > this.options.fontSizeMaxVisible) { - fontSize = Number(this.options.fontSizeMaxVisible) * this.networkScaleInv; - } - ctx.font = (this.selected ? "bold " : "") + fontSize + "px " + this.options.fontFace; + var moment, + VERSION = '2.9.0', + // the global-scope this is NOT the global object in Node.js + globalScope = (typeof global !== 'undefined' && (typeof window === 'undefined' || window === global.window)) ? global : this, + oldGlobalMoment, + round = Math.round, + hasOwnProperty = Object.prototype.hasOwnProperty, + i, - var lines = this.label.split("\n"), - height = (fontSize + 4) * lines.length, - width = 0; + YEAR = 0, + MONTH = 1, + DATE = 2, + HOUR = 3, + MINUTE = 4, + SECOND = 5, + MILLISECOND = 6, - for (var i = 0, iMax = lines.length; i < iMax; i++) { - width = Math.max(width, ctx.measureText(lines[i]).width); - } + // internal storage for locale config files + locales = {}, - return { width: width, height: height, lineCount: lines.length }; - } else { - return { width: 0, height: 0, lineCount: 0 }; - } - }; + // extra moment internal properties (plugins register props here) + momentProperties = [], + // check for nodeJS + hasModule = (typeof module !== 'undefined' && module && module.exports), - /** - * 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; - } - }; + // ASP.NET json date format regex + aspNetJsonRegex = /^\/?Date\((\-?\d+)/i, + aspNetTimeSpanJsonRegex = /(\-)?(?:(\d*)\.)?(\d+)\:(\d+)(?:\:(\d+)\.?(\d{3})?)?/, + // 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)$/, - /** - * 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 / scale; - this.networkScale = scale; - this.canvasTopLeft = canvasTopLeft; - this.canvasBottomRight = canvasBottomRight; - }; + // 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|X|zz?|ZZ?|.)/g, + localFormattingTokens = /(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g, + // 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) + parseTokenOffsetMs = /[\+\-]?\d+/, // 1234567890123 + parseTokenTimestampMs = /[\+\-]?\d+(\.\d{1,3})?/, // 123456789 123456789.123 - /** - * This allows the zoom level of the network to influence the rendering - * - * @param scale - */ - Node.prototype.setScale = function (scale) { - this.networkScaleInv = 1 / scale; - this.networkScale = scale; - }; + //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', - /** - * 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; - }; + 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}/] + ], + // 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/] + ], - /** - * 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); - }; + // timezone chunker '+10:00' > ['10', '00'] or '-1530' > ['-', '15', '30'] + parseTimezoneChunker = /([\+\-]|\d\d)/gi, - module.exports = Node; + // 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 + }, -/***/ }, -/* 57 */ -/***/ function(module, exports, __webpack_require__) { + 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' + }, - "use strict"; + camelFunctions = { + dayofyear : 'dayOfYear', + isoweekday : 'isoWeekday', + isoweek : 'isoWeek', + weekyear : 'weekYear', + isoweekyear : 'isoWeekYear' + }, - var util = __webpack_require__(1); - var Node = __webpack_require__(56); + // format function strings + formatFunctions = {}, - /** - * @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, body, networkConstants) { - if (body === undefined) { - throw "No body provided"; - } - var fields = ["edges"]; - var constants = util.selectiveBridgeObject(fields, networkConstants); - this.options = constants.edges; + // 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 + }, - this.options.smoothCurves = networkConstants.smoothCurves; - this.body = body; + // tokens to ordinalize and pad + ordinalizeTokens = 'DDD w W M D d'.split(' '), + paddedTokens = 'M D H h m s w W'.split(' '), - // initialize variables - this.id = undefined; - this.fromId = undefined; - this.toId = undefined; - this.title = undefined; - this.widthSelected = this.options.width * this.options.widthSelectionMultiplier; - this.value = undefined; - this.selected = false; - this.hover = false; - this.labelDimensions = { top: 0, left: 0, width: 0, height: 0, yLine: 0 }; // could be cached - this.dirtyLabel = true; - this.colorDirty = true; + formatTokenFunctions = { + M : function () { + return this.month() + 1; + }, + MMM : function (format) { + return this.localeData().monthsShort(this, format); + }, + MMMM : function (format) { + return this.localeData().months(this, format); + }, + D : function () { + return this.date(); + }, + DDD : function () { + return this.dayOfYear(); + }, + d : function () { + return this.day(); + }, + dd : function (format) { + return this.localeData().weekdaysMin(this, format); + }, + ddd : function (format) { + return this.localeData().weekdaysShort(this, format); + }, + dddd : function (format) { + return this.localeData().weekdays(this, format); + }, + w : function () { + return this.week(); + }, + W : function () { + return this.isoWeek(); + }, + YY : function () { + return leftZeroFill(this.year() % 100, 2); + }, + YYYY : function () { + return leftZeroFill(this.year(), 4); + }, + YYYYY : function () { + return leftZeroFill(this.year(), 5); + }, + YYYYYY : function () { + var y = this.year(), sign = y >= 0 ? '+' : '-'; + return sign + leftZeroFill(Math.abs(y), 6); + }, + gg : function () { + return leftZeroFill(this.weekYear() % 100, 2); + }, + gggg : function () { + return leftZeroFill(this.weekYear(), 4); + }, + ggggg : function () { + return leftZeroFill(this.weekYear(), 5); + }, + GG : function () { + return leftZeroFill(this.isoWeekYear() % 100, 2); + }, + GGGG : function () { + return leftZeroFill(this.isoWeekYear(), 4); + }, + GGGGG : function () { + return leftZeroFill(this.isoWeekYear(), 5); + }, + e : function () { + return this.weekday(); + }, + E : function () { + return this.isoWeekday(); + }, + a : function () { + return this.localeData().meridiem(this.hours(), this.minutes(), true); + }, + A : function () { + return this.localeData().meridiem(this.hours(), this.minutes(), false); + }, + H : function () { + return this.hours(); + }, + h : function () { + return this.hours() % 12 || 12; + }, + m : function () { + return this.minutes(); + }, + s : function () { + return this.seconds(); + }, + S : function () { + return toInt(this.milliseconds() / 100); + }, + SS : function () { + return leftZeroFill(toInt(this.milliseconds() / 10), 2); + }, + SSS : function () { + return leftZeroFill(this.milliseconds(), 3); + }, + SSSS : function () { + return leftZeroFill(this.milliseconds(), 3); + }, + Z : function () { + var a = this.utcOffset(), + b = '+'; + if (a < 0) { + a = -a; + b = '-'; + } + return b + leftZeroFill(toInt(a / 60), 2) + ':' + leftZeroFill(toInt(a) % 60, 2); + }, + ZZ : function () { + var a = this.utcOffset(), + 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.valueOf(); + }, + X : function () { + return this.unix(); + }, + Q : function () { + return this.quarter(); + } + }, - this.from = null; // a node - this.to = null; // a node - this.via = null; // a temp node + deprecations = {}, - this.fromBackup = null; // used to clean up after reconnect (used for manipulation) - this.toBackup = null; // used to clean up after reconnect (used for manipulation) + lists = ['months', 'monthsShort', 'weekdays', 'weekdaysShort', 'weekdaysMin'], - // 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.fromArray = []; - this.toArray = []; + updateInProgress = false; - this.connected = false; + // Pick the first defined of two or three arguments. dfl comes from + // default. + function dfl(a, b, c) { + switch (arguments.length) { + case 2: return a != null ? a : b; + case 3: return a != null ? a : b != null ? b : c; + default: throw new Error('Implement me'); + } + } - this.widthFixed = false; - this.lengthFixed = false; + function hasOwnProp(a, b) { + return hasOwnProperty.call(a, b); + } - this.setProperties(properties); + 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 + }; + } - this.controlNodesEnabled = false; - this.controlNodes = { from: null, to: null, positions: {} }; - this.connectedNode = null; - } + function printMsg(msg) { + if (moment.suppressDeprecationWarnings === false && + typeof console !== 'undefined' && console.warn) { + console.warn('Deprecation warning: ' + msg); + } + } - /** - * 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) { - this.colorDirty = true; - if (!properties) { - return; - } - this.properties = properties; + function deprecate(msg, fn) { + var firstTime = true; + return extend(function () { + if (firstTime) { + printMsg(msg); + firstTime = false; + } + return fn.apply(this, arguments); + }, fn); + } - var fields = ["style", "fontSize", "fontFace", "fontColor", "fontFill", "fontStrokeWidth", "fontStrokeColor", "width", "widthSelectionMultiplier", "hoverWidth", "arrowScaleFactor", "dash", "inheritColor", "labelAlignment", "opacity", "customScalingFunction", "useGradients", "value"]; - util.selectiveDeepExtend(fields, this.options, properties); + function deprecateSimple(name, msg) { + if (!deprecations[name]) { + printMsg(msg); + deprecations[name] = true; + } + } - if (properties.from !== undefined) { - this.fromId = properties.from; - } - if (properties.to !== undefined) { - this.toId = properties.to; - } + 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); + }; + } - if (properties.id !== undefined) { - this.id = properties.id; - } - if (properties.label !== undefined) { - this.label = properties.label;this.dirtyLabel = true; - } + function monthDiff(a, b) { + // difference in months + var wholeMonthDiff = ((b.year() - a.year()) * 12) + (b.month() - a.month()), + // b is in (anchor - 1 month, anchor + 1 month) + anchor = a.clone().add(wholeMonthDiff, 'months'), + anchor2, adjust; - 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 (b - anchor < 0) { + anchor2 = a.clone().add(wholeMonthDiff - 1, 'months'); + // linear across the month + adjust = (b - anchor) / (anchor - anchor2); + } else { + anchor2 = a.clone().add(wholeMonthDiff + 1, 'months'); + // linear across the month + adjust = (b - anchor) / (anchor2 - anchor); + } - 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 -(wholeMonthDiff + adjust); } - } - - // A node is connected when it has a from and to node that both exist in the network.body.nodes. - this.connect(); - - this.widthFixed = this.widthFixed || properties.width !== undefined; - this.lengthFixed = this.lengthFixed || properties.length !== undefined; - this.widthSelected = this.options.width * this.options.widthSelectionMultiplier; + 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); - // 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; - } - }; + function meridiemFixWrap(locale, hour, meridiem) { + var isPm; - /** - * Connect an edge to its nodes - */ - Edge.prototype.connect = function () { - this.disconnect(); + if (meridiem == null) { + // nothing to do + return hour; + } + if (locale.meridiemHour != null) { + return locale.meridiemHour(hour, meridiem); + } else if (locale.isPM != null) { + // Fallback + isPm = locale.isPM(meridiem); + if (isPm && hour < 12) { + hour += 12; + } + if (!isPm && hour === 12) { + hour = 0; + } + return hour; + } else { + // thie is not supposed to happen + return hour; + } + } - this.from = this.body.nodes[this.fromId] || null; - this.to = this.body.nodes[this.toId] || null; - this.connected = this.from !== null && this.to !== null; + /************************************ + Constructors + ************************************/ - if (this.connected === true) { - this.from.attachEdge(this); - this.to.attachEdge(this); - } else { - if (this.from) { - this.from.detachEdge(this); + function Locale() { } - if (this.to) { - this.to.detachEdge(this); + + // Moment prototype object + function Moment(config, skipOverflow) { + if (skipOverflow !== false) { + checkOverflow(config); + } + copyConfig(this, config); + this._d = new Date(+config._d); + // Prevent infinite loop in case updateOffset creates new moment + // objects. + if (updateInProgress === false) { + updateInProgress = true; + moment.updateOffset(this); + updateInProgress = false; + } } - } - }; - /** - * 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; - } + // 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; - this.connected = false; - }; + // 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; - /** - * 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; - }; + this._data = {}; + this._locale = moment.localeData(); - /** - * Retrieve the value of the edge. Can be undefined - * @return {Number} value - */ - Edge.prototype.getValue = function () { - return this.value; - }; + this._bubble(); + } - /** - * 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, total) { - if (!this.widthFixed && this.value !== undefined) { - var scale = this.options.customScalingFunction(min, max, total, this.value); - var widthDiff = this.options.widthMax - this.options.widthMin; - this.options.width = this.options.widthMin + scale * widthDiff; - this.widthSelected = this.options.width * this.options.widthSelectionMultiplier; - } - }; + /************************************ + Helpers + ************************************/ - /** - * Redraw a edge - * Draw this edge in the given canvas - * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); - * @param {CanvasRenderingContext2D} ctx - */ - Edge.prototype.draw = function (ctx) { - throw "Method draw not initialized in edge"; - }; - /** - * Check if this object is overlapping with the provided object - * @param {Object} obj an object with parameters left, top - * @return {boolean} True if location is located on the edge - */ - Edge.prototype.isOverlappingWith = function (obj) { - if (this.connected) { - var distMax = 10; - var xFrom = this.from.x; - var yFrom = this.from.y; - var xTo = this.to.x; - var yTo = this.to.y; - var xObj = obj.left; - var yObj = obj.top; + function extend(a, b) { + for (var i in b) { + if (hasOwnProp(b, i)) { + a[i] = b[i]; + } + } - var dist = this._getDistanceToEdge(xFrom, yFrom, xTo, yTo, xObj, yObj); + if (hasOwnProp(b, 'toString')) { + a.toString = b.toString; + } - return dist < distMax; - } else { - return false; - } - }; + if (hasOwnProp(b, 'valueOf')) { + a.valueOf = b.valueOf; + } - Edge.prototype._getColor = function (ctx) { - var colorObj = this.options.color; - if (this.options.useGradients == true) { - var grd = ctx.createLinearGradient(this.from.x, this.from.y, this.to.x, this.to.y); - var fromColor, toColor; - fromColor = this.from.options.color.highlight.border; - toColor = this.to.options.color.highlight.border; + return a; + } + function copyConfig(to, from) { + var i, prop, val; - if (this.from.selected == false && this.to.selected == false) { - fromColor = util.overrideOpacity(this.from.options.color.border, this.options.opacity); - toColor = util.overrideOpacity(this.to.options.color.border, this.options.opacity); - } else if (this.from.selected == true && this.to.selected == false) { - toColor = this.to.options.color.border; - } else if (this.from.selected == false && this.to.selected == true) { - fromColor = this.from.options.color.border; - } - grd.addColorStop(0, fromColor); - grd.addColorStop(1, toColor); - return grd; - } + 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 (this.colorDirty === true) { - if (this.options.inheritColor == "to") { - colorObj = { - highlight: this.to.options.color.highlight.border, - hover: this.to.options.color.hover.border, - color: util.overrideOpacity(this.from.options.color.border, this.options.opacity) - }; - } 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: util.overrideOpacity(this.from.options.color.border, this.options.opacity) - }; + if (momentProperties.length > 0) { + for (i in momentProperties) { + prop = momentProperties[i]; + val = from[prop]; + if (typeof val !== 'undefined') { + to[prop] = val; + } + } + } + + return to; } - this.options.color = colorObj; - this.colorDirty = false; - } + function absRound(number) { + if (number < 0) { + return Math.ceil(number); + } else { + return Math.floor(number); + } + } + // left zero fill a number + // see http://jsperf.com/left-zero-filling for performance comparison + function leftZeroFill(number, targetLength, forceSign) { + var output = '' + Math.abs(number), + sign = number >= 0; - if (this.selected == true) { - return colorObj.highlight; - } else if (this.hover == true) { - return colorObj.hover; - } else { - return colorObj.color; - } - }; + while (output.length < targetLength) { + output = '0' + output; + } + return (sign ? (forceSign ? '+' : '') : '-') + output; + } + function positiveMomentsDifference(base, other) { + var res = {milliseconds: 0, months: 0}; - /** - * 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); - ctx.lineWidth = this._getLineWidth(); + res.months = other.month() - base.month() + + (other.year() - base.year()) * 12; + if (base.clone().add(res.months, 'M').isAfter(other)) { + --res.months; + } - if (this.from != this.to) { - // draw line - var via = this._line(ctx); + res.milliseconds = +other - +(base.clone().add(res.months, 'M')); - // 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); + return res; } - 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; + + 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._circle(ctx, x, y, radius); - point = this._pointOnCircle(x, y, radius, 0.5); - this._label(ctx, this.label, point.x, point.y); - } - }; - /** - * Get the line width of the edge. Depends on width and whether one of the - * connected nodes is selected. - * @return {Number} width - * @private - */ - Edge.prototype._getLineWidth = function () { - if (this.selected == true) { - return Math.max(Math.min(this.widthSelected, this.options.widthMax), 0.3 * this.networkScaleInv); - } else { - if (this.hover == true) { - return Math.max(Math.min(this.options.hoverWidth, this.options.widthMax), 0.3 * this.networkScaleInv); - } else { - return Math.max(this.options.width, 0.3 * this.networkScaleInv); + // TODO: remove 'name' arg after deprecation is removed + function createAdder(direction, name) { + return function (val, period) { + var dur, tmp; + //invert the arguments, but complain about it + if (period !== null && !isNaN(+period)) { + deprecateSimple(name, 'moment().' + name + '(period, number) is deprecated. Please use moment().' + name + '(number, period).'); + tmp = val; val = period; period = tmp; + } + + val = typeof val === 'string' ? +val : val; + dur = moment.duration(val, period); + addOrSubtractDurationFromMoment(this, dur, direction); + return this; + }; } - } - }; - Edge.prototype._getViaCoordinates = function () { - if (this.options.smoothCurves.dynamic == true && this.options.smoothCurves.enabled == true) { - return this.via; - } else if (this.options.smoothCurves.enabled == false) { - return { x: 0, y: 0 }; - } else { - var xVia = null; - var yVia = null; - var factor = this.options.smoothCurves.roundness; - var type = this.options.smoothCurves.type; - var dx = Math.abs(this.from.x - this.to.x); - var dy = Math.abs(this.from.y - this.to.y); - if (type == "discrete" || type == "diagonalCross") { - if (Math.abs(this.from.x - this.to.x) < Math.abs(this.from.y - this.to.y)) { - if (this.from.y > this.to.y) { - if (this.from.x < this.to.x) { - xVia = this.from.x + factor * dy; - yVia = this.from.y - factor * dy; - } else if (this.from.x > this.to.x) { - xVia = this.from.x - factor * dy; - yVia = this.from.y - factor * dy; - } - } else if (this.from.y < this.to.y) { - if (this.from.x < this.to.x) { - xVia = this.from.x + factor * dy; - yVia = this.from.y + factor * dy; - } else if (this.from.x > this.to.x) { - xVia = this.from.x - factor * dy; - yVia = this.from.y + factor * dy; - } - } - if (type == "discrete") { - xVia = dx < factor * dy ? this.from.x : xVia; - } - } else if (Math.abs(this.from.x - this.to.x) > Math.abs(this.from.y - this.to.y)) { - if (this.from.y > this.to.y) { - if (this.from.x < this.to.x) { - xVia = this.from.x + factor * dx; - yVia = this.from.y - factor * dx; - } else if (this.from.x > this.to.x) { - xVia = this.from.x - factor * dx; - yVia = this.from.y - factor * dx; - } - } else if (this.from.y < this.to.y) { - if (this.from.x < this.to.x) { - xVia = this.from.x + factor * dx; - yVia = this.from.y + factor * dx; - } else if (this.from.x > this.to.x) { - xVia = this.from.x - factor * dx; - yVia = this.from.y + factor * dx; - } + 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 (type == "discrete") { - yVia = dy < factor * dx ? this.from.y : yVia; + if (days) { + rawSetter(mom, 'Date', rawGetter(mom, 'Date') + days * isAdding); } - } - } 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; + if (months) { + rawMonthSetter(mom, rawGetter(mom, 'Month') + months * isAdding); } - } 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; + if (updateOffset) { + moment.updateOffset(mom, days || months); } - 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 if (type == "curvedCW") { - var dx = this.to.x - this.from.x; - var dy = this.from.y - this.to.y; - var radius = Math.sqrt(dx * dx + dy * dy); - var pi = Math.PI; - - var originalAngle = Math.atan2(dy, dx); - var myAngle = (originalAngle + (factor * 0.5 + 0.5) * pi) % (2 * pi); + } - xVia = this.from.x + (factor * 0.5 + 0.5) * radius * Math.sin(myAngle); - yVia = this.from.y + (factor * 0.5 + 0.5) * radius * Math.cos(myAngle); - } else if (type == "curvedCCW") { - var dx = this.to.x - this.from.x; - var dy = this.from.y - this.to.y; - var radius = Math.sqrt(dx * dx + dy * dy); - var pi = Math.PI; + // check if is an array + function isArray(input) { + return Object.prototype.toString.call(input) === '[object Array]'; + } - var originalAngle = Math.atan2(dy, dx); - var myAngle = (originalAngle + (-factor * 0.5 + 0.5) * pi) % (2 * pi); + function isDate(input) { + return Object.prototype.toString.call(input) === '[object Date]' || + input instanceof Date; + } - xVia = this.from.x + (factor * 0.5 + 0.5) * radius * Math.sin(myAngle); - yVia = this.from.y + (factor * 0.5 + 0.5) * radius * Math.cos(myAngle); - } 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) { - 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) { - 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) { - 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) { - xVia = this.from.x - factor * dy; - yVia = this.from.y + factor * dy; - xVia = this.to.x > xVia ? this.to.x : xVia; - } + // 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++; + } } - } 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; - yVia = this.to.y > yVia ? this.to.y : yVia; - } else if (this.from.x > this.to.x) { - 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) { - 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) { - xVia = this.from.x - factor * dx; - yVia = this.from.y + factor * dx; - yVia = this.to.y < yVia ? this.to.y : yVia; - } + return diffs + lengthDiff; + } + + function normalizeUnits(units) { + if (units) { + var lowered = units.toLowerCase().replace(/(.)s$/, '$1'); + units = unitAliases[units] || camelFunctions[lowered] || lowered; } - } + return units; } + function normalizeObjectUnits(inputObject) { + var normalizedInput = {}, + normalizedProp, + prop; - return { x: xVia, y: yVia }; - } - }; + for (prop in inputObject) { + if (hasOwnProp(inputObject, prop)) { + normalizedProp = normalizeUnits(prop); + if (normalizedProp) { + normalizedInput[normalizedProp] = inputObject[prop]; + } + } + } - /** - * 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(); - //ctx.circle(via.x,via.y,2) - //ctx.stroke(); - return via; - } - } else { - ctx.quadraticCurveTo(this.via.x, this.via.y, this.to.x, this.to.y); - ctx.stroke(); - return this.via; + return normalizedInput; } - } 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(); - }; + function makeList(field) { + var count, setter; - /** - * 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) { - ctx.font = (this.from.selected || this.to.selected ? "bold " : "") + this.options.fontSize + "px " + this.options.fontFace; - var yLine; + if (field.indexOf('week') === 0) { + count = 7; + setter = 'day'; + } + else if (field.indexOf('month') === 0) { + count = 12; + setter = 'month'; + } + else { + return; + } - if (this.dirtyLabel == true) { - var lines = String(text).split("\n"); - var lineCount = lines.length; - var fontSize = Number(this.options.fontSize); - yLine = y + (1 - lineCount) / 2 * fontSize; + moment[field] = function (format, index) { + var i, getter, + method = moment._locale[field], + results = []; - var width = ctx.measureText(lines[0]).width; - for (var i = 1; i < lineCount; i++) { - var lineWidth = ctx.measureText(lines[i]).width; - width = lineWidth > width ? lineWidth : width; - } - var height = this.options.fontSize * lineCount; - var left = x - width / 2; - var top = y - height / 2; + if (typeof format === 'number') { + index = format; + format = undefined; + } - // cache - this.labelDimensions = { top: top, left: left, width: width, height: height, yLine: yLine }; + getter = function (i) { + var m = moment().utc().set(setter, i); + return method.call(moment._locale, m, format || ''); + }; + + if (index != null) { + return getter(index); + } + else { + for (i = 0; i < count; i++) { + results.push(getter(i)); + } + return results; + } + }; } - var yLine = this.labelDimensions.yLine; + function toInt(argumentForCoercion) { + var coercedNumber = +argumentForCoercion, + value = 0; - ctx.save(); + if (coercedNumber !== 0 && isFinite(coercedNumber)) { + if (coercedNumber >= 0) { + value = Math.floor(coercedNumber); + } else { + value = Math.ceil(coercedNumber); + } + } - if (this.options.labelAlignment != "horizontal") { - ctx.translate(x, yLine); - this._rotateForLabelAlignment(ctx); - x = 0; - yLine = 0; + return value; } + function daysInMonth(year, month) { + return new Date(Date.UTC(year, month + 1, 0)).getUTCDate(); + } - this._drawLabelRect(ctx); - this._drawLabelText(ctx, x, yLine, lines, lineCount, fontSize); - - ctx.restore(); - } - }; - - /** - * Rotates the canvas so the text is most readable - * @param {CanvasRenderingContext2D} ctx - * @private - */ - Edge.prototype._rotateForLabelAlignment = function (ctx) { - var dy = this.from.y - this.to.y; - var dx = this.from.x - this.to.x; - var angleInDegrees = Math.atan2(dy, dx); + function weeksInYear(year, dow, doy) { + return weekOfYear(moment([year, 11, 31 + dow - doy]), dow, doy).week; + } - // rotate so label it is readable - if (angleInDegrees < -1 && dx < 0 || angleInDegrees > 0 && dx < 0) { - angleInDegrees = angleInDegrees + Math.PI; - } + function daysInYear(year) { + return isLeapYear(year) ? 366 : 365; + } - ctx.rotate(angleInDegrees); - }; + function isLeapYear(year) { + return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0; + } - /** - * Draws the label rectangle - * @param {CanvasRenderingContext2D} ctx - * @param {String} labelAlignment - * @private - */ - Edge.prototype._drawLabelRect = function (ctx) { - if (this.options.fontFill !== undefined && this.options.fontFill !== null && this.options.fontFill !== "none") { - ctx.fillStyle = this.options.fontFill; + 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] > 24 || + (m._a[HOUR] === 24 && (m._a[MINUTE] !== 0 || + m._a[SECOND] !== 0 || + m._a[MILLISECOND] !== 0)) ? 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; - var lineMargin = 2; + if (m._pf._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) { + overflow = DATE; + } - if (this.options.labelAlignment == "line-center") { - ctx.fillRect(-this.labelDimensions.width * 0.5, -this.labelDimensions.height * 0.5, this.labelDimensions.width, this.labelDimensions.height); - } else if (this.options.labelAlignment == "line-above") { - ctx.fillRect(-this.labelDimensions.width * 0.5, -(this.labelDimensions.height + lineMargin), this.labelDimensions.width, this.labelDimensions.height); - } else if (this.options.labelAlignment == "line-below") { - ctx.fillRect(-this.labelDimensions.width * 0.5, lineMargin, this.labelDimensions.width, this.labelDimensions.height); - } else { - ctx.fillRect(this.labelDimensions.left, this.labelDimensions.top, this.labelDimensions.width, this.labelDimensions.height); + m._pf.overflow = overflow; + } } - } - }; - /** - * Draws the label text - * @param {CanvasRenderingContext2D} ctx - * @param {Number} x - * @param {Number} yLine - * @param {Array} lines - * @param {Number} lineCount - * @param {Number} fontSize - * @private - */ - Edge.prototype._drawLabelText = function (ctx, x, yLine, lines, lineCount, fontSize) { - // draw text - ctx.fillStyle = this.options.fontColor || "black"; - ctx.textAlign = "center"; + 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; - // check for label alignment - if (this.options.labelAlignment != "horizontal") { - var lineMargin = 2; - if (this.options.labelAlignment == "line-above") { - ctx.textBaseline = "alphabetic"; - yLine -= 2 * lineMargin; // distance from edge, required because we use alphabetic. Alphabetic has less difference between browsers - } else if (this.options.labelAlignment == "line-below") { - ctx.textBaseline = "hanging"; - yLine += 2 * lineMargin; // distance from edge, required because we use hanging. Hanging has less difference between browsers - } else { - ctx.textBaseline = "middle"; + if (m._strict) { + m._isValid = m._isValid && + m._pf.charsLeftOver === 0 && + m._pf.unusedTokens.length === 0 && + m._pf.bigHour === undefined; + } + } + return m._isValid; } - } else { - ctx.textBaseline = "middle"; - } - // check for strokeWidth - if (this.options.fontStrokeWidth > 0) { - ctx.lineWidth = this.options.fontStrokeWidth; - ctx.strokeStyle = this.options.fontStrokeColor; - ctx.lineJoin = "round"; - } - for (var i = 0; i < lineCount; i++) { - if (this.options.fontStrokeWidth > 0) { - ctx.strokeText(lines[i], x, yLine); + function normalizeLocale(key) { + return key ? key.toLowerCase().replace('_', '-') : key; } - ctx.fillText(lines[i], x, yLine); - yLine += fontSize; - } - }; - /** - * 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 - ctx.strokeStyle = this._getColor(ctx); - ctx.lineWidth = this._getLineWidth(); + // 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; - var via = null; - // only firefox and chrome support this method, else we use the legacy one. - if (ctx.setLineDash !== undefined) { - ctx.save(); - // 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]; + 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; } - // set dash settings for chrome or firefox - ctx.setLineDash(pattern); - ctx.lineDashOffset = 0; - - // draw the line - via = this._line(ctx); - - // restore the dash settings. - ctx.setLineDash([0]); - ctx.lineDashOffset = 0; - ctx.restore(); - } else { - // unsupporting smooth lines - // draw dashed line - ctx.beginPath(); - ctx.lineCap = "round"; - if (this.options.dash.altLength !== undefined) //If an alt dash value has been set add to the array this value - { - ctx.dashedLine(this.from.x, this.from.y, this.to.x, this.to.y, [this.options.dash.length, this.options.dash.gap, this.options.dash.altLength, this.options.dash.gap]); - } else if (this.options.dash.length !== undefined && this.options.dash.gap !== undefined) //If a dash and gap value has been set add to the array this value - { - ctx.dashedLine(this.from.x, this.from.y, this.to.x, this.to.y, [this.options.dash.length, this.options.dash.gap]); - } else //If all else fails draw a line - { - ctx.moveTo(this.from.x, this.from.y); - ctx.lineTo(this.to.x, this.to.y); - } - ctx.stroke(); - } - - // draw label - if (this.label) { - var point; - if (this.options.smoothCurves.enabled == true && via != null) { - var midpointX = 0.5 * (0.5 * (this.from.x + via.x) + 0.5 * (this.to.x + via.x)); - var midpointY = 0.5 * (0.5 * (this.from.y + via.y) + 0.5 * (this.to.y + via.y)); - point = { x: midpointX, y: midpointY }; - } else { - point = this._pointOnLine(0.5); + 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._label(ctx, this.label, point.x, point.y); - } - }; - - /** - * 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 - }; - }; - - /** - * 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) - }; - }; - /** - * 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 - ctx.strokeStyle = this._getColor(ctx); - ctx.fillStyle = ctx.strokeStyle; - ctx.lineWidth = this._getLineWidth(); + // Return a moment from input, that is local/utc/utcOffset equivalent to + // model. + function makeAs(input, model) { + var res, diff; + if (model._isUTC) { + res = model.clone(); + diff = (moment.isMoment(input) || isDate(input) ? + +input : +moment(input)) - (+res); + // Use low-level api, because this fn is low-level api. + res._d.setTime(+res._d + diff); + moment.updateOffset(res, false); + return res; + } else { + return moment(input).local(); + } + } - if (this.from != this.to) { - // draw line - var via = this._line(ctx); + /************************************ + Locale + ************************************/ - 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); - } - ctx.arrow(point.x, point.y, angle, length); - ctx.fill(); - ctx.stroke(); + extend(Locale.prototype, { - // 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); + set : function (config) { + var prop, i; + for (i in config) { + prop = config[i]; + if (typeof prop === 'function') { + this[i] = prop; + } else { + this['_' + i] = prop; + } + } + // Lenient ordinal parsing accepts just a number in addition to + // number + (possibly) stuff coming from _ordinalParseLenient. + this._ordinalParseLenient = new RegExp(this._ordinalParse.source + '|' + /\d{1,2}/.source); + }, - // 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(); + _months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), + months : function (m) { + return this._months[m.month()]; + }, - // draw label - if (this.label) { - point = this._pointOnCircle(x, y, radius, 0.5); - this._label(ctx, this.label, point.x, point.y); - } - } - }; + _monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), + monthsShort : function (m) { + return this._monthsShort[m.month()]; + }, - Edge.prototype._pointOnBezier = function (t) { - var via = this._getViaCoordinates(); + monthsParse : function (monthName, format, strict) { + var i, mom, regex; - var x = Math.pow(1 - t, 2) * this.from.x + 2 * t * (1 - t) * via.x + Math.pow(t, 2) * this.to.x; - var y = Math.pow(1 - t, 2) * this.from.y + 2 * t * (1 - t) * via.y + Math.pow(t, 2) * this.to.y; + if (!this._monthsParse) { + this._monthsParse = []; + this._longMonthsParse = []; + this._shortMonthsParse = []; + } - return { x: x, y: y }; - }; + for (i = 0; i < 12; i++) { + // make the regex if we don't have it already + mom = moment.utc([2000, i]); + if (strict && !this._longMonthsParse[i]) { + this._longMonthsParse[i] = new RegExp('^' + this.months(mom, '').replace('.', '') + '$', 'i'); + this._shortMonthsParse[i] = new RegExp('^' + this.monthsShort(mom, '').replace('.', '') + '$', 'i'); + } + if (!strict && !this._monthsParse[i]) { + regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, ''); + this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } + // test the regex + if (strict && format === 'MMMM' && this._longMonthsParse[i].test(monthName)) { + return i; + } else if (strict && format === 'MMM' && this._shortMonthsParse[i].test(monthName)) { + return i; + } else if (!strict && this._monthsParse[i].test(monthName)) { + return i; + } + } + }, - /** - * This function uses binary search to look for the point where the bezier curve crosses the border of the node. - * - * @param from - * @param ctx - * @returns {*} - * @private - */ - Edge.prototype._findBorderPosition = function (from, ctx) { - var maxIterations = 10; - var iteration = 0; - var low = 0; - var high = 1; - var pos, angle, distanceToBorder, distanceToNodes, difference; - var threshold = 0.2; - var node = this.to; - if (from == true) { - node = this.from; - } + _weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'), + weekdays : function (m) { + return this._weekdays[m.day()]; + }, - while (low <= high && iteration < maxIterations) { - var middle = (low + high) * 0.5; + _weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), + weekdaysShort : function (m) { + return this._weekdaysShort[m.day()]; + }, - pos = this._pointOnBezier(middle); - angle = Math.atan2(node.y - pos.y, node.x - pos.x); - distanceToBorder = node.distanceToBorder(ctx, angle); - distanceToNodes = Math.sqrt(Math.pow(pos.x - node.x, 2) + Math.pow(pos.y - node.y, 2)); - difference = distanceToBorder - distanceToNodes; - if (Math.abs(difference) < threshold) { - break; // found - } else if (difference < 0) { - // distance to nodes is larger than distance to border --> t needs to be bigger if we're looking at the to node. - if (from == false) { - low = middle; - } else { - high = middle; - } - } else { - if (from == false) { - high = middle; - } else { - low = middle; - } - } + _weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), + weekdaysMin : function (m) { + return this._weekdaysMin[m.day()]; + }, - iteration++; - } - pos.t = middle; + weekdaysParse : function (weekdayName) { + var i, mom, regex; - return pos; - }; + if (!this._weekdaysParse) { + this._weekdaysParse = []; + } - /** - * 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 - ctx.strokeStyle = this._getColor(ctx); - ctx.fillStyle = ctx.strokeStyle; - ctx.lineWidth = this._getLineWidth(); - - // set vars - var angle, length, arrowPos; - - // if not connected to itself - if (this.from != this.to) { - // draw line - this._line(ctx); + 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; + } + } + }, - // draw arrow head - if (this.options.smoothCurves.enabled == true) { - var via = this._getViaCoordinates(); - arrowPos = this._findBorderPosition(false, ctx); - var guidePos = this._pointOnBezier(Math.max(0, arrowPos.t - 0.1)); - angle = Math.atan2(arrowPos.y - guidePos.y, arrowPos.x - guidePos.x); - } else { - 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 toBorderDist = this.to.distanceToBorder(ctx, angle); - var toBorderPoint = (edgeSegmentLength - toBorderDist) / edgeSegmentLength; + _longDateFormat : { + LTS : 'h:mm:ss A', + 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; + }, - arrowPos = {}; - arrowPos.x = (1 - toBorderPoint) * this.from.x + toBorderPoint * this.to.x; - arrowPos.y = (1 - toBorderPoint) * this.from.y + toBorderPoint * this.to.y; - } + 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'); + }, - // draw arrow at the end of the line - length = (10 + 5 * this.options.width) * this.options.arrowScaleFactor; - ctx.arrow(arrowPos.x, arrowPos.y, angle, length); - ctx.fill(); - ctx.stroke(); + _meridiemParse : /[ap]\.?m?\.?/i, + meridiem : function (hours, minutes, isLower) { + if (hours > 11) { + return isLower ? 'pm' : 'PM'; + } else { + return isLower ? 'am' : 'AM'; + } + }, - // draw label - if (this.label) { - var point; - if (this.options.smoothCurves.enabled == true && via != null) { - point = this._pointOnBezier(0.5); - } 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(); - // 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(); + _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, now) { + var output = this._calendar[key]; + return typeof output === 'function' ? output.apply(mom, [now]) : output; + }, - // draw label - if (this.label) { - point = this._pointOnCircle(x, y, radius, 0.5); - this._label(ctx, this.label, point.x, point.y); - } - } - }; + _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' + }, - /** - * 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 - var returnValue = 0; - 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 = 1000000000; - 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; - } - returnValue = minDistance; - } else { - returnValue = 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; - returnValue = Math.abs(Math.sqrt(dx * dx + dy * dy) - radius); - } + 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); + }, - if (this.labelDimensions.left < x3 && this.labelDimensions.left + this.labelDimensions.width > x3 && this.labelDimensions.top < y3 && this.labelDimensions.top + this.labelDimensions.height > y3) { - return 0; - } else { - return returnValue; - } - }; + pastFuture : function (diff, output) { + var format = this._relativeTime[diff > 0 ? 'future' : 'past']; + return typeof format === 'function' ? format(output) : format.replace(/%s/i, output); + }, - 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; + ordinal : function (number) { + return this._ordinal.replace('%d', number); + }, + _ordinal : '%d', + _ordinalParse : /\d{1,2}/, - if (u > 1) { - u = 1; - } else if (u < 0) { - u = 0; - } + preparse : function (string) { + return string; + }, - var x = x1 + u * px, - y = y1 + u * py, - dx = x - x3, - dy = y - y3; + postformat : function (string) { + return string; + }, - //# 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 + week : function (mom) { + return weekOfYear(mom, this._week.dow, this._week.doy).week; + }, - return Math.sqrt(dx * dx + dy * dy); - }; + _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. + }, - /** - * This allows the zoom level of the network to influence the rendering - * - * @param scale - */ - Edge.prototype.setScale = function (scale) { - this.networkScaleInv = 1 / scale; - }; + firstDayOfWeek : function () { + return this._week.dow; + }, + firstDayOfYear : function () { + return this._week.doy; + }, - Edge.prototype.select = function () { - this.selected = true; - }; + _invalidDate: 'Invalid date', + invalidDate: function () { + return this._invalidDate; + } + }); - Edge.prototype.unselect = function () { - this.selected = false; - }; + /************************************ + Formatting + ************************************/ - 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); - } else if (this.via !== null) { - this.via.x = 0; - this.via.y = 0; - } - }; - /** - * 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: 7, borderWidth: 2, borderWidthSelected: 2 }, - physics: { damping: 0 }, - clustering: { maxNodeSizeIncrements: 0, nodeScaling: { width: 0, height: 0, radius: 0 } } - }; - this.controlNodes.from = new Node({ id: nodeIdFrom, - shape: "dot", - color: { background: "#ff0000", border: "#3c3c3c", highlight: { background: "#07f968" } } - }, {}, {}, constants); - this.controlNodes.to = new Node({ id: nodeIdTo, - shape: "dot", - color: { background: "#ff0000", border: "#3c3c3c", highlight: { background: "#07f968" } } - }, {}, {}, constants); + function removeFormattingTokens(input) { + if (input.match(/\[[\s\S]/)) { + return input.replace(/^\[|\]$/g, ''); + } + return input.replace(/\\/g, ''); } - this.controlNodes.positions = {}; - if (this.controlNodes.from.selected == false) { - this.controlNodes.positions.from = this.getControlNodeFromPosition(ctx); - this.controlNodes.from.x = this.controlNodes.positions.from.x; - this.controlNodes.from.y = this.controlNodes.positions.from.y; - } - if (this.controlNodes.to.selected == false) { - this.controlNodes.positions.to = this.getControlNodeToPosition(ctx); - this.controlNodes.to.x = this.controlNodes.positions.to.x; - this.controlNodes.to.y = this.controlNodes.positions.to.y; - } + function makeFormatFunction(format) { + var array = format.match(formattingTokens), i, length; - this.controlNodes.from.draw(ctx); - this.controlNodes.to.draw(ctx); - } else { - this.controlNodes = { from: null, to: null, positions: {} }; - } - }; + for (i = 0, length = array.length; i < length; i++) { + if (formatTokenFunctions[array[i]]) { + array[i] = formatTokenFunctions[array[i]]; + } else { + array[i] = removeFormattingTokens(array[i]); + } + } - /** - * Enable control nodes. - * @private - */ - Edge.prototype._enableControlNodes = function () { - this.fromBackup = this.from; - this.toBackup = this.to; - this.controlNodesEnabled = true; - }; + return function (mom) { + var output = ''; + for (i = 0; i < length; i++) { + output += array[i] instanceof Function ? array[i].call(mom, format) : array[i]; + } + return output; + }; + } - /** - * disable control nodes and remove from dynamicEdges from old node - * @private - */ - Edge.prototype._disableControlNodes = function () { - this.fromId = this.from.id; - this.toId = this.to.id; - if (this.fromId != this.fromBackup.id) { - // from was changed, remove edge from old 'from' node dynamic edges - this.fromBackup.detachEdge(this); - } else if (this.toId != this.toBackup.id) { - // to was changed, remove edge from old 'to' node dynamic edges - this.toBackup.detachEdge(this); - } + // format date using native date object + function formatMoment(m, format) { + if (!m.isValid()) { + return m.localeData().invalidDate(); + } - this.fromBackup = null; - this.toBackup = null; - this.controlNodesEnabled = false; - }; + format = expandFormat(format, m.localeData()); + if (!formatFunctions[format]) { + formatFunctions[format] = makeFormatFunction(format); + } - /** - * 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)); + return formatFunctions[format](m); + } - 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; - } - }; + function expandFormat(format, locale) { + var i = 5; + function replaceLongDateFormatTokens(input) { + return locale.longDateFormat(input) || input; + } - /** - * 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(); - } else if (this.controlNodes.to.selected == true) { - this.to = this.connectedNode; - this.connectedNode = null; - this.controlNodes.to.unselect(); - } - }; + localFormattingTokens.lastIndex = 0; + while (i >= 0 && localFormattingTokens.test(format)) { + format = format.replace(localFormattingTokens, replaceLongDateFormatTokens); + localFormattingTokens.lastIndex = 0; + i -= 1; + } - /** - * this calculates the position of the control nodes on the edges of the parent nodes. - * - * @param ctx - * @returns {x: *, y: *} - */ - Edge.prototype.getControlNodeFromPosition = function (ctx) { - // draw arrow head - var controlnodeFromPos; - if (this.options.smoothCurves.enabled == true) { - controlnodeFromPos = this._findBorderPosition(true, ctx); - } else { - 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); + return format; + } - var fromBorderDist = this.from.distanceToBorder(ctx, angle + Math.PI); - var fromBorderPoint = (edgeSegmentLength - fromBorderDist) / edgeSegmentLength; - controlnodeFromPos = {}; - controlnodeFromPos.x = fromBorderPoint * this.from.x + (1 - fromBorderPoint) * this.to.x; - controlnodeFromPos.y = fromBorderPoint * this.from.y + (1 - fromBorderPoint) * this.to.y; - } - return controlnodeFromPos; - }; + /************************************ + Parsing + ************************************/ - /** - * 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.getControlNodeToPosition = function (ctx) { - // draw arrow head - var controlnodeFromPos, controlnodeToPos; - if (this.options.smoothCurves.enabled == true) { - controlnodeToPos = this._findBorderPosition(false, ctx); - } else { - 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 toBorderDist = this.to.distanceToBorder(ctx, angle); - var toBorderPoint = (edgeSegmentLength - toBorderDist) / edgeSegmentLength; - controlnodeToPos = {}; - controlnodeToPos.x = (1 - toBorderPoint) * this.from.x + toBorderPoint * this.to.x; - controlnodeToPos.y = (1 - toBorderPoint) * this.from.y + toBorderPoint * this.to.y; - } - - return controlnodeToPos; - }; + // 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 parseTokenOffsetMs; + 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 strict ? config._locale._ordinalParse : config._locale._ordinalParseLenient; + default : + a = new RegExp(regexpEscape(unescapeFormat(token.replace('\\', '')), 'i')); + return a; + } + } - module.exports = Edge; + function utcOffsetFromString(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]); -/***/ }, -/* 58 */ -/***/ function(module, exports, __webpack_require__) { + return parts[0] === '+' ? minutes : -minutes; + } - "use strict"; + // function to convert string input to date + function addTimeToArrayFromToken(token, input, config) { + var a, datePartArray = config._a; - /** - * 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; - } + 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, token, config._strict); + // 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.match(/\d{1,2}/)[0], 10)); + } + break; + // DAY OF YEAR + case 'DDD' : // fall through to DDDD + case 'DDDD' : + if (input != null) { + config._dayOfYear = toInt(input); + } - // 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" + 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._meridiem = input; + // config._isPm = config._locale.isPM(input); + break; + // HOUR + case 'h' : // fall through to hh + case 'hh' : + config._pf.bigHour = true; + /* falls through */ + 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 OFFSET (MILLISECONDS) + case 'x': + config._d = new Date(toInt(input)); + 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 = utcOffsetFromString(input); + break; + // WEEKDAY - human + case 'dd': + case 'ddd': + case 'dddd': + a = config._locale.weekdaysParse(input); + // if we didn't get a weekday name, mark the date as invalid + if (a != null) { + config._w = config._w || {}; + config._w['d'] = a; + } else { + config._pf.invalidWeekday = input; + } + break; + // WEEK, WEEK DAY - numeric + case 'w': + case 'ww': + case 'W': + case 'WW': + case 'd': + case 'e': + case 'E': + token = token.substr(0, 1); + /* falls through */ + case 'gggg': + case 'GGGG': + case 'GGGGG': + token = token.substr(0, 2); + if (input) { + config._w = config._w || {}; + config._w[token] = toInt(input); + } + break; + case 'gg': + case 'GG': + config._w = config._w || {}; + config._w[token] = moment.parseTwoDigitYear(input); } - }; } - } - this.x = 0; - this.y = 0; - this.padding = 5; - this.hidden = false; + function dayOfYearFromWeekInfo(config) { + var w, weekYear, week, weekday, dow, doy, temp; - if (x !== undefined && y !== undefined) { - this.setPosition(x, y); - } - if (text !== undefined) { - this.setText(text); - } + w = config._w; + if (w.GG != null || w.W != null || w.E != null) { + dow = 1; + doy = 4; - // create the frame - this.frame = document.createElement("div"); - this.frame.className = "network-tooltip"; - this.frame.style.color = style.fontColor; - this.frame.style.backgroundColor = style.color.background; - this.frame.style.borderColor = style.color.border; - this.frame.style.fontSize = style.fontSize + "px"; - this.frame.style.fontFamily = style.fontFace; - this.container.appendChild(this.frame); - } + // 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; - /** - * @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); - }; + weekYear = dfl(w.gg, config._a[YEAR], weekOfYear(moment(), dow, doy).year); + week = dfl(w.w, 1); - /** - * Set the content for the popup window. This can be HTML code or text. - * @param {string | Element} content - */ - Popup.prototype.setText = function (content) { - if (content instanceof Element) { - this.frame.innerHTML = ""; - this.frame.appendChild(content); - } else { - this.frame.innerHTML = content; // string containing text or HTML - } - }; + 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); - /** - * Show the popup window - * @param {boolean} show Optional. Show or hide the window - */ - Popup.prototype.show = function (show) { - if (show === undefined) { - show = true; - } + config._a[YEAR] = temp.year; + config._dayOfYear = temp.dayOfYear; + } - if (show) { - var height = this.frame.clientHeight; - var width = this.frame.clientWidth; - var maxHeight = this.frame.parentNode.clientHeight; - var maxWidth = this.frame.parentNode.clientWidth; + // 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; - var top = this.y - height; - if (top + height + this.padding > maxHeight) { - top = maxHeight - height - this.padding; - } - if (top < this.padding) { - top = this.padding; - } + if (config._d) { + return; + } - var left = this.x; - if (left + width + this.padding > maxWidth) { - left = maxWidth - width - this.padding; - } - if (left < this.padding) { - left = this.padding; - } + currentDate = currentDateArray(config); - this.frame.style.left = left + "px"; - this.frame.style.top = top + "px"; - this.frame.style.visibility = "visible"; - this.hidden = false; - } else { - this.hide(); - } - }; + //compute day of the year from weeks and weekdays + if (config._w && config._a[DATE] == null && config._a[MONTH] == null) { + dayOfYearFromWeekInfo(config); + } - /** - * Hide the popup window - */ - Popup.prototype.hide = function () { - this.hidden = true; - this.frame.style.visibility = "hidden"; - }; + //if the day of the year is set, figure out what it is + if (config._dayOfYear) { + yearToUse = dfl(config._a[YEAR], currentDate[YEAR]); - module.exports = Popup; + if (config._dayOfYear > daysInYear(yearToUse)) { + config._pf._overflowDayOfYear = true; + } -/***/ }, -/* 59 */ -/***/ function(module, exports, __webpack_require__) { + date = makeUTCDate(yearToUse, 0, config._dayOfYear); + config._a[MONTH] = date.getUTCMonth(); + config._a[DATE] = date.getUTCDate(); + } - "use strict"; + // 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]; + } - var SelectionMixin = __webpack_require__(60); - var ManipulationMixin = __webpack_require__(61); - var NavigationMixin = __webpack_require__(62); - var HierarchicalLayoutMixin = __webpack_require__(63); + // 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]; + } - /** - * 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]; - } - } - }; + // Check for 24:00:00.000 + if (config._a[HOUR] === 24 && + config._a[MINUTE] === 0 && + config._a[SECOND] === 0 && + config._a[MILLISECOND] === 0) { + config._nextDay = true; + config._a[HOUR] = 0; + } + config._d = (config._useUTC ? makeUTCDate : makeDate).apply(null, input); + // Apply timezone offset from input. The actual utcOffset can be changed + // with parseZone. + if (config._tzm != null) { + config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm); + } - /** - * removes a mixin from the network object. - * - * @param {Object} sourceVariable | this object has to contain functions. - * @private - */ - exports._clearMixin = function (sourceVariable) { - for (var mixinFunction in sourceVariable) { - if (sourceVariable.hasOwnProperty(mixinFunction)) { - this[mixinFunction] = undefined; + if (config._nextDay) { + config._a[HOUR] = 24; + } } - } - }; - - /** - * 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(); - } else { - this._cleanupPhysicsConfiguration(); - } - }; + function dateFromObject(config) { + var normalizedInput; + if (config._d) { + return; + } + normalizedInput = normalizeObjectUnits(config._i); + config._a = [ + normalizedInput.year, + normalizedInput.month, + normalizedInput.day || normalizedInput.date, + normalizedInput.hour, + normalizedInput.minute, + normalizedInput.second, + normalizedInput.millisecond + ]; + dateFromConfig(config); + } - /** - * Mixin the selection system and initialize the parameters required - * - * @private - */ - exports._loadSelectionSystem = function () { - this.selectionObj = { nodes: {}, edges: {} }; + function currentDateArray(config) { + var now = new Date(); + if (config._useUTC) { + return [ + now.getUTCFullYear(), + now.getUTCMonth(), + now.getUTCDate() + ]; + } else { + return [now.getFullYear(), now.getMonth(), now.getDate()]; + } + } - this._loadMixin(SelectionMixin); - }; + // date from string and format string + function makeDateFromStringAndFormat(config) { + if (config._f === moment.ISO_8601) { + parseISO(config); + return; + } + config._a = []; + config._pf.empty = true; - /** - * 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; + // 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; - 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"; - if (this.editMode == true) { - this.manipulationDiv.style.display = "block"; - } else { - this.manipulationDiv.style.display = "none"; - } - this.frame.appendChild(this.manipulationDiv); - } + tokens = expandFormat(config._f, config._locale).match(formattingTokens) || []; - if (this.editModeDiv === undefined) { - this.editModeDiv = document.createElement("div"); - this.editModeDiv.className = "network-manipulation-editMode"; - if (this.editMode == true) { - this.editModeDiv.style.display = "none"; - } else { - this.editModeDiv.style.display = "block"; - } - this.frame.appendChild(this.editModeDiv); - } + for (i = 0; i < tokens.length; i++) { + token = tokens[i]; + parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0]; + if (parsedInput) { + skipped = string.substr(0, string.indexOf(parsedInput)); + if (skipped.length > 0) { + config._pf.unusedInput.push(skipped); + } + string = string.slice(string.indexOf(parsedInput) + parsedInput.length); + totalParsedInputLength += parsedInput.length; + } + // don't parse if it's not a known token + if (formatTokenFunctions[token]) { + if (parsedInput) { + config._pf.empty = false; + } + else { + config._pf.unusedTokens.push(token); + } + addTimeToArrayFromToken(token, parsedInput, config); + } + else if (config._strict && !parsedInput) { + config._pf.unusedTokens.push(token); + } + } - if (this.closeDiv === undefined) { - this.closeDiv = document.createElement("div"); - this.closeDiv.className = "network-manipulation-closeDiv"; - this.closeDiv.style.display = this.manipulationDiv.style.display; - this.frame.appendChild(this.closeDiv); + // add remaining unparsed input length to the string + config._pf.charsLeftOver = stringLength - totalParsedInputLength; + if (string.length > 0) { + config._pf.unusedInput.push(string); + } + + // clear _12h flag if hour is <= 12 + if (config._pf.bigHour === true && config._a[HOUR] <= 12) { + config._pf.bigHour = undefined; + } + // handle meridiem + config._a[HOUR] = meridiemFixWrap(config._locale, config._a[HOUR], + config._meridiem); + dateFromConfig(config); + checkOverflow(config); } - // load the manipulation functions - this._loadMixin(ManipulationMixin); + function unescapeFormat(s) { + return s.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) { + return p1 || p2 || p3 || p4; + }); + } - // create the manipulator toolbar - this._createManipulatorBar(); - } else { - if (this.manipulationDiv !== undefined) { - // removes all the bindings and overloads - this._createManipulatorBar(); + // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript + function regexpEscape(s) { + return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); + } - // remove the manipulation divs - this.frame.removeChild(this.manipulationDiv); - this.frame.removeChild(this.editModeDiv); - this.frame.removeChild(this.closeDiv); + // date from string and array of format strings + function makeDateFromStringAndArray(config) { + var tempConfig, + bestMoment, - this.manipulationDiv = undefined; - this.editModeDiv = undefined; - this.closeDiv = undefined; - // remove the mixin functions - this._clearMixin(ManipulationMixin); - } - } - }; + scoreToBeat, + i, + currentScore; + if (config._f.length === 0) { + config._pf.invalidFormat = true; + config._d = new Date(NaN); + return; + } - /** - * 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(); - } - }; + for (i = 0; i < config._f.length; i++) { + currentScore = 0; + tempConfig = copyConfig({}, config); + if (config._useUTC != null) { + tempConfig._useUTC = config._useUTC; + } + tempConfig._pf = defaultParsingFlags(); + tempConfig._f = config._f[i]; + makeDateFromStringAndFormat(tempConfig); + if (!isValid(tempConfig)) { + continue; + } - /** - * Mixin the hierarchical layout system. - * - * @private - */ - exports._loadHierarchySystem = function () { - this._loadMixin(HierarchicalLayoutMixin); - }; + // if there is any input that was not parsed add a penalty for that format + currentScore += tempConfig._pf.charsLeftOver; -/***/ }, -/* 60 */ -/***/ function(module, exports, __webpack_require__) { + //or tokens + currentScore += tempConfig._pf.unusedTokens.length * 10; - "use strict"; + tempConfig._pf.score = currentScore; - var Node = __webpack_require__(56); + if (scoreToBeat == null || currentScore < scoreToBeat) { + scoreToBeat = currentScore; + bestMoment = tempConfig; + } + } - /** - * - * @param object - * @param overlappingNodes - * @private - */ - exports._getNodesOverlappingWith = function (object, overlappingNodes) { - var nodes = this.body.nodes; - for (var nodeId in nodes) { - if (nodes.hasOwnProperty(nodeId)) { - if (nodes[nodeId].isOverlappingWith(object)) { - overlappingNodes.push(nodeId); - } + extend(config, bestMoment || tempConfig); } - } - }; - /** - * 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._getNodesOverlappingWith(object, overlappingNodes); - return overlappingNodes; - }; + // date from iso format + function parseISO(config) { + var i, l, + string = config._i, + match = isoRegex.exec(string); + 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; + } + } - /** - * Return a position object in canvasspace from a single point in screenspace - * - * @param pointer - * @returns {{left: number, top: number, right: number, bottom: number}} - * @private - */ - exports._pointerToPositionObject = function (pointer) { - var x = this._XconvertDOMtoCanvas(pointer.x); - var y = this._YconvertDOMtoCanvas(pointer.y); + // date from iso format or fallback + function makeDateFromString(config) { + parseISO(config); + if (config._isValid === false) { + delete config._isValid; + moment.createFromInputFallback(config); + } + } - return { - left: x, - top: y, - right: x, - bottom: y - }; - }; + function map(arr, fn) { + var res = [], i; + for (i = 0; i < arr.length; ++i) { + res.push(fn(arr[i], i)); + } + return res; + } + 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 = map(input.slice(0), function (obj) { + return parseInt(obj, 10); + }); + 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); + } + } - /** - * Get the top node at the a specific point (like a click) - * - * @param {{x: Number, y: Number}} pointer - * @return {Node | null} node - * @private - */ - exports._getNodeAt = function (pointer) { - // we first check if this is an navigation controls element - var positionObject = this._pointerToPositionObject(pointer); - var overlappingNodes = this._getAllNodesOverlappingWith(positionObject); + 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); - // 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.body.nodes[overlappingNodes[overlappingNodes.length - 1]]; - } else { - return null; - } - }; + //the date constructor doesn't accept years < 1970 + if (y < 1970) { + date.setFullYear(y); + } + return date; + } + function makeUTCDate(y) { + var date = new Date(Date.UTC.apply(null, arguments)); + if (y < 1970) { + date.setUTCFullYear(y); + } + return date; + } - /** - * 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._getEdgesOverlappingWith = function (object, overlappingEdges) { - var edges = this.body.edges; - for (var edgeId in edges) { - if (edges.hasOwnProperty(edgeId)) { - if (edges[edgeId].isOverlappingWith(object)) { - overlappingEdges.push(edgeId); - } + 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; } - } - }; + /************************************ + Relative Time + ************************************/ - /** - * 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._getEdgesOverlappingWith(object, overlappingEdges); - return overlappingEdges; - }; - /** - * Place holder. To implement change the _getNodeAt to a _getObjectAt. Have the _getObjectAt call - * _getNodeAt and _getEdgesAt, then priortize the selection to user preferences. - * - * @param pointer - * @returns {null} - * @private - */ - exports._getEdgeAt = function (pointer) { - var positionObject = this._pointerToPositionObject(pointer); - var overlappingEdges = this._getAllEdgesOverlappingWith(positionObject); + // 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); + } - if (overlappingEdges.length > 0) { - return this.body.edges[overlappingEdges[overlappingEdges.length - 1]]; - } else { - return null; - } - }; + function relativeTime(posNegDuration, withoutSuffix, locale) { + var duration = moment.duration(posNegDuration).abs(), + seconds = round(duration.as('s')), + minutes = round(duration.as('m')), + hours = round(duration.as('h')), + days = round(duration.as('d')), + months = round(duration.as('M')), + years = round(duration.as('y')), + args = seconds < relativeTimeThresholds.s && ['s', seconds] || + minutes === 1 && ['m'] || + minutes < relativeTimeThresholds.m && ['mm', minutes] || + hours === 1 && ['h'] || + hours < relativeTimeThresholds.h && ['hh', hours] || + days === 1 && ['d'] || + days < relativeTimeThresholds.d && ['dd', days] || + months === 1 && ['M'] || + months < relativeTimeThresholds.M && ['MM', months] || + years === 1 && ['y'] || ['yy', years]; - /** - * Add object to the selection array. - * - * @param obj - * @private - */ - exports._addToSelection = function (obj) { - if (obj instanceof Node) { - this.selectionObj.nodes[obj.id] = obj; - } else { - this.selectionObj.edges[obj.id] = obj; - } - }; + args[2] = withoutSuffix; + args[3] = +posNegDuration > 0; + args[4] = locale; + return substituteTimeAgo.apply({}, args); + } - /** - * 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; - } - }; + /************************************ + Week of Year + ************************************/ - /** - * Remove a single option from selection. - * - * @param {Object} obj - * @private - */ - exports._removeFromSelection = function (obj) { - if (obj instanceof Node) { - delete this.selectionObj.nodes[obj.id]; - } else { - delete this.selectionObj.edges[obj.id]; - } - }; - /** - * Unselect all. The selectionObj is useful for this. - * - * @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(); - } - } + // 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.selectionObj = { nodes: {}, edges: {} }; - if (doNotTrigger == false) { - this.emit("select", this.getSelection()); - } - }; + if (daysToDayOfWeek > end) { + daysToDayOfWeek -= 7; + } - /** - * Unselect all clusters. The selectionObj is useful for this. - * - * @param {Boolean} [doNotTrigger] | ignore trigger - * @private - */ - exports._unselectClusters = function (doNotTrigger) { - if (doNotTrigger === undefined) { - doNotTrigger = false; - } + if (daysToDayOfWeek < end - 7) { + daysToDayOfWeek += 7; + } - 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]); - } + adjustedMoment = moment(mom).add(daysToDayOfWeek, 'd'); + return { + week: Math.ceil(adjustedMoment.dayOfYear() / 7), + year: adjustedMoment.year() + }; } - } - if (doNotTrigger == false) { - this.emit("select", this.getSelection()); - } - }; + //http://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday + function dayOfYearFromWeeks(year, week, weekday, firstDayOfWeekOfYear, firstDayOfWeek) { + var d = makeUTCDate(year, 0, 1).getUTCDay(), daysToAdd, dayOfYear; + d = d === 0 ? 7 : d; + weekday = weekday != null ? weekday : firstDayOfWeek; + daysToAdd = firstDayOfWeek - d + (d > firstDayOfWeekOfYear ? 7 : 0) - (d < firstDayOfWeek ? 7 : 0); + dayOfYear = 7 * (week - 1) + (weekday - firstDayOfWeek) + daysToAdd + 1; - /** - * return the number of selected nodes - * - * @returns {number} - * @private - */ - exports._getSelectedNodeCount = function () { - var count = 0; - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - count += 1; + return { + year: dayOfYear > 0 ? year : year - 1, + dayOfYear: dayOfYear > 0 ? dayOfYear : daysInYear(year - 1) + dayOfYear + }; } - } - return count; - }; - /** - * return the selected node - * - * @returns {number} - * @private - */ - exports._getSelectedNode = function () { - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - return this.selectionObj.nodes[nodeId]; - } - } - return null; - }; + /************************************ + Top Level Functions + ************************************/ - /** - * 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; - }; + function makeMoment(config) { + var input = config._i, + format = config._f, + res; + config._locale = config._locale || moment.localeData(config._l); - /** - * return the number of selected edges - * - * @returns {number} - * @private - */ - exports._getSelectedEdgeCount = function () { - var count = 0; - for (var edgeId in this.selectionObj.edges) { - if (this.selectionObj.edges.hasOwnProperty(edgeId)) { - count += 1; - } - } - return count; - }; + if (input === null || (format === undefined && input === '')) { + return moment.invalid({nullInput: true}); + } + if (typeof input === 'string') { + config._i = input = config._locale.preparse(input); + } - /** - * return the number of selected objects. - * - * @returns {number} - * @private - */ - exports._getSelectedObjectCount = function () { - var count = 0; - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - count += 1; - } - } - for (var edgeId in this.selectionObj.edges) { - if (this.selectionObj.edges.hasOwnProperty(edgeId)) { - count += 1; - } - } - return count; - }; + if (moment.isMoment(input)) { + return new Moment(input, true); + } else if (format) { + if (isArray(format)) { + makeDateFromStringAndArray(config); + } else { + makeDateFromStringAndFormat(config); + } + } else { + makeDateFromInput(config); + } - /** - * Check if anything is selected - * - * @returns {boolean} - * @private - */ - exports._selectionIsEmpty = function () { - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - return false; - } - } - for (var edgeId in this.selectionObj.edges) { - if (this.selectionObj.edges.hasOwnProperty(edgeId)) { - return false; + res = new Moment(config); + if (res._nextDay) { + // Adding is smart enough around DST + res.add(1, 'd'); + res._nextDay = undefined; + } + + return res; } - } - return true; - }; + moment = function (input, format, locale, strict) { + var c; - /** - * check if one of the selected nodes is a cluster. - * - * @returns {boolean} - * @private - */ - exports._clusterInSelection = function () { - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - if (this.selectionObj.nodes[nodeId].clusterSize > 1) { - return true; - } - } - } - return false; - }; + 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(); - /** - * 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.edges.length; i++) { - var edge = node.edges[i]; - edge.select(); - this._addToSelection(edge); - } - }; + return makeMoment(c); + }; - /** - * select the edges connected to the node that is being selected - * - * @param {Node} node - * @private - */ - exports._hoverConnectedEdges = function (node) { - for (var i = 0; i < node.edges.length; i++) { - var edge = node.edges[i]; - edge.hover = true; - this._addToHover(edge); - } - }; + moment.suppressDeprecationWarnings = false; + moment.createFromInputFallback = deprecate( + 'moment construction falls back to js Date. This is ' + + 'discouraged and will be removed in upcoming major ' + + 'release. Please refer to ' + + 'https://github.com/moment/moment/issues/1407 for more info.', + function (config) { + config._d = new Date(config._i + (config._useUTC ? ' UTC' : '')); + } + ); - /** - * 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.edges.length; i++) { - var edge = node.edges[i]; - edge.unselect(); - this._removeFromSelection(edge); - } - }; + // 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; + } + moment.min = function () { + var args = [].slice.call(arguments, 0); + return pickBy('isBefore', args); + }; + moment.max = function () { + var args = [].slice.call(arguments, 0); - /** - * This is called when someone clicks on a node. either select or deselect it. - * If there is an existing selection and we don't want to append to it, clear the existing selection - * - * @param {Node || Edge} object - * @param {Boolean} append - * @param {Boolean} [doNotTrigger] | ignore trigger - * @private - */ - exports._selectObject = function (object, append, doNotTrigger, highlightEdges, overrideSelectable) { - if (doNotTrigger === undefined) { - doNotTrigger = false; - } - if (highlightEdges === undefined) { - highlightEdges = true; - } + return pickBy('isAfter', args); + }; - if (this._selectionIsEmpty() == false && append == false && this.forceAppendSelection == false) { - this._unselectAll(true); - } + // creating with utc + moment.utc = function (input, format, locale, strict) { + var c; - // selectable allows the object to be selected. Override can be used if needed to bypass this. - if (object.selected == false && (this.constants.selectable == true || overrideSelectable)) { - object.select(); - this._addToSelection(object); - if (object instanceof Node && this.blockConnectingEdgeSelection == false && highlightEdges == true) { - this._selectConnectedEdges(object); - } - } - // do not select the object if selectable is false, only add it to selection to allow drag to work - else if (object.selected == false) { - this._addToSelection(object); - doNotTrigger = true; - } else { - object.unselect(); - this._removeFromSelection(object); - } + 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(); - if (doNotTrigger == false) { - this.emit("select", this.getSelection()); - } - }; + return makeMoment(c).utc(); + }; + // creating with unix timestamp (in seconds) + moment.unix = function (input) { + return moment(input * 1000); + }; - /** - * 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._blurObject = function (object) { - if (object.hover == true) { - object.hover = false; - this.emit("blurNode", { node: object.id }); - } - }; + // duration + moment.duration = function (input, key) { + var duration = input, + // matching against regexp is expensive, do it on demand + match = null, + sign, + ret, + parseIso, + diffRes; - /** - * 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 }); - } - } - if (object instanceof Node) { - this._hoverConnectedEdges(object); - } - }; + 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 (duration == null) {// checks for null or undefined + duration = {}; + } 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; + } - /** - * 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._handleTouch = function (pointer) {}; + ret = new Duration(duration); + if (moment.isDuration(input) && hasOwnProp(input, '_locale')) { + ret._locale = input._locale; + } - /** - * handles the selection part of the tap; - * - * @param {Object} pointer - * @private - */ - exports._handleTap = function (pointer) { - var node = this._getNodeAt(pointer); - if (node != null) { - this._selectObject(node, false); - } else { - var edge = this._getEdgeAt(pointer); - if (edge != null) { - this._selectObject(edge, false); - } else { - this._unselectAll(); - } - } - var properties = this.getSelection(); - properties.pointer = { - DOM: { x: pointer.x, y: pointer.y }, - canvas: { x: this._XconvertDOMtoCanvas(pointer.x), y: this._YconvertDOMtoCanvas(pointer.y) } - }; - this.emit("click", properties); - this._requestRedraw(); - }; + return ret; + }; + // version number + moment.version = VERSION; - /** - * handles the selection part of the double tap and opens a cluster if needed - * - * @param {Object} pointer - * @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); - } - var properties = this.getSelection(); - properties.pointer = { - DOM: { x: pointer.x, y: pointer.y }, - canvas: { x: this._XconvertDOMtoCanvas(pointer.x), y: this._YconvertDOMtoCanvas(pointer.y) } - }; - this.emit("doubleClick", properties); - }; + // default format + moment.defaultFormat = isoFormat; + // constant that refers to the ISO standard + moment.ISO_8601 = function () {}; - /** - * Handle the onHold selection part - * - * @param pointer - * @private - */ - exports._handleOnHold = function (pointer) { - var node = this._getNodeAt(pointer); - if (node != null) { - this._selectObject(node, true); - } else { - var edge = this._getEdgeAt(pointer); - if (edge != null) { - this._selectObject(edge, true); - } - } - this._requestRedraw(); - }; - - - /** - * handle the onRelease event. These functions are here for the navigation controls module - * and data manipulation module. - * - * @private - */ - exports._handleOnRelease = function (pointer) { - this._manipulationReleaseOverload(pointer); - this._navigationReleaseOverload(pointer); - }; + // Plugins that add properties should also add the key here (null value), + // so we can properly clone ourselves. + moment.momentProperties = momentProperties; - exports._manipulationReleaseOverload = function (pointer) {}; - exports._navigationReleaseOverload = function (pointer) {}; + // 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 () {}; - /** - * - * 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 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; + }; - /** - * - * retrieve the currently selected nodes - * @return {String[]} selection An array with the ids of the - * selected nodes. - */ - exports.getSelectedNodes = function () { - var idArray = []; - if (this.constants.selectable == true) { - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - idArray.push(nodeId); - } - } - } - return idArray; - }; + moment.lang = deprecate( + 'moment.lang is deprecated. Use moment.locale instead.', + function (key, value) { + return moment.locale(key, value); + } + ); - /** - * - * retrieve the currently selected edges - * @return {Array} selection An array with the ids of the - * selected nodes. - */ - exports.getSelectedEdges = function () { - var idArray = []; - if (this.constants.selectable == true) { - for (var edgeId in this.selectionObj.edges) { - if (this.selectionObj.edges.hasOwnProperty(edgeId)) { - idArray.push(edgeId); - } - } - } - return idArray; - }; + // 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; + } + } - /** - * select zero or more nodes DEPRICATED - * @param {Number[] | String[]} selection An array with the ids of the - * selected nodes. - */ - exports.setSelection = function () { - console.log("setSelection is deprecated. Please use selectNodes instead."); - }; + 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); - /** - * 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.selectNodes = function (selection, highlightEdges) { - var i, iMax, id; + // backwards compat for now: also set the locale + moment.locale(name); - if (!selection || selection.length == undefined) throw "Selection must be an array with ids"; + return locales[name]; + } else { + // useful for testing + delete locales[name]; + return null; + } + }; - // first unselect any selected node - this._unselectAll(true); + moment.langData = deprecate( + 'moment.langData is deprecated. Use moment.localeData instead.', + function (key) { + return moment.localeData(key); + } + ); - for (i = 0, iMax = selection.length; i < iMax; i++) { - id = selection[i]; + // returns locale data + moment.localeData = function (key) { + var locale; - var node = this.body.nodes[id]; - if (!node) { - throw new RangeError("Node with id \"" + id + "\" not found"); - } - this._selectObject(node, true, true, highlightEdges, true); - } - this.redraw(); - }; + if (key && key._locale && key._locale._abbr) { + key = key._locale._abbr; + } + if (!key) { + return moment._locale; + } - /** - * select zero or more edges - * @param {Number[] | String[]} selection An array with the ids of the - * selected nodes. - */ - exports.selectEdges = function (selection) { - var i, iMax, id; + if (!isArray(key)) { + //short-circuit everything else + locale = loadLocale(key); + if (locale) { + return locale; + } + key = [key]; + } - if (!selection || selection.length == undefined) throw "Selection must be an array with ids"; + return chooseLocale(key); + }; - // first unselect any selected node - this._unselectAll(true); + // compare moment object + moment.isMoment = function (obj) { + return obj instanceof Moment || + (obj != null && hasOwnProp(obj, '_isAMomentObject')); + }; - for (i = 0, iMax = selection.length; i < iMax; i++) { - id = selection[i]; + // for typechecking Duration objects + moment.isDuration = function (obj) { + return obj instanceof Duration; + }; - var edge = this.body.edges[id]; - if (!edge) { - throw new RangeError("Edge with id \"" + id + "\" not found"); + for (i = lists.length - 1; i >= 0; --i) { + makeList(lists[i]); } - this._selectObject(edge, true, true, false, true); - } - 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.body.nodes.hasOwnProperty(nodeId)) { - delete this.selectionObj.nodes[nodeId]; - } - } - } - for (var edgeId in this.selectionObj.edges) { - if (this.selectionObj.edges.hasOwnProperty(edgeId)) { - if (!this.body.edges.hasOwnProperty(edgeId)) { - delete this.selectionObj.edges[edgeId]; - } - } - } - }; + moment.normalizeUnits = function (units) { + return normalizeUnits(units); + }; -/***/ }, -/* 61 */ -/***/ function(module, exports, __webpack_require__) { + moment.invalid = function (flags) { + var m = moment.utc(NaN); + if (flags != null) { + extend(m._pf, flags); + } + else { + m._pf.userInvalidated = true; + } - "use strict"; + return m; + }; - var util = __webpack_require__(1); - var Node = __webpack_require__(56); - var Edge = __webpack_require__(57); - var Hammer = __webpack_require__(19); + moment.parseZone = function () { + return moment.apply(null, arguments).parseZone(); + }; - /** - * clears the toolbar div element of children - * - * @private - */ - exports._clearManipulatorBar = function () { - this._recursiveDOMDelete(this.manipulationDiv); - this.manipulationDOM = {}; + moment.parseTwoDigitYear = function (input) { + return toInt(input) + (toInt(input) > 68 ? 1900 : 2000); + }; - this._cleanManipulatorHammers(); + moment.isDate = isDate; - this._manipulationReleaseOverload = function () {}; - delete this.body.sectors.support.nodes.targetNode; - delete this.body.sectors.support.nodes.targetViaNode; - this.controlNodesActive = false; - this.freezeSimulationEnabled = false; - }; + /************************************ + Moment Prototype + ************************************/ - exports._cleanManipulatorHammers = function () { - // clean hammer bindings - if (this.manipulationHammers.length != 0) { - for (var i = 0; i < this.manipulationHammers.length; i++) { - this.manipulationHammers[i].dispose(); - } - this.manipulationHammers = []; - } - }; + extend(moment.fn = Moment.prototype, { - /** - * 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]; - delete this.cachedFunctions[functionName]; - } - } - }; + clone : function () { + return moment(this); + }, - /** - * Enable or disable edit-mode. - * - * @private - */ - exports._toggleEditMode = function () { - this.editMode = !this.editMode; - var toolbar = this.manipulationDiv; - var closeDiv = this.closeDiv; - var editModeDiv = this.editModeDiv; - if (this.editMode == true) { - toolbar.style.display = "block"; - closeDiv.style.display = "block"; - editModeDiv.style.display = "none"; - this._bindHammerToDiv(closeDiv, "_toggleEditMode"); - } else { - toolbar.style.display = "none"; - closeDiv.style.display = "none"; - editModeDiv.style.display = "block"; - } - this._createManipulatorBar(); - }; + valueOf : function () { + return +this._d - ((this._offset || 0) * 60000); + }, - /** - * main function, creates the main toolbar. Removes functions bound to the select event. Binds all the buttons of the toolbar. - * - * @private - */ - exports._createManipulatorBar = function () { - // remove bound functions - if (this.boundFunction) { - this.off("select", this.boundFunction); - } + unix : function () { + return Math.floor(+this / 1000); + }, - this._cleanManipulatorHammers(); + toString : function () { + return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ'); + }, - var locale = this.constants.locales[this.constants.locale]; + toDate : function () { + return this._offset ? new Date(+this) : this._d; + }, - if (this.edgeBeingEdited !== undefined) { - this.edgeBeingEdited._disableControlNodes(); - this.edgeBeingEdited = undefined; - this.selectedControlNode = null; - this.controlNodesActive = false; - this._redraw(); - } + toISOString : function () { + var m = moment(this).utc(); + if (0 < m.year() && m.year() <= 9999) { + if ('function' === typeof Date.prototype.toISOString) { + // native implementation is ~50x faster, use it when we can + return this.toDate().toISOString(); + } else { + 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]'); + } + }, - // restore overloaded functions - this._restoreOverloadedFunctions(); + toArray : function () { + var m = this; + return [ + m.year(), + m.month(), + m.date(), + m.hours(), + m.minutes(), + m.seconds(), + m.milliseconds() + ]; + }, - // resume calculation - this.freezeSimulation(false); + isValid : function () { + return isValid(this); + }, - // reset global variables - this.blockConnectingEdgeSelection = false; - this.forceAppendSelection = false; - this.manipulationDOM = {}; + isDSTShifted : function () { + if (this._a) { + return this.isValid() && compareArrays(this._a, (this._isUTC ? moment.utc(this._a) : moment(this._a)).toArray()) > 0; + } - if (this.editMode == true) { - while (this.manipulationDiv.hasChildNodes()) { - this.manipulationDiv.removeChild(this.manipulationDiv.firstChild); - } + return false; + }, - this.manipulationDOM.addNodeSpan = document.createElement("div"); - this.manipulationDOM.addNodeSpan.className = "network-manipulationUI add"; + parsingFlags : function () { + return extend({}, this._pf); + }, - this.manipulationDOM.addNodeLabelSpan = document.createElement("div"); - this.manipulationDOM.addNodeLabelSpan.className = "network-manipulationLabel"; - this.manipulationDOM.addNodeLabelSpan.innerHTML = locale.addNode; - this.manipulationDOM.addNodeSpan.appendChild(this.manipulationDOM.addNodeLabelSpan); + invalidAt: function () { + return this._pf.overflow; + }, - this.manipulationDOM.seperatorLineDiv1 = document.createElement("div"); - this.manipulationDOM.seperatorLineDiv1.className = "network-seperatorLine"; + utc : function (keepLocalTime) { + return this.utcOffset(0, keepLocalTime); + }, - this.manipulationDOM.addEdgeSpan = document.createElement("div"); - this.manipulationDOM.addEdgeSpan.className = "network-manipulationUI connect"; - this.manipulationDOM.addEdgeLabelSpan = document.createElement("div"); - this.manipulationDOM.addEdgeLabelSpan.className = "network-manipulationLabel"; - this.manipulationDOM.addEdgeLabelSpan.innerHTML = locale.addEdge; - this.manipulationDOM.addEdgeSpan.appendChild(this.manipulationDOM.addEdgeLabelSpan); + local : function (keepLocalTime) { + if (this._isUTC) { + this.utcOffset(0, keepLocalTime); + this._isUTC = false; - this.manipulationDiv.appendChild(this.manipulationDOM.addNodeSpan); - this.manipulationDiv.appendChild(this.manipulationDOM.seperatorLineDiv1); - this.manipulationDiv.appendChild(this.manipulationDOM.addEdgeSpan); + if (keepLocalTime) { + this.subtract(this._dateUtcOffset(), 'm'); + } + } + return this; + }, - if (this._getSelectedNodeCount() == 1 && this.triggerFunctions.edit) { - this.manipulationDOM.seperatorLineDiv2 = document.createElement("div"); - this.manipulationDOM.seperatorLineDiv2.className = "network-seperatorLine"; + format : function (inputString) { + var output = formatMoment(this, inputString || moment.defaultFormat); + return this.localeData().postformat(output); + }, - this.manipulationDOM.editNodeSpan = document.createElement("div"); - this.manipulationDOM.editNodeSpan.className = "network-manipulationUI edit"; - this.manipulationDOM.editNodeLabelSpan = document.createElement("div"); - this.manipulationDOM.editNodeLabelSpan.className = "network-manipulationLabel"; - this.manipulationDOM.editNodeLabelSpan.innerHTML = locale.editNode; - this.manipulationDOM.editNodeSpan.appendChild(this.manipulationDOM.editNodeLabelSpan); + add : createAdder(1, 'add'), - this.manipulationDiv.appendChild(this.manipulationDOM.seperatorLineDiv2); - this.manipulationDiv.appendChild(this.manipulationDOM.editNodeSpan); - } else if (this._getSelectedEdgeCount() == 1 && this._getSelectedNodeCount() == 0) { - this.manipulationDOM.seperatorLineDiv3 = document.createElement("div"); - this.manipulationDOM.seperatorLineDiv3.className = "network-seperatorLine"; + subtract : createAdder(-1, 'subtract'), - this.manipulationDOM.editEdgeSpan = document.createElement("div"); - this.manipulationDOM.editEdgeSpan.className = "network-manipulationUI edit"; - this.manipulationDOM.editEdgeLabelSpan = document.createElement("div"); - this.manipulationDOM.editEdgeLabelSpan.className = "network-manipulationLabel"; - this.manipulationDOM.editEdgeLabelSpan.innerHTML = locale.editEdge; - this.manipulationDOM.editEdgeSpan.appendChild(this.manipulationDOM.editEdgeLabelSpan); + diff : function (input, units, asFloat) { + var that = makeAs(input, this), + zoneDiff = (that.utcOffset() - this.utcOffset()) * 6e4, + anchor, diff, output, daysAdjust; - this.manipulationDiv.appendChild(this.manipulationDOM.seperatorLineDiv3); - this.manipulationDiv.appendChild(this.manipulationDOM.editEdgeSpan); - } - if (this._selectionIsEmpty() == false) { - this.manipulationDOM.seperatorLineDiv4 = document.createElement("div"); - this.manipulationDOM.seperatorLineDiv4.className = "network-seperatorLine"; + units = normalizeUnits(units); - this.manipulationDOM.deleteSpan = document.createElement("div"); - this.manipulationDOM.deleteSpan.className = "network-manipulationUI delete"; - this.manipulationDOM.deleteLabelSpan = document.createElement("div"); - this.manipulationDOM.deleteLabelSpan.className = "network-manipulationLabel"; - this.manipulationDOM.deleteLabelSpan.innerHTML = locale.del; - this.manipulationDOM.deleteSpan.appendChild(this.manipulationDOM.deleteLabelSpan); + if (units === 'year' || units === 'month' || units === 'quarter') { + output = monthDiff(this, that); + if (units === 'quarter') { + output = output / 3; + } else if (units === 'year') { + output = output / 12; + } + } else { + diff = this - that; + output = units === 'second' ? diff / 1e3 : // 1000 + units === 'minute' ? diff / 6e4 : // 1000 * 60 + units === 'hour' ? diff / 36e5 : // 1000 * 60 * 60 + units === 'day' ? (diff - zoneDiff) / 864e5 : // 1000 * 60 * 60 * 24, negate dst + units === 'week' ? (diff - zoneDiff) / 6048e5 : // 1000 * 60 * 60 * 24 * 7, negate dst + diff; + } + return asFloat ? output : absRound(output); + }, - this.manipulationDiv.appendChild(this.manipulationDOM.seperatorLineDiv4); - this.manipulationDiv.appendChild(this.manipulationDOM.deleteSpan); - } + from : function (time, withoutSuffix) { + return moment.duration({to: this, from: time}).locale(this.locale()).humanize(!withoutSuffix); + }, - // bind the icons - this._bindHammerToDiv(this.manipulationDOM.addNodeSpan, "_createAddNodeToolbar"); - this._bindHammerToDiv(this.manipulationDOM.addEdgeSpan, "_createAddEdgeToolbar"); - this._bindHammerToDiv(this.closeDiv, "_toggleEditMode"); + fromNow : function (withoutSuffix) { + return this.from(moment(), withoutSuffix); + }, - if (this._getSelectedNodeCount() == 1 && this.triggerFunctions.edit) { - this._bindHammerToDiv(this.manipulationDOM.editNodeSpan, "_editNode"); - } else if (this._getSelectedEdgeCount() == 1 && this._getSelectedNodeCount() == 0) { - this._bindHammerToDiv(this.manipulationDOM.editEdgeSpan, "_createEditEdgeToolbar"); - } - if (this._selectionIsEmpty() == false) { - this._bindHammerToDiv(this.manipulationDOM.deleteSpan, "_deleteSelected"); - } + calendar : function (time) { + // We want to compare the start of today, vs this. + // Getting start-of-today depends on whether we're locat/utc/offset + // 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, moment(now))); + }, - var me = this; - this.boundFunction = me._createManipulatorBar; - this.on("select", this.boundFunction); - } else { - while (this.editModeDiv.hasChildNodes()) { - this.editModeDiv.removeChild(this.editModeDiv.firstChild); - } + isLeapYear : function () { + return isLeapYear(this.year()); + }, - this.manipulationDOM.editModeSpan = document.createElement("div"); - this.manipulationDOM.editModeSpan.className = "network-manipulationUI edit editmode"; - this.manipulationDOM.editModeLabelSpan = document.createElement("div"); - this.manipulationDOM.editModeLabelSpan.className = "network-manipulationLabel"; - this.manipulationDOM.editModeLabelSpan.innerHTML = locale.edit; - this.manipulationDOM.editModeSpan.appendChild(this.manipulationDOM.editModeLabelSpan); + isDST : function () { + return (this.utcOffset() > this.clone().month(0).utcOffset() || + this.utcOffset() > this.clone().month(5).utcOffset()); + }, - this.editModeDiv.appendChild(this.manipulationDOM.editModeSpan); + 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._bindHammerToDiv(this.manipulationDOM.editModeSpan, "_toggleEditMode"); - } - }; + month : makeAccessor('Month', true), + startOf : function (units) { + units = normalizeUnits(units); + // the following switch intentionally omits break keywords + // to utilize falling through the cases. + switch (units) { + case 'year': + this.month(0); + /* falls through */ + case 'quarter': + case 'month': + this.date(1); + /* falls through */ + case 'week': + case 'isoWeek': + case 'day': + this.hours(0); + /* falls through */ + case 'hour': + this.minutes(0); + /* falls through */ + case 'minute': + this.seconds(0); + /* falls through */ + case 'second': + this.milliseconds(0); + /* falls through */ + } - exports._bindHammerToDiv = function (domElement, funct) { - var hammer = Hammer(domElement, { prevent_default: true }); - hammer.on("touch", this[funct].bind(this)); - this.manipulationHammers.push(hammer); - }; + // weeks are a special case + if (units === 'week') { + this.weekday(0); + } else if (units === 'isoWeek') { + this.isoWeekday(1); + } + // quarters are also special + if (units === 'quarter') { + this.month(Math.floor(this.month() / 3) * 3); + } - /** - * Create the toolbar for adding Nodes - * - * @private - */ - exports._createAddNodeToolbar = function () { - // clear the toolbar - this._clearManipulatorBar(); - if (this.boundFunction) { - this.off("select", this.boundFunction); - } + return this; + }, - var locale = this.constants.locales[this.constants.locale]; + endOf: function (units) { + units = normalizeUnits(units); + if (units === undefined || units === 'millisecond') { + return this; + } + return this.startOf(units).add(1, (units === 'isoWeek' ? 'week' : units)).subtract(1, 'ms'); + }, - this.manipulationDOM = {}; - this.manipulationDOM.backSpan = document.createElement("div"); - this.manipulationDOM.backSpan.className = "network-manipulationUI back"; - this.manipulationDOM.backLabelSpan = document.createElement("div"); - this.manipulationDOM.backLabelSpan.className = "network-manipulationLabel"; - this.manipulationDOM.backLabelSpan.innerHTML = locale.back; - this.manipulationDOM.backSpan.appendChild(this.manipulationDOM.backLabelSpan); + isAfter: function (input, units) { + var inputMs; + units = normalizeUnits(typeof units !== 'undefined' ? units : 'millisecond'); + if (units === 'millisecond') { + input = moment.isMoment(input) ? input : moment(input); + return +this > +input; + } else { + inputMs = moment.isMoment(input) ? +input : +moment(input); + return inputMs < +this.clone().startOf(units); + } + }, - this.manipulationDOM.seperatorLineDiv1 = document.createElement("div"); - this.manipulationDOM.seperatorLineDiv1.className = "network-seperatorLine"; + isBefore: function (input, units) { + var inputMs; + units = normalizeUnits(typeof units !== 'undefined' ? units : 'millisecond'); + if (units === 'millisecond') { + input = moment.isMoment(input) ? input : moment(input); + return +this < +input; + } else { + inputMs = moment.isMoment(input) ? +input : +moment(input); + return +this.clone().endOf(units) < inputMs; + } + }, - this.manipulationDOM.descriptionSpan = document.createElement("div"); - this.manipulationDOM.descriptionSpan.className = "network-manipulationUI none"; - this.manipulationDOM.descriptionLabelSpan = document.createElement("div"); - this.manipulationDOM.descriptionLabelSpan.className = "network-manipulationLabel"; - this.manipulationDOM.descriptionLabelSpan.innerHTML = locale.addDescription; - this.manipulationDOM.descriptionSpan.appendChild(this.manipulationDOM.descriptionLabelSpan); + isBetween: function (from, to, units) { + return this.isAfter(from, units) && this.isBefore(to, units); + }, - this.manipulationDiv.appendChild(this.manipulationDOM.backSpan); - this.manipulationDiv.appendChild(this.manipulationDOM.seperatorLineDiv1); - this.manipulationDiv.appendChild(this.manipulationDOM.descriptionSpan); + isSame: function (input, units) { + var inputMs; + units = normalizeUnits(units || 'millisecond'); + if (units === 'millisecond') { + input = moment.isMoment(input) ? input : moment(input); + return +this === +input; + } else { + inputMs = +moment(input); + return +(this.clone().startOf(units)) <= inputMs && inputMs <= +(this.clone().endOf(units)); + } + }, - // bind the icon - this._bindHammerToDiv(this.manipulationDOM.backSpan, "_createManipulatorBar"); + 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; + } + ), - // we use the boundFunction so we can reference it when we unbind it from the "select" event. - var me = this; - this.boundFunction = me._addNode; - this.on("select", this.boundFunction); - }; + 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; + } + ), + zone : deprecate( + 'moment().zone is deprecated, use moment().utcOffset instead. ' + + 'https://github.com/moment/moment/issues/1779', + function (input, keepLocalTime) { + if (input != null) { + if (typeof input !== 'string') { + input = -input; + } - /** - * create the toolbar to connect nodes - * - * @private - */ - exports._createAddEdgeToolbar = function () { - // clear the toolbar - this._clearManipulatorBar(); - this._unselectAll(true); - this.freezeSimulationEnabled = true; + this.utcOffset(input, keepLocalTime); - if (this.boundFunction) { - this.off("select", this.boundFunction); - } + return this; + } else { + return -this.utcOffset(); + } + } + ), - var locale = this.constants.locales[this.constants.locale]; + // keepLocalTime = true means only change the timezone, without + // affecting the local hour. So 5:31:26 +0300 --[utcOffset(2, true)]--> + // 5:31:26 +0200 It is possible that 5:31:26 doesn't exist with offset + // +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. + utcOffset : function (input, keepLocalTime) { + var offset = this._offset || 0, + localAdjust; + if (input != null) { + if (typeof input === 'string') { + input = utcOffsetFromString(input); + } + if (Math.abs(input) < 16) { + input = input * 60; + } + if (!this._isUTC && keepLocalTime) { + localAdjust = this._dateUtcOffset(); + } + this._offset = input; + this._isUTC = true; + if (localAdjust != null) { + this.add(localAdjust, 'm'); + } + if (offset !== input) { + if (!keepLocalTime || this._changeInProgress) { + addOrSubtractDurationFromMoment(this, + moment.duration(input - offset, 'm'), 1, false); + } else if (!this._changeInProgress) { + this._changeInProgress = true; + moment.updateOffset(this, true); + this._changeInProgress = null; + } + } - this.forceAppendSelection = false; - this.blockConnectingEdgeSelection = true; + return this; + } else { + return this._isUTC ? offset : this._dateUtcOffset(); + } + }, - this.manipulationDOM = {}; - this.manipulationDOM.backSpan = document.createElement("div"); - this.manipulationDOM.backSpan.className = "network-manipulationUI back"; - this.manipulationDOM.backLabelSpan = document.createElement("div"); - this.manipulationDOM.backLabelSpan.className = "network-manipulationLabel"; - this.manipulationDOM.backLabelSpan.innerHTML = locale.back; - this.manipulationDOM.backSpan.appendChild(this.manipulationDOM.backLabelSpan); + isLocal : function () { + return !this._isUTC; + }, - this.manipulationDOM.seperatorLineDiv1 = document.createElement("div"); - this.manipulationDOM.seperatorLineDiv1.className = "network-seperatorLine"; + isUtcOffset : function () { + return this._isUTC; + }, - this.manipulationDOM.descriptionSpan = document.createElement("div"); - this.manipulationDOM.descriptionSpan.className = "network-manipulationUI none"; - this.manipulationDOM.descriptionLabelSpan = document.createElement("div"); - this.manipulationDOM.descriptionLabelSpan.className = "network-manipulationLabel"; - this.manipulationDOM.descriptionLabelSpan.innerHTML = locale.edgeDescription; - this.manipulationDOM.descriptionSpan.appendChild(this.manipulationDOM.descriptionLabelSpan); + isUtc : function () { + return this._isUTC && this._offset === 0; + }, - this.manipulationDiv.appendChild(this.manipulationDOM.backSpan); - this.manipulationDiv.appendChild(this.manipulationDOM.seperatorLineDiv1); - this.manipulationDiv.appendChild(this.manipulationDOM.descriptionSpan); + zoneAbbr : function () { + return this._isUTC ? 'UTC' : ''; + }, - // bind the icon - this._bindHammerToDiv(this.manipulationDOM.backSpan, "_createManipulatorBar"); + zoneName : function () { + return this._isUTC ? 'Coordinated Universal Time' : ''; + }, - // we use the boundFunction so we can reference it when we unbind it from the "select" event. - var me = this; - this.boundFunction = me._handleConnect; - this.on("select", this.boundFunction); + parseZone : function () { + if (this._tzm) { + this.utcOffset(this._tzm); + } else if (typeof this._i === 'string') { + this.utcOffset(utcOffsetFromString(this._i)); + } + return this; + }, - // temporarily overload functions - this.cachedFunctions._handleTouch = this._handleTouch; - this.cachedFunctions._manipulationReleaseOverload = this._manipulationReleaseOverload; - this.cachedFunctions._handleDragStart = this._handleDragStart; - this.cachedFunctions._handleDragEnd = this._handleDragEnd; - this.cachedFunctions._handleOnHold = this._handleOnHold; - this._handleTouch = this._handleConnect; - this._manipulationReleaseOverload = function () {}; - this._handleOnHold = function () {}; - this._handleDragStart = function () {}; - this._handleDragEnd = this._finishConnect; + hasAlignedHourOffset : function (input) { + if (!input) { + input = 0; + } + else { + input = moment(input).utcOffset(); + } - // redraw to show the unselect - this._redraw(); - }; + return (this.utcOffset() - input) % 60 === 0; + }, - /** - * create the toolbar to edit edges - * - * @private - */ - exports._createEditEdgeToolbar = function () { - // clear the toolbar - this._clearManipulatorBar(); - this.controlNodesActive = true; + daysInMonth : function () { + return daysInMonth(this.year(), this.month()); + }, - if (this.boundFunction) { - this.off("select", this.boundFunction); - } + 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'); + }, - this.edgeBeingEdited = this._getSelectedEdge(); - this.edgeBeingEdited._enableControlNodes(); + quarter : function (input) { + return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3); + }, - var locale = this.constants.locales[this.constants.locale]; + 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'); + }, - this.manipulationDOM = {}; - this.manipulationDOM.backSpan = document.createElement("div"); - this.manipulationDOM.backSpan.className = "network-manipulationUI back"; - this.manipulationDOM.backLabelSpan = document.createElement("div"); - this.manipulationDOM.backLabelSpan.className = "network-manipulationLabel"; - this.manipulationDOM.backLabelSpan.innerHTML = locale.back; - this.manipulationDOM.backSpan.appendChild(this.manipulationDOM.backLabelSpan); + isoWeekYear : function (input) { + var year = weekOfYear(this, 1, 4).year; + return input == null ? year : this.add((input - year), 'y'); + }, - this.manipulationDOM.seperatorLineDiv1 = document.createElement("div"); - this.manipulationDOM.seperatorLineDiv1.className = "network-seperatorLine"; + week : function (input) { + var week = this.localeData().week(this); + return input == null ? week : this.add((input - week) * 7, 'd'); + }, - this.manipulationDOM.descriptionSpan = document.createElement("div"); - this.manipulationDOM.descriptionSpan.className = "network-manipulationUI none"; - this.manipulationDOM.descriptionLabelSpan = document.createElement("div"); - this.manipulationDOM.descriptionLabelSpan.className = "network-manipulationLabel"; - this.manipulationDOM.descriptionLabelSpan.innerHTML = locale.editEdgeDescription; - this.manipulationDOM.descriptionSpan.appendChild(this.manipulationDOM.descriptionLabelSpan); + isoWeek : function (input) { + var week = weekOfYear(this, 1, 4).week; + return input == null ? week : this.add((input - week) * 7, 'd'); + }, - this.manipulationDiv.appendChild(this.manipulationDOM.backSpan); - this.manipulationDiv.appendChild(this.manipulationDOM.seperatorLineDiv1); - this.manipulationDiv.appendChild(this.manipulationDOM.descriptionSpan); + weekday : function (input) { + var weekday = (this.day() + 7 - this.localeData()._week.dow) % 7; + return input == null ? weekday : this.add(input - weekday, 'd'); + }, - // bind the icon - this._bindHammerToDiv(this.manipulationDOM.backSpan, "_createManipulatorBar"); + 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); + }, - // temporarily overload functions - this.cachedFunctions._handleTouch = this._handleTouch; - this.cachedFunctions._manipulationReleaseOverload = this._manipulationReleaseOverload; - 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._manipulationReleaseOverload = this._releaseControlNode; + isoWeeksInYear : function () { + return weeksInYear(this.year(), 1, 4); + }, - // redraw to show the unselect - this._redraw(); - }; + weeksInYear : function () { + var weekInfo = this.localeData()._week; + return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy); + }, + get : function (units) { + units = normalizeUnits(units); + return this[units](); + }, - /** - * 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); - } - this._redraw(); - }; + set : function (units, value) { + var unit; + if (typeof units === 'object') { + for (unit in units) { + this.set(unit, units[unit]); + } + } + else { + units = normalizeUnits(units); + if (typeof this[units] === 'function') { + this[units](value); + } + } + return this; + }, + // 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) { + var newLocaleData; - /** - * 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._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(); - }; + if (key === undefined) { + return this._locale._abbr; + } else { + newLocaleData = moment.localeData(key); + if (newLocaleData != null) { + this._locale = newLocaleData; + } + return this; + } + }, + lang : deprecate( + 'moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.', + function (key) { + if (key === undefined) { + return this.localeData(); + } else { + return this.locale(key); + } + } + ), - /** - * - * @param pointer - * @private - */ - exports._releaseControlNode = function (pointer) { - var newNode = this._getNodeAt(pointer); - if (newNode !== null) { - if (this.edgeBeingEdited.controlNodes.from.selected == true) { - this.edgeBeingEdited._restoreControlNodes(); - this._editEdge(newNode.id, this.edgeBeingEdited.to.id); - this.edgeBeingEdited.controlNodes.from.unselect(); - } - if (this.edgeBeingEdited.controlNodes.to.selected == true) { - this.edgeBeingEdited._restoreControlNodes(); - this._editEdge(this.edgeBeingEdited.from.id, newNode.id); - this.edgeBeingEdited.controlNodes.to.unselect(); - } - } else { - this.edgeBeingEdited._restoreControlNodes(); - } - this.freezeSimulation(false); - this._redraw(); - }; + localeData : function () { + return this._locale; + }, - /** - * 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._handleConnect = function (pointer) { - if (this._getSelectedNodeCount() == 0) { - var node = this._getNodeAt(pointer); + _dateUtcOffset : function () { + // On Firefox.24 Date#getTimezoneOffset returns a floating point. + // https://github.com/moment/moment/pull/1871 + return -Math.round(this._d.getTimezoneOffset() / 15) * 15; + } - if (node != null) { - if (this.isCluster(node.id) == true) { - alert(this.constants.locales[this.constants.locale].createEdgeError); - } else { - this._selectObject(node, false); - var supportNodes = this.body.sectors.support.nodes; + }); - // create a node the temporary line can look at - supportNodes.targetNode = this.body.functions.createNode({ id: "targetNode" }); - var targetNode = supportNodes.targetNode; - targetNode.x = node.x; - targetNode.y = node.y; + function rawMonthSetter(mom, value) { + var dayOfMonth; - // create a temporary edge - this.body.edges.connectionEdge = this.body.functions.createEdge({ id: "connectionEdge", from: node.id, to: targetNode.id }); - var connectionEdge = this.body.edges.connectionEdge; - connectionEdge.from = node; - connectionEdge.connected = true; - connectionEdge.options.smoothCurves = { enabled: true, - dynamic: false, - type: "continuous", - roundness: 0.5 - }; - connectionEdge.selected = true; - connectionEdge.to = targetNode; + // 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; + } + } - this.cachedFunctions._handleOnDrag = this._handleOnDrag; - var me = this; - this._handleOnDrag = function (event) { - var pointer = me._getPointer(event.gesture.center); - var connectionEdge = me.body.edges.connectionEdge; - connectionEdge.to.x = me._XconvertDOMtoCanvas(pointer.x); - connectionEdge.to.y = me._YconvertDOMtoCanvas(pointer.y); - me._redraw(); - }; - } + dayOfMonth = Math.min(mom.date(), + daysInMonth(mom.year(), value)); + mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth); + return mom; } - } - }; - exports._finishConnect = function (event) { - if (this._getSelectedNodeCount() == 1) { - var pointer = this._getPointer(event.gesture.center); - // restore the drag function - this._handleOnDrag = this.cachedFunctions._handleOnDrag; - delete this.cachedFunctions._handleOnDrag; - - // remember the edge id - var connectFromId = this.body.edges.connectionEdge.fromId; - - // remove the temporary nodes and edge - delete this.body.edges.connectionEdge; - delete this.body.sectors.support.nodes.targetNode; - delete this.body.sectors.support.nodes.targetViaNode; - - var node = this._getNodeAt(pointer); - if (node != null) { - if (this.isCluster(node.id) === true) { - alert(this.constants.locales[this.constants.locale].createEdgeError); - } else { - this._createEdge(connectFromId, node.id); - this._createManipulatorBar(); - } + function rawGetter(mom, unit) { + return mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit](); } - this._unselectAll(); - } - }; + function rawSetter(mom, unit, value) { + if (unit === 'Month') { + return rawMonthSetter(mom, value); + } else { + return mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value); + } + } - /** - * 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.body.data.nodes.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.body.data.nodes.add(defaultData); - this._createManipulatorBar(); - this.moving = true; - this.start(); + 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)); - /** - * 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.body.data.edges.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.body.data.edges.add(defaultData); - this.moving = true; - this.start(); - } - } - }; + // 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; - /** - * connect two nodes with a new edge. - * - * @private - */ - exports._editEdge = function (sourceNodeId, targetNodeId) { - if (this.editMode == true) { - var defaultData = { id: this.edgeBeingEdited.id, from: sourceNodeId, to: targetNodeId }; - console.log(defaultData); - if (this.triggerFunctions.editEdge) { - if (this.triggerFunctions.editEdge.length == 2) { - var me = this; - this.triggerFunctions.editEdge(defaultData, function (finalizedData) { - me.body.data.edges.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.body.data.edges.update(defaultData); - this.moving = true; - this.start(); - } - } - }; + // add aliased format methods + moment.fn.toJSON = moment.fn.toISOString; - /** - * Create the toolbar to edit the selected node. The label and the color can be changed. Other colors are derived from the chosen color. - * - * @private - */ - exports._editNode = function () { - if (this.triggerFunctions.edit && this.editMode == true) { - var node = this._getSelectedNode(); - var data = { id: node.id, - label: node.label, - group: node.options.group, - shape: node.options.shape, - color: { - background: node.options.color.background, - border: node.options.color.border, - highlight: { - background: node.options.color.highlight.background, - border: node.options.color.highlight.border - } - } }; - if (this.triggerFunctions.edit.length == 2) { - var me = this; - this.triggerFunctions.edit(data, function (finalizedData) { - me.body.data.nodes.update(finalizedData); - me._createManipulatorBar(); - me.moving = true; - me.start(); - }); - } else { - throw new Error("The function for edit does not support two arguments (data, callback)"); - } - } else { - throw new Error("No edit function has been bound to this button"); - } - }; + // alias isUtc for dev-friendliness + moment.fn.isUTC = moment.fn.isUtc; + /************************************ + Duration Prototype + ************************************/ + function daysToYears (days) { + // 400 years have 146097 days (taking into account leap year rules) + return days * 400 / 146097; + } - /** - * 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.body.data.edges.remove(finalizedData.edges); - me.body.data.nodes.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.body.data.edges.remove(selectedEdges); - this.body.data.nodes.remove(selectedNodes); - this._unselectAll(); - this.moving = true; - this.start(); - } - } else { - alert(this.constants.locales[this.constants.locale].deleteClusterError); + function yearsToDays (years) { + // years * 365 + absRound(years / 4) - + // absRound(years / 100) + absRound(years / 400); + return years * 146097 / 400; } - } - }; -/***/ }, -/* 62 */ -/***/ function(module, exports, __webpack_require__) { + extend(moment.duration.fn = Duration.prototype, { - "use strict"; + _bubble : function () { + var milliseconds = this._milliseconds, + days = this._days, + months = this._months, + data = this._data, + seconds, minutes, hours, years = 0; - var util = __webpack_require__(1); - var Hammer = __webpack_require__(19); + // The following code bubbles up values, see the tests for + // examples of what that means. + data.milliseconds = milliseconds % 1000; - exports._cleanNavigation = function () { - // clean hammer bindings - if (this.navigationHammers.length != 0) { - for (var i = 0; i < this.navigationHammers.length; i++) { - this.navigationHammers[i].dispose(); - } - this.navigationHammers = []; - } + seconds = absRound(milliseconds / 1000); + data.seconds = seconds % 60; - this._navigationReleaseOverload = function () {}; + minutes = absRound(seconds / 60); + data.minutes = minutes % 60; - // clean up previous navigation items - if (this.navigationDOM && this.navigationDOM.wrapper && this.navigationDOM.wrapper.parentNode) { - this.navigationDOM.wrapper.parentNode.removeChild(this.navigationDOM.wrapper); - } - }; + hours = absRound(minutes / 60); + data.hours = hours % 24; - /** - * Creation of the navigation controls nodes. They are drawn over the rest of the nodes and are not affected by scale and translation - * they have a triggerFunction which is called on click. If the position of the navigation controls is dependent - * on this.frame.canvas.clientWidth or this.frame.canvas.clientHeight, we flag horizontalAlignLeft and verticalAlignTop false. - * This means that the location will be corrected by the _relocateNavigation function on a size change of the canvas. - * - * @private - */ - exports._loadNavigationElements = function () { - this._cleanNavigation(); + days += absRound(hours / 24); - this.navigationDOM = {}; - var navigationDivs = ["up", "down", "left", "right", "zoomIn", "zoomOut", "zoomExtends"]; - var navigationDivActions = ["_moveUp", "_moveDown", "_moveLeft", "_moveRight", "_zoomIn", "_zoomOut", "_zoomExtent"]; + // Accurately convert days to years, assume start from year 0. + years = absRound(daysToYears(days)); + days -= absRound(yearsToDays(years)); - this.navigationDOM.wrapper = document.createElement("div"); - this.frame.appendChild(this.navigationDOM.wrapper); + // 30 days to a month + // TODO (iskren): Use anchor date (like 1st Jan) to compute this. + months += absRound(days / 30); + days %= 30; - for (var i = 0; i < navigationDivs.length; i++) { - this.navigationDOM[navigationDivs[i]] = document.createElement("div"); - this.navigationDOM[navigationDivs[i]].className = "network-navigation " + navigationDivs[i]; - this.navigationDOM.wrapper.appendChild(this.navigationDOM[navigationDivs[i]]); + // 12 months -> 1 year + years += absRound(months / 12); + months %= 12; - var hammer = Hammer(this.navigationDOM[navigationDivs[i]], { prevent_default: true }); - hammer.on("touch", this[navigationDivActions[i]].bind(this)); - this.navigationHammers.push(hammer); - } + data.days = days; + data.months = months; + data.years = years; + }, - this._navigationReleaseOverload = this._stopMovement; - }; + abs : function () { + this._milliseconds = Math.abs(this._milliseconds); + this._days = Math.abs(this._days); + this._months = Math.abs(this._months); + this._data.milliseconds = Math.abs(this._data.milliseconds); + this._data.seconds = Math.abs(this._data.seconds); + this._data.minutes = Math.abs(this._data.minutes); + this._data.hours = Math.abs(this._data.hours); + this._data.months = Math.abs(this._data.months); + this._data.years = Math.abs(this._data.years); - /** - * this stops all movement induced by the navigation buttons - * - * @private - */ - exports._zoomExtent = function (event) { - this.zoomExtent({ duration: 700 }); - event.stopPropagation(); - }; + return this; + }, - /** - * this stops all movement induced by the navigation buttons - * - * @private - */ - exports._stopMovement = function () { - this._xStopMoving(); - this._yStopMoving(); - this._stopZoom(); - }; + weeks : function () { + return absRound(this.days() / 7); + }, + valueOf : function () { + return this._milliseconds + + this._days * 864e5 + + (this._months % 12) * 2592e6 + + toInt(this._months / 12) * 31536e6; + }, - /** - * move the screen up - * By using the increments, instead of adding a fixed number to the translation, we keep fluent and - * instant movement. The onKeypress event triggers immediately, then pauses, then triggers frequently - * To avoid this behaviour, we do the translation in the start loop. - * - * @private - */ - exports._moveUp = function (event) { - this.yIncrement = this.constants.keyboard.speed.y; - this.start(); // if there is no node movement, the calculation wont be done - event.preventDefault(); - }; + humanize : function (withSuffix) { + var output = relativeTime(this, !withSuffix, this.localeData()); + if (withSuffix) { + output = this.localeData().pastFuture(+this, output); + } - /** - * 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(); - }; + return this.localeData().postformat(output); + }, + add : function (input, val) { + // supports only 2.0-style add(1, 's') or add(moment) + var dur = moment.duration(input, val); - /** - * 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(); - }; + this._milliseconds += dur._milliseconds; + this._days += dur._days; + this._months += dur._months; + this._bubble(); - /** - * 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 this; + }, + subtract : function (input, val) { + var dur = moment.duration(input, val); - /** - * 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(); - }; + this._milliseconds -= dur._milliseconds; + this._days -= dur._days; + this._months -= dur._months; + this._bubble(); - /** - * Zoom out - * @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(); - }; + return this; + }, + get : function (units) { + units = normalizeUnits(units); + return this[units.toLowerCase() + 's'](); + }, - /** - * Stop zooming and unhighlight the zoom controls - * @private - */ - exports._stopZoom = function (event) { - this.zoomIncrement = 0; - event && event.preventDefault(); - }; - + as : function (units) { + var days, months; + units = normalizeUnits(units); - /** - * Stop moving in the Y direction and unHighlight the up and down - * @private - */ - exports._yStopMoving = function (event) { - this.yIncrement = 0; - event && event.preventDefault(); - }; + if (units === 'month' || units === 'year') { + days = this._days + this._milliseconds / 864e5; + months = this._months + daysToYears(days) * 12; + return units === 'month' ? months : months / 12; + } else { + // handle milliseconds separately because of floating point math errors (issue #1867) + days = this._days + Math.round(yearsToDays(this._months / 12)); + switch (units) { + case 'week': return days / 7 + this._milliseconds / 6048e5; + case 'day': return days + this._milliseconds / 864e5; + case 'hour': return days * 24 + this._milliseconds / 36e5; + case 'minute': return days * 24 * 60 + this._milliseconds / 6e4; + case 'second': return days * 24 * 60 * 60 + this._milliseconds / 1000; + // Math.floor prevents floating point math errors here + case 'millisecond': return Math.floor(days * 24 * 60 * 60 * 1000) + this._milliseconds; + default: throw new Error('Unknown unit ' + units); + } + } + }, + lang : moment.fn.lang, + locale : moment.fn.locale, - /** - * Stop moving in the X direction and unHighlight left and right. - * @private - */ - exports._xStopMoving = function (event) { - this.xIncrement = 0; - event && event.preventDefault(); - }; + toIsoString : deprecate( + 'toIsoString() is deprecated. Please use toISOString() instead ' + + '(notice the capitals)', + function () { + return this.toISOString(); + } + ), -/***/ }, -/* 63 */ -/***/ function(module, exports, __webpack_require__) { + 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); - "use strict"; + if (!this.asSeconds()) { + // this is the same as C#'s (Noda) and python (isodate)... + // but not other JS (goog.date) + return 'P0D'; + } - exports._resetLevels = function () { - for (var nodeId in this.body.nodes) { - if (this.body.nodes.hasOwnProperty(nodeId)) { - var node = this.body.nodes[nodeId]; - if (node.preassignedLevel == false) { - node.level = -1; - node.hierarchyEnumerated = false; - } - } - } - }; + 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' : ''); + }, - /** - * 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) { - // 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; + localeData : function () { + return this._locale; + }, - for (nodeId in this.body.nodes) { - if (this.body.nodes.hasOwnProperty(nodeId)) { - node = this.body.nodes[nodeId]; - if (node.level != -1) { - definedLevel = true; - } else { - undefinedLevel = true; + toJSON : function () { + return this.toISOString(); } - if (hubsize < node.edges.length) { - hubsize = node.edges.length; + }); + + moment.duration.fn.toString = moment.duration.fn.toISOString; + + function makeDurationGetter(name) { + moment.duration.fn[name] = function () { + return this._data[name]; + }; + } + + for (i in unitMillisecondFactors) { + if (hasOwnProp(unitMillisecondFactors, i)) { + makeDurationGetter(i.toLowerCase()); } - } } - // 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({ duration: 0 }, true, this.constants.clustering.enabled); - if (!this.constants.clustering.enabled) { - this.start(); - } - } else { - // setup the system to use hierarchical method. - this._changeConstants(); + 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'); + }; - // define levels if undefined by the users. Based on hubsize - if (undefinedLevel == true) { - if (this.constants.hierarchicalLayout.layout == "hubsize") { - this._determineLevels(hubsize); + /************************************ + Default Locale + ************************************/ + + + // Set default locale, other locale will inherit from English. + moment.locale('en', { + ordinalParse: /\d{1,2}(th|st|nd|rd)/, + ordinal : function (number) { + var b = number % 10, + output = (toInt(number % 100 / 10) === 1) ? 'th' : + (b === 1) ? 'st' : + (b === 2) ? 'nd' : + (b === 3) ? 'rd' : 'th'; + return number + output; + } + }); + + /* EMBED_LOCALES */ + + /************************************ + Exposing Moment + ************************************/ + + function makeGlobal(shouldDeprecate) { + /*global ender:false */ + if (typeof ender !== 'undefined') { + return; + } + oldGlobalMoment = globalScope.moment; + if (shouldDeprecate) { + globalScope.moment = deprecate( + 'Accessing Moment through the global scope is ' + + 'deprecated, and will be removed in an upcoming ' + + 'release.', + moment); } else { - this._determineLevelsDirected(false); + globalScope.moment = moment; } - } - // check the distribution of the nodes per level. - var distribution = this._getDistribution(); + } - // place the nodes on the canvas. This also stablilizes the system. Redraw in started automatically after stabilize. - this._placeNodesByHierarchy(distribution); + // CommonJS module is defined + if (hasModule) { + module.exports = moment; + } else if (true) { + !(__WEBPACK_AMD_DEFINE_RESULT__ = function (require, exports, module) { + if (module.config && module.config() && module.config().noGlobal === true) { + // release the global variable + globalScope.moment = oldGlobalMoment; + } + + return moment; + }.call(exports, __webpack_require__, exports, module), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); + makeGlobal(true); + } else { + makeGlobal(); } + }).call(this); + + /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }()), __webpack_require__(79)(module))) + +/***/ }, +/* 65 */ +/***/ function(module, exports, __webpack_require__) { + + var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;'use strict'; + + (function (factory) { + if (true) { + // AMD. Register as an anonymous module. + !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory), __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ? (__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); + } else if (typeof exports === 'object') { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(); + } else { + // Browser globals (root is window) + window.propagating = factory(); } - }; + }(function () { + // will contain the target element where the gesture started + var _firstTarget = null; // singleton + + /** + * Extend an Hammer.js instance with event propagation. + * + * Features: + * - Events emitted by hammer will propagate in order from child to parent + * elements. + * - Events are extended with a function `event.stopPropagation()` to stop + * propagation to parent elements. + * + * Usage: + * var hammer = propagatingHammer(new Hammer(element)); + * + * @param {Hammer.Manager} hammer An hammer instance. + * @return {Hammer.Manager} Returns the same hammer instance with extended + * functionality + */ + return function propagating(hammer) { + if (hammer.Manager) { + // This looks like the Hammer constructor. + // Overload the constructors with our own. + var Hammer = hammer; + + var PropagatingHammer = function(element, options) { + return propagating(new Hammer(element, options)); + }; + Hammer.extend(PropagatingHammer, Hammer); + PropagatingHammer.Manager = function (element, options) { + return propagating(new Hammer.Manager(element, options)); + }; + return PropagatingHammer; + } - /** - * This function places the nodes on the canvas based on the hierarchial distribution. - * - * @param {Object} distribution | obtained by the function this._getDistribution() - * @private - */ - exports._placeNodesByHierarchy = function (distribution) { - var nodeId, node; + // attach to DOM element + var element = hammer.element; + element.hammer = hammer; - // start placing all the level 0 nodes first. Then recursively position their branches. - for (var level in distribution) { - if (distribution.hasOwnProperty(level)) { - for (nodeId in distribution[level].nodes) { - if (distribution[level].nodes.hasOwnProperty(nodeId)) { - node = distribution[level].nodes[nodeId]; - if (this.constants.hierarchicalLayout.direction == "UD" || this.constants.hierarchicalLayout.direction == "DU") { - if (node.xFixed) { - node.x = distribution[level].minPos; - node.xFixed = false; + // move the original functions that we will wrap + hammer._on = hammer.on; + hammer._off = hammer.off; + hammer._emit = hammer.emit; + hammer._destroy = hammer.destroy; - distribution[level].minPos += distribution[level].nodeSpacing; - } - } else { - if (node.yFixed) { - node.y = distribution[level].minPos; - node.yFixed = false; + /** @type {Object.>} */ + hammer._handlers = {}; - distribution[level].minPos += distribution[level].nodeSpacing; - } + // register an event to catch the start of a gesture and store the + // target in a singleton + hammer._on('hammer.input', function (event) { + if (event.isFirst) { + _firstTarget = event.target; + } + }); + + /** + * Register a handler for one or multiple events + * @param {String} events A space separated string with events + * @param {function} handler A callback function, called as handler(event) + * @returns {Hammer.Manager} Returns the hammer instance + */ + hammer.on = function (events, handler) { + // register the handler + split(events).forEach(function (event) { + var _handlers = hammer._handlers[event]; + if (!_handlers) { + hammer._handlers[event] = _handlers = []; + + // register the static, propagated handler + hammer._on(event, propagatedHandler); + } + _handlers.push(handler); + }); + + return hammer; + }; + + /** + * Unregister a handler for one or multiple events + * @param {String} events A space separated string with events + * @param {function} [handler] Optional. The registered handler. If not + * provided, all handlers for given events + * are removed. + * @returns {Hammer.Manager} Returns the hammer instance + */ + hammer.off = function (events, handler) { + // unregister the handler + split(events).forEach(function (event) { + var _handlers = hammer._handlers[event]; + if (_handlers) { + _handlers = handler ? _handlers.filter(function (h) { + return h !== handler; + }) : []; + + if (_handlers.length > 0) { + hammer._handlers[event] = _handlers; + } + else { + // remove static, propagated handler + hammer._off(event, propagatedHandler); + delete hammer._handlers[event]; } - this._placeBranchNodes(node.edges, node.id, distribution, node.level); } - } - } - } + }); - // stabilize the system after positioning. This function calls zoomExtent. - this._stabilize(); - }; + return hammer; + }; + /** + * Emit to the event listeners + * @param {string} eventType + * @param {Event} event + */ + hammer.emit = function(eventType, event) { + _firstTarget = event.target; + hammer._emit(eventType, event); + }; - /** - * This function get the distribution of levels based on hubsize - * - * @returns {Object} - * @private - */ - exports._getDistribution = function () { - var distribution = {}; - var nodeId, node, level; + hammer.destroy = function () { + // Detach from DOM element + var element = hammer.element; + delete element.hammer; - // 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.body.nodes) { - if (this.body.nodes.hasOwnProperty(nodeId)) { - node = this.body.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; + // clear all handlers + hammer._handlers = {}; + + // call original hammer destroy + hammer._destroy(); + }; + + // split a string with space separated words + function split(events) { + return events.match(/[^ ]+/g); } - } - // 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; + /** + * A static event handler, applying event propagation. + * @param {Object} event + */ + function propagatedHandler(event) { + // let only a single hammer instance handle this event + if (event.type !== 'hammer.input') { + if (event.srcEvent._handled && event.srcEvent._handled[event.type]) { + return; + } + else { + // it is possible that the same srcEvent is used with multiple hammer events + event.srcEvent._handled = {}; + event.srcEvent._handled[event.type] = true; + } } - } - } - // 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; + // attach a stopPropagation function to the event + var stopped = false; + event.stopPropagation = function () { + stopped = true; + }; + + // attach firstTarget property to the event + event.firstTarget = _firstTarget; + + // propagate over all elements (until stopped) + var elem = _firstTarget; + while (elem && !stopped) { + var _handlers = elem.hammer && elem.hammer._handlers[event.type]; + if (_handlers) { + for (var i = 0; i < _handlers.length && !stopped; i++) { + _handlers[i](event); + } + } + + elem = elem.parentNode; + } } - } - return distribution; - }; + return hammer; + }; + })); - /** - * this function allocates nodes in levels based on the recursive branching from the largest hubs. +/***/ }, +/* 66 */ +/***/ function(module, exports, __webpack_require__) { + + var __WEBPACK_AMD_DEFINE_RESULT__;/*! Hammer.JS - v2.0.4 - 2014-09-28 + * http://hammerjs.github.io/ * - * @param hubsize - * @private - */ - exports._determineLevels = function (hubsize) { - var nodeId, node; + * Copyright (c) 2014 Jorik Tangelder; + * Licensed under the MIT license */ + (function(window, document, exportName, undefined) { + 'use strict'; - // determine hubs - for (nodeId in this.body.nodes) { - if (this.body.nodes.hasOwnProperty(nodeId)) { - node = this.body.nodes[nodeId]; - if (node.edges.length == hubsize) { - node.level = 0; - } - } - } + var VENDOR_PREFIXES = ['', 'webkit', 'moz', 'MS', 'ms', 'o']; + var TEST_ELEMENT = document.createElement('div'); - // branch from hubs - for (nodeId in this.body.nodes) { - if (this.body.nodes.hasOwnProperty(nodeId)) { - node = this.body.nodes[nodeId]; - if (node.level == 0) { - this._setLevel(1, node.edges, node.id); - } - } - } - }; + var TYPE_FUNCTION = 'function'; + var round = Math.round; + var abs = Math.abs; + var now = Date.now; + /** + * set a timeout with a given scope + * @param {Function} fn + * @param {Number} timeout + * @param {Object} context + * @returns {number} + */ + function setTimeoutContext(fn, timeout, context) { + return setTimeout(bindFn(fn, context), timeout); + } /** - * this function allocates nodes in levels based on the direction of the edges - * - * @param hubsize - * @private + * if the argument is an array, we want to execute the fn on each entry + * if it aint an array we don't want to do a thing. + * this is used by all the methods that accept a single and array argument. + * @param {*|Array} arg + * @param {String} fn + * @param {Object} [context] + * @returns {Boolean} */ - exports._determineLevelsDirected = function () { - var nodeId, node, firstNode; - var minLevel = 10000; + function invokeArrayArg(arg, fn, context) { + if (Array.isArray(arg)) { + each(arg, context[fn], context); + return true; + } + return false; + } - // set first node to source - firstNode = this.body.nodes[this.nodeIndices[0]]; - firstNode.level = minLevel; - this._setLevelDirected(minLevel, firstNode.edges, firstNode.id); + /** + * walk objects and arrays + * @param {Object} obj + * @param {Function} iterator + * @param {Object} context + */ + function each(obj, iterator, context) { + var i; - // get the minimum level - for (nodeId in this.body.nodes) { - if (this.body.nodes.hasOwnProperty(nodeId)) { - node = this.body.nodes[nodeId]; - minLevel = node.level < minLevel ? node.level : minLevel; + if (!obj) { + return; } - } - // subtract the minimum from the set so we have a range starting from 0 - for (nodeId in this.body.nodes) { - if (this.body.nodes.hasOwnProperty(nodeId)) { - node = this.body.nodes[nodeId]; - node.level -= minLevel; + if (obj.forEach) { + obj.forEach(iterator, context); + } else if (obj.length !== undefined) { + i = 0; + while (i < obj.length) { + iterator.call(context, obj[i], i, obj); + i++; + } + } else { + for (i in obj) { + obj.hasOwnProperty(i) && iterator.call(context, obj[i], i, obj); + } } - } - }; + } + /** + * extend object. + * means that properties in dest will be overwritten by the ones in src. + * @param {Object} dest + * @param {Object} src + * @param {Boolean} [merge] + * @returns {Object} dest + */ + function extend(dest, src, merge) { + var keys = Object.keys(src); + var i = 0; + while (i < keys.length) { + if (!merge || (merge && dest[keys[i]] === undefined)) { + dest[keys[i]] = src[keys[i]]; + } + i++; + } + return dest; + } /** - * 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 + * merge the values from src in the dest. + * means that properties that exist in dest will not be overwritten by src + * @param {Object} dest + * @param {Object} src + * @returns {Object} dest */ - 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(); + function merge(dest, src) { + return extend(dest, src, true); + } - var config = this.constants.hierarchicalLayout; - config.levelSeparation = Math.abs(config.levelSeparation); - if (config.direction == "RL" || config.direction == "DU") { - config.levelSeparation *= -1; - } + /** + * simple class inheritance + * @param {Function} child + * @param {Function} base + * @param {Object} [properties] + */ + function inherit(child, base, properties) { + var baseP = base.prototype, + childP; - if (config.direction == "RL" || config.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"; + childP = child.prototype = Object.create(baseP); + childP.constructor = child; + childP._super = baseP; + + if (properties) { + extend(childP, properties); } - } - }; + } + /** + * simple function bind + * @param {Function} fn + * @param {Object} context + * @returns {Function} + */ + function bindFn(fn, context) { + return function boundFn() { + return fn.apply(context, arguments); + }; + } /** - * This is a recursively called function to enumerate the branches from the largest hubs and place the nodes - * on a X position that ensures there will be no overlap. - * - * @param edges - * @param parentId - * @param distribution - * @param parentLevel - * @private + * let a boolean value also be a function that must return a boolean + * this first item in args will be used as the context + * @param {Boolean|Function} val + * @param {Array} [args] + * @returns {Boolean} */ - 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; + function boolOrFn(val, args) { + if (typeof val == TYPE_FUNCTION) { + return val.apply(args ? args[0] || undefined : undefined, args); } + return val; + } - // 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; - } - } + /** + * use the val2 when val1 is undefined + * @param {*} val1 + * @param {*} val2 + * @returns {*} + */ + function ifUndefined(val1, val2) { + return (val1 === undefined) ? val2 : val1; + } - 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); - } - } - } - }; + /** + * addEventListener with multiple events at once + * @param {EventTarget} target + * @param {String} types + * @param {Function} handler + */ + function addEventListeners(target, types, handler) { + each(splitStr(types), function(type) { + target.addEventListener(type, handler, false); + }); + } + /** + * removeEventListener with multiple events at once + * @param {EventTarget} target + * @param {String} types + * @param {Function} handler + */ + function removeEventListeners(target, types, handler) { + each(splitStr(types), function(type) { + target.removeEventListener(type, handler, false); + }); + } /** - * this function is called recursively to enumerate the barnches of the largest hubs and give each node a level. - * - * @param level - * @param edges - * @param parentId - * @private + * find if a node is in the given parent + * @method hasParent + * @param {HTMLElement} node + * @param {HTMLElement} parent + * @return {Boolean} found */ - 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 (childNode.edges.length > 1) { - this._setLevel(level + 1, childNode.edges, childNode.id); - } + function hasParent(node, parent) { + while (node) { + if (node == parent) { + return true; + } + node = node.parentNode; } - } - }; + return false; + } + + /** + * small indexOf wrapper + * @param {String} str + * @param {String} find + * @returns {Boolean} found + */ + function inStr(str, find) { + return str.indexOf(find) > -1; + } + /** + * split string on whitespace + * @param {String} str + * @returns {Array} words + */ + function splitStr(str) { + return str.trim().split(/\s+/g); + } /** - * this function is called recursively to enumerate the branched of the first node and give each node a level based on edge direction - * - * @param level - * @param edges - * @param parentId - * @private + * find if a array contains the object using indexOf or a simple polyFill + * @param {Array} src + * @param {String} find + * @param {String} [findByKey] + * @return {Boolean|Number} false when not found, or the index */ - exports._setLevelDirected = function (level, edges, parentId) { - this.body.nodes[parentId].hierarchyEnumerated = true; - var childNode, direction; - for (var i = 0; i < edges.length; i++) { - direction = 1; - if (edges[i].toId == parentId) { - childNode = edges[i].from; - direction = -1; + function inArray(src, find, findByKey) { + if (src.indexOf && !findByKey) { + return src.indexOf(find); } else { - childNode = edges[i].to; - } - if (childNode.level == -1) { - childNode.level = level + direction; + var i = 0; + while (i < src.length) { + if ((findByKey && src[i][findByKey] == find) || (!findByKey && src[i] === find)) { + return i; + } + i++; + } + return -1; } - } + } - for (var i = 0; i < edges.length; i++) { - if (edges[i].toId == parentId) { - childNode = edges[i].from; - } else { - childNode = edges[i].to; + /** + * convert array-like objects to real arrays + * @param {Object} obj + * @returns {Array} + */ + function toArray(obj) { + return Array.prototype.slice.call(obj, 0); + } + + /** + * unique array with objects based on a key (like 'id') or just by the array's value + * @param {Array} src [{id:1},{id:2},{id:1}] + * @param {String} [key] + * @param {Boolean} [sort=False] + * @returns {Array} [{id:1},{id:2}] + */ + function uniqueArray(src, key, sort) { + var results = []; + var values = []; + var i = 0; + + while (i < src.length) { + var val = key ? src[i][key] : src[i]; + if (inArray(values, val) < 0) { + results.push(src[i]); + } + values[i] = val; + i++; } - if (childNode.edges.length > 1 && childNode.hierarchyEnumerated === false) { - this._setLevelDirected(childNode.level, childNode.edges, childNode.id); + if (sort) { + if (!key) { + results = results.sort(); + } else { + results = results.sort(function sortUniqueArray(a, b) { + return a[key] > b[key]; + }); + } } - } - }; + return results; + } /** - * Unfix nodes - * - * @private + * get the prefixed property + * @param {Object} obj + * @param {String} property + * @returns {String|Undefined} prefixed */ - exports._restoreNodes = function () { - for (var nodeId in this.body.nodes) { - if (this.body.nodes.hasOwnProperty(nodeId)) { - this.body.nodes[nodeId].xFixed = false; - this.body.nodes[nodeId].yFixed = false; + function prefixed(obj, property) { + var prefix, prop; + var camelProp = property[0].toUpperCase() + property.slice(1); + + var i = 0; + while (i < VENDOR_PREFIXES.length) { + prefix = VENDOR_PREFIXES[i]; + prop = (prefix) ? prefix + camelProp : property; + + if (prop in obj) { + return prop; + } + i++; } - } - }; + return undefined; + } -/***/ }, -/* 64 */ -/***/ function(module, exports, __webpack_require__) { + /** + * get a unique id + * @returns {number} uniqueId + */ + var _uniqueId = 1; + function uniqueId() { + return _uniqueId++; + } - "use strict"; + /** + * get the window object of an element + * @param {HTMLElement} element + * @returns {DocumentView|Window} + */ + function getWindowForElement(element) { + var doc = element.ownerDocument; + return (doc.defaultView || doc.parentWindow); + } - // 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; + var MOBILE_REGEX = /mobile|tablet|ip(ad|hone|od)|android/i; - // 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; + var SUPPORT_TOUCH = ('ontouchstart' in window); + var SUPPORT_POINTER_EVENTS = prefixed(window, 'PointerEvent') !== undefined; + var SUPPORT_ONLY_TOUCH = SUPPORT_TOUCH && MOBILE_REGEX.test(navigator.userAgent); -/***/ }, -/* 65 */ -/***/ function(module, exports, __webpack_require__) { + var INPUT_TYPE_TOUCH = 'touch'; + var INPUT_TYPE_PEN = 'pen'; + var INPUT_TYPE_MOUSE = 'mouse'; + var INPUT_TYPE_KINECT = 'kinect'; - "use strict"; + var COMPUTE_INTERVAL = 25; + + var INPUT_START = 1; + var INPUT_MOVE = 2; + var INPUT_END = 4; + var INPUT_CANCEL = 8; + + var DIRECTION_NONE = 1; + var DIRECTION_LEFT = 2; + var DIRECTION_RIGHT = 4; + var DIRECTION_UP = 8; + var DIRECTION_DOWN = 16; + + var DIRECTION_HORIZONTAL = DIRECTION_LEFT | DIRECTION_RIGHT; + var DIRECTION_VERTICAL = DIRECTION_UP | DIRECTION_DOWN; + var DIRECTION_ALL = DIRECTION_HORIZONTAL | DIRECTION_VERTICAL; + + var PROPS_XY = ['x', 'y']; + var PROPS_CLIENT_XY = ['clientX', 'clientY']; /** - * Canvas shapes used by Network + * create new input type manager + * @param {Manager} manager + * @param {Function} callback + * @returns {Input} + * @constructor */ - 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); - }; + function Input(manager, callback) { + var self = this; + this.manager = manager; + this.callback = callback; + this.element = manager.element; + this.target = manager.options.inputTarget; - /** - * 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); - }; + // smaller wrapper around the handler, for the scope and the enabled state of the manager, + // so when disabled the input events are completely bypassed. + this.domHandler = function(ev) { + if (boolOrFn(manager.options.enable, [manager])) { + self.handler(ev); + } + }; - /** - * 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(); + this.init(); - 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(); - }; + Input.prototype = { + /** + * should handle the inputEvent data and trigger the callback + * @virtual + */ + handler: function() { }, - /** - * 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(); + /** + * bind the events + */ + init: function() { + this.evEl && addEventListeners(this.element, this.evEl, this.domHandler); + this.evTarget && addEventListeners(this.target, this.evTarget, this.domHandler); + this.evWin && addEventListeners(getWindowForElement(this.element), this.evWin, this.domHandler); + }, - 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 + /** + * unbind the events + */ + destroy: function() { + this.evEl && removeEventListeners(this.element, this.evEl, this.domHandler); + this.evTarget && removeEventListeners(this.target, this.evTarget, this.domHandler); + this.evWin && removeEventListeners(getWindowForElement(this.element), this.evWin, this.domHandler); + } + }; - this.moveTo(x, y + (h - ir)); - this.lineTo(x + s2, y - ir); - this.lineTo(x - s2, y - ir); - this.lineTo(x, y + (h - ir)); - this.closePath(); - }; + /** + * create new input type manager + * called by the Manager constructor + * @param {Hammer} manager + * @returns {Input} + */ + function createInputInstance(manager) { + var Type; + var inputClass = manager.options.inputClass; - /** - * 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(); + if (inputClass) { + Type = inputClass; + } else if (SUPPORT_POINTER_EVENTS) { + Type = PointerEventInput; + } else if (SUPPORT_ONLY_TOUCH) { + Type = TouchInput; + } else if (!SUPPORT_TOUCH) { + Type = MouseInput; + } else { + Type = TouchMouseInput; + } + return new (Type)(manager, inputHandler); + } - 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)); + /** + * handle input events + * @param {Manager} manager + * @param {String} eventType + * @param {Object} input + */ + function inputHandler(manager, eventType, input) { + var pointersLen = input.pointers.length; + var changedPointersLen = input.changedPointers.length; + var isFirst = (eventType & INPUT_START && (pointersLen - changedPointersLen === 0)); + var isFinal = (eventType & (INPUT_END | INPUT_CANCEL) && (pointersLen - changedPointersLen === 0)); + + input.isFirst = !!isFirst; + input.isFinal = !!isFinal; + + if (isFirst) { + manager.session = {}; } - this.closePath(); - }; + // source event is the normalized value of the domEvents + // like 'touchstart, mouseup, pointerdown' + input.eventType = eventType; - /** - * 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); - }; + // compute scale, rotation etc + computeInputData(manager, input); - /** - * http://stackoverflow.com/questions/2172798/how-to-draw-an-oval-in-html5-canvas - */ - CanvasRenderingContext2D.prototype.ellipse = function (x, y, w, h) { - var kappa = 0.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 + // emit secret event + manager.emit('hammer.input', input); - 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); - }; + manager.recognize(input); + manager.session.prevInput = input; + } + /** + * extend the data with some usable properties like scale, rotate, velocity etc + * @param {Object} manager + * @param {Object} input + */ + function computeInputData(manager, input) { + var session = manager.session; + var pointers = input.pointers; + var pointersLength = pointers.length; + // store the first input to calculate the distance and direction + if (!session.firstInput) { + session.firstInput = simpleCloneInputData(input); + } - /** - * 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; + // to compute scale and rotation we need to store the multiple touches + if (pointersLength > 1 && !session.firstMultiple) { + session.firstMultiple = simpleCloneInputData(input); + } else if (pointersLength === 1) { + session.firstMultiple = false; + } - var kappa = 0.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 + var firstInput = session.firstInput; + var firstMultiple = session.firstMultiple; + var offsetCenter = firstMultiple ? firstMultiple.center : firstInput.center; - this.beginPath(); - this.moveTo(xe, ym); + var center = input.center = getCenter(pointers); + input.timeStamp = now(); + input.deltaTime = input.timeStamp - firstInput.timeStamp; - this.bezierCurveTo(xe, ym + oy, xm + ox, ye, xm, ye); - this.bezierCurveTo(xm - ox, ye, x, ym + oy, x, ym); + input.angle = getAngle(offsetCenter, center); + input.distance = getDistance(offsetCenter, center); - this.bezierCurveTo(x, ym - oy, xm - ox, y, xm, y); - this.bezierCurveTo(xm + ox, y, xe, ym - oy, xe, ym); + computeDeltaXY(session, input); + input.offsetDirection = getDirection(input.deltaX, input.deltaY); - this.lineTo(xe, ymb); + input.scale = firstMultiple ? getScale(firstMultiple.pointers, pointers) : 1; + input.rotation = firstMultiple ? getRotation(firstMultiple.pointers, pointers) : 0; - this.bezierCurveTo(xe, ymb + oy, xm + ox, yeb, xm, yeb); - this.bezierCurveTo(xm - ox, yeb, x, ymb + oy, x, ymb); + computeIntervalInputData(session, input); - this.lineTo(x, ym); - }; + // find the correct target + var target = manager.element; + if (hasParent(input.srcEvent.target, target)) { + target = input.srcEvent.target; + } + input.target = target; + } + function computeDeltaXY(session, input) { + var center = input.center; + var offset = session.offsetDelta || {}; + var prevDelta = session.prevDelta || {}; + var prevInput = session.prevInput || {}; - /** - * 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); + if (input.eventType === INPUT_START || prevInput.eventType === INPUT_END) { + prevDelta = session.prevDelta = { + x: prevInput.deltaX || 0, + y: prevInput.deltaY || 0 + }; - // 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); + offset = session.offsetDelta = { + x: center.x, + y: center.y + }; + } - // 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); + input.deltaX = prevDelta.x + (center.x - offset.x); + input.deltaY = prevDelta.y + (center.y - offset.y); + } - // 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); + /** + * velocity is calculated every x ms + * @param {Object} session + * @param {Object} input + */ + function computeIntervalInputData(session, input) { + var last = session.lastInterval || input, + deltaTime = input.timeStamp - last.timeStamp, + velocity, velocityX, velocityY, direction; - this.beginPath(); - this.moveTo(x, y); - this.lineTo(xl, yl); - this.lineTo(xi, yi); - this.lineTo(xr, yr); - this.closePath(); - }; + if (input.eventType != INPUT_CANCEL && (deltaTime > COMPUTE_INTERVAL || last.velocity === undefined)) { + var deltaX = last.deltaX - input.deltaX; + var deltaY = last.deltaY - input.deltaY; - /** - * 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; + var v = getVelocity(deltaTime, deltaX, deltaY); + velocityX = v.x; + velocityY = v.y; + velocity = (abs(v.x) > abs(v.y)) ? v.x : v.y; + direction = getDirection(deltaX, deltaY); + + session.lastInterval = input; + } else { + // use latest velocity info if it doesn't overtake a minimum period + velocity = last.velocity; + velocityX = last.velocityX; + velocityY = last.velocityY; + direction = last.direction; } - }; - // TODO: add diamond shape + input.velocity = velocity; + input.velocityX = velocityX; + input.velocityY = velocityY; + input.direction = direction; } -/***/ }, -/* 66 */ -/***/ function(module, exports, __webpack_require__) { + /** + * create a simple clone from the input used for storage of firstInput and firstMultiple + * @param {Object} input + * @returns {Object} clonedInputData + */ + function simpleCloneInputData(input) { + // make a simple copy of the pointers because we will get a reference if we don't + // we only need clientXY for the calculations + var pointers = []; + var i = 0; + while (i < input.pointers.length) { + pointers[i] = { + clientX: round(input.pointers[i].clientX), + clientY: round(input.pointers[i].clientY) + }; + i++; + } - "use strict"; + return { + timeStamp: now(), + pointers: pointers, + center: getCenter(pointers), + deltaX: input.deltaX, + deltaY: input.deltaY + }; + } - var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; + /** + * get the center of all the pointers + * @param {Array} pointers + * @return {Object} center contains `x` and `y` properties + */ + function getCenter(pointers) { + var pointersLength = pointers.length; - var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; + // no need to loop when only one touch + if (pointersLength === 1) { + return { + x: round(pointers[0].clientX), + y: round(pointers[0].clientY) + }; + } + + var x = 0, y = 0, i = 0; + while (i < pointersLength) { + x += pointers[i].clientX; + y += pointers[i].clientY; + i++; + } + + return { + x: round(x / pointersLength), + y: round(y / pointersLength) + }; + } /** - * Created by Alex on 2/23/2015. + * calculate the velocity between two points. unit is in px per ms. + * @param {Number} deltaTime + * @param {Number} x + * @param {Number} y + * @return {Object} velocity `x` and `y` */ + function getVelocity(deltaTime, x, y) { + return { + x: x / deltaTime || 0, + y: y / deltaTime || 0 + }; + } - var BarnesHutSolver = __webpack_require__(67).BarnesHutSolver; - var Repulsion = __webpack_require__(68).Repulsion; - var HierarchicalRepulsion = __webpack_require__(69).HierarchicalRepulsion; - var SpringSolver = __webpack_require__(70).SpringSolver; - var HierarchicalSpringSolver = __webpack_require__(71).HierarchicalSpringSolver; - var CentralGravitySolver = __webpack_require__(72).CentralGravitySolver; + /** + * get the direction between two points + * @param {Number} x + * @param {Number} y + * @return {Number} direction + */ + function getDirection(x, y) { + if (x === y) { + return DIRECTION_NONE; + } + if (abs(x) >= abs(y)) { + return x > 0 ? DIRECTION_LEFT : DIRECTION_RIGHT; + } + return y > 0 ? DIRECTION_UP : DIRECTION_DOWN; + } - var util = __webpack_require__(1); + /** + * calculate the absolute distance between two points + * @param {Object} p1 {x, y} + * @param {Object} p2 {x, y} + * @param {Array} [props] containing x and y keys + * @return {Number} distance + */ + function getDistance(p1, p2, props) { + if (!props) { + props = PROPS_XY; + } + var x = p2[props[0]] - p1[props[0]], + y = p2[props[1]] - p1[props[1]]; + return Math.sqrt((x * x) + (y * y)); + } - var PhysicsEngine = (function () { - function PhysicsEngine(body, options) { - var _this = this; - _classCallCheck(this, PhysicsEngine); + /** + * calculate the angle between two coordinates + * @param {Object} p1 + * @param {Object} p2 + * @param {Array} [props] containing x and y keys + * @return {Number} angle + */ + function getAngle(p1, p2, props) { + if (!props) { + props = PROPS_XY; + } + var x = p2[props[0]] - p1[props[0]], + y = p2[props[1]] - p1[props[1]]; + return Math.atan2(y, x) * 180 / Math.PI; + } - this.body = body; - this.physicsBody = { calculationNodes: {}, calculationNodeIndices: [], forces: {}, velocities: {} }; - this.scale = 1; - this.viewFunction = undefined; + /** + * calculate the rotation degrees between two pointersets + * @param {Array} start array of pointers + * @param {Array} end array of pointers + * @return {Number} rotation + */ + function getRotation(start, end) { + return getAngle(end[1], end[0], PROPS_CLIENT_XY) - getAngle(start[1], start[0], PROPS_CLIENT_XY); + } - this.body.emitter.on("_setScale", function (scale) { - return _this.scale = scale; - }); + /** + * calculate the scale factor between two pointersets + * no scale is 1, and goes down to 0 when pinched together, and bigger when pinched out + * @param {Array} start array of pointers + * @param {Array} end array of pointers + * @return {Number} scale + */ + function getScale(start, end) { + return getDistance(end[0], end[1], PROPS_CLIENT_XY) / getDistance(start[0], start[1], PROPS_CLIENT_XY); + } - this.simulationInterval = 1000 / 60; - this.requiresTimeout = true; - this.previousStates = {}; - this.renderTimer == undefined; + var MOUSE_INPUT_MAP = { + mousedown: INPUT_START, + mousemove: INPUT_MOVE, + mouseup: INPUT_END + }; - this.stabilized = false; - this.stabilizationIterations = 0; + var MOUSE_ELEMENT_EVENTS = 'mousedown'; + var MOUSE_WINDOW_EVENTS = 'mousemove mouseup'; - // default options - this.options = { - barnesHut: { - thetaInverted: 1 / 0.5, // inverted to save time during calculation - gravitationalConstant: -2000, - centralGravity: 0.3, - springLength: 95, - springConstant: 0.04, - damping: 0.09 - }, - repulsion: { - centralGravity: 0, - springLength: 200, - springConstant: 0.05, - nodeDistance: 100, - damping: 0.09 - }, - hierarchicalRepulsion: { - centralGravity: 0, - springLength: 100, - springConstant: 0.01, - nodeDistance: 150, - damping: 0.09 - }, - model: "BarnesHut", - timestep: 0.5, - maxVelocity: 50, - minVelocity: 0.1, // px/s - stabilization: { - enabled: true, - iterations: 1000, // maximum number of iteration to stabilize - updateInterval: 100, - onlyDynamicEdges: false, - zoomExtent: true - } - }; + /** + * Mouse events input + * @constructor + * @extends Input + */ + function MouseInput() { + this.evEl = MOUSE_ELEMENT_EVENTS; + this.evWin = MOUSE_WINDOW_EVENTS; - this.setOptions(options); - } + this.allow = true; // used by Input.TouchMouse to disable mouse events + this.pressed = false; // mousedown state - _prototypeProperties(PhysicsEngine, null, { - setOptions: { - value: function setOptions(options) { - if (options !== undefined) { - if (typeof options.stabilization == "boolean") { - options.stabilization = { - enabled: options.stabilization - }; - } - util.deepExtend(this.options, options); + Input.apply(this, arguments); + } + + inherit(MouseInput, Input, { + /** + * handle mouse events + * @param {Object} ev + */ + handler: function MEhandler(ev) { + var eventType = MOUSE_INPUT_MAP[ev.type]; + + // on start we want to have the left mouse button down + if (eventType & INPUT_START && ev.button === 0) { + this.pressed = true; } - this.init(); - }, - writable: true, - configurable: true - }, - init: { - value: function init() { - var options; - if (this.options.model == "repulsion") { - options = this.options.repulsion; - this.nodesSolver = new Repulsion(this.body, this.physicsBody, options); - this.edgesSolver = new SpringSolver(this.body, this.physicsBody, options); - } else if (this.options.model == "hierarchicalRepulsion") { - options = this.options.hierarchicalRepulsion; - this.nodesSolver = new HierarchicalRepulsion(this.body, this.physicsBody, options); - this.edgesSolver = new HierarchicalSpringSolver(this.body, this.physicsBody, options); - } else { - // barnesHut - options = this.options.barnesHut; - this.nodesSolver = new BarnesHutSolver(this.body, this.physicsBody, options); - this.edgesSolver = new SpringSolver(this.body, this.physicsBody, options); + + if (eventType & INPUT_MOVE && ev.which !== 1) { + eventType = INPUT_END; } - this.gravitySolver = new CentralGravitySolver(this.body, this.physicsBody, options); - this.modelOptions = options; - }, - writable: true, - configurable: true - }, - startSimulation: { - value: function startSimulation() { - this.stabilized = false; - if (this.options.stabilization.enabled === true) { - this.stabilize(); - } else { - this.runSimulation(); + // mouse must be down, and mouse events are allowed (see the TouchMouse input) + if (!this.pressed || !this.allow) { + return; } - }, - writable: true, - configurable: true - }, - runSimulation: { - value: function runSimulation() { - if (this.viewFunction === undefined) { - this.viewFunction = this.simulationStep.bind(this); - this.body.emitter.on("_beforeRender", this.viewFunction); - this.body.emitter.emit("_startRendering"); + + if (eventType & INPUT_END) { + this.pressed = false; } - }, - writable: true, - configurable: true - }, - simulationStep: { - value: function simulationStep() { - // check if the physics have settled - var startTime = Date.now(); - this.physicsTick(); - var physicsTime = Date.now() - startTime; - // run double speed if it is a little graph - if ((physicsTime < 0.4 * this.simulationInterval || this.runDoubleSpeed == true) && this.stabilized === false) { - this.physicsTick(); + this.callback(this.manager, eventType, { + pointers: [ev], + changedPointers: [ev], + pointerType: INPUT_TYPE_MOUSE, + srcEvent: ev + }); + } + }); - // this makes sure there is no jitter. The decision is taken once to run it at double speed. - this.runDoubleSpeed = true; - } + var POINTER_INPUT_MAP = { + pointerdown: INPUT_START, + pointermove: INPUT_MOVE, + pointerup: INPUT_END, + pointercancel: INPUT_CANCEL, + pointerout: INPUT_CANCEL + }; - if (this.stabilized === true) { - if (this.stabilizationIterations > 1) { - // trigger the "stabilized" event. - // The event is triggered on the next tick, to prevent the case that - // it is fired while initializing the Network, in which case you would not - // be able to catch it - var me = this; - var params = { - iterations: this.stabilizationIterations - }; - this.stabilizationIterations = 0; - this.startedStabilization = false; - setTimeout(function () { - me.body.emitter.emit("stabilized", params); - }, 0); - } else { - this.stabilizationIterations = 0; - } - this.body.emitter.emit("_stopRendering"); - } - }, - writable: true, - configurable: true - }, - physicsTick: { + // in IE10 the pointer types is defined as an enum + var IE10_POINTER_TYPE_ENUM = { + 2: INPUT_TYPE_TOUCH, + 3: INPUT_TYPE_PEN, + 4: INPUT_TYPE_MOUSE, + 5: INPUT_TYPE_KINECT // see https://twitter.com/jacobrossi/status/480596438489890816 + }; - /** - * A single simulation step (or "tick") in the physics simulation - * - * @private - */ - value: function physicsTick() { - if (this.stabilized === false) { - this.calculateForces(); - this.stabilized = this.moveNodes(); + var POINTER_ELEMENT_EVENTS = 'pointerdown'; + var POINTER_WINDOW_EVENTS = 'pointermove pointerup pointercancel'; - // determine if the network has stabilzied - if (this.stabilized === true) { - this.revert(); - } else { - // this is here to ensure that there is no start event when the network is already stable. - if (this.startedStabilization == false) { - this.body.emitter.emit("startStabilizing"); - this.startedStabilization = true; - } - } + // IE10 has prefixed support, and case-sensitive + if (window.MSPointerEvent) { + POINTER_ELEMENT_EVENTS = 'MSPointerDown'; + POINTER_WINDOW_EVENTS = 'MSPointerMove MSPointerUp MSPointerCancel'; + } - this.stabilizationIterations++; - } - }, - writable: true, - configurable: true - }, - _updateCalculationNodes: { + /** + * Pointer events input + * @constructor + * @extends Input + */ + function PointerEventInput() { + this.evEl = POINTER_ELEMENT_EVENTS; + this.evWin = POINTER_WINDOW_EVENTS; - /** - * 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.body.nodes with the support nodes. - * - * @private - */ - value: function _updateCalculationNodes() { - this.physicsBody.calculationNodes = {}; - this.physicsBody.forces = {}; - this.physicsBody.calculationNodeIndices = []; + Input.apply(this, arguments); - for (var i = 0; i < this.body.nodeIndices.length; i++) { - var nodeId = this.body.nodeIndices[i]; - this.physicsBody.calculationNodes[nodeId] = this.body.nodes[nodeId]; - } + this.store = (this.manager.session.pointerEvents = []); + } - // if support nodes are used, we have them here - var supportNodes = this.body.supportNodes; - for (var i = 0; i < this.body.supportNodeIndices.length; i++) { - var supportNodeId = this.body.supportNodeIndices[i]; - if (this.body.edges[supportNodes[supportNodeId].parentEdgeId] !== undefined) { - this.physicsBody.calculationNodes[supportNodeId] = supportNodes[supportNodeId]; - } else { - console.error("Support node detected that does not have an edge!"); - } - } + inherit(PointerEventInput, Input, { + /** + * handle mouse events + * @param {Object} ev + */ + handler: function PEhandler(ev) { + var store = this.store; + var removePointer = false; - this.physicsBody.calculationNodeIndices = Object.keys(this.physicsBody.calculationNodes); - for (var i = 0; i < this.physicsBody.calculationNodeIndices.length; i++) { - var nodeId = this.physicsBody.calculationNodeIndices[i]; - this.physicsBody.forces[nodeId] = { x: 0, y: 0 }; + var eventTypeNormalized = ev.type.toLowerCase().replace('ms', ''); + var eventType = POINTER_INPUT_MAP[eventTypeNormalized]; + var pointerType = IE10_POINTER_TYPE_ENUM[ev.pointerType] || ev.pointerType; - // forces can be reset because they are recalculated. Velocities have to persist. - if (this.physicsBody.velocities[nodeId] === undefined) { - this.physicsBody.velocities[nodeId] = { x: 0, y: 0 }; - } - } + var isTouch = (pointerType == INPUT_TYPE_TOUCH); - // clean deleted nodes from the velocity vector - for (var nodeId in this.physicsBody.velocities) { - if (this.physicsBody.calculationNodes[nodeId] === undefined) { - delete this.physicsBody.velocities[nodeId]; - } - } - }, - writable: true, - configurable: true - }, - revert: { - value: function revert() { - var nodeIds = Object.keys(this.previousStates); - var nodes = this.physicsBody.calculationNodes; - var velocities = this.physicsBody.velocities; + // get index of the event in the store + var storeIndex = inArray(store, ev.pointerId, 'pointerId'); - for (var i = 0; i < nodeIds.length; i++) { - var nodeId = nodeIds[i]; - if (nodes[nodeId] !== undefined) { - velocities[nodeId].x = this.previousStates[nodeId].vx; - velocities[nodeId].y = this.previousStates[nodeId].vy; - nodes[nodeId].x = this.previousStates[nodeId].x; - nodes[nodeId].y = this.previousStates[nodeId].y; - } else { - delete this.previousStates[nodeId]; - } + // start and mouse must be down + if (eventType & INPUT_START && (ev.button === 0 || isTouch)) { + if (storeIndex < 0) { + store.push(ev); + storeIndex = store.length - 1; + } + } else if (eventType & (INPUT_END | INPUT_CANCEL)) { + removePointer = true; } - }, - writable: true, - configurable: true - }, - moveNodes: { - value: function moveNodes() { - var nodesPresent = false; - var nodeIndices = this.physicsBody.calculationNodeIndices; - var maxVelocity = this.options.maxVelocity === 0 ? 1000000000 : this.options.maxVelocity; - var stabilized = true; - var vminCorrected = this.options.minVelocity / Math.max(this.scale, 0.05); - for (var i = 0; i < nodeIndices.length; i++) { - var nodeId = nodeIndices[i]; - var nodeVelocity = this._performStep(nodeId, maxVelocity); - // stabilized is true if stabilized is true and velocity is smaller than vmin --> all nodes must be stabilized - stabilized = nodeVelocity < vminCorrected && stabilized === true; - nodesPresent = true; + // it not found, so the pointer hasn't been down (so it's probably a hover) + if (storeIndex < 0) { + return; } + // update the event in the store + store[storeIndex] = ev; - if (nodesPresent == true) { - if (vminCorrected > 0.5 * this.options.maxVelocity) { - return false; - } else { - return stabilized; - } + this.callback(this.manager, eventType, { + pointers: store, + changedPointers: [ev], + pointerType: pointerType, + srcEvent: ev + }); + + if (removePointer) { + // remove from the store + store.splice(storeIndex, 1); } - return true; - }, - writable: true, - configurable: true - }, - _performStep: { - value: function _performStep(nodeId, maxVelocity) { - var node = this.physicsBody.calculationNodes[nodeId]; - var timestep = this.options.timestep; - var forces = this.physicsBody.forces; - var velocities = this.physicsBody.velocities; + } + }); - // store the state so we can revert - this.previousStates[nodeId] = { x: node.x, y: node.y, vx: velocities[nodeId].x, vy: velocities[nodeId].y }; + var SINGLE_TOUCH_INPUT_MAP = { + touchstart: INPUT_START, + touchmove: INPUT_MOVE, + touchend: INPUT_END, + touchcancel: INPUT_CANCEL + }; - if (!node.xFixed) { - var dx = this.modelOptions.damping * velocities[nodeId].x; // damping force - var ax = (forces[nodeId].x - dx) / node.options.mass; // acceleration - velocities[nodeId].x += ax * timestep; // velocity - velocities[nodeId].x = Math.abs(velocities[nodeId].x) > maxVelocity ? velocities[nodeId].x > 0 ? maxVelocity : -maxVelocity : velocities[nodeId].x; - node.x += velocities[nodeId].x * timestep; // position - } else { - forces[nodeId].x = 0; - velocities[nodeId].x = 0; + var SINGLE_TOUCH_TARGET_EVENTS = 'touchstart'; + var SINGLE_TOUCH_WINDOW_EVENTS = 'touchstart touchmove touchend touchcancel'; + + /** + * Touch events input + * @constructor + * @extends Input + */ + function SingleTouchInput() { + this.evTarget = SINGLE_TOUCH_TARGET_EVENTS; + this.evWin = SINGLE_TOUCH_WINDOW_EVENTS; + this.started = false; + + Input.apply(this, arguments); + } + + inherit(SingleTouchInput, Input, { + handler: function TEhandler(ev) { + var type = SINGLE_TOUCH_INPUT_MAP[ev.type]; + + // should we handle the touch events? + if (type === INPUT_START) { + this.started = true; } - if (!node.yFixed) { - var dy = this.modelOptions.damping * velocities[nodeId].y; // damping force - var ay = (forces[nodeId].y - dy) / node.options.mass; // acceleration - velocities[nodeId].y += ay * timestep; // velocity - velocities[nodeId].y = Math.abs(velocities[nodeId].y) > maxVelocity ? velocities[nodeId].y > 0 ? maxVelocity : -maxVelocity : velocities[nodeId].y; - node.y += velocities[nodeId].y * timestep; // position - } else { - forces[nodeId].y = 0; - velocities[nodeId].y = 0; + if (!this.started) { + return; } - var totalVelocity = Math.sqrt(Math.pow(velocities[nodeId].x, 2) + Math.pow(velocities[nodeId].y, 2)); - return totalVelocity; - }, - writable: true, - configurable: true - }, - calculateForces: { - value: function calculateForces() { - this.gravitySolver.solve(); - this.nodesSolver.solve(); - this.edgesSolver.solve(); - }, - writable: true, - configurable: true - }, - _freezeNodes: { + var touches = normalizeSingleTouches.call(this, ev, type); + // when done, reset the started state + if (type & (INPUT_END | INPUT_CANCEL) && touches[0].length - touches[1].length === 0) { + this.started = false; + } + this.callback(this.manager, type, { + pointers: touches[0], + changedPointers: touches[1], + pointerType: INPUT_TYPE_TOUCH, + srcEvent: ev + }); + } + }); + /** + * @this {TouchInput} + * @param {Object} ev + * @param {Number} type flag + * @returns {undefined|Array} [all, changed] + */ + function normalizeSingleTouches(ev, type) { + var all = toArray(ev.touches); + var changed = toArray(ev.changedTouches); + if (type & (INPUT_END | INPUT_CANCEL)) { + all = uniqueArray(all.concat(changed), 'identifier', true); + } + return [all, changed]; + } + var TOUCH_INPUT_MAP = { + touchstart: INPUT_START, + touchmove: INPUT_MOVE, + touchend: INPUT_END, + touchcancel: INPUT_CANCEL + }; + var TOUCH_TARGET_EVENTS = 'touchstart touchmove touchend touchcancel'; + /** + * Multi-user touch events input + * @constructor + * @extends Input + */ + function TouchInput() { + this.evTarget = TOUCH_TARGET_EVENTS; + this.targetIds = {}; - /** - * 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 - */ - value: function _freezeNodes() { - var nodes = this.body.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; - } - } - } - }, - writable: true, - configurable: true - }, - _restoreFrozenNodes: { + Input.apply(this, arguments); + } - /** - * Unfreezes the nodes that have been frozen by _freezeDefinedNodes. - * - * @private - */ - value: function _restoreFrozenNodes() { - var nodes = this.body.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; - } - } + inherit(TouchInput, Input, { + handler: function MTEhandler(ev) { + var type = TOUCH_INPUT_MAP[ev.type]; + var touches = getTouches.call(this, ev, type); + if (!touches) { + return; } - }, - writable: true, - configurable: true - }, - stabilize: { - /** - * Find a stable position for all nodes - * @private - */ - value: function stabilize() { - if (this.options.stabilization.onlyDynamicEdges == true) { - this._freezeNodes(); - } - this.stabilizationSteps = 0; + this.callback(this.manager, type, { + pointers: touches[0], + changedPointers: touches[1], + pointerType: INPUT_TYPE_TOUCH, + srcEvent: ev + }); + } + }); - setTimeout(this._stabilizationBatch.bind(this), 0); - }, - writable: true, - configurable: true - }, - _stabilizationBatch: { - value: function _stabilizationBatch() { - var count = 0; - while (this.stabilized == false && count < this.options.stabilization.updateInterval && this.stabilizationSteps < this.options.stabilization.iterations) { - this.physicsTick(); - this.stabilizationSteps++; - count++; - } + /** + * @this {TouchInput} + * @param {Object} ev + * @param {Number} type flag + * @returns {undefined|Array} [all, changed] + */ + function getTouches(ev, type) { + var allTouches = toArray(ev.touches); + var targetIds = this.targetIds; - if (this.stabilized == false && this.stabilizationSteps < this.options.stabilization.iterations) { - this.body.emitter.emit("stabilizationProgress", { steps: this.stabilizationSteps, total: this.options.stabilization.iterations }); - setTimeout(this._stabilizationBatch.bind(this), 0); - } else { - this._finalizeStabilization(); + // when there is only one touch, the process can be simplified + if (type & (INPUT_START | INPUT_MOVE) && allTouches.length === 1) { + targetIds[allTouches[0].identifier] = true; + return [allTouches, allTouches]; + } + + var i, + targetTouches, + changedTouches = toArray(ev.changedTouches), + changedTargetTouches = [], + target = this.target; + + // get target touches from touches + targetTouches = allTouches.filter(function(touch) { + return hasParent(touch.target, target); + }); + + // collect touches + if (type === INPUT_START) { + i = 0; + while (i < targetTouches.length) { + targetIds[targetTouches[i].identifier] = true; + i++; } - }, - writable: true, - configurable: true - }, - _finalizeStabilization: { - value: function _finalizeStabilization() { - if (this.options.stabilization.zoomExtent == true) { - this.body.emitter.emit("zoomExtent", { duration: 0 }); + } + + // filter changed touches to only contain touches that exist in the collected target ids + i = 0; + while (i < changedTouches.length) { + if (targetIds[changedTouches[i].identifier]) { + changedTargetTouches.push(changedTouches[i]); } - if (this.options.stabilization.onlyDynamicEdges == true) { - this._restoreFrozenNodes(); + // cleanup removed touches + if (type & (INPUT_END | INPUT_CANCEL)) { + delete targetIds[changedTouches[i].identifier]; } + i++; + } - this.body.emitter.emit("stabilizationIterationsDone"); - this.body.emitter.emit("_requestRedraw"); - }, - writable: true, - configurable: true + if (!changedTargetTouches.length) { + return; } - }); - return PhysicsEngine; - })(); + return [ + // merge targetTouches with changedTargetTouches so it contains ALL touches, including 'end' and 'cancel' + uniqueArray(targetTouches.concat(changedTargetTouches), 'identifier', true), + changedTargetTouches + ]; + } - exports.PhysicsEngine = PhysicsEngine; - Object.defineProperty(exports, "__esModule", { - value: true - }); + /** + * Combined touch and mouse input + * + * Touch has a higher priority then mouse, and while touching no mouse events are allowed. + * This because touch devices also emit mouse events while doing a touch. + * + * @constructor + * @extends Input + */ + function TouchMouseInput() { + Input.apply(this, arguments); -/***/ }, -/* 67 */ -/***/ function(module, exports, __webpack_require__) { + var handler = bindFn(this.handler, this); + this.touch = new TouchInput(this.manager, handler); + this.mouse = new MouseInput(this.manager, handler); + } - "use strict"; + inherit(TouchMouseInput, Input, { + /** + * handle mouse and touch events + * @param {Hammer} manager + * @param {String} inputEvent + * @param {Object} inputData + */ + handler: function TMEhandler(manager, inputEvent, inputData) { + var isTouch = (inputData.pointerType == INPUT_TYPE_TOUCH), + isMouse = (inputData.pointerType == INPUT_TYPE_MOUSE); + + // when we're in a touch event, so block all upcoming mouse events + // most mobile browser also emit mouseevents, right after touchstart + if (isTouch) { + this.mouse.allow = false; + } else if (isMouse && !this.mouse.allow) { + return; + } - var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; + // reset the allowMouse when we're done + if (inputEvent & (INPUT_END | INPUT_CANCEL)) { + this.mouse.allow = true; + } - var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; + this.callback(manager, inputEvent, inputData); + }, + + /** + * remove the event listeners + */ + destroy: function destroy() { + this.touch.destroy(); + this.mouse.destroy(); + } + }); + + var PREFIXED_TOUCH_ACTION = prefixed(TEST_ELEMENT.style, 'touchAction'); + var NATIVE_TOUCH_ACTION = PREFIXED_TOUCH_ACTION !== undefined; + + // magical touchAction value + var TOUCH_ACTION_COMPUTE = 'compute'; + var TOUCH_ACTION_AUTO = 'auto'; + var TOUCH_ACTION_MANIPULATION = 'manipulation'; // not implemented + var TOUCH_ACTION_NONE = 'none'; + var TOUCH_ACTION_PAN_X = 'pan-x'; + var TOUCH_ACTION_PAN_Y = 'pan-y'; /** - * Created by Alex on 2/23/2015. + * Touch Action + * sets the touchAction property or uses the js alternative + * @param {Manager} manager + * @param {String} value + * @constructor */ + function TouchAction(manager, value) { + this.manager = manager; + this.set(value); + } - var BarnesHutSolver = (function () { - function BarnesHutSolver(body, physicsBody, options) { - _classCallCheck(this, BarnesHutSolver); + TouchAction.prototype = { + /** + * set the touchAction value on the element or enable the polyfill + * @param {String} value + */ + set: function(value) { + // find out the touch-action by the event handlers + if (value == TOUCH_ACTION_COMPUTE) { + value = this.compute(); + } - this.body = body; - this.physicsBody = physicsBody; - this.barnesHutTree; - this.setOptions(options); - } + if (NATIVE_TOUCH_ACTION) { + this.manager.element.style[PREFIXED_TOUCH_ACTION] = value; + } + this.actions = value.toLowerCase().trim(); + }, - _prototypeProperties(BarnesHutSolver, null, { - setOptions: { - value: function setOptions(options) { - this.options = options; - }, - writable: true, - configurable: true + /** + * just re-set the touchAction value + */ + update: function() { + this.set(this.manager.options.touchAction); }, - solve: { + /** + * compute the value for the touchAction property based on the recognizer's settings + * @returns {String} value + */ + compute: function() { + var actions = []; + each(this.manager.recognizers, function(recognizer) { + if (boolOrFn(recognizer.options.enable, [recognizer])) { + actions = actions.concat(recognizer.getTouchAction()); + } + }); + return cleanTouchActions(actions.join(' ')); + }, - /** - * 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 - */ - value: function solve() { - if (this.options.gravitationalConstant != 0) { - var node; - var nodes = this.physicsBody.calculationNodes; - var nodeIndices = this.physicsBody.calculationNodeIndices; - var nodeCount = nodeIndices.length; - - // create the tree - var barnesHutTree = this._formBarnesHutTree(nodes, nodeIndices); - - // for debugging - this.barnesHutTree = barnesHutTree; - - // place the nodes one by one recursively - for (var i = 0; i < nodeCount; i++) { - node = nodes[nodeIndices[i]]; - if (node.options.mass > 0) { - // starting with root is irrelevant, it never passes the BarnesHutSolver condition - this._getForceContribution(barnesHutTree.root.children.NW, node); - this._getForceContribution(barnesHutTree.root.children.NE, node); - this._getForceContribution(barnesHutTree.root.children.SW, node); - this._getForceContribution(barnesHutTree.root.children.SE, node); - } - } + /** + * this method is called on each input cycle and provides the preventing of the browser behavior + * @param {Object} input + */ + preventDefaults: function(input) { + // not needed with native support for the touchAction property + if (NATIVE_TOUCH_ACTION) { + return; } - }, - writable: true, - configurable: true - }, - _getForceContribution: { - - - /** - * This function traverses the barnesHutTree. It checks when it can approximate distant nodes with their center of mass. - * If a region contains a single node, we check if it is not itself, then we apply the force. - * - * @param parentBranch - * @param node - * @private - */ - value: function _getForceContribution(parentBranch, node) { - // we get no force contribution from an empty region - if (parentBranch.childrenCount > 0) { - var dx, dy, distance; - // get the distance from the center of mass to the node. - dx = parentBranch.centerOfMass.x - node.x; - dy = parentBranch.centerOfMass.y - node.y; - distance = Math.sqrt(dx * dx + dy * dy); + var srcEvent = input.srcEvent; + var direction = input.offsetDirection; - // BarnesHutSolver condition - // original condition : s/d < thetaInverted = passed === d/s > 1/theta = passed - // calcSize = 1/s --> d * 1/s > 1/theta = passed - if (distance * parentBranch.calcSize > this.options.thetaInverted) { - // duplicate code to reduce function calls to speed up program - if (distance == 0) { - distance = 0.1 * Math.random(); - dx = distance; - } - var gravityForce = this.options.gravitationalConstant * parentBranch.mass * node.options.mass / (distance * distance * distance); - var fx = dx * gravityForce; - var fy = dy * gravityForce; + // if the touch action did prevented once this session + if (this.manager.session.prevented) { + srcEvent.preventDefault(); + return; + } - this.physicsBody.forces[node.id].x += fx; - this.physicsBody.forces[node.id].y += 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.options.gravitationalConstant * parentBranch.mass * node.options.mass / (distance * distance * distance); - var fx = dx * gravityForce; - var fy = dy * gravityForce; + var actions = this.actions; + var hasNone = inStr(actions, TOUCH_ACTION_NONE); + var hasPanY = inStr(actions, TOUCH_ACTION_PAN_Y); + var hasPanX = inStr(actions, TOUCH_ACTION_PAN_X); - this.physicsBody.forces[node.id].x += fx; - this.physicsBody.forces[node.id].y += fy; - } - } - } + if (hasNone || + (hasPanY && direction & DIRECTION_HORIZONTAL) || + (hasPanX && direction & DIRECTION_VERTICAL)) { + return this.preventSrc(srcEvent); } - }, - writable: true, - configurable: true }, - _formBarnesHutTree: { + /** + * call preventDefault to prevent the browser's default behavior (scrolling in most cases) + * @param {Object} srcEvent + */ + preventSrc: function(srcEvent) { + this.manager.session.prevented = true; + srcEvent.preventDefault(); + } + }; - /** - * This function constructs the barnesHut tree recursively. It creates the root, splits it and starts placing the nodes. - * - * @param nodes - * @param nodeIndices - * @private - */ - value: function _formBarnesHutTree(nodes, nodeIndices) { - var node; - var nodeCount = nodeIndices.length; + /** + * when the touchActions are collected they are not a valid value, so we need to clean things up. * + * @param {String} actions + * @returns {*} + */ + function cleanTouchActions(actions) { + // none + if (inStr(actions, TOUCH_ACTION_NONE)) { + return TOUCH_ACTION_NONE; + } - var minX = Number.MAX_VALUE, - minY = Number.MAX_VALUE, - maxX = -Number.MAX_VALUE, - maxY = -Number.MAX_VALUE; + var hasPanX = inStr(actions, TOUCH_ACTION_PAN_X); + var hasPanY = inStr(actions, TOUCH_ACTION_PAN_Y); - // 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 + // pan-x and pan-y can be combined + if (hasPanX && hasPanY) { + return TOUCH_ACTION_PAN_X + ' ' + TOUCH_ACTION_PAN_Y; + } + // pan-x OR pan-y + if (hasPanX || hasPanY) { + return hasPanX ? TOUCH_ACTION_PAN_X : TOUCH_ACTION_PAN_Y; + } - var minimumTreeSize = 0.00001; - 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); + // manipulation + if (inStr(actions, TOUCH_ACTION_MANIPULATION)) { + return TOUCH_ACTION_MANIPULATION; + } - // 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); + return TOUCH_ACTION_AUTO; + } - // 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); - } - } + /** + * Recognizer flow explained; * + * All recognizers have the initial state of POSSIBLE when a input session starts. + * The definition of a input session is from the first input until the last input, with all it's movement in it. * + * Example session for mouse-input: mousedown -> mousemove -> mouseup + * + * On each recognizing cycle (see Manager.recognize) the .recognize() method is executed + * which determines with state it should be. + * + * If the recognizer has the state FAILED, CANCELLED or RECOGNIZED (equals ENDED), it is reset to + * POSSIBLE to give it another change on the next cycle. + * + * Possible + * | + * +-----+---------------+ + * | | + * +-----+-----+ | + * | | | + * Failed Cancelled | + * +-------+------+ + * | | + * Recognized Began + * | + * Changed + * | + * Ended/Recognized + */ + var STATE_POSSIBLE = 1; + var STATE_BEGAN = 2; + var STATE_CHANGED = 4; + var STATE_ENDED = 8; + var STATE_RECOGNIZED = STATE_ENDED; + var STATE_CANCELLED = 16; + var STATE_FAILED = 32; + + /** + * Recognizer + * Every recognizer needs to extend from this class. + * @constructor + * @param {Object} options + */ + function Recognizer(options) { + this.id = uniqueId(); - // make global - return barnesHutTree; - }, - writable: true, - configurable: true - }, - _updateBranchMass: { + this.manager = null; + this.options = merge(options || {}, this.defaults); + // default is enable true + this.options.enable = ifUndefined(this.options.enable, true); - /** - * this updates the mass of a branch. this is increased by adding a node. - * - * @param parentBranch - * @param node - * @private - */ - value: function _updateBranchMass(parentBranch, node) { - var totalMass = parentBranch.mass + node.options.mass; - var totalMassInv = 1 / totalMass; + this.state = STATE_POSSIBLE; - parentBranch.centerOfMass.x = parentBranch.centerOfMass.x * parentBranch.mass + node.x * node.options.mass; - parentBranch.centerOfMass.x *= totalMassInv; + this.simultaneous = {}; + this.requireFail = []; + } - parentBranch.centerOfMass.y = parentBranch.centerOfMass.y * parentBranch.mass + node.y * node.options.mass; - parentBranch.centerOfMass.y *= totalMassInv; + Recognizer.prototype = { + /** + * @virtual + * @type {Object} + */ + defaults: {}, - parentBranch.mass = totalMass; - var biggestSize = Math.max(Math.max(node.height, node.radius), node.width); - parentBranch.maxWidth = parentBranch.maxWidth < biggestSize ? biggestSize : parentBranch.maxWidth; - }, - writable: true, - configurable: true - }, - _placeInTree: { + /** + * set options + * @param {Object} options + * @return {Recognizer} + */ + set: function(options) { + extend(this.options, options); + // also update the touchAction, in case something changed about the directions/enabled state + this.manager && this.manager.touchAction.update(); + return this; + }, - /** - * determine in which branch the node will be placed. - * - * @param parentBranch - * @param node - * @param skipMassUpdate - * @private - */ - value: function _placeInTree(parentBranch, node, skipMassUpdate) { - if (skipMassUpdate != true || skipMassUpdate === undefined) { - // update the mass of the branch. - this._updateBranchMass(parentBranch, node); + /** + * recognize simultaneous with an other recognizer. + * @param {Recognizer} otherRecognizer + * @returns {Recognizer} this + */ + recognizeWith: function(otherRecognizer) { + if (invokeArrayArg(otherRecognizer, 'recognizeWith', this)) { + return this; } - 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"); - } + var simultaneous = this.simultaneous; + otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this); + if (!simultaneous[otherRecognizer.id]) { + simultaneous[otherRecognizer.id] = otherRecognizer; + otherRecognizer.recognizeWith(this); } - }, - writable: true, - configurable: true + return this; }, - _placeInRegion: { - - /** - * actually place the node in a region (or branch) - * - * @param parentBranch - * @param node - * @param region - * @private - */ - value: function _placeInRegion(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; + /** + * drop the simultaneous link. it doesnt remove the link on the other recognizer. + * @param {Recognizer} otherRecognizer + * @returns {Recognizer} this + */ + dropRecognizeWith: function(otherRecognizer) { + if (invokeArrayArg(otherRecognizer, 'dropRecognizeWith', this)) { + return this; } - }, - writable: true, - configurable: true - }, - _splitBranch: { + otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this); + delete this.simultaneous[otherRecognizer.id]; + return this; + }, - /** - * 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 - */ - value: function _splitBranch(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; + /** + * recognizer can only run when an other is failing + * @param {Recognizer} otherRecognizer + * @returns {Recognizer} this + */ + requireFailure: function(otherRecognizer) { + if (invokeArrayArg(otherRecognizer, 'requireFailure', this)) { + return this; } - 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); + var requireFail = this.requireFail; + otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this); + if (inArray(requireFail, otherRecognizer) === -1) { + requireFail.push(otherRecognizer); + otherRecognizer.requireFailure(this); } - }, - writable: true, - configurable: true + return this; }, - _insertRegion: { - - /** - * 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 - */ - value: function _insertRegion(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; + /** + * drop the requireFailure link. it does not remove the link on the other recognizer. + * @param {Recognizer} otherRecognizer + * @returns {Recognizer} this + */ + dropRequireFailure: function(otherRecognizer) { + if (invokeArrayArg(otherRecognizer, 'dropRequireFailure', this)) { + return this; } - - 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 - }; - }, - writable: true, - configurable: true + otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this); + var index = inArray(this.requireFail, otherRecognizer); + if (index > -1) { + this.requireFail.splice(index, 1); + } + return this; }, - _debug: { + /** + * has require failures boolean + * @returns {boolean} + */ + hasRequireFailures: function() { + return this.requireFail.length > 0; + }, + /** + * if the recognizer can recognize simultaneous with an other recognizer + * @param {Recognizer} otherRecognizer + * @returns {Boolean} + */ + canRecognizeWith: function(otherRecognizer) { + return !!this.simultaneous[otherRecognizer.id]; + }, + /** + * You should use `tryEmit` instead of `emit` directly to check + * that all the needed recognizers has failed before emitting. + * @param {Object} input + */ + emit: function(input) { + var self = this; + var state = this.state; - //--------------------------- DEBUGGING BELOW ---------------------------// + function emit(withState) { + self.manager.emit(self.options.event + (withState ? stateStr(state) : ''), input); + } + // 'panstart' and 'panmove' + if (state < STATE_ENDED) { + emit(true); + } - /** - * This function is for debugging purposed, it draws the tree. - * - * @param ctx - * @param color - * @private - */ - value: function _debug(ctx, color) { - if (this.barnesHutTree !== undefined) { - ctx.lineWidth = 1; + emit(); // simple 'eventName' events - this._drawBranch(this.barnesHutTree.root, ctx, color); + // panend and pancancel + if (state >= STATE_ENDED) { + emit(true); } - }, - writable: true, - configurable: true }, - _drawBranch: { - - /** - * This function is for debugging purposes. It draws the branches recursively. - * - * @param branch - * @param ctx - * @param color - * @private - */ - value: function _drawBranch(branch, ctx, color) { - if (color === undefined) { - color = "#FF0000"; + /** + * Check that all the require failure recognizers has failed, + * if true, it emits a gesture event, + * otherwise, setup the state to FAILED. + * @param {Object} input + */ + tryEmit: function(input) { + if (this.canEmit()) { + return this.emit(input); } + // it's failing anyway + this.state = STATE_FAILED; + }, - 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); + /** + * can we emit? + * @returns {boolean} + */ + canEmit: function() { + var i = 0; + while (i < this.requireFail.length) { + if (!(this.requireFail[i].state & (STATE_FAILED | STATE_POSSIBLE))) { + return false; + } + i++; } - 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(); + return true; + }, - /* - if (branch.mass > 0) { - ctx.circle(branch.centerOfMass.x, branch.centerOfMass.y, 3*branch.mass); - ctx.stroke(); - } - */ - }, - writable: true, - configurable: true - } - }); + /** + * update the recognizer + * @param {Object} inputData + */ + recognize: function(inputData) { + // make a new copy of the inputData + // so we can change the inputData without messing up the other recognizers + var inputDataClone = extend({}, inputData); + + // is is enabled and allow recognizing? + if (!boolOrFn(this.options.enable, [this, inputDataClone])) { + this.reset(); + this.state = STATE_FAILED; + return; + } - return BarnesHutSolver; - })(); + // reset when we've reached the end + if (this.state & (STATE_RECOGNIZED | STATE_CANCELLED | STATE_FAILED)) { + this.state = STATE_POSSIBLE; + } - exports.BarnesHutSolver = BarnesHutSolver; - Object.defineProperty(exports, "__esModule", { - value: true - }); + this.state = this.process(inputDataClone); -/***/ }, -/* 68 */ -/***/ function(module, exports, __webpack_require__) { + // the recognizer has recognized a gesture + // so trigger an event + if (this.state & (STATE_BEGAN | STATE_CHANGED | STATE_ENDED | STATE_CANCELLED)) { + this.tryEmit(inputDataClone); + } + }, - "use strict"; + /** + * return the state of the recognizer + * the actual recognizing happens in this method + * @virtual + * @param {Object} inputData + * @returns {Const} STATE + */ + process: function(inputData) { }, // jshint ignore:line - var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; + /** + * return the preferred touch-action + * @virtual + * @returns {Array} + */ + getTouchAction: function() { }, - var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; + /** + * called when the gesture isn't allowed to recognize + * like when another is being recognized or it is disabled + * @virtual + */ + reset: function() { } + }; /** - * Created by Alex on 2/23/2015. + * get a usable string, used as event postfix + * @param {Const} state + * @returns {String} state */ + function stateStr(state) { + if (state & STATE_CANCELLED) { + return 'cancel'; + } else if (state & STATE_ENDED) { + return 'end'; + } else if (state & STATE_CHANGED) { + return 'move'; + } else if (state & STATE_BEGAN) { + return 'start'; + } + return ''; + } - var RepulsionSolver = (function () { - function RepulsionSolver(body, physicsBody, options) { - _classCallCheck(this, RepulsionSolver); + /** + * direction cons to string + * @param {Const} direction + * @returns {String} + */ + function directionStr(direction) { + if (direction == DIRECTION_DOWN) { + return 'down'; + } else if (direction == DIRECTION_UP) { + return 'up'; + } else if (direction == DIRECTION_LEFT) { + return 'left'; + } else if (direction == DIRECTION_RIGHT) { + return 'right'; + } + return ''; + } - this.body = body; - this.physicsBody = physicsBody; - this.setOptions(options); - } + /** + * get a recognizer by name if it is bound to a manager + * @param {Recognizer|String} otherRecognizer + * @param {Recognizer} recognizer + * @returns {Recognizer} + */ + function getRecognizerByNameIfManager(otherRecognizer, recognizer) { + var manager = recognizer.manager; + if (manager) { + return manager.get(otherRecognizer); + } + return otherRecognizer; + } - _prototypeProperties(RepulsionSolver, null, { - setOptions: { - value: function setOptions(options) { - this.options = options; - }, - writable: true, - configurable: true + /** + * This recognizer is just used as a base for the simple attribute recognizers. + * @constructor + * @extends Recognizer + */ + function AttrRecognizer() { + Recognizer.apply(this, arguments); + } + + inherit(AttrRecognizer, Recognizer, { + /** + * @namespace + * @memberof AttrRecognizer + */ + defaults: { + /** + * @type {Number} + * @default 1 + */ + pointers: 1 }, - solve: { - /** - * Calculate the forces the nodes apply on each other based on a repulsion field. - * This field is linearly approximated. - * - * @private - */ - value: function solve() { - var dx, dy, distance, fx, fy, repulsingForce, node1, node2; - var nodes = this.physicsBody.calculationNodes; - var nodeIndices = this.physicsBody.calculationNodeIndices; - var forces = this.physicsBody.forces; + /** + * Used to check if it the recognizer receives valid input, like input.distance > 10. + * @memberof AttrRecognizer + * @param {Object} input + * @returns {Boolean} recognized + */ + attrTest: function(input) { + var optionPointers = this.options.pointers; + return optionPointers === 0 || input.pointers.length === optionPointers; + }, - // repulsing forces between nodes - var nodeDistance = this.options.nodeDistance; + /** + * Process the input and return the state for the recognizer + * @memberof AttrRecognizer + * @param {Object} input + * @returns {*} State + */ + process: function(input) { + var state = this.state; + var eventType = input.eventType; + + var isRecognized = state & (STATE_BEGAN | STATE_CHANGED); + var isValid = this.attrTest(input); + + // on cancel input and we've recognized before, return STATE_CANCELLED + if (isRecognized && (eventType & INPUT_CANCEL || !isValid)) { + return state | STATE_CANCELLED; + } else if (isRecognized || isValid) { + if (eventType & INPUT_END) { + return state | STATE_ENDED; + } else if (!(state & STATE_BEGAN)) { + return STATE_BEGAN; + } + return state | STATE_CHANGED; + } + return STATE_FAILED; + } + }); - // approximation constants - var a = -2 / 3 / nodeDistance; - var b = 4 / 3; + /** + * Pan + * Recognized when the pointer is down and moved in the allowed direction. + * @constructor + * @extends AttrRecognizer + */ + function PanRecognizer() { + AttrRecognizer.apply(this, arguments); - // 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 (var i = 0; i < nodeIndices.length - 1; i++) { - node1 = nodes[nodeIndices[i]]; - for (var j = i + 1; j < nodeIndices.length; j++) { - node2 = nodes[nodeIndices[j]]; + this.pX = null; + this.pY = null; + } - dx = node2.x - node1.x; - dy = node2.y - node1.y; - distance = Math.sqrt(dx * dx + dy * dy); + inherit(PanRecognizer, AttrRecognizer, { + /** + * @namespace + * @memberof PanRecognizer + */ + defaults: { + event: 'pan', + threshold: 10, + pointers: 1, + direction: DIRECTION_ALL + }, - // same condition as BarnesHutSolver, making sure nodes are never 100% overlapping. - if (distance == 0) { - distance = 0.1 * Math.random(); - dx = distance; + getTouchAction: function() { + var direction = this.options.direction; + var actions = []; + if (direction & DIRECTION_HORIZONTAL) { + actions.push(TOUCH_ACTION_PAN_Y); + } + if (direction & DIRECTION_VERTICAL) { + actions.push(TOUCH_ACTION_PAN_X); + } + return actions; + }, + + directionTest: function(input) { + var options = this.options; + var hasMoved = true; + var distance = input.distance; + var direction = input.direction; + var x = input.deltaX; + var y = input.deltaY; + + // lock to axis? + if (!(direction & options.direction)) { + if (options.direction & DIRECTION_HORIZONTAL) { + direction = (x === 0) ? DIRECTION_NONE : (x < 0) ? DIRECTION_LEFT : DIRECTION_RIGHT; + hasMoved = x != this.pX; + distance = Math.abs(input.deltaX); + } else { + direction = (y === 0) ? DIRECTION_NONE : (y < 0) ? DIRECTION_UP : DIRECTION_DOWN; + hasMoved = y != this.pY; + distance = Math.abs(input.deltaY); } + } + input.direction = direction; + return hasMoved && distance > options.threshold && direction & options.direction; + }, - if (distance < 2 * nodeDistance) { - if (distance < 0.5 * nodeDistance) { - repulsingForce = 1; - } else { - repulsingForce = a * distance + b; // linear approx of 1 / (1 + Math.exp((distance / nodeDistance - 1) * steepness)) - } - repulsingForce = repulsingForce / distance; + attrTest: function(input) { + return AttrRecognizer.prototype.attrTest.call(this, input) && + (this.state & STATE_BEGAN || (!(this.state & STATE_BEGAN) && this.directionTest(input))); + }, - fx = dx * repulsingForce; - fy = dy * repulsingForce; + emit: function(input) { + this.pX = input.deltaX; + this.pY = input.deltaY; - forces[node1.id].x -= fx; - forces[node1.id].y -= fy; - forces[node2.id].x += fx; - forces[node2.id].y += fy; - } - } + var direction = directionStr(input.direction); + if (direction) { + this.manager.emit(this.options.event + direction, input); } - }, - writable: true, - configurable: true - } - }); - return RepulsionSolver; - })(); - - exports.RepulsionSolver = RepulsionSolver; - Object.defineProperty(exports, "__esModule", { - value: true + this._super.emit.call(this, input); + } }); -/***/ }, -/* 69 */ -/***/ function(module, exports, __webpack_require__) { + /** + * Pinch + * Recognized when two or more pointers are moving toward (zoom-in) or away from each other (zoom-out). + * @constructor + * @extends AttrRecognizer + */ + function PinchRecognizer() { + AttrRecognizer.apply(this, arguments); + } - "use strict"; + inherit(PinchRecognizer, AttrRecognizer, { + /** + * @namespace + * @memberof PinchRecognizer + */ + defaults: { + event: 'pinch', + threshold: 0, + pointers: 2 + }, - var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; + getTouchAction: function() { + return [TOUCH_ACTION_NONE]; + }, - var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; + attrTest: function(input) { + return this._super.attrTest.call(this, input) && + (Math.abs(input.scale - 1) > this.options.threshold || this.state & STATE_BEGAN); + }, + + emit: function(input) { + this._super.emit.call(this, input); + if (input.scale !== 1) { + var inOut = input.scale < 1 ? 'in' : 'out'; + this.manager.emit(this.options.event + inOut, input); + } + } + }); /** - * Created by Alex on 2/23/2015. + * Press + * Recognized when the pointer is down for x ms without any movement. + * @constructor + * @extends Recognizer */ + function PressRecognizer() { + Recognizer.apply(this, arguments); - var HierarchicalRepulsionSolver = (function () { - function HierarchicalRepulsionSolver(body, physicsBody, options) { - _classCallCheck(this, HierarchicalRepulsionSolver); - - this.body = body; - this.physicsBody = physicsBody; - this.setOptions(options); - } + this._timer = null; + this._input = null; + } - _prototypeProperties(HierarchicalRepulsionSolver, null, { - setOptions: { - value: function setOptions(options) { - this.options = options; - }, - writable: true, - configurable: true + inherit(PressRecognizer, Recognizer, { + /** + * @namespace + * @memberof PressRecognizer + */ + defaults: { + event: 'press', + pointers: 1, + time: 500, // minimal time of the pointer to be pressed + threshold: 5 // a minimal movement is ok, but keep it low }, - solve: { - - /** - * Calculate the forces the nodes apply on each other based on a repulsion field. - * This field is linearly approximated. - * - * @private - */ - value: function solve() { - var dx, dy, distance, fx, fy, repulsingForce, node1, node2, i, j; - - var nodes = this.physicsBody.calculationNodes; - var nodeIndices = this.physicsBody.calculationNodeIndices; - var forces = this.physicsBody.forces; - // repulsing forces between nodes - var nodeDistance = this.options.nodeDistance; + getTouchAction: function() { + return [TOUCH_ACTION_AUTO]; + }, - // 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]]; + process: function(input) { + var options = this.options; + var validPointers = input.pointers.length === options.pointers; + var validMovement = input.distance < options.threshold; + var validTime = input.deltaTime > options.time; + + this._input = input; + + // we only allow little movement + // and we've reached an end event, so a tap is possible + if (!validMovement || !validPointers || (input.eventType & (INPUT_END | INPUT_CANCEL) && !validTime)) { + this.reset(); + } else if (input.eventType & INPUT_START) { + this.reset(); + this._timer = setTimeoutContext(function() { + this.state = STATE_RECOGNIZED; + this.tryEmit(); + }, options.time, this); + } else if (input.eventType & INPUT_END) { + return STATE_RECOGNIZED; + } + return STATE_FAILED; + }, - // 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); + reset: function() { + clearTimeout(this._timer); + }, - 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; + emit: function(input) { + if (this.state !== STATE_RECOGNIZED) { + return; + } - forces[node1.id].x -= fx; - forces[node1.id].y -= fy; - forces[node2.id].x += fx; - forces[node2.id].y += fy; - } - } + if (input && (input.eventType & INPUT_END)) { + this.manager.emit(this.options.event + 'up', input); + } else { + this._input.timeStamp = now(); + this.manager.emit(this.options.event, this._input); } - }, - writable: true, - configurable: true } - }); - - return HierarchicalRepulsionSolver; - })(); - - exports.HierarchicalRepulsionSolver = HierarchicalRepulsionSolver; - Object.defineProperty(exports, "__esModule", { - value: true }); -/***/ }, -/* 70 */ -/***/ function(module, exports, __webpack_require__) { - - "use strict"; - - var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; - - var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; - /** - * Created by Alex on 2/23/2015. + * Rotate + * Recognized when two or more pointer are moving in a circular motion. + * @constructor + * @extends AttrRecognizer */ + function RotateRecognizer() { + AttrRecognizer.apply(this, arguments); + } - var SpringSolver = (function () { - function SpringSolver(body, physicsBody, options) { - _classCallCheck(this, SpringSolver); - - this.body = body; - this.physicsBody = physicsBody; - this.setOptions(options); - } + inherit(RotateRecognizer, AttrRecognizer, { + /** + * @namespace + * @memberof RotateRecognizer + */ + defaults: { + event: 'rotate', + threshold: 0, + pointers: 2 + }, - _prototypeProperties(SpringSolver, null, { - setOptions: { - value: function setOptions(options) { - this.options = options; - }, - writable: true, - configurable: true + getTouchAction: function() { + return [TOUCH_ACTION_NONE]; }, - solve: { - /** - * This function calculates the springforces on the nodes, accounting for the support nodes. - * - * @private - */ - value: function solve() { - var edgeLength, edge, edgeId; - var edges = this.body.edges; + attrTest: function(input) { + return this._super.attrTest.call(this, input) && + (Math.abs(input.rotation) > this.options.threshold || this.state & STATE_BEGAN); + } + }); - // forces caused by the edges, modelled as springs - for (edgeId in edges) { - if (edges.hasOwnProperty(edgeId)) { - edge = edges[edgeId]; - if (edge.connected === true) { - // only calculate forces if nodes are in the same sector - if (this.body.nodes[edge.toId] !== undefined && this.body.nodes[edge.fromId] !== undefined) { - edgeLength = edge.properties.length === undefined ? this.options.springLength : edge.properties.length; - if (edge.via != null) { - var node1 = edge.to; - var node2 = edge.via; - var node3 = edge.from; + /** + * Swipe + * Recognized when the pointer is moving fast (velocity), with enough distance in the allowed direction. + * @constructor + * @extends AttrRecognizer + */ + function SwipeRecognizer() { + AttrRecognizer.apply(this, arguments); + } - this._calculateSpringForce(node1, node2, 0.5 * edgeLength); - this._calculateSpringForce(node2, node3, 0.5 * edgeLength); - } else { - this._calculateSpringForce(edge.from, edge.to, edgeLength); - } - } - } - } - } - }, - writable: true, - configurable: true + inherit(SwipeRecognizer, AttrRecognizer, { + /** + * @namespace + * @memberof SwipeRecognizer + */ + defaults: { + event: 'swipe', + threshold: 10, + velocity: 0.65, + direction: DIRECTION_HORIZONTAL | DIRECTION_VERTICAL, + pointers: 1 }, - _calculateSpringForce: { + getTouchAction: function() { + return PanRecognizer.prototype.getTouchAction.call(this); + }, - /** - * This is the code actually performing the calculation for the function above. - * - * @param node1 - * @param node2 - * @param edgeLength - * @private - */ - value: function _calculateSpringForce(node1, node2, edgeLength) { - var dx, dy, fx, fy, springForce, distance; + attrTest: function(input) { + var direction = this.options.direction; + var velocity; - dx = node1.x - node2.x; - dy = node1.y - node2.y; - distance = Math.sqrt(dx * dx + dy * dy); - distance = distance == 0 ? 0.01 : distance; + if (direction & (DIRECTION_HORIZONTAL | DIRECTION_VERTICAL)) { + velocity = input.velocity; + } else if (direction & DIRECTION_HORIZONTAL) { + velocity = input.velocityX; + } else if (direction & DIRECTION_VERTICAL) { + velocity = input.velocityY; + } - // the 1/distance is so the fx and fy can be calculated without sine or cosine. - springForce = this.options.springConstant * (edgeLength - distance) / distance; + return this._super.attrTest.call(this, input) && + direction & input.direction && + input.distance > this.options.threshold && + abs(velocity) > this.options.velocity && input.eventType & INPUT_END; + }, - fx = dx * springForce; - fy = dy * springForce; + emit: function(input) { + var direction = directionStr(input.direction); + if (direction) { + this.manager.emit(this.options.event + direction, input); + } - this.physicsBody.forces[node1.id].x += fx; - this.physicsBody.forces[node1.id].y += fy; - this.physicsBody.forces[node2.id].x -= fx; - this.physicsBody.forces[node2.id].y -= fy; - }, - writable: true, - configurable: true + this.manager.emit(this.options.event, input); } - }); - - return SpringSolver; - })(); - - exports.SpringSolver = SpringSolver; - Object.defineProperty(exports, "__esModule", { - value: true }); -/***/ }, -/* 71 */ -/***/ function(module, exports, __webpack_require__) { - - "use strict"; - - var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; - - var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; - /** - * Created by Alex on 2/25/2015. + * A tap is ecognized when the pointer is doing a small tap/click. Multiple taps are recognized if they occur + * between the given interval and position. The delay option can be used to recognize multi-taps without firing + * a single tap. + * + * The eventData from the emitted event contains the property `tapCount`, which contains the amount of + * multi-taps being recognized. + * @constructor + * @extends Recognizer */ + function TapRecognizer() { + Recognizer.apply(this, arguments); - var HierarchicalSpringSolver = (function () { - function HierarchicalSpringSolver(body, physicsBody, options) { - _classCallCheck(this, HierarchicalSpringSolver); + // previous time and center, + // used for tap counting + this.pTime = false; + this.pCenter = false; - this.body = body; - this.physicsBody = physicsBody; - this.setOptions(options); - } + this._timer = null; + this._input = null; + this.count = 0; + } - _prototypeProperties(HierarchicalSpringSolver, null, { - setOptions: { - value: function setOptions(options) { - this.options = options; - }, - writable: true, - configurable: true + inherit(TapRecognizer, Recognizer, { + /** + * @namespace + * @memberof PinchRecognizer + */ + defaults: { + event: 'tap', + pointers: 1, + taps: 1, + interval: 300, // max time between the multi-tap taps + time: 250, // max time of the pointer to be down (like finger on the screen) + threshold: 2, // a minimal movement is ok, but keep it low + posThreshold: 10 // a multi-tap can be a bit off the initial position }, - solve: { - /** - * This function calculates the springforces on the nodes, accounting for the support nodes. - * - * @private - */ - value: function solve() { - var edgeLength, edge, edgeId; - var dx, dy, fx, fy, springForce, distance; - var edges = this.body.edges; + getTouchAction: function() { + return [TOUCH_ACTION_MANIPULATION]; + }, - var nodeIndices = this.physicsBody.calculationNodeIndices; - var forces = this.physicsBody.forces; + process: function(input) { + var options = this.options; - // initialize the spring force counters - for (var i = 0; i < nodeIndices.length; i++) { - var nodeId = nodeIndices[i]; - forces[nodeId].springFx = 0; - forces[nodeId].springFy = 0; - } + var validPointers = input.pointers.length === options.pointers; + var validMovement = input.distance < options.threshold; + var validTouchTime = input.deltaTime < options.time; + this.reset(); - // forces caused by the edges, modelled as springs - for (edgeId in edges) { - if (edges.hasOwnProperty(edgeId)) { - edge = edges[edgeId]; - if (edge.connected === true) { - edgeLength = edge.properties.length === undefined ? this.options.springLength : edge.properties.length; + if ((input.eventType & INPUT_START) && (this.count === 0)) { + return this.failTimeout(); + } - dx = edge.from.x - edge.to.x; - dy = edge.from.y - edge.to.y; - distance = Math.sqrt(dx * dx + dy * dy); - distance = distance == 0 ? 0.01 : distance; + // we only allow little movement + // and we've reached an end event, so a tap is possible + if (validMovement && validTouchTime && validPointers) { + if (input.eventType != INPUT_END) { + return this.failTimeout(); + } - // the 1/distance is so the fx and fy can be calculated without sine or cosine. - springForce = this.options.springConstant * (edgeLength - distance) / distance; + var validInterval = this.pTime ? (input.timeStamp - this.pTime < options.interval) : true; + var validMultiTap = !this.pCenter || getDistance(this.pCenter, input.center) < options.posThreshold; - fx = dx * springForce; - fy = dy * springForce; + this.pTime = input.timeStamp; + this.pCenter = input.center; - if (edge.to.level != edge.from.level) { - forces[edge.toId].springFx -= fx; - forces[edge.toId].springFy -= fy; - forces[edge.fromId].springFx += fx; - forces[edge.fromId].springFy += fy; - } else { - var factor = 0.5; - forces[edge.toId].x -= factor * fx; - forces[edge.toId].y -= factor * fy; - forces[edge.fromId].x += factor * fx; - forces[edge.fromId].y += factor * fy; - } + if (!validMultiTap || !validInterval) { + this.count = 1; + } else { + this.count += 1; } - } - } - // normalize spring forces - var springForce = 1; - var springFx, springFy; - for (var i = 0; i < nodeIndices.length; i++) { - var nodeId = nodeIndices[i]; - springFx = Math.min(springForce, Math.max(-springForce, forces[nodeId].springFx)); - springFy = Math.min(springForce, Math.max(-springForce, forces[nodeId].springFy)); + this._input = input; - forces[nodeId].x += springFx; - forces[nodeId].y += springFy; + // if tap count matches we have recognized it, + // else it has began recognizing... + var tapCount = this.count % options.taps; + if (tapCount === 0) { + // no failing requirements, immediately trigger the tap event + // or wait as long as the multitap interval to trigger + if (!this.hasRequireFailures()) { + return STATE_RECOGNIZED; + } else { + this._timer = setTimeoutContext(function() { + this.state = STATE_RECOGNIZED; + this.tryEmit(); + }, options.interval, this); + return STATE_BEGAN; + } + } } + return STATE_FAILED; + }, - // retain energy balance - var totalFx = 0; - var totalFy = 0; - for (var i = 0; i < nodeIndices.length; i++) { - var nodeId = nodeIndices[i]; - totalFx += forces[nodeId].x; - totalFy += forces[nodeId].y; - } - var correctionFx = totalFx / nodeIndices.length; - var correctionFy = totalFy / nodeIndices.length; + failTimeout: function() { + this._timer = setTimeoutContext(function() { + this.state = STATE_FAILED; + }, this.options.interval, this); + return STATE_FAILED; + }, - for (var i = 0; i < nodeIndices.length; i++) { - var nodeId = nodeIndices[i]; - forces[nodeId].x -= correctionFx; - forces[nodeId].y -= correctionFy; + reset: function() { + clearTimeout(this._timer); + }, + + emit: function() { + if (this.state == STATE_RECOGNIZED ) { + this._input.tapCount = this.count; + this.manager.emit(this.options.event, this._input); } - }, - writable: true, - configurable: true } - }); - - return HierarchicalSpringSolver; - })(); - - exports.HierarchicalSpringSolver = HierarchicalSpringSolver; - Object.defineProperty(exports, "__esModule", { - value: true }); -/***/ }, -/* 72 */ -/***/ function(module, exports, __webpack_require__) { - - "use strict"; - - var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; + /** + * Simple way to create an manager with a default set of recognizers. + * @param {HTMLElement} element + * @param {Object} [options] + * @constructor + */ + function Hammer(element, options) { + options = options || {}; + options.recognizers = ifUndefined(options.recognizers, Hammer.defaults.preset); + return new Manager(element, options); + } - var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; + /** + * @const {string} + */ + Hammer.VERSION = '2.0.4'; /** - * Created by Alex on 2/23/2015. + * default settings + * @namespace */ + Hammer.defaults = { + /** + * set if DOM events are being triggered. + * But this is slower and unused by simple implementations, so disabled by default. + * @type {Boolean} + * @default false + */ + domEvents: false, - var CentralGravitySolver = (function () { - function CentralGravitySolver(body, physicsBody, options) { - _classCallCheck(this, CentralGravitySolver); + /** + * The value for the touchAction property/fallback. + * When set to `compute` it will magically set the correct value based on the added recognizers. + * @type {String} + * @default compute + */ + touchAction: TOUCH_ACTION_COMPUTE, - this.body = body; - this.physicsBody = physicsBody; - this.setOptions(options); - } + /** + * @type {Boolean} + * @default true + */ + enable: true, - _prototypeProperties(CentralGravitySolver, null, { - setOptions: { - value: function setOptions(options) { - this.options = options; - }, - writable: true, - configurable: true - }, - solve: { - value: function solve() { - var dx, dy, distance, node, i; - var nodes = this.physicsBody.calculationNodes; - var nodeIndices = this.physicsBody.calculationNodeIndices; - var forces = this.physicsBody.forces; + /** + * EXPERIMENTAL FEATURE -- can be removed/changed + * Change the parent input target element. + * If Null, then it is being set the to main element. + * @type {Null|EventTarget} + * @default null + */ + inputTarget: null, - var gravity = this.options.centralGravity; - var gravityForce = 0; + /** + * force an input class + * @type {Null|Function} + * @default null + */ + inputClass: null, - for (i = 0; i < nodeIndices.length; i++) { - var nodeId = nodeIndices[i]; - node = nodes[nodeId]; - dx = -node.x; - dy = -node.y; - distance = Math.sqrt(dx * dx + dy * dy); + /** + * Default recognizer setup when calling `Hammer()` + * When creating a new Manager these will be skipped. + * @type {Array} + */ + preset: [ + // RecognizerClass, options, [recognizeWith, ...], [requireFailure, ...] + [RotateRecognizer, { enable: false }], + [PinchRecognizer, { enable: false }, ['rotate']], + [SwipeRecognizer,{ direction: DIRECTION_HORIZONTAL }], + [PanRecognizer, { direction: DIRECTION_HORIZONTAL }, ['swipe']], + [TapRecognizer], + [TapRecognizer, { event: 'doubletap', taps: 2 }, ['tap']], + [PressRecognizer] + ], - gravityForce = distance == 0 ? 0 : gravity / distance; - forces[nodeId].x = dx * gravityForce; - forces[nodeId].y = dy * gravityForce; - } - }, - writable: true, - configurable: true - } - }); + /** + * Some CSS properties can be used to improve the working of Hammer. + * Add them to this method and they will be set when creating a new Manager. + * @namespace + */ + cssProps: { + /** + * Disables text selection to improve the dragging gesture. Mainly for desktop browsers. + * @type {String} + * @default 'none' + */ + userSelect: 'none', - return CentralGravitySolver; - })(); + /** + * Disable the Windows Phone grippers when pressing an element. + * @type {String} + * @default 'none' + */ + touchSelect: 'none', - exports.CentralGravitySolver = CentralGravitySolver; - Object.defineProperty(exports, "__esModule", { - value: true - }); + /** + * 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. + * @type {String} + * @default 'none' + */ + touchCallout: 'none', -/***/ }, -/* 73 */ -/***/ function(module, exports, __webpack_require__) { + /** + * Specifies whether zooming is enabled. Used by IE10> + * @type {String} + * @default 'none' + */ + contentZooming: 'none', - "use strict"; + /** + * Specifies that an entire element should be draggable instead of its contents. Mainly for desktop browsers. + * @type {String} + * @default 'none' + */ + userDrag: 'none', - var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; + /** + * Overrides the highlight color shown when the user taps a link or a JavaScript + * clickable element in iOS. This property obeys the alpha value, if specified. + * @type {String} + * @default 'rgba(0,0,0,0)' + */ + tapHighlightColor: 'rgba(0,0,0,0)' + } + }; - var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; + var STOP = 1; + var FORCED_STOP = 2; /** - * Created by Alex on 24-Feb-15. + * Manager + * @param {HTMLElement} element + * @param {Object} [options] + * @constructor */ + function Manager(element, options) { + options = options || {}; - var util = __webpack_require__(1); + this.options = merge(options, Hammer.defaults); + this.options.inputTarget = this.options.inputTarget || element; - var ClusterEngine = (function () { - function ClusterEngine(body) { - _classCallCheck(this, ClusterEngine); + this.handlers = {}; + this.session = {}; + this.recognizers = []; - this.body = body; - this.clusteredNodes = {}; - } + this.element = element; + this.input = createInputInstance(this); + this.touchAction = new TouchAction(this, this.options.touchAction); - _prototypeProperties(ClusterEngine, null, { - clusterByConnectionCount: { + toggleCssProps(this, true); + each(options.recognizers, function(item) { + var recognizer = this.add(new (item[0])(item[1])); + item[2] && recognizer.recognizeWith(item[2]); + item[3] && recognizer.requireFailure(item[3]); + }, this); + } - /** - * - * @param hubsize - * @param options - */ - value: function clusterByConnectionCount(hubsize, options) { - if (hubsize === undefined) { - hubsize = this._getHubSize(); - } else if (tyepof(hubsize) == "object") { - options = this._checkOptions(hubsize); - hubsize = this._getHubSize(); - } + Manager.prototype = { + /** + * set options + * @param {Object} options + * @returns {Manager} + */ + set: function(options) { + extend(this.options, options); - var nodesToCluster = []; - for (var i = 0; i < this.body.nodeIndices.length; i++) { - var node = this.body.nodes[this.body.nodeIndices[i]]; - if (node.edges.length >= hubsize) { - nodesToCluster.push(node.id); - } + // Options that need a little more setup + if (options.touchAction) { + this.touchAction.update(); } - - for (var i = 0; i < nodesToCluster.length; i++) { - var node = this.body.nodes[nodesToCluster[i]]; - this.clusterByConnection(node, options, {}, {}, true); + if (options.inputTarget) { + // Clean up existing event listeners and reinitialize + this.input.destroy(); + this.input.target = options.inputTarget; + this.input.init(); } - this.body.emitter.emit("_dataChanged"); - }, - writable: true, - configurable: true + return this; }, - clusterByNodeData: { + /** + * stop recognizing for this session. + * This session will be discarded, when a new [input]start event is fired. + * When forced, the recognizer cycle is stopped immediately. + * @param {Boolean} [force] + */ + stop: function(force) { + this.session.stopped = force ? FORCED_STOP : STOP; + }, - /** - * loop over all nodes, check if they adhere to the condition and cluster if needed. - * @param options - * @param doNotUpdateCalculationNodes - */ - value: function clusterByNodeData() { - var options = arguments[0] === undefined ? {} : arguments[0]; - var doNotUpdateCalculationNodes = arguments[1] === undefined ? false : arguments[1]; - if (options.joinCondition === undefined) { - throw new Error("Cannot call clusterByNodeData without a joinCondition function in the options."); + /** + * run the recognizers! + * called by the inputHandler function on every movement of the pointers (touches) + * it walks through all the recognizers and tries to detect the gesture that is being made + * @param {Object} inputData + */ + recognize: function(inputData) { + var session = this.session; + if (session.stopped) { + return; } - // check if the options object is fine, append if needed - options = this._checkOptions(options); + // run the touch-action polyfill + this.touchAction.preventDefaults(inputData); - var childNodesObj = {}; - var childEdgesObj = {}; + var recognizer; + var recognizers = this.recognizers; - // collect the nodes that will be in the cluster - for (var i = 0; i < this.body.nodeIndices.length; i++) { - var nodeId = this.body.nodeIndices[i]; - var clonedOptions = this._cloneOptions(nodeId); - if (options.joinCondition(clonedOptions) == true) { - childNodesObj[nodeId] = this.body.nodes[nodeId]; - } - } + // this holds the recognizer that is being recognized. + // so the recognizer's state needs to be BEGAN, CHANGED, ENDED or RECOGNIZED + // if no recognizer is detecting a thing, it is set to `null` + var curRecognizer = session.curRecognizer; - this._cluster(childNodesObj, childEdgesObj, options, doNotUpdateCalculationNodes); - }, - writable: true, - configurable: true - }, - clusterOutliers: { + // reset when the last recognizer is recognized + // or when we're in a new session + if (!curRecognizer || (curRecognizer && curRecognizer.state & STATE_RECOGNIZED)) { + curRecognizer = session.curRecognizer = null; + } + var i = 0; + while (i < recognizers.length) { + recognizer = recognizers[i]; - /** - * Cluster all nodes in the network that have only 1 edge - * @param options - * @param doNotUpdateCalculationNodes - */ - value: function clusterOutliers(options, doNotUpdateCalculationNodes) { - options = this._checkOptions(options); - var clusters = []; + // find out if we are allowed try to recognize the input for this one. + // 1. allow if the session is NOT forced stopped (see the .stop() method) + // 2. allow if we still haven't recognized a gesture in this session, or the this recognizer is the one + // that is being recognized. + // 3. allow if the recognizer is allowed to run simultaneous with the current recognized recognizer. + // this can be setup with the `recognizeWith()` method on the recognizer. + if (session.stopped !== FORCED_STOP && ( // 1 + !curRecognizer || recognizer == curRecognizer || // 2 + recognizer.canRecognizeWith(curRecognizer))) { // 3 + recognizer.recognize(inputData); + } else { + recognizer.reset(); + } - // collect the nodes that will be in the cluster - for (var i = 0; i < this.body.nodeIndices.length; i++) { - var childNodesObj = {}; - var childEdgesObj = {}; - var nodeId = this.body.nodeIndices[i]; - if (this.body.nodes[nodeId].edges.length == 1) { - var edge = this.body.nodes[nodeId].edges[0]; - var childNodeId = this._getConnectedId(edge, nodeId); - if (childNodeId != nodeId) { - if (options.joinCondition === undefined) { - childNodesObj[nodeId] = this.body.nodes[nodeId]; - childNodesObj[childNodeId] = this.body.nodes[childNodeId]; - } else { - var clonedOptions = this._cloneOptions(nodeId); - if (options.joinCondition(clonedOptions) == true) { - childNodesObj[nodeId] = this.body.nodes[nodeId]; - } - clonedOptions = this._cloneOptions(childNodeId); - if (options.joinCondition(clonedOptions) == true) { - childNodesObj[childNodeId] = this.body.nodes[childNodeId]; - } - } - clusters.push({ nodes: childNodesObj, edges: childEdgesObj }); + // if the recognizer has been recognizing the input as a valid gesture, we want to store this one as the + // current active recognizer. but only if we don't already have an active recognizer + if (!curRecognizer && recognizer.state & (STATE_BEGAN | STATE_CHANGED | STATE_ENDED)) { + curRecognizer = session.curRecognizer = recognizer; } - } + i++; } + }, - for (var i = 0; i < clusters.length; i++) { - this._cluster(clusters[i].nodes, clusters[i].edges, options, true); + /** + * get a recognizer by its event name. + * @param {Recognizer|String} recognizer + * @returns {Recognizer|Null} + */ + get: function(recognizer) { + if (recognizer instanceof Recognizer) { + return recognizer; } - if (doNotUpdateCalculationNodes !== true) { - this.body.emitter.emit("_dataChanged"); + var recognizers = this.recognizers; + for (var i = 0; i < recognizers.length; i++) { + if (recognizers[i].options.event == recognizer) { + return recognizers[i]; + } } - }, - writable: true, - configurable: true + return null; }, - clusterByConnection: { - /** - * - * @param nodeId - * @param options - * @param doNotUpdateCalculationNodes - */ - value: function clusterByConnection(nodeId, options, doNotUpdateCalculationNodes) { - // kill conditions - if (nodeId === undefined) { - throw new Error("No nodeId supplied to clusterByConnection!"); - } - if (this.body.nodes[nodeId] === undefined) { - throw new Error("The nodeId given to clusterByConnection does not exist!"); + /** + * add a recognizer to the manager + * existing recognizers with the same event name will be removed + * @param {Recognizer} recognizer + * @returns {Recognizer|Manager} + */ + add: function(recognizer) { + if (invokeArrayArg(recognizer, 'add', this)) { + return this; } - var node = this.body.nodes[nodeId]; - options = this._checkOptions(options, node); - if (options.clusterNodeProperties.x === undefined) { - options.clusterNodeProperties.x = node.x;options.clusterNodeProperties.allowedToMoveX = !node.xFixed; - } - if (options.clusterNodeProperties.y === undefined) { - options.clusterNodeProperties.y = node.y;options.clusterNodeProperties.allowedToMoveY = !node.yFixed; + // remove existing + var existing = this.get(recognizer.options.event); + if (existing) { + this.remove(existing); } - var childNodesObj = {}; - var childEdgesObj = {}; - var parentNodeId = node.id; - var parentClonedOptions = this._cloneOptions(parentNodeId); - childNodesObj[parentNodeId] = node; - - // collect the nodes that will be in the cluster - for (var i = 0; i < node.edges.length; i++) { - var edge = node.edges[i]; - var childNodeId = this._getConnectedId(edge, parentNodeId); - - if (childNodeId !== parentNodeId) { - if (options.joinCondition === undefined) { - childEdgesObj[edge.id] = edge; - childNodesObj[childNodeId] = this.body.nodes[childNodeId]; - } else { - // clone the options and insert some additional parameters that could be interesting. - var childClonedOptions = this._cloneOptions(childNodeId); - if (options.joinCondition(parentClonedOptions, childClonedOptions) == true) { - childEdgesObj[edge.id] = edge; - childNodesObj[childNodeId] = this.body.nodes[childNodeId]; - } - } - } else { - childEdgesObj[edge.id] = edge; - } - } + this.recognizers.push(recognizer); + recognizer.manager = this; - this._cluster(childNodesObj, childEdgesObj, options, doNotUpdateCalculationNodes); - }, - writable: true, - configurable: true + this.touchAction.update(); + return recognizer; }, - _cloneOptions: { - - /** - * This returns a clone of the options or properties of the edge or node to be used for construction of new edges or check functions for new nodes. - * @param objId - * @param type - * @returns {{}} - * @private - */ - value: function _cloneOptions(objId, type) { - var clonedOptions = {}; - if (type === undefined || type == "node") { - util.deepExtend(clonedOptions, this.body.nodes[objId].options, true); - util.deepExtend(clonedOptions, this.body.nodes[objId].properties, true); - clonedOptions.amountOfConnections = this.body.nodes[objId].edges.length; - } else { - util.deepExtend(clonedOptions, this.body.edges[objId].properties, true); + /** + * remove a recognizer by name or instance + * @param {Recognizer|String} recognizer + * @returns {Manager} + */ + remove: function(recognizer) { + if (invokeArrayArg(recognizer, 'remove', this)) { + return this; } - return clonedOptions; - }, - writable: true, - configurable: true - }, - _createClusterEdges: { - - - /** - * This function creates the edges that will be attached to the cluster. - * - * @param childNodesObj - * @param childEdgesObj - * @param newEdges - * @param options - * @private - */ - value: function _createClusterEdges(childNodesObj, childEdgesObj, newEdges, options) { - var edge, childNodeId, childNode; - - var childKeys = Object.keys(childNodesObj); - for (var i = 0; i < childKeys.length; i++) { - childNodeId = childKeys[i]; - childNode = childNodesObj[childNodeId]; - - // mark all edges for removal from global and construct new edges from the cluster to others - for (var j = 0; j < childNode.edges.length; j++) { - edge = childNode.edges[j]; - childEdgesObj[edge.id] = edge; - var otherNodeId = edge.toId; - var otherOnTo = true; - if (edge.toId != childNodeId) { - otherNodeId = edge.toId; - otherOnTo = true; - } else if (edge.fromId != childNodeId) { - otherNodeId = edge.fromId; - otherOnTo = false; - } + var recognizers = this.recognizers; + recognizer = this.get(recognizer); + recognizers.splice(inArray(recognizers, recognizer), 1); - if (childNodesObj[otherNodeId] === undefined) { - var clonedOptions = this._cloneOptions(edge.id, "edge"); - util.deepExtend(clonedOptions, options.clusterEdgeProperties); - if (otherOnTo === true) { - clonedOptions.from = options.clusterNodeProperties.id; - clonedOptions.to = otherNodeId; - } else { - clonedOptions.from = otherNodeId; - clonedOptions.to = options.clusterNodeProperties.id; - } - clonedOptions.id = "clusterEdge:" + util.randomUUID(); - newEdges.push(this.body.functions.createEdge(clonedOptions)); - } - } - } - }, - writable: true, - configurable: true + this.touchAction.update(); + return this; }, - _checkOptions: { - - - /** - * This function checks the options that can be supplied to the different cluster functions - * for certain fields and inserts defaults if needed - * @param options - * @returns {*} - * @private - */ - value: function _checkOptions() { - var options = arguments[0] === undefined ? {} : arguments[0]; - if (options.clusterEdgeProperties === undefined) { - options.clusterEdgeProperties = {}; - } - if (options.clusterNodeProperties === undefined) { - options.clusterNodeProperties = {}; - } - return options; - }, - writable: true, - configurable: true + /** + * bind event + * @param {String} events + * @param {Function} handler + * @returns {EventEmitter} this + */ + on: function(events, handler) { + var handlers = this.handlers; + each(splitStr(events), function(event) { + handlers[event] = handlers[event] || []; + handlers[event].push(handler); + }); + return this; }, - _cluster: { - /** - * - * @param {Object} childNodesObj | object with node objects, id as keys, same as childNodes except it also contains a source node - * @param {Object} childEdgesObj | object with edge objects, id as keys - * @param {Array} options | object with {clusterNodeProperties, clusterEdgeProperties, processProperties} - * @param {Boolean} doNotUpdateCalculationNodes | when true, do not wrap up - * @private - */ - value: function _cluster(childNodesObj, childEdgesObj, options) { - var doNotUpdateCalculationNodes = arguments[3] === undefined ? false : arguments[3]; - // kill condition: no children so cant cluster - if (Object.keys(childNodesObj).length == 0) { - return; - } + /** + * unbind event, leave emit blank to remove all handlers + * @param {String} events + * @param {Function} [handler] + * @returns {EventEmitter} this + */ + off: function(events, handler) { + var handlers = this.handlers; + each(splitStr(events), function(event) { + if (!handler) { + delete handlers[event]; + } else { + handlers[event].splice(inArray(handlers[event], handler), 1); + } + }); + return this; + }, - // check if we have an unique id; - if (options.clusterNodeProperties.id === undefined) { - options.clusterNodeProperties.id = "cluster:" + util.randomUUID(); + /** + * emit event to the listeners + * @param {String} event + * @param {Object} data + */ + emit: function(event, data) { + // we also want to trigger dom events + if (this.options.domEvents) { + triggerDomEvent(event, data); } - var clusterId = options.clusterNodeProperties.id; - - // create the new edges that will connect to the cluster - var newEdges = []; - this._createClusterEdges(childNodesObj, childEdgesObj, newEdges, options); - - // construct the clusterNodeProperties - var clusterNodeProperties = options.clusterNodeProperties; - if (options.processProperties !== undefined) { - // get the childNode options - var childNodesOptions = []; - for (var nodeId in childNodesObj) { - var clonedOptions = this._cloneOptions(nodeId); - childNodesOptions.push(clonedOptions); - } - - // get clusterproperties based on childNodes - var childEdgesOptions = []; - for (var edgeId in childEdgesObj) { - var clonedOptions = this._cloneOptions(edgeId, "edge"); - childEdgesOptions.push(clonedOptions); - } - clusterNodeProperties = options.processProperties(clusterNodeProperties, childNodesOptions, childEdgesOptions); - if (!clusterNodeProperties) { - throw new Error("The processClusterProperties function does not return properties!"); - } - } - if (clusterNodeProperties.label === undefined) { - clusterNodeProperties.label = "cluster"; + // no handlers, so skip it all + var handlers = this.handlers[event] && this.handlers[event].slice(); + if (!handlers || !handlers.length) { + return; } + data.type = event; + data.preventDefault = function() { + data.srcEvent.preventDefault(); + }; - // give the clusterNode a postion if it does not have one. - var pos = undefined; - if (clusterNodeProperties.x === undefined) { - pos = this._getClusterPosition(childNodesObj); - clusterNodeProperties.x = pos.x; - clusterNodeProperties.allowedToMoveX = true; - } - if (clusterNodeProperties.x === undefined) { - if (pos === undefined) { - pos = this._getClusterPosition(childNodesObj); - } - clusterNodeProperties.y = pos.y; - clusterNodeProperties.allowedToMoveY = true; + var i = 0; + while (i < handlers.length) { + handlers[i](data); + i++; } + }, + /** + * destroy the manager and unbinds all events + * it doesn't unbind dom events, that is the user own responsibility + */ + destroy: function() { + this.element && toggleCssProps(this, false); - // force the ID to remain the same - clusterNodeProperties.id = clusterId; - - - // create the clusterNode - var clusterNode = this.body.functions.createNode(clusterNodeProperties); - clusterNode.isCluster = true; - clusterNode.containedNodes = childNodesObj; - clusterNode.containedEdges = childEdgesObj; + this.handlers = {}; + this.session = {}; + this.input.destroy(); + this.element = null; + } + }; + /** + * add/remove the css properties as defined in manager.options.cssProps + * @param {Manager} manager + * @param {Boolean} add + */ + function toggleCssProps(manager, add) { + var element = manager.element; + each(manager.options.cssProps, function(value, name) { + element.style[prefixed(element.style, name)] = add ? value : ''; + }); + } - // delete contained edges from global - for (var edgeId in childEdgesObj) { - if (childEdgesObj.hasOwnProperty(edgeId)) { - if (this.body.edges[edgeId] !== undefined) { - if (this.body.edges[edgeId].via !== null) { - var viaId = this.body.edges[edgeId].via.id; - if (viaId) { - this.body.edges[edgeId].via = null; - delete this.body.supportNodes[viaId]; - } - } - this.body.edges[edgeId].disconnect(); - delete this.body.edges[edgeId]; - } - } - } + /** + * trigger dom event + * @param {String} event + * @param {Object} data + */ + function triggerDomEvent(event, data) { + var gestureEvent = document.createEvent('Event'); + gestureEvent.initEvent(event, true, true); + gestureEvent.gesture = data; + data.target.dispatchEvent(gestureEvent); + } + extend(Hammer, { + INPUT_START: INPUT_START, + INPUT_MOVE: INPUT_MOVE, + INPUT_END: INPUT_END, + INPUT_CANCEL: INPUT_CANCEL, + + STATE_POSSIBLE: STATE_POSSIBLE, + STATE_BEGAN: STATE_BEGAN, + STATE_CHANGED: STATE_CHANGED, + STATE_ENDED: STATE_ENDED, + STATE_RECOGNIZED: STATE_RECOGNIZED, + STATE_CANCELLED: STATE_CANCELLED, + STATE_FAILED: STATE_FAILED, + + DIRECTION_NONE: DIRECTION_NONE, + DIRECTION_LEFT: DIRECTION_LEFT, + DIRECTION_RIGHT: DIRECTION_RIGHT, + DIRECTION_UP: DIRECTION_UP, + DIRECTION_DOWN: DIRECTION_DOWN, + DIRECTION_HORIZONTAL: DIRECTION_HORIZONTAL, + DIRECTION_VERTICAL: DIRECTION_VERTICAL, + DIRECTION_ALL: DIRECTION_ALL, + + Manager: Manager, + Input: Input, + TouchAction: TouchAction, + + TouchInput: TouchInput, + MouseInput: MouseInput, + PointerEventInput: PointerEventInput, + TouchMouseInput: TouchMouseInput, + SingleTouchInput: SingleTouchInput, + + Recognizer: Recognizer, + AttrRecognizer: AttrRecognizer, + Tap: TapRecognizer, + Pan: PanRecognizer, + Swipe: SwipeRecognizer, + Pinch: PinchRecognizer, + Rotate: RotateRecognizer, + Press: PressRecognizer, + + on: addEventListeners, + off: removeEventListeners, + each: each, + merge: merge, + extend: extend, + inherit: inherit, + bindFn: bindFn, + prefixed: prefixed + }); - // remove contained nodes from global - for (var nodeId in childNodesObj) { - if (childNodesObj.hasOwnProperty(nodeId)) { - this.clusteredNodes[nodeId] = { clusterId: clusterNodeProperties.id, node: this.body.nodes[nodeId] }; - delete this.body.nodes[nodeId]; - } - } + if ("function" == TYPE_FUNCTION && __webpack_require__(80)) { + !(__WEBPACK_AMD_DEFINE_RESULT__ = function() { + return Hammer; + }.call(exports, __webpack_require__, exports, module), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); + } else if (typeof module != 'undefined' && module.exports) { + module.exports = Hammer; + } else { + window[exportName] = Hammer; + } + })(window, document, 'Hammer'); - // finally put the cluster node into global - this.body.nodes[clusterNodeProperties.id] = clusterNode; +/***/ }, +/* 67 */ +/***/ function(module, exports, __webpack_require__) { - // push new edges to global - for (var i = 0; i < newEdges.length; i++) { - this.body.edges[newEdges[i].id] = newEdges[i]; - this.body.edges[newEdges[i].id].connect(); - } + "use strict"; + var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; - // create bezier nodes for smooth curves if needed - this.body.emitter.emit("_newEdgesCreated"); + var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; + /** + * Created by Alex on 2/23/2015. + */ - // set ID to undefined so no duplicates arise - clusterNodeProperties.id = undefined; + var BarnesHutSolver = (function () { + function BarnesHutSolver(body, physicsBody, options) { + _classCallCheck(this, BarnesHutSolver); + this.body = body; + this.physicsBody = physicsBody; + this.barnesHutTree; + this.setOptions(options); + } - // wrap up - if (doNotUpdateCalculationNodes !== true) { - this.body.emitter.emit("_dataChanged"); - } + _prototypeProperties(BarnesHutSolver, null, { + setOptions: { + value: function setOptions(options) { + this.options = options; }, writable: true, configurable: true }, - isCluster: { + solve: { /** - * Check if a node is a cluster. - * @param nodeId - * @returns {*} - */ - value: function isCluster(nodeId) { - if (this.body.nodes[nodeId] !== undefined) { - return this.body.nodes[nodeId].isCluster; - } else { - console.log("Node does not exist."); - return false; - } - }, - writable: true, - configurable: true - }, - _getClusterPosition: { + * 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 + */ + value: function solve() { + if (this.options.gravitationalConstant != 0) { + var node; + var nodes = this.physicsBody.calculationNodes; + var nodeIndices = this.physicsBody.calculationNodeIndices; + var nodeCount = nodeIndices.length; - /** - * get the position of the cluster node based on what's inside - * @param {object} childNodesObj | object with node objects, id as keys - * @returns {{x: number, y: number}} - * @private - */ - value: function _getClusterPosition(childNodesObj) { - var childKeys = Object.keys(childNodesObj); - var minX = childNodesObj[childKeys[0]].x; - var maxX = childNodesObj[childKeys[0]].x; - var minY = childNodesObj[childKeys[0]].y; - var maxY = childNodesObj[childKeys[0]].y; - var node; - for (var i = 0; i < childKeys.lenght; i++) { - node = childNodesObj[childKeys[0]]; - minX = node.x < minX ? node.x : minX; - maxX = node.x > maxX ? node.x : maxX; - minY = node.y < minY ? node.y : minY; - maxY = node.y > maxY ? node.y : maxY; + // create the tree + var barnesHutTree = this._formBarnesHutTree(nodes, nodeIndices); + + // for debugging + this.barnesHutTree = barnesHutTree; + + // place the nodes one by one recursively + for (var i = 0; i < nodeCount; i++) { + node = nodes[nodeIndices[i]]; + if (node.options.mass > 0) { + // starting with root is irrelevant, it never passes the BarnesHutSolver 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); + } + } } - return { x: 0.5 * (minX + maxX), y: 0.5 * (minY + maxY) }; }, writable: true, configurable: true }, - openCluster: { + _getForceContribution: { /** - * Open a cluster by calling this function. - * @param {String} clusterNodeId | the ID of the cluster node - * @param {Boolean} doNotUpdateCalculationNodes | wrap up afterwards if not true - */ - value: function openCluster(clusterNodeId, doNotUpdateCalculationNodes) { - // kill conditions - if (clusterNodeId === undefined) { - throw new Error("No clusterNodeId supplied to openCluster."); - } - if (this.body.nodes[clusterNodeId] === undefined) { - throw new Error("The clusterNodeId supplied to openCluster does not exist."); - } - if (this.body.nodes[clusterNodeId].containedNodes === undefined) { - console.log("The node:" + clusterNodeId + " is not a cluster.");return; - }; - - var node = this.body.nodes[clusterNodeId]; - var containedNodes = node.containedNodes; - var containedEdges = node.containedEdges; + * This function traverses the barnesHutTree. It checks when it can approximate distant nodes with their center of mass. + * If a region contains a single node, we check if it is not itself, then we apply the force. + * + * @param parentBranch + * @param node + * @private + */ + value: function _getForceContribution(parentBranch, node) { + // we get no force contribution from an empty region + if (parentBranch.childrenCount > 0) { + var dx, dy, distance; - // release nodes - for (var nodeId in containedNodes) { - if (containedNodes.hasOwnProperty(nodeId)) { - this.body.nodes[nodeId] = containedNodes[nodeId]; - // inherit position - this.body.nodes[nodeId].x = node.x; - this.body.nodes[nodeId].y = node.y; + // 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); - // inherit speed - this.body.nodes[nodeId].vx = node.vx; - this.body.nodes[nodeId].vy = node.vy; + // BarnesHutSolver condition + // original condition : s/d < thetaInverted = passed === d/s > 1/theta = passed + // calcSize = 1/s --> d * 1/s > 1/theta = passed + if (distance * parentBranch.calcSize > this.options.thetaInverted) { + // duplicate code to reduce function calls to speed up program + if (distance == 0) { + distance = 0.1 * Math.random(); + dx = distance; + } + var gravityForce = this.options.gravitationalConstant * parentBranch.mass * node.options.mass / (distance * distance * distance); + var fx = dx * gravityForce; + var fy = dy * gravityForce; - delete this.clusteredNodes[nodeId]; - } - } + this.physicsBody.forces[node.id].x += fx; + this.physicsBody.forces[node.id].y += 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.options.gravitationalConstant * parentBranch.mass * node.options.mass / (distance * distance * distance); + var fx = dx * gravityForce; + var fy = dy * gravityForce; - // release edges - for (var edgeId in containedEdges) { - if (containedEdges.hasOwnProperty(edgeId)) { - this.body.edges[edgeId] = containedEdges[edgeId]; - this.body.edges[edgeId].connect(); - var edge = this.body.edges[edgeId]; - if (edge.connected === false) { - if (this.clusteredNodes[edge.fromId] !== undefined) { - this._connectEdge(edge, edge.fromId, true); - } - if (this.clusteredNodes[edge.toId] !== undefined) { - this._connectEdge(edge, edge.toId, false); + this.physicsBody.forces[node.id].x += fx; + this.physicsBody.forces[node.id].y += fy; } } } } + }, + writable: true, + configurable: true + }, + _formBarnesHutTree: { - this.body.emitter.emit("_newEdgesCreated", containedEdges); + /** + * This function constructs the barnesHut tree recursively. It creates the root, splits it and starts placing the nodes. + * + * @param nodes + * @param nodeIndices + * @private + */ + value: function _formBarnesHutTree(nodes, nodeIndices) { + var node; + var nodeCount = nodeIndices.length; - var edgeIds = []; - for (var i = 0; i < node.edges.length; i++) { - edgeIds.push(node.edges[i].id); - } + var minX = Number.MAX_VALUE, + minY = Number.MAX_VALUE, + maxX = -Number.MAX_VALUE, + maxY = -Number.MAX_VALUE; - // remove edges in clusterNode - for (var i = 0; i < edgeIds.length; i++) { - var edge = this.body.edges[edgeIds[i]]; - // if the edge should have been connected to a contained node - if (edge.fromArray.length > 0 && edge.fromId == clusterNodeId) { - // the node in the from array was contained in the cluster - if (this.body.nodes[edge.fromArray[0].id] !== undefined) { - this._connectEdge(edge, edge.fromArray[0].id, true); + // 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; } - } else if (edge.toArray.length > 0 && edge.toId == clusterNodeId) { - // the node in the to array was contained in the cluster - if (this.body.nodes[edge.toArray[0].id] !== undefined) { - this._connectEdge(edge, edge.toArray[0].id, false); + if (x > maxX) { + maxX = x; } - } else { - var edgeId = edgeIds[i]; - var viaId = this.body.edges[edgeId].via.id; - if (viaId) { - this.body.edges[edgeId].via = null; - delete this.body.supportNodes[viaId]; + if (y < minY) { + minY = y; + } + if (y > maxY) { + maxY = y; } - // this removes the edge from node.edges, which is why edgeIds is formed - this.body.edges[edgeId].disconnect(); - delete this.body.edges[edgeId]; } } + // 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 - // remove clusterNode - delete this.body.nodes[clusterNodeId]; - if (doNotUpdateCalculationNodes !== true) { - this.body.emitter.emit("_dataChanged"); + var minimumTreeSize = 0.00001; + 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); + } } + + // make global + return barnesHutTree; }, writable: true, configurable: true }, - _connectEdge: { - + _updateBranchMass: { /** - * Connect an edge that was previously contained from cluster A to cluster B if the node that it was originally connected to - * is currently residing in cluster B - * @param edge - * @param nodeId - * @param from - * @private - */ - value: function _connectEdge(edge, nodeId, from) { - var clusterStack = this._getClusterStack(nodeId); - if (from == true) { - edge.from = clusterStack[clusterStack.length - 1]; - edge.fromId = clusterStack[clusterStack.length - 1].id; - clusterStack.pop(); - edge.fromArray = clusterStack; - } else { - edge.to = clusterStack[clusterStack.length - 1]; - edge.toId = clusterStack[clusterStack.length - 1].id; - clusterStack.pop(); - edge.toArray = clusterStack; - } - edge.connect(); + * this updates the mass of a branch. this is increased by adding a node. + * + * @param parentBranch + * @param node + * @private + */ + value: function _updateBranchMass(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; }, writable: true, configurable: true }, - _getClusterStack: { + _placeInTree: { + /** - * Get the stack clusterId's that a certain node resides in. cluster A -> cluster B -> cluster C -> node - * @param nodeId - * @returns {Array} - * @private - */ - value: function _getClusterStack(nodeId) { - var stack = []; - var max = 100; - var counter = 0; + * determine in which branch the node will be placed. + * + * @param parentBranch + * @param node + * @param skipMassUpdate + * @private + */ + value: function _placeInTree(parentBranch, node, skipMassUpdate) { + if (skipMassUpdate != true || skipMassUpdate === undefined) { + // update the mass of the branch. + this._updateBranchMass(parentBranch, node); + } - while (this.clusteredNodes[nodeId] !== undefined && counter < max) { - stack.push(this.clusteredNodes[nodeId].node); - nodeId = this.clusteredNodes[nodeId].clusterId; - counter++; + 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"); + } } - stack.push(this.body.nodes[nodeId]); - return stack; }, writable: true, configurable: true }, - _getConnectedId: { + _placeInRegion: { /** - * Get the Id the node is connected to - * @param edge - * @param nodeId - * @returns {*} - * @private - */ - value: function _getConnectedId(edge, nodeId) { - if (edge.toId != nodeId) { - return edge.toId; - } else if (edge.fromId != nodeId) { - return edge.fromId; - } else { - return edge.fromId; + * actually place the node in a region (or branch) + * + * @param parentBranch + * @param node + * @param region + * @private + */ + value: function _placeInRegion(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; } }, writable: true, configurable: true }, - _getHubSize: { + _splitBranch: { - /** - * 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%) - * - * @private - */ - value: function _getHubSize() { - var average = 0; - var averageSquared = 0; - var hubCounter = 0; - var largestHub = 0; - for (var i = 0; i < this.body.nodeIndices.length; i++) { - var node = this.body.nodes[this.body.nodeIndices[i]]; - if (node.edges.length > largestHub) { - largestHub = node.edges.length; - } - average += node.edges.length; - averageSquared += Math.pow(node.edges.length, 2); - hubCounter += 1; + /** + * 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 + */ + value: function _splitBranch(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; } - average = average / hubCounter; - averageSquared = averageSquared / hubCounter; - - var variance = averageSquared - Math.pow(average, 2); - var standardDeviation = Math.sqrt(variance); - - var hubThreshold = Math.floor(average + 2 * standardDeviation); + parentBranch.childrenCount = 4; + parentBranch.children.data = null; + this._insertRegion(parentBranch, "NW"); + this._insertRegion(parentBranch, "NE"); + this._insertRegion(parentBranch, "SW"); + this._insertRegion(parentBranch, "SE"); - // always have at least one to cluster - if (hubThreshold > largestHub) { - hubThreshold = largestHub; + if (containedNode != null) { + this._placeInTree(parentBranch, containedNode); } - - return hubThreshold; }, writable: true, configurable: true - } - }); + }, + _insertRegion: { - return ClusterEngine; - })(); - exports.ClusterEngine = ClusterEngine; - Object.defineProperty(exports, "__esModule", { - value: true - }); + /** + * 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 + */ + value: function _insertRegion(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; + } -/***/ }, -/* 74 */ -/***/ function(module, exports, __webpack_require__) { - "use strict"; - - var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; - - var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; - - /** - * Created by Alex on 26-Feb-15. - */ - - if (typeof window !== "undefined") { - window.requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame || window.webkitRequestAnimationFrame || window.msRequestAnimationFrame; - } - - var CanvasRenderer = (function () { - function CanvasRenderer(body) { - var _this = this; - _classCallCheck(this, CanvasRenderer); - - this.body = body; - - this.redrawRequested = false; - this.renderTimer = false; - this.requiresTimeout = true; - this.continueRendering = true; - this.renderRequests = 0; - - this.translation = { x: 0, y: 0 }; - this.scale = 1; - this.canvasTopLeft = { x: 0, y: 0 }; - this.canvasBottomRight = { x: 0, y: 0 }; - - this.body.emitter.on("_setScale", function (scale) { - return _this.scale = scale; - }); - this.body.emitter.on("_setTranslation", function (translation) { - _this.translation.x = translation.x;_this.translation.y = translation.y; - }); - this.body.emitter.on("_redraw", this._redraw.bind(this)); - this.body.emitter.on("_redrawHidden", this._redraw.bind(this, true)); - this.body.emitter.on("_requestRedraw", this._requestRedraw.bind(this)); - this.body.emitter.on("_startRendering", function () { - _this.renderRequests += 1;_this.continueRendering = true;_this.startRendering(); - }); - this.body.emitter.on("_stopRendering", function () { - _this.renderRequests -= 1;_this.continueRendering = _this.renderRequests > 0; - }); - - this._determineBrowserMethod(); - } - - _prototypeProperties(CanvasRenderer, null, { - startRendering: { - value: function startRendering() { - if (this.continueRendering === true) { - if (!this.renderTimer) { - if (this.requiresTimeout == true) { - this.renderTimer = window.setTimeout(this.renderStep.bind(this), this.simulationInterval); // wait this.renderTimeStep milliseconds and perform the animation step function - } else { - this.renderTimer = window.requestAnimationFrame(this.renderStep.bind(this)); // wait this.renderTimeStep milliseconds and perform the animation step function - } - } - } else {} + 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 + }; }, writable: true, configurable: true }, - renderStep: { - value: function renderStep() { - // reset the renderTimer so a new scheduled animation step can be set - this.renderTimer = undefined; + _debug: { - if (this.requiresTimeout == true) { - // this schedules a new simulation step - this.startRendering(); - } - this._redraw(); - if (this.requiresTimeout == false) { - // this schedules a new simulation step - this.startRendering(); - } - }, - writable: true, - configurable: true - }, - setCanvas: { - value: function setCanvas(canvas) { - this.canvas = canvas; - }, - writable: true, - configurable: true - }, - redraw: { + + //--------------------------- DEBUGGING BELOW ---------------------------// + + /** - * Redraw the network with the current data - * chart will be resized too. + * This function is for debugging purposed, it draws the tree. + * + * @param ctx + * @param color + * @private */ - value: function redraw() { - this.setSize(this.constants.width, this.constants.height); - this._redraw(); + value: function _debug(ctx, color) { + if (this.barnesHutTree !== undefined) { + ctx.lineWidth = 1; + + this._drawBranch(this.barnesHutTree.root, ctx, color); + } }, writable: true, configurable: true }, - _requestRedraw: { + _drawBranch: { + /** - * Redraw the network with the current data - * @param hidden | used to get the first estimate of the node sizes. only the nodes are drawn after which they are quickly drawn over. + * This function is for debugging purposes. It draws the branches recursively. + * + * @param branch + * @param ctx + * @param color * @private */ - value: function _requestRedraw(hidden) { - if (this.redrawRequested !== true) { - this.redrawRequested = true; - if (this.requiresTimeout === true) { - window.setTimeout(this._redraw.bind(this, hidden), 0); - } else { - window.requestAnimationFrame(this._redraw.bind(this, hidden, true)); - } + value: function _drawBranch(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(); + } + */ }, writable: true, configurable: true - }, - _redraw: { - value: function _redraw() { - var hidden = arguments[0] === undefined ? false : arguments[0]; - this.body.emitter.emit("_beforeRender"); - - this.redrawRequested = false; - var ctx = this.canvas.frame.canvas.getContext("2d"); + } + }); - ctx.setTransform(this.pixelRatio, 0, 0, this.pixelRatio, 0, 0); + return BarnesHutSolver; + })(); - // clear the canvas - var w = this.canvas.frame.canvas.clientWidth; - var h = this.canvas.frame.canvas.clientHeight; - ctx.clearRect(0, 0, w, h); + exports.BarnesHutSolver = BarnesHutSolver; + Object.defineProperty(exports, "__esModule", { + value: true + }); - // set scaling and translation - ctx.save(); - ctx.translate(this.translation.x, this.translation.y); - ctx.scale(this.scale, this.scale); +/***/ }, +/* 68 */ +/***/ function(module, exports, __webpack_require__) { - this.canvasTopLeft = this.canvas.DOMtoCanvas({ x: 0, y: 0 }); - this.canvasBottomRight = this.canvas.DOMtoCanvas({ x: this.canvas.frame.canvas.clientWidth, y: this.canvas.frame.canvas.clientHeight }); + "use strict"; - if (hidden === false) { - // todo: solve this - //if (this.drag.dragging == false || this.drag.dragging === undefined || this.constants.hideEdgesOnDrag == false) { - this._drawEdges(ctx); - //} - } + var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; - // todo: solve this - //if (this.drag.dragging == false || this.drag.dragging === undefined || this.constants.hideNodesOnDrag == false) { - this._drawNodes(ctx, this.body.nodes, hidden); - //} + var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; - if (hidden === false) { - if (this.controlNodesActive == true) { - this._drawControlNodes(ctx); - } - } + /** + * Created by Alex on 2/23/2015. + */ - //this._drawNodes(ctx,this.body.supportNodes,true); - // this.physics.nodesSolver._debug(ctx,"#F00F0F"); + var RepulsionSolver = (function () { + function RepulsionSolver(body, physicsBody, options) { + _classCallCheck(this, RepulsionSolver); - // restore original scaling and translation - ctx.restore(); + this.body = body; + this.physicsBody = physicsBody; + this.setOptions(options); + } - if (hidden === true) { - ctx.clearRect(0, 0, w, h); - } + _prototypeProperties(RepulsionSolver, null, { + setOptions: { + value: function setOptions(options) { + this.options = options; }, writable: true, configurable: true }, - _drawNodes: { - - + solve: { /** - * Redraw all nodes - * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); - * @param {CanvasRenderingContext2D} ctx - * @param {Boolean} [alwaysShow] + * Calculate the forces the nodes apply on each other based on a repulsion field. + * This field is linearly approximated. + * * @private */ - value: function _drawNodes(ctx, nodes) { - var alwaysShow = arguments[2] === undefined ? false : arguments[2]; - // first draw the unselected nodes - var selected = []; + value: function solve() { + var dx, dy, distance, fx, fy, repulsingForce, node1, node2; - 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 (alwaysShow === true) { - nodes[id].draw(ctx); - } else if (nodes[id].inArea() === true) { - nodes[id].draw(ctx); - } + var nodes = this.physicsBody.calculationNodes; + var nodeIndices = this.physicsBody.calculationNodeIndices; + var forces = this.physicsBody.forces; + + // repulsing forces between nodes + var nodeDistance = this.options.nodeDistance; + + // approximation constants + var a = -2 / 3 / nodeDistance; + var b = 4 / 3; + + // 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 (var i = 0; i < nodeIndices.length - 1; i++) { + node1 = nodes[nodeIndices[i]]; + for (var j = i + 1; j < nodeIndices.length; j++) { + node2 = nodes[nodeIndices[j]]; + + dx = node2.x - node1.x; + dy = node2.y - node1.y; + distance = Math.sqrt(dx * dx + dy * dy); + + // same condition as BarnesHutSolver, making sure nodes are never 100% overlapping. + if (distance == 0) { + distance = 0.1 * Math.random(); + dx = distance; } - } - } - // 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); - } - } - }, - writable: true, - configurable: true - }, - _drawEdges: { + if (distance < 2 * nodeDistance) { + if (distance < 0.5 * nodeDistance) { + repulsingForce = 1; + } else { + repulsingForce = a * distance + b; // linear approx of 1 / (1 + Math.exp((distance / nodeDistance - 1) * steepness)) + } + repulsingForce = repulsingForce / distance; + fx = dx * repulsingForce; + fy = dy * repulsingForce; - /** - * Redraw all edges - * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); - * @param {CanvasRenderingContext2D} ctx - * @private - */ - value: function _drawEdges(ctx) { - var edges = this.body.edges; - for (var id in edges) { - if (edges.hasOwnProperty(id)) { - var edge = edges[id]; - edge.setScale(this.scale); - if (edge.connected === true) { - edges[id].draw(ctx); + forces[node1.id].x -= fx; + forces[node1.id].y -= fy; + forces[node2.id].x += fx; + forces[node2.id].y += fy; } } } }, writable: true, configurable: true - }, - _drawControlNodes: { + } + }); - /** - * Redraw all edges - * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); - * @param {CanvasRenderingContext2D} ctx - * @private - */ - value: function _drawControlNodes(ctx) { - var edges = this.body.edges; - for (var id in edges) { - if (edges.hasOwnProperty(id)) { - edges[id]._drawControlNodes(ctx); - } - } + return RepulsionSolver; + })(); + + exports.RepulsionSolver = RepulsionSolver; + Object.defineProperty(exports, "__esModule", { + value: true + }); + +/***/ }, +/* 69 */ +/***/ function(module, exports, __webpack_require__) { + + "use strict"; + + var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; + + var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; + + /** + * Created by Alex on 2/23/2015. + */ + + var HierarchicalRepulsionSolver = (function () { + function HierarchicalRepulsionSolver(body, physicsBody, options) { + _classCallCheck(this, HierarchicalRepulsionSolver); + + this.body = body; + this.physicsBody = physicsBody; + this.setOptions(options); + } + + _prototypeProperties(HierarchicalRepulsionSolver, null, { + setOptions: { + value: function setOptions(options) { + this.options = options; }, writable: true, configurable: true }, - _determineBrowserMethod: { + solve: { /** - * Determine if the browser requires a setTimeout or a requestAnimationFrame. This was required because - * some implementations (safari and IE9) did not support requestAnimationFrame + * Calculate the forces the nodes apply on each other based on a repulsion field. + * This field is linearly approximated. + * * @private */ - value: function _determineBrowserMethod() { - if (typeof window !== "undefined") { - var browserType = navigator.userAgent.toLowerCase(); - this.requiresTimeout = false; - if (browserType.indexOf("msie 9.0") != -1) { - // IE 9 - this.requiresTimeout = true; - } else if (browserType.indexOf("safari") != -1) { - // safari - if (browserType.indexOf("chrome") <= -1) { - this.requiresTimeout = true; + value: function solve() { + var dx, dy, distance, fx, fy, repulsingForce, node1, node2, i, j; + + var nodes = this.physicsBody.calculationNodes; + var nodeIndices = this.physicsBody.calculationNodeIndices; + var forces = this.physicsBody.forces; + + // repulsing forces between nodes + var nodeDistance = this.options.nodeDistance; + + // we loop from i over all but the last entree in the array + // j loops from i+1 to the last. This way we do not double count any of the indices, nor i == j + for (i = 0; i < nodeIndices.length - 1; i++) { + node1 = nodes[nodeIndices[i]]; + for (j = i + 1; j < nodeIndices.length; j++) { + node2 = nodes[nodeIndices[j]]; + + // nodes only affect nodes on their level + if (node1.level == node2.level) { + dx = node2.x - node1.x; + dy = node2.y - node1.y; + distance = Math.sqrt(dx * dx + dy * dy); + + var steepness = 0.05; + if (distance < nodeDistance) { + repulsingForce = -Math.pow(steepness * distance, 2) + Math.pow(steepness * nodeDistance, 2); + } else { + repulsingForce = 0; + } + // normalize force with + if (distance == 0) { + distance = 0.01; + } else { + repulsingForce = repulsingForce / distance; + } + fx = dx * repulsingForce; + fy = dy * repulsingForce; + + forces[node1.id].x -= fx; + forces[node1.id].y -= fy; + forces[node2.id].x += fx; + forces[node2.id].y += fy; } } - } else { - this.requiresTimeout = true; } }, writable: true, @@ -32752,16 +32194,16 @@ return /******/ (function(modules) { // webpackBootstrap } }); - return CanvasRenderer; + return HierarchicalRepulsionSolver; })(); - exports.CanvasRenderer = CanvasRenderer; + exports.HierarchicalRepulsionSolver = HierarchicalRepulsionSolver; Object.defineProperty(exports, "__esModule", { value: true }); /***/ }, -/* 75 */ +/* 70 */ /***/ function(module, exports, __webpack_require__) { "use strict"; @@ -32771,282 +32213,304 @@ return /******/ (function(modules) { // webpackBootstrap var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; /** - * Created by Alex on 26-Feb-15. + * Created by Alex on 2/23/2015. */ - - var Hammer = __webpack_require__(19); - - var Canvas = (function () { - /** - * 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 Canvas(body, options) { - var _this = this; - _classCallCheck(this, Canvas); + var SpringSolver = (function () { + function SpringSolver(body, physicsBody, options) { + _classCallCheck(this, SpringSolver); this.body = body; + this.physicsBody = physicsBody; this.setOptions(options); + } - this.translation = { x: 0, y: 0 }; - this.scale = 1; - this.body.emitter.on("_setScale", function (scale) { - _this.scale = scale; - }); - this.body.emitter.on("_setTranslation", function (translation) { - _this.translation.x = translation.x;_this.translation.y = translation.y; - }); - this.body.emitter.once("resize", function (obj) { - _this.translation.x = obj.width * 0.5;_this.translation.y = obj.height * 0.5;_this.body.emitter.emit("_setTranslation", _this.translation); - }); - - this.pixelRatio = 1; + _prototypeProperties(SpringSolver, null, { + setOptions: { + value: function setOptions(options) { + this.options = options; + }, + writable: true, + configurable: true + }, + solve: { - // remove all elements from the container element. - while (this.body.container.hasChildNodes()) { - this.body.container.removeChild(this.body.container.firstChild); - } + /** + * This function calculates the springforces on the nodes, accounting for the support nodes. + * + * @private + */ + value: function solve() { + var edgeLength, edge, edgeId; + var edges = this.body.edges; - this.frame = document.createElement("div"); - this.frame.className = "vis network-frame"; - this.frame.style.position = "relative"; - this.frame.style.overflow = "hidden"; - this.frame.tabIndex = 900; + // forces caused by the edges, modelled as springs + for (edgeId in edges) { + if (edges.hasOwnProperty(edgeId)) { + edge = edges[edgeId]; + if (edge.connected === true) { + // only calculate forces if nodes are in the same sector + if (this.body.nodes[edge.toId] !== undefined && this.body.nodes[edge.fromId] !== undefined) { + edgeLength = edge.properties.length === undefined ? this.options.springLength : edge.properties.length; + if (edge.via != null) { + var node1 = edge.to; + var node2 = edge.via; + var node3 = edge.from; - ////////////////////////////////////////////////////////////////// + this._calculateSpringForce(node1, node2, 0.5 * edgeLength); + this._calculateSpringForce(node2, node3, 0.5 * edgeLength); + } else { + this._calculateSpringForce(edge.from, edge.to, edgeLength); + } + } + } + } + } + }, + writable: true, + configurable: true + }, + _calculateSpringForce: { - 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); - } else { - var ctx = this.frame.canvas.getContext("2d"); - this.pixelRatio = (window.devicePixelRatio || 1) / (ctx.webkitBackingStorePixelRatio || ctx.mozBackingStorePixelRatio || ctx.msBackingStorePixelRatio || ctx.oBackingStorePixelRatio || ctx.backingStorePixelRatio || 1); + /** + * This is the code actually performing the calculation for the function above. + * + * @param node1 + * @param node2 + * @param edgeLength + * @private + */ + value: function _calculateSpringForce(node1, node2, edgeLength) { + var dx, dy, fx, fy, springForce, distance; - //this.pixelRatio = Math.max(1,this.pixelRatio); // this is to account for browser zooming out. The pixel ratio is ment to switch between 1 and 2 for HD screens. - this.frame.canvas.getContext("2d").setTransform(this.pixelRatio, 0, 0, this.pixelRatio, 0, 0); + dx = node1.x - node2.x; + dy = node1.y - node2.y; + distance = Math.sqrt(dx * dx + dy * dy); + distance = distance == 0 ? 0.01 : distance; + + // the 1/distance is so the fx and fy can be calculated without sine or cosine. + springForce = this.options.springConstant * (edgeLength - distance) / distance; + + fx = dx * springForce; + fy = dy * springForce; + + this.physicsBody.forces[node1.id].x += fx; + this.physicsBody.forces[node1.id].y += fy; + this.physicsBody.forces[node2.id].x -= fx; + this.physicsBody.forces[node2.id].y -= fy; + }, + writable: true, + configurable: true } + }); - // add the frame to the container element - this.body.container.appendChild(this.frame); + return SpringSolver; + })(); - this.body.emitter.emit("_setScale", 1);; - this.body.emitter.emit("_setTranslation", { x: 0.5 * this.frame.canvas.clientWidth, y: 0.5 * this.frame.canvas.clientHeight });; + exports.SpringSolver = SpringSolver; + Object.defineProperty(exports, "__esModule", { + value: true + }); - this._bindHammer(); - } +/***/ }, +/* 71 */ +/***/ function(module, exports, __webpack_require__) { - _prototypeProperties(Canvas, null, { - _bindHammer: { + "use strict"; + var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; - /** - * This function binds hammer, it can be repeated over and over due to the uniqueness check. - * @private - */ - value: function _bindHammer() { - var me = this; - if (this.hammer !== undefined) { - this.hammer.dispose(); - } - this.drag = {}; - this.pinch = {}; - this.hammer = Hammer(this.frame.canvas, { - prevent_default: true - }); - this.hammer.on("tap", me.body.eventListeners.onTap); - this.hammer.on("doubletap", me.body.eventListeners.onDoubleTap); - this.hammer.on("hold", me.body.eventListeners.onHold); - this.hammer.on("touch", me.body.eventListeners.onTouch); - this.hammer.on("dragstart", me.body.eventListeners.onDragStart); - this.hammer.on("drag", me.body.eventListeners.onDrag); - this.hammer.on("dragend", me.body.eventListeners.onDragEnd); + var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; - if (this.options.zoomable == true) { - this.hammer.on("mousewheel", me.body.eventListeners.onMouseWheel.bind(me)); - this.hammer.on("DOMMouseScroll", me.body.eventListeners.onMouseWheel.bind(me)); // for FF - this.hammer.on("pinch", me.body.eventListeners.onPinch.bind(me)); - } + /** + * Created by Alex on 2/25/2015. + */ - this.hammer.on("mousemove", me.body.eventListeners.onMouseMove.bind(me)); + var HierarchicalSpringSolver = (function () { + function HierarchicalSpringSolver(body, physicsBody, options) { + _classCallCheck(this, HierarchicalSpringSolver); - this.hammerFrame = Hammer(this.frame, { - prevent_default: true - }); - this.hammerFrame.on("release", me.body.eventListeners.onRelease.bind(me)); - }, - writable: true, - configurable: true - }, + this.body = body; + this.physicsBody = physicsBody; + this.setOptions(options); + } + + _prototypeProperties(HierarchicalSpringSolver, null, { setOptions: { - value: function setOptions() { - var options = arguments[0] === undefined ? {} : arguments[0]; + value: function setOptions(options) { this.options = options; }, writable: true, configurable: true }, - setSize: { + solve: { /** - * 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%') + * This function calculates the springforces on the nodes, accounting for the support nodes. + * + * @private */ - value: function setSize(width, height) { - var emitEvent = false; - var oldWidth = this.frame.canvas.width; - var oldHeight = this.frame.canvas.height; - if (width != this.options.width || height != this.options.height || this.frame.style.width != width || this.frame.style.height != height) { - this.frame.style.width = width; - this.frame.style.height = height; + value: function solve() { + var edgeLength, edge, edgeId; + var dx, dy, fx, fy, springForce, distance; + var edges = this.body.edges; - this.frame.canvas.style.width = "100%"; - this.frame.canvas.style.height = "100%"; + var nodeIndices = this.physicsBody.calculationNodeIndices; + var forces = this.physicsBody.forces; - this.frame.canvas.width = this.frame.canvas.clientWidth * this.pixelRatio; - this.frame.canvas.height = this.frame.canvas.clientHeight * this.pixelRatio; + // initialize the spring force counters + for (var i = 0; i < nodeIndices.length; i++) { + var nodeId = nodeIndices[i]; + forces[nodeId].springFx = 0; + forces[nodeId].springFy = 0; + } - this.options.width = width; - this.options.height = height; - emitEvent = true; - } else { - // this would adapt the width of the canvas to the width from 100% if and only if - // there is a change. + // forces caused by the edges, modelled as springs + for (edgeId in edges) { + if (edges.hasOwnProperty(edgeId)) { + edge = edges[edgeId]; + if (edge.connected === true) { + edgeLength = edge.properties.length === undefined ? this.options.springLength : edge.properties.length; - if (this.frame.canvas.width != this.frame.canvas.clientWidth * this.pixelRatio) { - this.frame.canvas.width = this.frame.canvas.clientWidth * this.pixelRatio; - emitEvent = true; - } - if (this.frame.canvas.height != this.frame.canvas.clientHeight * this.pixelRatio) { - this.frame.canvas.height = this.frame.canvas.clientHeight * this.pixelRatio; - emitEvent = true; + dx = edge.from.x - edge.to.x; + dy = edge.from.y - edge.to.y; + distance = Math.sqrt(dx * dx + dy * dy); + distance = distance == 0 ? 0.01 : distance; + + // the 1/distance is so the fx and fy can be calculated without sine or cosine. + springForce = this.options.springConstant * (edgeLength - distance) / distance; + + fx = dx * springForce; + fy = dy * springForce; + + if (edge.to.level != edge.from.level) { + forces[edge.toId].springFx -= fx; + forces[edge.toId].springFy -= fy; + forces[edge.fromId].springFx += fx; + forces[edge.fromId].springFy += fy; + } else { + var factor = 0.5; + forces[edge.toId].x -= factor * fx; + forces[edge.toId].y -= factor * fy; + forces[edge.fromId].x += factor * fx; + forces[edge.fromId].y += factor * fy; + } + } } } - if (emitEvent === true) { - this.body.emitter.emit("resize", { width: this.frame.canvas.width * this.pixelRatio, height: this.frame.canvas.height * this.pixelRatio, oldWidth: oldWidth * this.pixelRatio, oldHeight: oldHeight * this.pixelRatio }); + // normalize spring forces + var springForce = 1; + var springFx, springFy; + for (var i = 0; i < nodeIndices.length; i++) { + var nodeId = nodeIndices[i]; + springFx = Math.min(springForce, Math.max(-springForce, forces[nodeId].springFx)); + springFy = Math.min(springForce, Math.max(-springForce, forces[nodeId].springFy)); + + forces[nodeId].x += springFx; + forces[nodeId].y += springFy; } - }, - writable: true, - configurable: true - }, - _XconvertDOMtoCanvas: { + // retain energy balance + var totalFx = 0; + var totalFy = 0; + for (var i = 0; i < nodeIndices.length; i++) { + var nodeId = nodeIndices[i]; + totalFx += forces[nodeId].x; + totalFy += forces[nodeId].y; + } + var correctionFx = totalFx / nodeIndices.length; + var correctionFy = totalFy / nodeIndices.length; - /** - * 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 - */ - value: function _XconvertDOMtoCanvas(x) { - return (x - this.translation.x) / this.scale; + for (var i = 0; i < nodeIndices.length; i++) { + var nodeId = nodeIndices[i]; + forces[nodeId].x -= correctionFx; + forces[nodeId].y -= correctionFy; + } }, writable: true, configurable: true - }, - _XconvertCanvasToDOM: { + } + }); - /** - * 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 - */ - value: function _XconvertCanvasToDOM(x) { - return x * this.scale + this.translation.x; - }, - writable: true, - configurable: true - }, - _YconvertDOMtoCanvas: { + return HierarchicalSpringSolver; + })(); - /** - * 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 - */ - value: function _YconvertDOMtoCanvas(y) { - return (y - this.translation.y) / this.scale; - }, - writable: true, - configurable: true - }, - _YconvertCanvasToDOM: { + exports.HierarchicalSpringSolver = HierarchicalSpringSolver; + Object.defineProperty(exports, "__esModule", { + value: true + }); - /** - * Convert the Y coordinate in canvas-space (the simulation sandbox, which the camera looks upon) to - * the Y coordinate in DOM-space (coordinate point in browser relative to the container div) - * @param {number} y - * @returns {number} - * @private - */ - value: function _YconvertCanvasToDOM(y) { - return y * this.scale + this.translation.y; - }, - writable: true, - configurable: true - }, - canvasToDOM: { +/***/ }, +/* 72 */ +/***/ function(module, exports, __webpack_require__) { + "use strict"; - /** - * - * @param {object} pos = {x: number, y: number} - * @returns {{x: number, y: number}} - * @constructor - */ - value: function canvasToDOM(pos) { - return { x: this._XconvertCanvasToDOM(pos.x), y: this._YconvertCanvasToDOM(pos.y) }; + var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; + + var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; + + /** + * Created by Alex on 2/23/2015. + */ + + var CentralGravitySolver = (function () { + function CentralGravitySolver(body, physicsBody, options) { + _classCallCheck(this, CentralGravitySolver); + + this.body = body; + this.physicsBody = physicsBody; + this.setOptions(options); + } + + _prototypeProperties(CentralGravitySolver, null, { + setOptions: { + value: function setOptions(options) { + this.options = options; }, writable: true, configurable: true }, - DOMtoCanvas: { + solve: { + value: function solve() { + var dx, dy, distance, node, i; + var nodes = this.physicsBody.calculationNodes; + var nodeIndices = this.physicsBody.calculationNodeIndices; + var forces = this.physicsBody.forces; - /** - * - * @param {object} pos = {x: number, y: number} - * @returns {{x: number, y: number}} - * @constructor - */ - value: function DOMtoCanvas(pos) { - return { x: this._XconvertDOMtoCanvas(pos.x), y: this._YconvertDOMtoCanvas(pos.y) }; + var gravity = this.options.centralGravity; + var gravityForce = 0; + + for (i = 0; i < nodeIndices.length; i++) { + var nodeId = nodeIndices[i]; + node = nodes[nodeId]; + dx = -node.x; + dy = -node.y; + distance = Math.sqrt(dx * dx + dy * dy); + + gravityForce = distance == 0 ? 0 : gravity / distance; + forces[nodeId].x = dx * gravityForce; + forces[nodeId].y = dy * gravityForce; + } }, writable: true, configurable: true } }); - return Canvas; + return CentralGravitySolver; })(); - exports.Canvas = Canvas; + exports.CentralGravitySolver = CentralGravitySolver; Object.defineProperty(exports, "__esModule", { value: true }); /***/ }, -/* 76 */ +/* 73 */ /***/ function(module, exports, __webpack_require__) { "use strict"; @@ -33056,57 +32520,25 @@ return /******/ (function(modules) { // webpackBootstrap var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; /** - * Created by Alex on 26-Feb-15. + * Created by Alex on 2/27/2015. */ - var util = __webpack_require__(1); + var Node = __webpack_require__(40); - var View = (function () { - function View(body, options) { - var _this = this; - _classCallCheck(this, View); + var SelectionHandler = (function () { + function SelectionHandler(body) { + _classCallCheck(this, SelectionHandler); this.body = body; - this.setOptions(options); - - this.animationSpeed = 1 / this.renderRefreshRate; - this.animationEasingFunction = "easeInOutQuint"; - this.easingTime = 0; - this.sourceScale = 0; - this.targetScale = 0; - this.sourceTranslation = 0; - this.targetTranslation = 0; - this.lockedOnNodeId = null; - this.lockedOnNodeOffset = null; - this.touchTime = 0; - - this.translation = { x: 0, y: 0 }; - this.scale = 1; - - this.viewFunction = undefined; + this.selectionObj = { nodes: [], edges: [] }; - this.body.emitter.on("zoomExtent", this.zoomExtent.bind(this)); - this.body.emitter.on("_setScale", function (scale) { - return _this.scale = scale; - }); - this.body.emitter.on("_setTranslation", function (translation) { - _this.translation.x = translation.x;_this.translation.y = translation.y; - }); - this.body.emitter.on("animationFinished", function () { - _this.body.emitter.emit("_stopRendering"); - }); - this.body.emitter.on("unlockNode", this.releaseNode.bind(this)); + this.options = { + select: true, + selectConnectedEdges: true + }; } - _prototypeProperties(View, null, { - setOptions: { - value: function setOptions() { - var options = arguments[0] === undefined ? {} : arguments[0]; - this.options = options; - }, - writable: true, - configurable: true - }, + _prototypeProperties(SelectionHandler, null, { setCanvas: { value: function setCanvas(canvas) { this.canvas = canvas; @@ -33114,1690 +32546,2775 @@ return /******/ (function(modules) { // webpackBootstrap writable: true, configurable: true }, - _getRange: { + selectOnPoint: { + - // zoomExtent /** - * Find the center position of the network + * handles the selection part of the tap; + * + * @param {Object} pointer * @private */ - value: function _getRange() { - var specificNodes = arguments[0] === undefined ? [] : arguments[0]; - var minY = 1000000000, - maxY = -1000000000, - minX = 1000000000, - maxX = -1000000000, - node; - if (specificNodes.length > 0) { - for (var i = 0; i < specificNodes.length; i++) { - node = this.body.nodes[specificNodes[i]]; - if (minX > node.boundingBox.left) { - minX = node.boundingBox.left; - } - if (maxX < node.boundingBox.right) { - maxX = node.boundingBox.right; - } - if (minY > node.boundingBox.bottom) { - minY = node.boundingBox.top; - } // top is negative, bottom is positive - if (maxY < node.boundingBox.top) { - maxY = node.boundingBox.bottom; - } // top is negative, bottom is positive - } - } else { - for (var nodeId in this.body.nodes) { - if (this.body.nodes.hasOwnProperty(nodeId)) { - node = this.body.nodes[nodeId]; - if (minX > node.boundingBox.left) { - minX = node.boundingBox.left; - } - if (maxX < node.boundingBox.right) { - maxX = node.boundingBox.right; - } - if (minY > node.boundingBox.bottom) { - minY = node.boundingBox.top; - } // top is negative, bottom is positive - if (maxY < node.boundingBox.top) { - maxY = node.boundingBox.bottom; - } // top is negative, bottom is positive - } + value: function selectOnPoint(pointer) { + if (this.options.select === true) { + if (this._getSelectedObjectCount() > 0) { + this._unselectAll(); } - } - - if (minX == 1000000000 && maxX == -1000000000 && minY == 1000000000 && maxY == -1000000000) { - minY = 0, maxY = 0, minX = 0, maxX = 0; - } - return { minX: minX, maxX: maxX, minY: minY, maxY: maxY }; - }, - writable: true, - configurable: true - }, - _findCenter: { + this.selectObject(pointer); + this._generateClickEvent(pointer); - /** - * @param {object} range = {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; - * @returns {{x: number, y: number}} - * @private - */ - value: function _findCenter(range) { - return { x: 0.5 * (range.maxX + range.minX), - y: 0.5 * (range.maxY + range.minY) }; + this.body.emitter.emit("_requestRedraw"); + } }, writable: true, configurable: true }, - zoomExtent: { - - - /** - * This function zooms out to fit all data on screen based on amount of nodes - * @param {Object} - * @param {Boolean} [initialZoom] | zoom based on fitted formula or range, true = fitted, default = false; - * @param {Boolean} [disableStart] | If true, start is not called. - */ - value: function zoomExtent() { - var options = arguments[0] === undefined ? { nodes: [] } : arguments[0]; - var initialZoom = arguments[1] === undefined ? false : arguments[1]; - var range; - var zoomLevel; - - if (initialZoom == true) { - // check if more than half of the nodes have a predefined position. If so, we use the range, not the approximation. - var positionDefined = 0; - for (var nodeId in this.body.nodes) { - if (this.body.nodes.hasOwnProperty(nodeId)) { - var node = this.body.nodes[nodeId]; - if (node.predefinedPosition == true) { - positionDefined += 1; - } - } - } - if (positionDefined > 0.5 * this.body.nodeIndices.length) { - this.zoomExtent(options, false); - return; - } - - range = this._getRange(options.nodes); - - var numberOfNodes = this.body.nodeIndices.length; - if (this.options.smoothCurves == true) { - 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 { - zoomLevel = 30.5062972 / (numberOfNodes + 19.93597763) + 0.08413486; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. + _generateClickEvent: { + value: function _generateClickEvent(pointer) { + var properties = this.getSelection(); + properties.pointer = { + DOM: { x: pointer.x, y: pointer.y }, + canvas: this.canvas.DOMtoCanvas(pointer) + }; + this.body.emitter.emit("click", properties); + }, + writable: true, + configurable: true + }, + selectObject: { + value: function selectObject(pointer) { + var obj = this._getNodeAt(pointer); + if (obj != null) { + if (this.options.selectConnectedEdges === true) { + this._selectConnectedEdges(obj); } - - // correct for larger canvasses. - var factor = Math.min(this.canvas.frame.canvas.clientWidth / 600, this.canvas.frame.canvas.clientHeight / 600); - zoomLevel *= factor; } else { - this.body.emitter.emit("_redrawHidden"); - range = this._getRange(options.nodes); - var xDistance = Math.abs(range.maxX - range.minX) * 1.1; - var yDistance = Math.abs(range.maxY - range.minY) * 1.1; - - var xZoomLevel = this.canvas.frame.canvas.clientWidth / xDistance; - var yZoomLevel = this.canvas.frame.canvas.clientHeight / yDistance; - zoomLevel = xZoomLevel <= yZoomLevel ? xZoomLevel : yZoomLevel; + obj = this._getEdgeAt(pointer); } - if (zoomLevel > 1) { - zoomLevel = 1; + if (obj !== null) { + obj.select(); + this._addToSelection(obj); + this.body.emitter.emit("selected", this.getSelection()); } - - - var center = this._findCenter(range); - var animationOptions = { position: center, scale: zoomLevel, animation: options }; - this.moveTo(animationOptions); + return obj; }, writable: true, configurable: true }, - focusOnNode: { + _getNodesOverlappingWith: { - // animation /** - * Center a node in view. * - * @param {Number} nodeId - * @param {Number} [options] + * @param object + * @param overlappingNodes + * @private */ - value: function focusOnNode(nodeId) { - var options = arguments[1] === undefined ? {} : arguments[1]; - if (this.body.nodes[nodeId] !== undefined) { - var nodePosition = { x: this.body.nodes[nodeId].x, y: this.body.nodes[nodeId].y }; - options.position = nodePosition; - options.lockedOnNode = nodeId; - - this.moveTo(options); - } else { - console.log("Node: " + nodeId + " cannot be found."); + value: function _getNodesOverlappingWith(object, overlappingNodes) { + var nodes = this.body.nodes; + for (var nodeId in nodes) { + if (nodes.hasOwnProperty(nodeId)) { + if (nodes[nodeId].isOverlappingWith(object)) { + overlappingNodes.push(nodeId); + } + } } }, writable: true, configurable: true }, - moveTo: { + _getAllNodesOverlappingWith: { /** - * - * @param {Object} options | options.offset = {x:Number, y:Number} // offset from the center in DOM pixels - * | options.scale = Number // scale to move to - * | options.position = {x:Number, y:Number} // position to move to - * | options.animation = {duration:Number, easingFunction:String} || Boolean // position to move to + * 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 */ - value: function moveTo(options) { - if (options === undefined) { - options = {}; - return; - } - if (options.offset === undefined) { - options.offset = { x: 0, y: 0 }; - } - if (options.offset.x === undefined) { - options.offset.x = 0; - } - if (options.offset.y === undefined) { - options.offset.y = 0; - } - if (options.scale === undefined) { - options.scale = this.scale; - } - if (options.position === undefined) { - options.position = this.translation; - } - if (options.animation === undefined) { - options.animation = { duration: 0 }; - } - if (options.animation === false) { - options.animation = { duration: 0 }; - } - if (options.animation === true) { - options.animation = {}; - } - if (options.animation.duration === undefined) { - options.animation.duration = 1000; - } // default duration - if (options.animation.easingFunction === undefined) { - options.animation.easingFunction = "easeInOutQuad"; - } // default easing function - - this.animateView(options); + value: function _getAllNodesOverlappingWith(object) { + var overlappingNodes = []; + this._getNodesOverlappingWith(object, overlappingNodes); + return overlappingNodes; }, writable: true, configurable: true }, - animateView: { + _pointerToPositionObject: { + /** + * Return a position object in canvasspace from a single point in screenspace * - * @param {Object} options | options.offset = {x:Number, y:Number} // offset from the center in DOM pixels - * | options.time = Number // animation time in milliseconds - * | options.scale = Number // scale to animate to - * | options.position = {x:Number, y:Number} // position to animate to - * | options.easingFunction = String // linear, easeInQuad, easeOutQuad, easeInOutQuad, - * // easeInCubic, easeOutCubic, easeInOutCubic, - * // easeInQuart, easeOutQuart, easeInOutQuart, - * // easeInQuint, easeOutQuint, easeInOutQuint + * @param pointer + * @returns {{left: number, top: number, right: number, bottom: number}} + * @private */ - value: function animateView(options) { - if (options === undefined) { - return; - } - this.animationEasingFunction = options.animation.easingFunction; - // release if something focussed on the node - this.releaseNode(); - if (options.locked == true) { - this.lockedOnNodeId = options.lockedOnNode; - this.lockedOnNodeOffset = options.offset; - } - - // forcefully complete the old animation if it was still running - if (this.easingTime != 0) { - this._transitionRedraw(true); // by setting easingtime to 1, we finish the animation. - } - - this.sourceScale = this.scale; - this.sourceTranslation = this.translation; - this.targetScale = options.scale; - - // set the scale so the viewCenter is based on the correct zoom level. This is overridden in the transitionRedraw - // but at least then we'll have the target transition - this.body.emitter.emit("_setScale", this.targetScale); - var viewCenter = this.canvas.DOMtoCanvas({ x: 0.5 * this.canvas.frame.canvas.clientWidth, y: 0.5 * this.canvas.frame.canvas.clientHeight }); - var distanceFromCenter = { // offset from view, distance view has to change by these x and y to center the node - x: viewCenter.x - options.position.x, - y: viewCenter.y - options.position.y - }; - this.targetTranslation = { - x: this.sourceTranslation.x + distanceFromCenter.x * this.targetScale + options.offset.x, - y: this.sourceTranslation.y + distanceFromCenter.y * this.targetScale + options.offset.y + value: function _pointerToPositionObject(pointer) { + var canvasPos = this.canvas.DOMtoCanvas(pointer); + return { + left: canvasPos.x, + top: canvasPos.y, + right: canvasPos.x, + bottom: canvasPos.y }; - - // if the time is set to 0, don't do an animation - if (options.animation.duration == 0) { - if (this.lockedOnNodeId != null) { - this.viewFunction = this._lockedRedraw.bind(this); - this.body.emitter.on("_beforeRender", this.viewFunction); - } else { - this.body.emitter.emit("_setScale", this.targetScale);; - this.body.emitter.emit("_setTranslation", this.targetTranslation); - this.body.emitter.emit("_requestRedraw"); - } - } else { - this.animationSpeed = 1 / (60 * options.animation.duration * 0.001) || 1 / 60; // 60 for 60 seconds, 0.001 for milli's - this.animationEasingFunction = options.animation.easingFunction; - - - this.viewFunction = this._transitionRedraw.bind(this); - this.body.emitter.on("_beforeRender", this.viewFunction); - this.body.emitter.emit("_startRendering"); - } }, writable: true, configurable: true }, - _lockedRedraw: { + _getNodeAt: { + /** - * used to animate smoothly by hijacking the redraw function. + * Get the top node at the a specific point (like a click) + * + * @param {{x: Number, y: Number}} pointer + * @return {Node | null} node * @private */ - value: function _lockedRedraw() { - var nodePosition = { x: this.body.nodes[this.lockedOnNodeId].x, y: this.body.nodes[this.lockedOnNodeId].y }; - var viewCenter = this.DOMtoCanvas({ x: 0.5 * this.frame.canvas.clientWidth, y: 0.5 * this.frame.canvas.clientHeight }); - var distanceFromCenter = { // offset from view, distance view has to change by these x and y to center the node - x: viewCenter.x - nodePosition.x, - y: viewCenter.y - nodePosition.y - }; - var sourceTranslation = this.translation; - var targetTranslation = { - x: sourceTranslation.x + distanceFromCenter.x * this.scale + this.lockedOnNodeOffset.x, - y: sourceTranslation.y + distanceFromCenter.y * this.scale + this.lockedOnNodeOffset.y - }; + value: function _getNodeAt(pointer) { + // we first check if this is an navigation controls element + var positionObject = this._pointerToPositionObject(pointer); + var overlappingNodes = this._getAllNodesOverlappingWith(positionObject); - this.body.emitter.emit("_setTranslation", targetTranslation); - }, - writable: true, - configurable: true - }, - releaseNode: { - value: function releaseNode() { - if (this.lockedOnNodeId !== undefined) { - this.body.emitter.off("_beforeRender", this.viewFunction); - this.lockedOnNodeId = undefined; - this.lockedOnNodeOffset = undefined; + // 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.body.nodes[overlappingNodes[overlappingNodes.length - 1]]; + } else { + return null; } }, writable: true, configurable: true }, - _transitionRedraw: { + _getEdgesOverlappingWith: { + /** - * - * @param easingTime + * 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 */ - value: function _transitionRedraw() { - var finished = arguments[0] === undefined ? false : arguments[0]; - this.easingTime += this.animationSpeed; - this.easingTime = finished === true ? 1 : this.easingTime; - - var progress = util.easingFunctions[this.animationEasingFunction](this.easingTime); - - this.body.emitter.emit("_setScale", this.sourceScale + (this.targetScale - this.sourceScale) * progress); - this.body.emitter.emit("_setTranslation", { - x: this.sourceTranslation.x + (this.targetTranslation.x - this.sourceTranslation.x) * progress, - y: this.sourceTranslation.y + (this.targetTranslation.y - this.sourceTranslation.y) * progress - }); - - // cleanup - if (this.easingTime >= 1) { - this.body.emitter.off("_beforeRender", this.viewFunction); - this.easingTime = 0; - if (this.lockedOnNodeId != null) { - this.viewFunction = this._lockedRedraw.bind(this); - this.body.emitter.on("_beforeRender", this.viewFunction); + value: function _getEdgesOverlappingWith(object, overlappingEdges) { + var edges = this.body.edges; + for (var edgeId in edges) { + if (edges.hasOwnProperty(edgeId)) { + if (edges[edgeId].isOverlappingWith(object)) { + overlappingEdges.push(edgeId); + } } - this.body.emitter.emit("animationFinished"); } }, writable: true, configurable: true - } - }); - - return View; - })(); - - exports.View = View; - Object.defineProperty(exports, "__esModule", { - value: true - }); - -/***/ }, -/* 77 */ -/***/ function(module, exports, __webpack_require__) { - - "use strict"; - - var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; - - var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; - - /** - * Created by Alex on 2/27/2015. - * - */ - - var SelectionHandler = __webpack_require__(78).SelectionHandler; - var util = __webpack_require__(1); - - var TouchEventHandler = (function () { - function TouchEventHandler(body) { - var _this = this; - _classCallCheck(this, TouchEventHandler); - - this.body = body; - - this.body.eventListeners.onTap = this.onTap.bind(this); - this.body.eventListeners.onTouch = this.onTouch.bind(this); - this.body.eventListeners.onDoubleTap = this.onDoubleTap.bind(this); - this.body.eventListeners.onHold = this.onHold.bind(this); - this.body.eventListeners.onDragStart = this.onDragStart.bind(this); - this.body.eventListeners.onDrag = this.onDrag.bind(this); - this.body.eventListeners.onDragEnd = this.onDragEnd.bind(this); - this.body.eventListeners.onMouseWheel = this.onMouseWheel.bind(this); - this.body.eventListeners.onPinch = this.onPinch.bind(this); - this.body.eventListeners.onMouseMove = this.onMouseMove.bind(this); - this.body.eventListeners.onRelease = this.onRelease.bind(this); - - this.touchTime = 0; - this.drag = {}; - this.pinch = {}; - this.pointerPosition = { x: 0, y: 0 }; - - this.scale = 1; - this.body.emitter.on("_setScale", function (scale) { - return _this.scale = scale; - }); + }, + _getAllEdgesOverlappingWith: { - this.selectionHandler = new SelectionHandler(body); - } - _prototypeProperties(TouchEventHandler, null, { - setCanvas: { - value: function setCanvas(canvas) { - this.canvas = canvas; - this.selectionHandler.setCanvas(canvas); + /** + * 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 + */ + value: function _getAllEdgesOverlappingWith(object) { + var overlappingEdges = []; + this._getEdgesOverlappingWith(object, overlappingEdges); + return overlappingEdges; }, writable: true, configurable: true }, - getPointer: { + _getEdgeAt: { + /** - * Get the pointer location from a touch location - * @param {{pageX: Number, pageY: Number}} touch - * @return {{x: Number, y: Number}} pointer + * 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 */ - value: function getPointer(touch) { - return { - x: touch.pageX - util.getAbsoluteLeft(this.canvas.frame.canvas), - y: touch.pageY - util.getAbsoluteTop(this.canvas.frame.canvas) - }; + value: function _getEdgeAt(pointer) { + var positionObject = this._pointerToPositionObject(pointer); + var overlappingEdges = this._getAllEdgesOverlappingWith(positionObject); + + if (overlappingEdges.length > 0) { + return this.body.edges[overlappingEdges[overlappingEdges.length - 1]]; + } else { + return null; + } }, writable: true, configurable: true }, - onTouch: { + _addToSelection: { /** - * On start of a touch gesture, store the pointer - * @param event + * Add object to the selection array. + * + * @param obj * @private */ - value: function onTouch(event) { - if (new Date().valueOf() - this.touchTime > 100) { - this.drag.pointer = this.getPointer(event.gesture.center); - this.drag.pinched = false; - this.pinch.scale = this.scale; - - // to avoid double fireing of this event because we have two hammer instances. (on canvas and on frame) - this.touchTime = new Date().valueOf(); + value: function _addToSelection(obj) { + if (obj instanceof Node) { + this.selectionObj.nodes[obj.id] = obj; + } else { + this.selectionObj.edges[obj.id] = obj; } }, writable: true, configurable: true }, - onTap: { + _addToHover: { /** - * handle tap/click event: select/unselect a node + * Add object to the selection array. + * + * @param obj * @private */ - value: function onTap(event) { - console.log("tap", event); - var pointer = this.getPointer(event.gesture.center); - this.pointerPosition = pointer; - this.selectionHandler.selectOnPoint(pointer); + value: function _addToHover(obj) { + if (obj instanceof Node) { + this.hoverObj.nodes[obj.id] = obj; + } else { + this.hoverObj.edges[obj.id] = obj; + } }, writable: true, configurable: true }, - onDragStart: { + _removeFromSelection: { - /** - * handle drag start event - * @private - */ /** - * This function is called by onDragStart. - * It is separated out because we can then overload it for the datamanipulation system. + * Remove a single option from selection. * + * @param {Object} obj * @private */ - value: function onDragStart(event) {}, + value: function _removeFromSelection(obj) { + if (obj instanceof Node) { + delete this.selectionObj.nodes[obj.id]; + } else { + delete this.selectionObj.edges[obj.id]; + } + }, writable: true, configurable: true }, - onDrag: { - + _unselectAll: { /** - * handle drag event + * Unselect all. The selectionObj is useful for this. + * + * @param {Boolean} [doNotTrigger] | ignore trigger * @private */ - value: function onDrag(event) {}, + value: function _unselectAll() { + var doNotTrigger = arguments[0] === undefined ? false : arguments[0]; + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + this.selectionObj.nodes[nodeId].unselect(); + } + } + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + this.selectionObj.edges[edgeId].unselect(); + } + } + + this.selectionObj = { nodes: {}, edges: {} }; + + if (doNotTrigger == false) { + this.body.emitter.emit("select", this.getSelection()); + } + }, writable: true, configurable: true }, - onDragEnd: { + _getSelectedNodeCount: { /** - * handle drag start event + * return the number of selected nodes + * + * @returns {number} * @private */ - value: function onDragEnd(event) {}, + value: function _getSelectedNodeCount() { + var count = 0; + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + count += 1; + } + } + return count; + }, writable: true, configurable: true }, - onDoubleTap: { + _getSelectedNode: { /** - * handle doubletap event - * @private + * return the selected node + * + * @returns {number} + * @private */ - value: function onDoubleTap(event) {}, + value: function _getSelectedNode() { + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + return this.selectionObj.nodes[nodeId]; + } + } + return null; + }, writable: true, configurable: true }, - onHold: { - - + _getSelectedEdge: { /** - * handle long tap event: multi select nodes + * return the selected edge + * + * @returns {number} * @private */ - value: function onHold(event) {}, + value: function _getSelectedEdge() { + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + return this.selectionObj.edges[edgeId]; + } + } + return null; + }, writable: true, configurable: true }, - onRelease: { + _getSelectedEdgeCount: { /** - * handle the release of the screen + * return the number of selected edges * + * @returns {number} * @private */ - value: function onRelease(event) {}, + value: function _getSelectedEdgeCount() { + var count = 0; + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + count += 1; + } + } + return count; + }, writable: true, configurable: true }, - onPinch: { + _getSelectedObjectCount: { /** - * Handle pinch event - * @param event + * return the number of selected objects. + * + * @returns {number} * @private */ - value: function onPinch(event) {}, + value: function _getSelectedObjectCount() { + 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; + }, writable: true, configurable: true }, - _zoom: { - + _selectionIsEmpty: { /** - * 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 + * Check if anything is selected + * + * @returns {boolean} * @private */ - value: function _zoom(scale, pointer) {}, + value: function _selectionIsEmpty() { + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + return false; + } + } + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + return false; + } + } + return true; + }, writable: true, configurable: true }, - onMouseWheel: { + _clusterInSelection: { /** - * 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 + * check if one of the selected nodes is a cluster. + * + * @returns {boolean} * @private */ - value: function onMouseWheel(event) {}, + value: function _clusterInSelection() { + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + if (this.selectionObj.nodes[nodeId].clusterSize > 1) { + return true; + } + } + } + return false; + }, writable: true, configurable: true }, - onMouseMove: { - + _selectConnectedEdges: { /** - * Mouse move handler for checking whether the title moves over a node with a title. - * @param {Event} event + * select the edges connected to the node that is being selected + * + * @param {Node} node * @private */ - value: function onMouseMove(event) {}, + value: function _selectConnectedEdges(node) { + for (var i = 0; i < node.edges.length; i++) { + var edge = node.edges[i]; + edge.select(); + this._addToSelection(edge); + } + }, writable: true, configurable: true - } - }); - - return TouchEventHandler; - })(); - - exports.TouchEventHandler = TouchEventHandler; - Object.defineProperty(exports, "__esModule", { - value: true - }); - - // in case the touch event was triggered on an external div, do the initial touch now. - //if (this.drag.pointer === undefined) { - // this.onTouch(event); - //} - // - //var node = this._getNodeAt(this.drag.pointer); - //// note: drag.pointer is set in onTouch to get the initial touch location - // - //this.drag.dragging = true; - //this.drag.selection = []; - //this.drag.translation = this._getTranslation(); - //this.drag.nodeId = null; - //this.draggingNodes = false; - // - //if (node != null && this.constants.dragNodes == true) { - // this.draggingNodes = true; - // this.drag.nodeId = node.id; - // // select the clicked node if not yet selected - // if (!node.isSelected()) { - // this._selectObject(node, false); - // } - // - // this.emit("dragStart", {nodeIds: this.getSelection().nodes}); - // - // // create an array with the selected nodes and their original location and status - // for (var objectId in this.selectionObj.nodes) { - // if (this.selectionObj.nodes.hasOwnProperty(objectId)) { - // var object = this.selectionObj.nodes[objectId]; - // var s = { - // id: object.id, - // node: object, - // - // // store original x, y, xFixed and yFixed, make the node temporarily Fixed - // x: object.x, - // y: object.y, - // xFixed: object.xFixed, - // yFixed: object.yFixed - // }; - // - // object.xFixed = true; - // object.yFixed = true; - // - // this.drag.selection.push(s); - // } - // } - //} - //if (this.drag.pinched) { - // return; - //} - // - //// remove the focus on node if it is focussed on by the focusOnNode - //this.releaseNode(); - // - //var pointer = this.getPointer(event.gesture.center); - //var me = this; - //var drag = this.drag; - //var selection = drag.selection; - //if (selection && selection.length && this.constants.dragNodes == true) { - // // calculate delta's and new location - // var deltaX = pointer.x - drag.pointer.x; - // var deltaY = pointer.y - drag.pointer.y; - // - // // update position of all selected nodes - // selection.forEach(function (s) { - // var node = s.node; - // - // 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 { - // // move the network - // if (this.constants.dragNetwork == true) { - // // if the drag was not started properly because the click started outside the network div, start it now. - // if (this.drag.pointer === undefined) { - // this._handleDragStart(event); - // return; - // } - // var diffX = pointer.x - this.drag.pointer.x; - // var diffY = pointer.y - this.drag.pointer.y; - // - // this._setTranslation( - // this.drag.translation.x + diffX, - // this.drag.translation.y + diffY - // ); - // this._redraw(); - // } - //} - //this.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(); - //} - //if (this.draggingNodes == false) { - // this.emit("dragEnd", {nodeIds: []}); - //} - //else { - // this.emit("dragEnd", {nodeIds: this.getSelection().nodes}); - //} - //var pointer = this.getPointer(event.gesture.center); - //this._handleDoubleTap(pointer); - //var pointer = this.getPointer(event.gesture.center); - //this.pointerPosition = pointer; - //this._handleOnHold(pointer); - //var pointer = this.getPointer(event.gesture.center); - //this._handleOnRelease(pointer); - //var pointer = this.getPointer(event.gesture.center); - // - //this.drag.pinched = true; - //if (!('scale' in this.pinch)) { - // this.pinch.scale = 1; - //} - // - //// TODO: enabled moving while pinching? - //var scale = this.pinch.scale * event.gesture.scale; - //this._zoom(scale, pointer) - //if (this.constants.zoomable == true) { - // var scaleOld = this._getScale(); - // if (scale < 0.00001) { - // scale = 0.00001; - // } - // if (scale > 10) { - // scale = 10; - // } - // - // var preScaleDragPointer = null; - // if (this.drag !== undefined) { - // if (this.drag.dragging == true) { - // preScaleDragPointer = this.canvas.DOMtoCanvas(this.drag.pointer); - // } - // } - // // + this.canvas.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; - // - // this._setScale(scale); - // this._setTranslation(tx, ty); - // - // if (preScaleDragPointer != null) { - // var postScaleDragPointer = this.canvas.canvasToDOM(preScaleDragPointer); - // this.drag.pointer.x = postScaleDragPointer.x; - // this.drag.pointer.y = postScaleDragPointer.y; - // } - // - // this._redraw(); - // - // if (scaleOld < scale) { - // this.emit("zoom", {direction: "+"}); - // } - // else { - // this.emit("zoom", {direction: "-"}); - // } - // - // return scale; - //} - //// 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(); - //var gesture = hammerUtil.fakeGesture(this, event); - //var pointer = this.getPointer(gesture.center); - //var popupVisible = false; - // - //// check if the previously selected node is still selected - //if (this.popup !== undefined) { - // if (this.popup.hidden === false) { - // this._checkHidePopup(pointer); - // } - // - // // if the popup was not hidden above - // if (this.popup.hidden === false) { - // popupVisible = true; - // this.popup.setPosition(pointer.x + 3, pointer.y - 5) - // this.popup.show(); - // } - //} - // - //// if we bind the keyboard to the div, we have to highlight it to use it. This highlights it on mouse over - //if (this.constants.keyboard.bindToWindow == false && this.constants.keyboard.enabled == true) { - // this.canvas.frame.focus(); - //} - // - //// start a timeout that will check if the mouse is positioned above an element - //if (popupVisible === false) { - // var me = this; - // var checkShow = function() { - // me._checkShowPopup(pointer); - // }; - // - // if (this.popupTimer) { - // clearInterval(this.popupTimer); // stop any running calculationTimer - // } - // if (!this.drag.dragging) { - // this.popupTimer = setTimeout(checkShow, this.constants.tooltip.delay); - // } - //} - // - ///** - // * Adding hover highlights - // */ - //if (this.constants.hover == true) { - // // removing all hover highlights - // for (var edgeId in this.hoverObj.edges) { - // if (this.hoverObj.edges.hasOwnProperty(edgeId)) { - // this.hoverObj.edges[edgeId].hover = false; - // delete this.hoverObj.edges[edgeId]; - // } - // } - // - // // adding hover highlights - // var obj = this._getNodeAt(pointer); - // if (obj == null) { - // obj = this._getEdgeAt(pointer); - // } - // if (obj != null) { - // this._hoverObject(obj); - // } - // - // // removing all node hover highlights except for the selected one. - // for (var nodeId in this.hoverObj.nodes) { - // if (this.hoverObj.nodes.hasOwnProperty(nodeId)) { - // if (obj instanceof Node && obj.id != nodeId || obj instanceof Edge || obj == null) { - // this._blurObject(this.hoverObj.nodes[nodeId]); - // delete this.hoverObj.nodes[nodeId]; - // } - // } - // } - // this.redraw(); - //} - -/***/ }, -/* 78 */ -/***/ function(module, exports, __webpack_require__) { + }, + _hoverConnectedEdges: { - "use strict"; + /** + * select the edges connected to the node that is being selected + * + * @param {Node} node + * @private + */ + value: function _hoverConnectedEdges(node) { + for (var i = 0; i < node.edges.length; i++) { + var edge = node.edges[i]; + edge.hover = true; + this._addToHover(edge); + } + }, + writable: true, + configurable: true + }, + _unselectConnectedEdges: { - var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); }; - var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; + /** + * unselect the edges connected to the node that is being selected + * + * @param {Node} node + * @private + */ + value: function _unselectConnectedEdges(node) { + for (var i = 0; i < node.edges.length; i++) { + var edge = node.edges[i]; + edge.unselect(); + this._removeFromSelection(edge); + } + }, + writable: true, + configurable: true + }, + _blurObject: { - /** - * Created by Alex on 2/27/2015. - */ - var Node = __webpack_require__(56); - var SelectionHandler = (function () { - function SelectionHandler(body) { - _classCallCheck(this, SelectionHandler); - this.body = body; - this.selectionObj = { nodes: [], edges: [] }; - this.options = { - select: true, - selectConnectedEdges: true - }; - } - _prototypeProperties(SelectionHandler, null, { - setCanvas: { - value: function setCanvas(canvas) { - this.canvas = canvas; + /** + * 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 + */ + value: function _blurObject(object) { + if (object.hover == true) { + object.hover = false; + this.body.emitter.emit("blurNode", { node: object.id }); + } }, writable: true, configurable: true }, - selectOnPoint: { - + _hoverObject: { /** - * handles the selection part of the tap; + * This is called when someone clicks on a node. either select or deselect it. + * If there is an existing selection and we don't want to append to it, clear the existing selection * - * @param {Object} pointer + * @param {Node || Edge} object * @private */ - value: function selectOnPoint(pointer) { - if (this.options.select === true) { - if (this._getSelectedObjectCount() > 0) { - this._unselectAll(); + value: function _hoverObject(object) { + if (object.hover == false) { + object.hover = true; + this._addToHover(object); + if (object instanceof Node) { + this.body.emitter.emit("hoverNode", { node: object.id }); } - - this.selectObject(pointer); - this._generateClickEvent(pointer); - - this.body.emitter.emit("_requestRedraw"); + } + if (object instanceof Node) { + this._hoverConnectedEdges(object); } }, writable: true, configurable: true }, - _generateClickEvent: { - value: function _generateClickEvent(pointer) { + _handleDoubleTap: { + + + + + /** + * handles the selection part of the double tap and opens a cluster if needed + * + * @param {Object} pointer + * @private + */ + value: function _handleDoubleTap(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); + } var properties = this.getSelection(); properties.pointer = { DOM: { x: pointer.x, y: pointer.y }, - canvas: this.canvas.DOMtoCanvas(pointer) + canvas: { x: this._XconvertDOMtoCanvas(pointer.x), y: this._YconvertDOMtoCanvas(pointer.y) } }; - this.body.emitter.emit("click", properties); + this.body.emitter.emit("doubleClick", properties); }, writable: true, configurable: true }, - selectObject: { - value: function selectObject(pointer) { - var obj = this._getNodeAt(pointer); - if (obj != null) { - if (this.options.selectConnectedEdges === true) { - this._selectConnectedEdges(obj); - } + _handleOnHold: { + + + /** + * Handle the onHold selection part + * + * @param pointer + * @private + */ + value: function _handleOnHold(pointer) { + var node = this._getNodeAt(pointer); + if (node != null) { + this._selectObject(node, true); } else { - obj = this._getEdgeAt(pointer); + var edge = this._getEdgeAt(pointer); + if (edge != null) { + this._selectObject(edge, true); + } } + this._requestRedraw(); + }, + writable: true, + configurable: true + }, + getSelection: { - if (obj !== null) { - obj.select(); - this._addToSelection(obj); - this.body.emitter.emit("selected", this.getSelection()); - } - return obj; + + /** + * + * retrieve the currently selected objects + * @return {{nodes: Array., edges: Array.}} selection + */ + value: function getSelection() { + var nodeIds = this.getSelectedNodes(); + var edgeIds = this.getSelectedEdges(); + return { nodes: nodeIds, edges: edgeIds }; }, writable: true, configurable: true }, - _getNodesOverlappingWith: { + getSelectedNodes: { + /** + * + * retrieve the currently selected nodes + * @return {String[]} selection An array with the ids of the + * selected nodes. + */ + value: function getSelectedNodes() { + var idArray = []; + if (this.options.select == true) { + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + idArray.push(nodeId); + } + } + } + return idArray; + }, + writable: true, + configurable: true + }, + getSelectedEdges: { /** * - * @param object - * @param overlappingNodes - * @private + * retrieve the currently selected edges + * @return {Array} selection An array with the ids of the + * selected nodes. */ - value: function _getNodesOverlappingWith(object, overlappingNodes) { - var nodes = this.body.nodes; - for (var nodeId in nodes) { - if (nodes.hasOwnProperty(nodeId)) { - if (nodes[nodeId].isOverlappingWith(object)) { - overlappingNodes.push(nodeId); + value: function getSelectedEdges() { + var idArray = []; + if (this.options.select == true) { + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + idArray.push(edgeId); } } } + return idArray; }, writable: true, configurable: true }, - _getAllNodesOverlappingWith: { + selectNodes: { + /** - * retrieve all nodes overlapping with given object - * @param {Object} object An object with parameters left, top, right, bottom - * @return {Number[]} An array with id's of the overlapping nodes - * @private + * select zero or more nodes with the option to highlight edges + * @param {Number[] | String[]} selection An array with the ids of the + * selected nodes. + * @param {boolean} [highlightEdges] */ - value: function _getAllNodesOverlappingWith(object) { - var overlappingNodes = []; - this._getNodesOverlappingWith(object, overlappingNodes); - return overlappingNodes; + value: function selectNodes(selection, highlightEdges) { + var i, iMax, id; + + if (!selection || selection.length == undefined) throw "Selection must be an array with ids"; + + // first unselect any selected node + this._unselectAll(true); + + for (i = 0, iMax = selection.length; i < iMax; i++) { + id = selection[i]; + + var node = this.body.nodes[id]; + if (!node) { + throw new RangeError("Node with id \"" + id + "\" not found"); + } + this._selectObject(node, true, true, highlightEdges, true); + } + this.redraw(); }, writable: true, configurable: true }, - _pointerToPositionObject: { + selectEdges: { + + + /** + * select zero or more edges + * @param {Number[] | String[]} selection An array with the ids of the + * selected nodes. + */ + value: function selectEdges(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.body.edges[id]; + if (!edge) { + throw new RangeError("Edge with id \"" + id + "\" not found"); + } + this._selectObject(edge, true, true, false, true); + } + this.redraw(); + }, + writable: true, + configurable: true + }, + _updateSelection: { + + /** + * Validate the selection: remove ids of nodes which no longer exist + * @private + */ + value: function _updateSelection() { + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + if (!this.body.nodes.hasOwnProperty(nodeId)) { + delete this.selectionObj.nodes[nodeId]; + } + } + } + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + if (!this.body.edges.hasOwnProperty(edgeId)) { + delete this.selectionObj.edges[edgeId]; + } + } + } + }, + writable: true, + configurable: true + } + }); + + return SelectionHandler; + })(); + + exports.SelectionHandler = SelectionHandler; + Object.defineProperty(exports, "__esModule", { + value: true + }); + +/***/ }, +/* 74 */ +/***/ function(module, exports, __webpack_require__) { + + "use strict"; + + var Node = __webpack_require__(40); + + /** + * + * @param object + * @param overlappingNodes + * @private + */ + exports._getNodesOverlappingWith = function (object, overlappingNodes) { + var nodes = this.body.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._getNodesOverlappingWith(object, overlappingNodes); + return overlappingNodes; + }; + + + /** + * Return a position object in canvasspace from a single point in screenspace + * + * @param pointer + * @returns {{left: number, top: number, right: number, bottom: number}} + * @private + */ + exports._pointerToPositionObject = function (pointer) { + var x = this._XconvertDOMtoCanvas(pointer.x); + var y = this._YconvertDOMtoCanvas(pointer.y); + + return { + left: x, + top: y, + right: x, + bottom: y + }; + }; + + + /** + * Get the top node at the a specific point (like a click) + * + * @param {{x: Number, y: Number}} pointer + * @return {Node | null} node + * @private + */ + exports._getNodeAt = function (pointer) { + // we first check if this is an navigation controls element + var positionObject = this._pointerToPositionObject(pointer); + var overlappingNodes = this._getAllNodesOverlappingWith(positionObject); + + // if there are overlapping nodes, select the last one, this is the + // one which is drawn on top of the others + if (overlappingNodes.length > 0) { + return this.body.nodes[overlappingNodes[overlappingNodes.length - 1]]; + } else { + return null; + } + }; + + + /** + * 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._getEdgesOverlappingWith = function (object, overlappingEdges) { + var edges = this.body.edges; + for (var edgeId in edges) { + if (edges.hasOwnProperty(edgeId)) { + if (edges[edgeId].isOverlappingWith(object)) { + overlappingEdges.push(edgeId); + } + } + } + }; + + + /** + * 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._getEdgesOverlappingWith(object, overlappingEdges); + return overlappingEdges; + }; + + /** + * Place holder. To implement change the _getNodeAt to a _getObjectAt. Have the _getObjectAt call + * _getNodeAt and _getEdgesAt, then priortize the selection to user preferences. + * + * @param pointer + * @returns {null} + * @private + */ + exports._getEdgeAt = function (pointer) { + var positionObject = this._pointerToPositionObject(pointer); + var overlappingEdges = this._getAllEdgesOverlappingWith(positionObject); + + if (overlappingEdges.length > 0) { + return this.body.edges[overlappingEdges[overlappingEdges.length - 1]]; + } else { + return null; + } + }; + + + /** + * Add object to the selection array. + * + * @param obj + * @private + */ + exports._addToSelection = function (obj) { + if (obj instanceof Node) { + this.selectionObj.nodes[obj.id] = obj; + } else { + this.selectionObj.edges[obj.id] = obj; + } + }; + + /** + * 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; + } + }; + + + /** + * Remove a single option from selection. + * + * @param {Object} obj + * @private + */ + exports._removeFromSelection = function (obj) { + if (obj instanceof Node) { + delete this.selectionObj.nodes[obj.id]; + } else { + delete this.selectionObj.edges[obj.id]; + } + }; + + /** + * Unselect all. The selectionObj is useful for this. + * + * @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(); + } + } + + this.selectionObj = { nodes: {}, edges: {} }; + + if (doNotTrigger == false) { + this.emit("select", this.getSelection()); + } + }; + + /** + * Unselect all clusters. The selectionObj is useful for this. + * + * @param {Boolean} [doNotTrigger] | ignore trigger + * @private + */ + exports._unselectClusters = function (doNotTrigger) { + if (doNotTrigger === undefined) { + doNotTrigger = false; + } + + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + if (this.selectionObj.nodes[nodeId].clusterSize > 1) { + this.selectionObj.nodes[nodeId].unselect(); + this._removeFromSelection(this.selectionObj.nodes[nodeId]); + } + } + } + + if (doNotTrigger == false) { + this.emit("select", this.getSelection()); + } + }; + + + /** + * return the number of selected nodes + * + * @returns {number} + * @private + */ + exports._getSelectedNodeCount = function () { + var count = 0; + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + count += 1; + } + } + return count; + }; + + /** + * return the selected node + * + * @returns {number} + * @private + */ + exports._getSelectedNode = function () { + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + return this.selectionObj.nodes[nodeId]; + } + } + return null; + }; + + /** + * 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; + }; + + + /** + * return the number of selected edges + * + * @returns {number} + * @private + */ + exports._getSelectedEdgeCount = function () { + var count = 0; + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + count += 1; + } + } + return count; + }; + + + /** + * return the number of selected objects. + * + * @returns {number} + * @private + */ + exports._getSelectedObjectCount = function () { + var count = 0; + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + count += 1; + } + } + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + count += 1; + } + } + return count; + }; + + /** + * Check if anything is selected + * + * @returns {boolean} + * @private + */ + exports._selectionIsEmpty = function () { + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + return false; + } + } + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + return false; + } + } + return true; + }; + + + /** + * check if one of the selected nodes is a cluster. + * + * @returns {boolean} + * @private + */ + exports._clusterInSelection = function () { + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + if (this.selectionObj.nodes[nodeId].clusterSize > 1) { + return true; + } + } + } + return false; + }; + + /** + * select the edges connected to the node that is being selected + * + * @param {Node} node + * @private + */ + exports._selectConnectedEdges = function (node) { + for (var i = 0; i < node.edges.length; i++) { + var edge = node.edges[i]; + edge.select(); + this._addToSelection(edge); + } + }; + + /** + * select the edges connected to the node that is being selected + * + * @param {Node} node + * @private + */ + exports._hoverConnectedEdges = function (node) { + for (var i = 0; i < node.edges.length; i++) { + var edge = node.edges[i]; + edge.hover = true; + this._addToHover(edge); + } + }; + + + /** + * 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.edges.length; i++) { + var edge = node.edges[i]; + edge.unselect(); + this._removeFromSelection(edge); + } + }; + + + + + /** + * This is called when someone clicks on a node. either select or deselect it. + * If there is an existing selection and we don't want to append to it, clear the existing selection + * + * @param {Node || Edge} object + * @param {Boolean} append + * @param {Boolean} [doNotTrigger] | ignore trigger + * @private + */ + exports._selectObject = function (object, append, doNotTrigger, highlightEdges, overrideSelectable) { + if (doNotTrigger === undefined) { + doNotTrigger = false; + } + if (highlightEdges === undefined) { + highlightEdges = true; + } + + if (this._selectionIsEmpty() == false && append == false && this.forceAppendSelection == false) { + this._unselectAll(true); + } + + // selectable allows the object to be selected. Override can be used if needed to bypass this. + if (object.selected == false && (this.constants.selectable == true || overrideSelectable)) { + object.select(); + this._addToSelection(object); + if (object instanceof Node && this.blockConnectingEdgeSelection == false && highlightEdges == true) { + this._selectConnectedEdges(object); + } + } + // do not select the object if selectable is false, only add it to selection to allow drag to work + else if (object.selected == false) { + this._addToSelection(object); + doNotTrigger = true; + } else { + object.unselect(); + this._removeFromSelection(object); + } + + if (doNotTrigger == false) { + this.emit("select", this.getSelection()); + } + }; + + + /** + * 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._blurObject = function (object) { + if (object.hover == true) { + object.hover = false; + this.emit("blurNode", { node: object.id }); + } + }; + + /** + * 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 }); + } + } + if (object instanceof Node) { + this._hoverConnectedEdges(object); + } + }; + + + /** + * 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._handleTouch = function (pointer) {}; + + + /** + * handles the selection part of the tap; + * + * @param {Object} pointer + * @private + */ + exports._handleTap = function (pointer) { + var node = this._getNodeAt(pointer); + if (node != null) { + this._selectObject(node, false); + } else { + var edge = this._getEdgeAt(pointer); + if (edge != null) { + this._selectObject(edge, false); + } else { + this._unselectAll(); + } + } + var properties = this.getSelection(); + properties.pointer = { + DOM: { x: pointer.x, y: pointer.y }, + canvas: { x: this._XconvertDOMtoCanvas(pointer.x), y: this._YconvertDOMtoCanvas(pointer.y) } + }; + this.emit("click", properties); + this._requestRedraw(); + }; + + + /** + * handles the selection part of the double tap and opens a cluster if needed + * + * @param {Object} pointer + * @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); + } + var properties = this.getSelection(); + properties.pointer = { + DOM: { x: pointer.x, y: pointer.y }, + canvas: { x: this._XconvertDOMtoCanvas(pointer.x), y: this._YconvertDOMtoCanvas(pointer.y) } + }; + this.emit("doubleClick", properties); + }; + + + /** + * Handle the onHold selection part + * + * @param pointer + * @private + */ + exports._handleOnHold = function (pointer) { + var node = this._getNodeAt(pointer); + if (node != null) { + this._selectObject(node, true); + } else { + var edge = this._getEdgeAt(pointer); + if (edge != null) { + this._selectObject(edge, true); + } + } + this._requestRedraw(); + }; + + + /** + * handle the onRelease event. These functions are here for the navigation controls module + * and data manipulation module. + * + * @private + */ + exports._handleOnRelease = function (pointer) { + this._manipulationReleaseOverload(pointer); + this._navigationReleaseOverload(pointer); + }; + + exports._manipulationReleaseOverload = function (pointer) {}; + exports._navigationReleaseOverload = function (pointer) {}; + + /** + * + * 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 }; + }; + + /** + * + * retrieve the currently selected nodes + * @return {String[]} selection An array with the ids of the + * selected nodes. + */ + exports.getSelectedNodes = function () { + var idArray = []; + if (this.constants.selectable == true) { + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + idArray.push(nodeId); + } + } + } + return idArray; + }; + + /** + * + * retrieve the currently selected edges + * @return {Array} selection An array with the ids of the + * selected nodes. + */ + exports.getSelectedEdges = function () { + var idArray = []; + if (this.constants.selectable == true) { + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + idArray.push(edgeId); + } + } + } + return idArray; + }; + + + /** + * select zero or more nodes DEPRICATED + * @param {Number[] | String[]} selection An array with the ids of the + * selected nodes. + */ + exports.setSelection = function () { + console.log("setSelection is deprecated. Please use selectNodes instead."); + }; + + + /** + * 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.selectNodes = function (selection, highlightEdges) { + var i, iMax, id; + + if (!selection || selection.length == undefined) throw "Selection must be an array with ids"; + + // first unselect any selected node + this._unselectAll(true); + + for (i = 0, iMax = selection.length; i < iMax; i++) { + id = selection[i]; + + var node = this.body.nodes[id]; + if (!node) { + throw new RangeError("Node with id \"" + id + "\" not found"); + } + this._selectObject(node, true, true, highlightEdges, true); + } + this.redraw(); + }; + + + /** + * select zero or more edges + * @param {Number[] | String[]} selection An array with the ids of the + * selected nodes. + */ + exports.selectEdges = function (selection) { + var i, iMax, id; + + if (!selection || selection.length == undefined) throw "Selection must be an array with ids"; + + // first unselect any selected node + this._unselectAll(true); + + for (i = 0, iMax = selection.length; i < iMax; i++) { + id = selection[i]; + + var edge = this.body.edges[id]; + if (!edge) { + throw new RangeError("Edge with id \"" + id + "\" not found"); + } + this._selectObject(edge, true, true, false, true); + } + 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.body.nodes.hasOwnProperty(nodeId)) { + delete this.selectionObj.nodes[nodeId]; + } + } + } + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + if (!this.body.edges.hasOwnProperty(edgeId)) { + delete this.selectionObj.edges[edgeId]; + } + } + } + }; + +/***/ }, +/* 75 */ +/***/ function(module, exports, __webpack_require__) { + + "use strict"; + + var util = __webpack_require__(1); + var Node = __webpack_require__(40); + var Edge = __webpack_require__(37); + var Hammer = __webpack_require__(45); + + /** + * clears the toolbar div element of children + * + * @private + */ + exports._clearManipulatorBar = function () { + this._recursiveDOMDelete(this.manipulationDiv); + this.manipulationDOM = {}; + + this._cleanManipulatorHammers(); + + this._manipulationReleaseOverload = function () {}; + delete this.body.sectors.support.nodes.targetNode; + delete this.body.sectors.support.nodes.targetViaNode; + this.controlNodesActive = false; + this.freezeSimulationEnabled = false; + }; + + + exports._cleanManipulatorHammers = function () { + // clean hammer bindings + if (this.manipulationHammers.length != 0) { + for (var i = 0; i < this.manipulationHammers.length; i++) { + this.manipulationHammers[i].dispose(); + } + this.manipulationHammers = []; + } + }; + + /** + * 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]; + delete this.cachedFunctions[functionName]; + } + } + }; + + /** + * Enable or disable edit-mode. + * + * @private + */ + exports._toggleEditMode = function () { + this.editMode = !this.editMode; + var toolbar = this.manipulationDiv; + var closeDiv = this.closeDiv; + var editModeDiv = this.editModeDiv; + if (this.editMode == true) { + toolbar.style.display = "block"; + closeDiv.style.display = "block"; + editModeDiv.style.display = "none"; + this._bindHammerToDiv(closeDiv, "_toggleEditMode"); + } else { + toolbar.style.display = "none"; + closeDiv.style.display = "none"; + editModeDiv.style.display = "block"; + } + this._createManipulatorBar(); + }; + + /** + * main function, creates the main toolbar. Removes functions bound to the select event. Binds all the buttons of the toolbar. + * + * @private + */ + exports._createManipulatorBar = function () { + // remove bound functions + if (this.boundFunction) { + this.off("select", this.boundFunction); + } + + this._cleanManipulatorHammers(); + + var locale = this.constants.locales[this.constants.locale]; + + if (this.edgeBeingEdited !== undefined) { + this.edgeBeingEdited._disableControlNodes(); + this.edgeBeingEdited = undefined; + this.selectedControlNode = null; + this.controlNodesActive = false; + this._redraw(); + } + + // restore overloaded functions + this._restoreOverloadedFunctions(); + + // resume calculation + this.freezeSimulation(false); + + // reset global variables + this.blockConnectingEdgeSelection = false; + this.forceAppendSelection = false; + this.manipulationDOM = {}; + + if (this.editMode == true) { + while (this.manipulationDiv.hasChildNodes()) { + this.manipulationDiv.removeChild(this.manipulationDiv.firstChild); + } + + this.manipulationDOM.addNodeSpan = document.createElement("div"); + this.manipulationDOM.addNodeSpan.className = "network-manipulationUI add"; + + this.manipulationDOM.addNodeLabelSpan = document.createElement("div"); + this.manipulationDOM.addNodeLabelSpan.className = "network-manipulationLabel"; + this.manipulationDOM.addNodeLabelSpan.innerHTML = locale.addNode; + this.manipulationDOM.addNodeSpan.appendChild(this.manipulationDOM.addNodeLabelSpan); + + this.manipulationDOM.seperatorLineDiv1 = document.createElement("div"); + this.manipulationDOM.seperatorLineDiv1.className = "network-seperatorLine"; + + this.manipulationDOM.addEdgeSpan = document.createElement("div"); + this.manipulationDOM.addEdgeSpan.className = "network-manipulationUI connect"; + this.manipulationDOM.addEdgeLabelSpan = document.createElement("div"); + this.manipulationDOM.addEdgeLabelSpan.className = "network-manipulationLabel"; + this.manipulationDOM.addEdgeLabelSpan.innerHTML = locale.addEdge; + this.manipulationDOM.addEdgeSpan.appendChild(this.manipulationDOM.addEdgeLabelSpan); + + this.manipulationDiv.appendChild(this.manipulationDOM.addNodeSpan); + this.manipulationDiv.appendChild(this.manipulationDOM.seperatorLineDiv1); + this.manipulationDiv.appendChild(this.manipulationDOM.addEdgeSpan); + + if (this._getSelectedNodeCount() == 1 && this.triggerFunctions.edit) { + this.manipulationDOM.seperatorLineDiv2 = document.createElement("div"); + this.manipulationDOM.seperatorLineDiv2.className = "network-seperatorLine"; + + this.manipulationDOM.editNodeSpan = document.createElement("div"); + this.manipulationDOM.editNodeSpan.className = "network-manipulationUI edit"; + this.manipulationDOM.editNodeLabelSpan = document.createElement("div"); + this.manipulationDOM.editNodeLabelSpan.className = "network-manipulationLabel"; + this.manipulationDOM.editNodeLabelSpan.innerHTML = locale.editNode; + this.manipulationDOM.editNodeSpan.appendChild(this.manipulationDOM.editNodeLabelSpan); + + this.manipulationDiv.appendChild(this.manipulationDOM.seperatorLineDiv2); + this.manipulationDiv.appendChild(this.manipulationDOM.editNodeSpan); + } else if (this._getSelectedEdgeCount() == 1 && this._getSelectedNodeCount() == 0) { + this.manipulationDOM.seperatorLineDiv3 = document.createElement("div"); + this.manipulationDOM.seperatorLineDiv3.className = "network-seperatorLine"; + + this.manipulationDOM.editEdgeSpan = document.createElement("div"); + this.manipulationDOM.editEdgeSpan.className = "network-manipulationUI edit"; + this.manipulationDOM.editEdgeLabelSpan = document.createElement("div"); + this.manipulationDOM.editEdgeLabelSpan.className = "network-manipulationLabel"; + this.manipulationDOM.editEdgeLabelSpan.innerHTML = locale.editEdge; + this.manipulationDOM.editEdgeSpan.appendChild(this.manipulationDOM.editEdgeLabelSpan); + + this.manipulationDiv.appendChild(this.manipulationDOM.seperatorLineDiv3); + this.manipulationDiv.appendChild(this.manipulationDOM.editEdgeSpan); + } + if (this._selectionIsEmpty() == false) { + this.manipulationDOM.seperatorLineDiv4 = document.createElement("div"); + this.manipulationDOM.seperatorLineDiv4.className = "network-seperatorLine"; + + this.manipulationDOM.deleteSpan = document.createElement("div"); + this.manipulationDOM.deleteSpan.className = "network-manipulationUI delete"; + this.manipulationDOM.deleteLabelSpan = document.createElement("div"); + this.manipulationDOM.deleteLabelSpan.className = "network-manipulationLabel"; + this.manipulationDOM.deleteLabelSpan.innerHTML = locale.del; + this.manipulationDOM.deleteSpan.appendChild(this.manipulationDOM.deleteLabelSpan); + + this.manipulationDiv.appendChild(this.manipulationDOM.seperatorLineDiv4); + this.manipulationDiv.appendChild(this.manipulationDOM.deleteSpan); + } + + // bind the icons + this._bindHammerToDiv(this.manipulationDOM.addNodeSpan, "_createAddNodeToolbar"); + this._bindHammerToDiv(this.manipulationDOM.addEdgeSpan, "_createAddEdgeToolbar"); + this._bindHammerToDiv(this.closeDiv, "_toggleEditMode"); + + if (this._getSelectedNodeCount() == 1 && this.triggerFunctions.edit) { + this._bindHammerToDiv(this.manipulationDOM.editNodeSpan, "_editNode"); + } else if (this._getSelectedEdgeCount() == 1 && this._getSelectedNodeCount() == 0) { + this._bindHammerToDiv(this.manipulationDOM.editEdgeSpan, "_createEditEdgeToolbar"); + } + if (this._selectionIsEmpty() == false) { + this._bindHammerToDiv(this.manipulationDOM.deleteSpan, "_deleteSelected"); + } + + var me = this; + this.boundFunction = me._createManipulatorBar; + this.on("select", this.boundFunction); + } else { + while (this.editModeDiv.hasChildNodes()) { + this.editModeDiv.removeChild(this.editModeDiv.firstChild); + } + + this.manipulationDOM.editModeSpan = document.createElement("div"); + this.manipulationDOM.editModeSpan.className = "network-manipulationUI edit editmode"; + this.manipulationDOM.editModeLabelSpan = document.createElement("div"); + this.manipulationDOM.editModeLabelSpan.className = "network-manipulationLabel"; + this.manipulationDOM.editModeLabelSpan.innerHTML = locale.edit; + this.manipulationDOM.editModeSpan.appendChild(this.manipulationDOM.editModeLabelSpan); + + this.editModeDiv.appendChild(this.manipulationDOM.editModeSpan); + + this._bindHammerToDiv(this.manipulationDOM.editModeSpan, "_toggleEditMode"); + } + }; + + + exports._bindHammerToDiv = function (domElement, funct) { + var hammer = Hammer(domElement, { prevent_default: true }); + hammer.on("touch", this[funct].bind(this)); + this.manipulationHammers.push(hammer); + }; + + + /** + * Create the toolbar for adding Nodes + * + * @private + */ + exports._createAddNodeToolbar = function () { + // clear the toolbar + this._clearManipulatorBar(); + if (this.boundFunction) { + this.off("select", this.boundFunction); + } + + var locale = this.constants.locales[this.constants.locale]; + + this.manipulationDOM = {}; + this.manipulationDOM.backSpan = document.createElement("div"); + this.manipulationDOM.backSpan.className = "network-manipulationUI back"; + this.manipulationDOM.backLabelSpan = document.createElement("div"); + this.manipulationDOM.backLabelSpan.className = "network-manipulationLabel"; + this.manipulationDOM.backLabelSpan.innerHTML = locale.back; + this.manipulationDOM.backSpan.appendChild(this.manipulationDOM.backLabelSpan); + + this.manipulationDOM.seperatorLineDiv1 = document.createElement("div"); + this.manipulationDOM.seperatorLineDiv1.className = "network-seperatorLine"; + + this.manipulationDOM.descriptionSpan = document.createElement("div"); + this.manipulationDOM.descriptionSpan.className = "network-manipulationUI none"; + this.manipulationDOM.descriptionLabelSpan = document.createElement("div"); + this.manipulationDOM.descriptionLabelSpan.className = "network-manipulationLabel"; + this.manipulationDOM.descriptionLabelSpan.innerHTML = locale.addDescription; + this.manipulationDOM.descriptionSpan.appendChild(this.manipulationDOM.descriptionLabelSpan); + + this.manipulationDiv.appendChild(this.manipulationDOM.backSpan); + this.manipulationDiv.appendChild(this.manipulationDOM.seperatorLineDiv1); + this.manipulationDiv.appendChild(this.manipulationDOM.descriptionSpan); + + // bind the icon + this._bindHammerToDiv(this.manipulationDOM.backSpan, "_createManipulatorBar"); + + // we use the boundFunction so we can reference it when we unbind it from the "select" event. + var me = this; + this.boundFunction = me._addNode; + this.on("select", this.boundFunction); + }; + + + /** + * create the toolbar to connect nodes + * + * @private + */ + exports._createAddEdgeToolbar = function () { + // clear the toolbar + this._clearManipulatorBar(); + this._unselectAll(true); + this.freezeSimulationEnabled = true; + + if (this.boundFunction) { + this.off("select", this.boundFunction); + } + + var locale = this.constants.locales[this.constants.locale]; + + this.forceAppendSelection = false; + this.blockConnectingEdgeSelection = true; + + this.manipulationDOM = {}; + this.manipulationDOM.backSpan = document.createElement("div"); + this.manipulationDOM.backSpan.className = "network-manipulationUI back"; + this.manipulationDOM.backLabelSpan = document.createElement("div"); + this.manipulationDOM.backLabelSpan.className = "network-manipulationLabel"; + this.manipulationDOM.backLabelSpan.innerHTML = locale.back; + this.manipulationDOM.backSpan.appendChild(this.manipulationDOM.backLabelSpan); + + this.manipulationDOM.seperatorLineDiv1 = document.createElement("div"); + this.manipulationDOM.seperatorLineDiv1.className = "network-seperatorLine"; + + this.manipulationDOM.descriptionSpan = document.createElement("div"); + this.manipulationDOM.descriptionSpan.className = "network-manipulationUI none"; + this.manipulationDOM.descriptionLabelSpan = document.createElement("div"); + this.manipulationDOM.descriptionLabelSpan.className = "network-manipulationLabel"; + this.manipulationDOM.descriptionLabelSpan.innerHTML = locale.edgeDescription; + this.manipulationDOM.descriptionSpan.appendChild(this.manipulationDOM.descriptionLabelSpan); + + this.manipulationDiv.appendChild(this.manipulationDOM.backSpan); + this.manipulationDiv.appendChild(this.manipulationDOM.seperatorLineDiv1); + this.manipulationDiv.appendChild(this.manipulationDOM.descriptionSpan); + + // bind the icon + this._bindHammerToDiv(this.manipulationDOM.backSpan, "_createManipulatorBar"); + + // we use the boundFunction so we can reference it when we unbind it from the "select" event. + var me = this; + this.boundFunction = me._handleConnect; + this.on("select", this.boundFunction); + + // temporarily overload functions + this.cachedFunctions._handleTouch = this._handleTouch; + this.cachedFunctions._manipulationReleaseOverload = this._manipulationReleaseOverload; + this.cachedFunctions._handleDragStart = this._handleDragStart; + this.cachedFunctions._handleDragEnd = this._handleDragEnd; + this.cachedFunctions._handleOnHold = this._handleOnHold; + this._handleTouch = this._handleConnect; + this._manipulationReleaseOverload = function () {}; + this._handleOnHold = function () {}; + this._handleDragStart = function () {}; + this._handleDragEnd = this._finishConnect; + + // redraw to show the unselect + this._redraw(); + }; + + /** + * create the toolbar to edit edges + * + * @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(); + + var locale = this.constants.locales[this.constants.locale]; + + this.manipulationDOM = {}; + this.manipulationDOM.backSpan = document.createElement("div"); + this.manipulationDOM.backSpan.className = "network-manipulationUI back"; + this.manipulationDOM.backLabelSpan = document.createElement("div"); + this.manipulationDOM.backLabelSpan.className = "network-manipulationLabel"; + this.manipulationDOM.backLabelSpan.innerHTML = locale.back; + this.manipulationDOM.backSpan.appendChild(this.manipulationDOM.backLabelSpan); + + this.manipulationDOM.seperatorLineDiv1 = document.createElement("div"); + this.manipulationDOM.seperatorLineDiv1.className = "network-seperatorLine"; + + this.manipulationDOM.descriptionSpan = document.createElement("div"); + this.manipulationDOM.descriptionSpan.className = "network-manipulationUI none"; + this.manipulationDOM.descriptionLabelSpan = document.createElement("div"); + this.manipulationDOM.descriptionLabelSpan.className = "network-manipulationLabel"; + this.manipulationDOM.descriptionLabelSpan.innerHTML = locale.editEdgeDescription; + this.manipulationDOM.descriptionSpan.appendChild(this.manipulationDOM.descriptionLabelSpan); + + this.manipulationDiv.appendChild(this.manipulationDOM.backSpan); + this.manipulationDiv.appendChild(this.manipulationDOM.seperatorLineDiv1); + this.manipulationDiv.appendChild(this.manipulationDOM.descriptionSpan); + + // bind the icon + this._bindHammerToDiv(this.manipulationDOM.backSpan, "_createManipulatorBar"); + + // temporarily overload functions + this.cachedFunctions._handleTouch = this._handleTouch; + this.cachedFunctions._manipulationReleaseOverload = this._manipulationReleaseOverload; + 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._manipulationReleaseOverload = this._releaseControlNode; + + // redraw to show the unselect + 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 + */ + exports._selectControlNode = function (pointer) { + this.edgeBeingEdited.controlNodes.from.unselect(); + this.edgeBeingEdited.controlNodes.to.unselect(); + this.selectedControlNode = this.edgeBeingEdited._getSelectedControlNode(this._XconvertDOMtoCanvas(pointer.x), this._YconvertDOMtoCanvas(pointer.y)); + if (this.selectedControlNode !== null) { + this.selectedControlNode.select(); + this.freezeSimulation(true); + } + this._redraw(); + }; + + + /** + * 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._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(); + }; + + + /** + * + * @param pointer + * @private + */ + exports._releaseControlNode = function (pointer) { + var newNode = this._getNodeAt(pointer); + if (newNode !== null) { + if (this.edgeBeingEdited.controlNodes.from.selected == true) { + this.edgeBeingEdited._restoreControlNodes(); + this._editEdge(newNode.id, this.edgeBeingEdited.to.id); + this.edgeBeingEdited.controlNodes.from.unselect(); + } + if (this.edgeBeingEdited.controlNodes.to.selected == true) { + this.edgeBeingEdited._restoreControlNodes(); + this._editEdge(this.edgeBeingEdited.from.id, newNode.id); + this.edgeBeingEdited.controlNodes.to.unselect(); + } + } else { + this.edgeBeingEdited._restoreControlNodes(); + } + this.freezeSimulation(false); + this._redraw(); + }; + + /** + * the function bound to the selection event. It checks if you want to connect a cluster and changes the description + * to walk the user through the process. + * + * @private + */ + exports._handleConnect = function (pointer) { + if (this._getSelectedNodeCount() == 0) { + var node = this._getNodeAt(pointer); + + if (node != null) { + if (this.isCluster(node.id) == true) { + alert(this.constants.locales[this.constants.locale].createEdgeError); + } else { + this._selectObject(node, false); + var supportNodes = this.body.sectors.support.nodes; + + // create a node the temporary line can look at + supportNodes.targetNode = this.body.functions.createNode({ id: "targetNode" }); + var targetNode = supportNodes.targetNode; + targetNode.x = node.x; + targetNode.y = node.y; + + // create a temporary edge + this.body.edges.connectionEdge = this.body.functions.createEdge({ id: "connectionEdge", from: node.id, to: targetNode.id }); + var connectionEdge = this.body.edges.connectionEdge; + connectionEdge.from = node; + connectionEdge.connected = true; + connectionEdge.options.smoothCurves = { enabled: true, + dynamic: false, + type: "continuous", + roundness: 0.5 + }; + connectionEdge.selected = true; + connectionEdge.to = targetNode; + + this.cachedFunctions._handleOnDrag = this._handleOnDrag; + var me = this; + this._handleOnDrag = function (event) { + var pointer = me._getPointer(event.gesture.center); + var connectionEdge = me.body.edges.connectionEdge; + connectionEdge.to.x = me._XconvertDOMtoCanvas(pointer.x); + connectionEdge.to.y = me._YconvertDOMtoCanvas(pointer.y); + me._redraw(); + }; + } + } + } + }; + + exports._finishConnect = function (event) { + if (this._getSelectedNodeCount() == 1) { + var pointer = this._getPointer(event.gesture.center); + // restore the drag function + this._handleOnDrag = this.cachedFunctions._handleOnDrag; + delete this.cachedFunctions._handleOnDrag; + + // remember the edge id + var connectFromId = this.body.edges.connectionEdge.fromId; + + // remove the temporary nodes and edge + delete this.body.edges.connectionEdge; + delete this.body.sectors.support.nodes.targetNode; + delete this.body.sectors.support.nodes.targetViaNode; + + var node = this._getNodeAt(pointer); + if (node != null) { + if (this.isCluster(node.id) === true) { + alert(this.constants.locales[this.constants.locale].createEdgeError); + } else { + this._createEdge(connectFromId, node.id); + this._createManipulatorBar(); + } + } + this._unselectAll(); + } + }; + + + /** + * 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.body.data.nodes.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.body.data.nodes.add(defaultData); + this._createManipulatorBar(); + this.moving = true; + this.start(); + } + } + }; + + + /** + * 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.body.data.edges.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.body.data.edges.add(defaultData); + this.moving = true; + this.start(); + } + } + }; + + /** + * connect two nodes with a new edge. + * + * @private + */ + exports._editEdge = function (sourceNodeId, targetNodeId) { + if (this.editMode == true) { + var defaultData = { id: this.edgeBeingEdited.id, from: sourceNodeId, to: targetNodeId }; + console.log(defaultData); + if (this.triggerFunctions.editEdge) { + if (this.triggerFunctions.editEdge.length == 2) { + var me = this; + this.triggerFunctions.editEdge(defaultData, function (finalizedData) { + me.body.data.edges.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.body.data.edges.update(defaultData); + 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. + * + * @private + */ + exports._editNode = function () { + if (this.triggerFunctions.edit && this.editMode == true) { + var node = this._getSelectedNode(); + var data = { id: node.id, + label: node.label, + group: node.options.group, + shape: node.options.shape, + color: { + background: node.options.color.background, + border: node.options.color.border, + highlight: { + background: node.options.color.highlight.background, + border: node.options.color.highlight.border + } + } }; + if (this.triggerFunctions.edit.length == 2) { + var me = this; + this.triggerFunctions.edit(data, function (finalizedData) { + me.body.data.nodes.update(finalizedData); + me._createManipulatorBar(); + me.moving = true; + me.start(); + }); + } else { + throw new Error("The function for edit does not support two arguments (data, callback)"); + } + } else { + throw new Error("No edit function has been bound to this button"); + } + }; + + + + + /** + * 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.body.data.edges.remove(finalizedData.edges); + me.body.data.nodes.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.body.data.edges.remove(selectedEdges); + this.body.data.nodes.remove(selectedNodes); + this._unselectAll(); + this.moving = true; + this.start(); + } + } else { + alert(this.constants.locales[this.constants.locale].deleteClusterError); + } + } + }; + +/***/ }, +/* 76 */ +/***/ function(module, exports, __webpack_require__) { + + "use strict"; + + var util = __webpack_require__(1); + var Hammer = __webpack_require__(45); + + exports._cleanNavigation = function () { + // clean hammer bindings + if (this.navigationHammers.length != 0) { + for (var i = 0; i < this.navigationHammers.length; i++) { + this.navigationHammers[i].dispose(); + } + this.navigationHammers = []; + } + + this._navigationReleaseOverload = function () {}; + + // clean up previous navigation items + if (this.navigationDOM && this.navigationDOM.wrapper && this.navigationDOM.wrapper.parentNode) { + this.navigationDOM.wrapper.parentNode.removeChild(this.navigationDOM.wrapper); + } + }; + + /** + * Creation of the navigation controls nodes. They are drawn over the rest of the nodes and are not affected by scale and translation + * they have a triggerFunction which is called on click. If the position of the navigation controls is dependent + * on this.frame.canvas.clientWidth or this.frame.canvas.clientHeight, we flag horizontalAlignLeft and verticalAlignTop false. + * This means that the location will be corrected by the _relocateNavigation function on a size change of the canvas. + * + * @private + */ + exports._loadNavigationElements = function () { + this._cleanNavigation(); + + this.navigationDOM = {}; + var navigationDivs = ["up", "down", "left", "right", "zoomIn", "zoomOut", "zoomExtends"]; + var navigationDivActions = ["_moveUp", "_moveDown", "_moveLeft", "_moveRight", "_zoomIn", "_zoomOut", "_zoomExtent"]; + + this.navigationDOM.wrapper = document.createElement("div"); + this.frame.appendChild(this.navigationDOM.wrapper); + + for (var i = 0; i < navigationDivs.length; i++) { + this.navigationDOM[navigationDivs[i]] = document.createElement("div"); + this.navigationDOM[navigationDivs[i]].className = "network-navigation " + navigationDivs[i]; + this.navigationDOM.wrapper.appendChild(this.navigationDOM[navigationDivs[i]]); + + var hammer = Hammer(this.navigationDOM[navigationDivs[i]], { prevent_default: true }); + hammer.on("touch", this[navigationDivActions[i]].bind(this)); + this.navigationHammers.push(hammer); + } + + this._navigationReleaseOverload = this._stopMovement; + }; + + + /** + * this stops all movement induced by the navigation buttons + * + * @private + */ + exports._zoomExtent = function (event) { + this.zoomExtent({ duration: 700 }); + event.stopPropagation(); + }; + + /** + * this stops all movement induced by the navigation buttons + * + * @private + */ + exports._stopMovement = function () { + this._xStopMoving(); + this._yStopMoving(); + this._stopZoom(); + }; + + + /** + * move the screen up + * By using the increments, instead of adding a fixed number to the translation, we keep fluent and + * instant movement. The onKeypress event triggers immediately, then pauses, then triggers frequently + * To avoid this behaviour, we do the translation in the start loop. + * + * @private + */ + exports._moveUp = function (event) { + this.yIncrement = this.constants.keyboard.speed.y; + this.start(); // if there is no node movement, the calculation wont be done + event.preventDefault(); + }; + + /** + * 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(); + }; - /** - * Return a position object in canvasspace from a single point in screenspace - * - * @param pointer - * @returns {{left: number, top: number, right: number, bottom: number}} - * @private - */ - value: function _pointerToPositionObject(pointer) { - var canvasPos = this.canvas.DOMtoCanvas(pointer); - return { - left: canvasPos.x, - top: canvasPos.y, - right: canvasPos.x, - bottom: canvasPos.y - }; - }, - writable: true, - configurable: true - }, - _getNodeAt: { + /** + * 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(); + }; - /** - * Get the top node at the a specific point (like a click) - * - * @param {{x: Number, y: Number}} pointer - * @return {Node | null} node - * @private - */ - value: function _getNodeAt(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.body.nodes[overlappingNodes[overlappingNodes.length - 1]]; - } else { - return null; - } - }, - writable: true, - configurable: true - }, - _getEdgesOverlappingWith: { + /** + * 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(); + }; - /** - * 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 - */ - value: function _getEdgesOverlappingWith(object, overlappingEdges) { - var edges = this.body.edges; - for (var edgeId in edges) { - if (edges.hasOwnProperty(edgeId)) { - if (edges[edgeId].isOverlappingWith(object)) { - overlappingEdges.push(edgeId); - } - } - } - }, - writable: true, - configurable: true - }, - _getAllEdgesOverlappingWith: { + /** + * 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(); + }; - /** - * 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 - */ - value: function _getAllEdgesOverlappingWith(object) { - var overlappingEdges = []; - this._getEdgesOverlappingWith(object, overlappingEdges); - return overlappingEdges; - }, - writable: true, - configurable: true - }, - _getEdgeAt: { + /** + * Zoom out + * @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(); + }; - /** - * 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 - */ - value: function _getEdgeAt(pointer) { - var positionObject = this._pointerToPositionObject(pointer); - var overlappingEdges = this._getAllEdgesOverlappingWith(positionObject); + /** + * Stop zooming and unhighlight the zoom controls + * @private + */ + exports._stopZoom = function (event) { + this.zoomIncrement = 0; + event && event.preventDefault(); + }; - if (overlappingEdges.length > 0) { - return this.body.edges[overlappingEdges[overlappingEdges.length - 1]]; - } else { - return null; - } - }, - writable: true, - configurable: true - }, - _addToSelection: { + /** + * Stop moving in the Y direction and unHighlight the up and down + * @private + */ + exports._yStopMoving = function (event) { + this.yIncrement = 0; + event && event.preventDefault(); + }; - /** - * Add object to the selection array. - * - * @param obj - * @private - */ - value: function _addToSelection(obj) { - if (obj instanceof Node) { - this.selectionObj.nodes[obj.id] = obj; - } else { - this.selectionObj.edges[obj.id] = obj; - } - }, - writable: true, - configurable: true - }, - _addToHover: { - /** - * Add object to the selection array. - * - * @param obj - * @private - */ - value: function _addToHover(obj) { - if (obj instanceof Node) { - this.hoverObj.nodes[obj.id] = obj; - } else { - this.hoverObj.edges[obj.id] = obj; - } - }, - writable: true, - configurable: true - }, - _removeFromSelection: { + /** + * Stop moving in the X direction and unHighlight left and right. + * @private + */ + exports._xStopMoving = function (event) { + this.xIncrement = 0; + event && event.preventDefault(); + }; +/***/ }, +/* 77 */ +/***/ function(module, exports, __webpack_require__) { - /** - * Remove a single option from selection. - * - * @param {Object} obj - * @private - */ - value: function _removeFromSelection(obj) { - if (obj instanceof Node) { - delete this.selectionObj.nodes[obj.id]; - } else { - delete this.selectionObj.edges[obj.id]; - } - }, - writable: true, - configurable: true - }, - _unselectAll: { + "use strict"; - /** - * Unselect all. The selectionObj is useful for this. - * - * @param {Boolean} [doNotTrigger] | ignore trigger - * @private - */ - value: function _unselectAll() { - var doNotTrigger = arguments[0] === undefined ? false : arguments[0]; - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - this.selectionObj.nodes[nodeId].unselect(); - } + exports._resetLevels = function () { + for (var nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + var node = this.body.nodes[nodeId]; + if (node.preassignedLevel == false) { + node.level = -1; + node.hierarchyEnumerated = false; + } + } + } + }; + + /** + * 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) { + // 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.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + node = this.body.nodes[nodeId]; + if (node.level != -1) { + definedLevel = true; + } else { + undefinedLevel = true; } - for (var edgeId in this.selectionObj.edges) { - if (this.selectionObj.edges.hasOwnProperty(edgeId)) { - this.selectionObj.edges[edgeId].unselect(); - } + if (hubsize < node.edges.length) { + hubsize = node.edges.length; } + } + } - this.selectionObj = { nodes: {}, edges: {} }; + // 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({ duration: 0 }, true, this.constants.clustering.enabled); + if (!this.constants.clustering.enabled) { + this.start(); + } + } else { + // setup the system to use hierarchical method. + this._changeConstants(); - if (doNotTrigger == false) { - this.body.emitter.emit("select", this.getSelection()); + // define levels if undefined by the users. Based on hubsize + if (undefinedLevel == true) { + if (this.constants.hierarchicalLayout.layout == "hubsize") { + this._determineLevels(hubsize); + } else { + this._determineLevelsDirected(false); } - }, - writable: true, - configurable: true - }, - _getSelectedNodeCount: { + } + // check the distribution of the nodes per level. + var distribution = this._getDistribution(); + // place the nodes on the canvas. This also stablilizes the system. Redraw in started automatically after stabilize. + this._placeNodesByHierarchy(distribution); + } + } + }; - /** - * return the number of selected nodes - * - * @returns {number} - * @private - */ - value: function _getSelectedNodeCount() { - var count = 0; - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - count += 1; - } - } - return count; - }, - writable: true, - configurable: true - }, - _getSelectedNode: { - /** - * return the selected node - * - * @returns {number} - * @private - */ - value: function _getSelectedNode() { - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - return this.selectionObj.nodes[nodeId]; - } - } - return null; - }, - writable: true, - configurable: true - }, - _getSelectedEdge: { + /** + * This function places the nodes on the canvas based on the hierarchial distribution. + * + * @param {Object} distribution | obtained by the function this._getDistribution() + * @private + */ + exports._placeNodesByHierarchy = function (distribution) { + var nodeId, node; - /** - * return the selected edge - * - * @returns {number} - * @private - */ - value: function _getSelectedEdge() { - for (var edgeId in this.selectionObj.edges) { - if (this.selectionObj.edges.hasOwnProperty(edgeId)) { - return this.selectionObj.edges[edgeId]; - } - } - return null; - }, - writable: true, - configurable: true - }, - _getSelectedEdgeCount: { + // start placing all the level 0 nodes first. Then recursively position their branches. + for (var level in distribution) { + if (distribution.hasOwnProperty(level)) { + for (nodeId in distribution[level].nodes) { + if (distribution[level].nodes.hasOwnProperty(nodeId)) { + node = distribution[level].nodes[nodeId]; + if (this.constants.hierarchicalLayout.direction == "UD" || this.constants.hierarchicalLayout.direction == "DU") { + if (node.xFixed) { + node.x = distribution[level].minPos; + node.xFixed = false; + distribution[level].minPos += distribution[level].nodeSpacing; + } + } else { + if (node.yFixed) { + node.y = distribution[level].minPos; + node.yFixed = false; - /** - * return the number of selected edges - * - * @returns {number} - * @private - */ - value: function _getSelectedEdgeCount() { - var count = 0; - for (var edgeId in this.selectionObj.edges) { - if (this.selectionObj.edges.hasOwnProperty(edgeId)) { - count += 1; + distribution[level].minPos += distribution[level].nodeSpacing; + } } + this._placeBranchNodes(node.edges, node.id, distribution, node.level); } - return count; - }, - writable: true, - configurable: true - }, - _getSelectedObjectCount: { + } + } + } + // stabilize the system after positioning. This function calls zoomExtent. + this._stabilize(); + }; - /** - * return the number of selected objects. - * - * @returns {number} - * @private - */ - value: function _getSelectedObjectCount() { - 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; - }, - writable: true, - configurable: true - }, - _selectionIsEmpty: { - /** - * Check if anything is selected - * - * @returns {boolean} - * @private - */ - value: function _selectionIsEmpty() { - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - return false; - } - } - for (var edgeId in this.selectionObj.edges) { - if (this.selectionObj.edges.hasOwnProperty(edgeId)) { - return false; - } - } - return true; - }, - writable: true, - configurable: true - }, - _clusterInSelection: { + /** + * This function get the distribution of levels based on hubsize + * + * @returns {Object} + * @private + */ + exports._getDistribution = function () { + var distribution = {}; + var nodeId, node, level; + // 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.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + node = this.body.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; + } + } - /** - * check if one of the selected nodes is a cluster. - * - * @returns {boolean} - * @private - */ - value: function _clusterInSelection() { - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - if (this.selectionObj.nodes[nodeId].clusterSize > 1) { - return true; - } - } - } - return false; - }, - writable: true, - configurable: true - }, - _selectConnectedEdges: { + // 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; + } + } + } - /** - * select the edges connected to the node that is being selected - * - * @param {Node} node - * @private - */ - value: function _selectConnectedEdges(node) { - for (var i = 0; i < node.edges.length; i++) { - var edge = node.edges[i]; - edge.select(); - this._addToSelection(edge); - } - }, - writable: true, - configurable: true - }, - _hoverConnectedEdges: { + // 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; + } + } - /** - * select the edges connected to the node that is being selected - * - * @param {Node} node - * @private - */ - value: function _hoverConnectedEdges(node) { - for (var i = 0; i < node.edges.length; i++) { - var edge = node.edges[i]; - edge.hover = true; - this._addToHover(edge); - } - }, - writable: true, - configurable: true - }, - _unselectConnectedEdges: { + return distribution; + }; - /** - * unselect the edges connected to the node that is being selected - * - * @param {Node} node - * @private - */ - value: function _unselectConnectedEdges(node) { - for (var i = 0; i < node.edges.length; i++) { - var edge = node.edges[i]; - edge.unselect(); - this._removeFromSelection(edge); - } - }, - writable: true, - configurable: true - }, - _blurObject: { + /** + * this function allocates nodes in levels based on the recursive branching from the largest hubs. + * + * @param hubsize + * @private + */ + exports._determineLevels = function (hubsize) { + var nodeId, node; + // determine hubs + for (nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + node = this.body.nodes[nodeId]; + if (node.edges.length == hubsize) { + node.level = 0; + } + } + } + // branch from hubs + for (nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + node = this.body.nodes[nodeId]; + if (node.level == 0) { + this._setLevel(1, node.edges, node.id); + } + } + } + }; + /** + * this function allocates nodes in levels based on the direction of the edges + * + * @param hubsize + * @private + */ + exports._determineLevelsDirected = function () { + var nodeId, node, firstNode; + var minLevel = 10000; - /** - * 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 - */ - value: function _blurObject(object) { - if (object.hover == true) { - object.hover = false; - this.body.emitter.emit("blurNode", { node: object.id }); - } - }, - writable: true, - configurable: true - }, - _hoverObject: { + // set first node to source + firstNode = this.body.nodes[this.nodeIndices[0]]; + firstNode.level = minLevel; + this._setLevelDirected(minLevel, firstNode.edges, firstNode.id); - /** - * 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 - */ - value: function _hoverObject(object) { - if (object.hover == false) { - object.hover = true; - this._addToHover(object); - if (object instanceof Node) { - this.body.emitter.emit("hoverNode", { node: object.id }); - } - } - if (object instanceof Node) { - this._hoverConnectedEdges(object); - } - }, - writable: true, - configurable: true - }, - _handleDoubleTap: { + // get the minimum level + for (nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + node = this.body.nodes[nodeId]; + minLevel = node.level < minLevel ? node.level : minLevel; + } + } + // subtract the minimum from the set so we have a range starting from 0 + for (nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + node = this.body.nodes[nodeId]; + node.level -= minLevel; + } + } + }; + /** + * 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; + } + this._configureSmoothCurves(); - /** - * handles the selection part of the double tap and opens a cluster if needed - * - * @param {Object} pointer - * @private - */ - value: function _handleDoubleTap(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); - } - var properties = this.getSelection(); - properties.pointer = { - DOM: { x: pointer.x, y: pointer.y }, - canvas: { x: this._XconvertDOMtoCanvas(pointer.x), y: this._YconvertDOMtoCanvas(pointer.y) } - }; - this.body.emitter.emit("doubleClick", properties); - }, - writable: true, - configurable: true - }, - _handleOnHold: { + var config = this.constants.hierarchicalLayout; + config.levelSeparation = Math.abs(config.levelSeparation); + if (config.direction == "RL" || config.direction == "DU") { + config.levelSeparation *= -1; + } + if (config.direction == "RL" || config.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"; + } + } + }; - /** - * Handle the onHold selection part - * - * @param pointer - * @private - */ - value: function _handleOnHold(pointer) { - var node = this._getNodeAt(pointer); - if (node != null) { - this._selectObject(node, true); - } else { - var edge = this._getEdgeAt(pointer); - if (edge != null) { - this._selectObject(edge, true); - } - } - this._requestRedraw(); - }, - writable: true, - configurable: true - }, - getSelection: { + /** + * This is a recursively called function to enumerate the branches from the largest hubs and place the nodes + * on a X position that ensures there will be no overlap. + * + * @param edges + * @param parentId + * @param distribution + * @param parentLevel + * @private + */ + exports._placeBranchNodes = function (edges, parentId, distribution, parentLevel) { + for (var i = 0; i < edges.length; i++) { + var childNode = null; + if (edges[i].toId == parentId) { + childNode = edges[i].from; + } else { + childNode = edges[i].to; + } - /** - * - * retrieve the currently selected objects - * @return {{nodes: Array., edges: Array.}} selection - */ - value: function getSelection() { - var nodeIds = this.getSelectedNodes(); - var edgeIds = this.getSelectedEdges(); - return { nodes: nodeIds, edges: edgeIds }; - }, - writable: true, - configurable: true - }, - getSelectedNodes: { + // 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; + } + } - /** - * - * retrieve the currently selected nodes - * @return {String[]} selection An array with the ids of the - * selected nodes. - */ - value: function getSelectedNodes() { - var idArray = []; - if (this.options.select == true) { - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - idArray.push(nodeId); - } - } - } - return idArray; - }, - writable: true, - configurable: true - }, - getSelectedEdges: { + if (nodeMoved == true) { + distribution[childNode.level].minPos += distribution[childNode.level].nodeSpacing; + if (childNode.edges.length > 1) { + this._placeBranchNodes(childNode.edges, childNode.id, distribution, childNode.level); + } + } + } + }; - /** - * - * retrieve the currently selected edges - * @return {Array} selection An array with the ids of the - * selected nodes. - */ - value: function getSelectedEdges() { - var idArray = []; - if (this.options.select == true) { - for (var edgeId in this.selectionObj.edges) { - if (this.selectionObj.edges.hasOwnProperty(edgeId)) { - idArray.push(edgeId); - } - } - } - return idArray; - }, - writable: true, - configurable: true - }, - selectNodes: { + /** + * this function is called recursively to enumerate the barnches of the largest hubs and give each node a level. + * + * @param level + * @param edges + * @param parentId + * @private + */ + exports._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 (childNode.edges.length > 1) { + this._setLevel(level + 1, childNode.edges, childNode.id); + } + } + } + }; - /** - * 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] - */ - value: function selectNodes(selection, highlightEdges) { - var i, iMax, id; - if (!selection || selection.length == undefined) throw "Selection must be an array with ids"; + /** + * this function is called recursively to enumerate the branched of the first node and give each node a level based on edge direction + * + * @param level + * @param edges + * @param parentId + * @private + */ + exports._setLevelDirected = function (level, edges, parentId) { + this.body.nodes[parentId].hierarchyEnumerated = true; + var childNode, direction; + for (var i = 0; i < edges.length; i++) { + direction = 1; + if (edges[i].toId == parentId) { + childNode = edges[i].from; + direction = -1; + } else { + childNode = edges[i].to; + } + if (childNode.level == -1) { + childNode.level = level + direction; + } + } - // first unselect any selected node - this._unselectAll(true); + for (var i = 0; i < edges.length; i++) { + if (edges[i].toId == parentId) { + childNode = edges[i].from; + } else { + childNode = edges[i].to; + } - for (i = 0, iMax = selection.length; i < iMax; i++) { - id = selection[i]; + if (childNode.edges.length > 1 && childNode.hierarchyEnumerated === false) { + this._setLevelDirected(childNode.level, childNode.edges, childNode.id); + } + } + }; - var node = this.body.nodes[id]; - if (!node) { - throw new RangeError("Node with id \"" + id + "\" not found"); - } - this._selectObject(node, true, true, highlightEdges, true); - } - this.redraw(); - }, - writable: true, - configurable: true - }, - selectEdges: { + /** + * Unfix nodes + * + * @private + */ + exports._restoreNodes = function () { + for (var nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + this.body.nodes[nodeId].xFixed = false; + this.body.nodes[nodeId].yFixed = false; + } + } + }; - /** - * select zero or more edges - * @param {Number[] | String[]} selection An array with the ids of the - * selected nodes. - */ - value: function selectEdges(selection) { - var i, iMax, id; +/***/ }, +/* 78 */ +/***/ function(module, exports, __webpack_require__) { - if (!selection || selection.length == undefined) throw "Selection must be an array with ids"; + function webpackContext(req) { + throw new Error("Cannot find module '" + req + "'."); + } + webpackContext.keys = function() { return []; }; + webpackContext.resolve = webpackContext; + module.exports = webpackContext; + webpackContext.id = 78; - // first unselect any selected node - this._unselectAll(true); - for (i = 0, iMax = selection.length; i < iMax; i++) { - id = selection[i]; +/***/ }, +/* 79 */ +/***/ function(module, exports, __webpack_require__) { - var edge = this.body.edges[id]; - if (!edge) { - throw new RangeError("Edge with id \"" + id + "\" not found"); - } - this._selectObject(edge, true, true, false, true); - } - this.redraw(); - }, - writable: true, - configurable: true - }, - _updateSelection: { + module.exports = function(module) { + if(!module.webpackPolyfill) { + module.deprecate = function() {}; + module.paths = []; + // module.parent = undefined by default + module.children = []; + module.webpackPolyfill = 1; + } + return module; + } - /** - * Validate the selection: remove ids of nodes which no longer exist - * @private - */ - value: function _updateSelection() { - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - if (!this.body.nodes.hasOwnProperty(nodeId)) { - delete this.selectionObj.nodes[nodeId]; - } - } - } - for (var edgeId in this.selectionObj.edges) { - if (this.selectionObj.edges.hasOwnProperty(edgeId)) { - if (!this.body.edges.hasOwnProperty(edgeId)) { - delete this.selectionObj.edges[edgeId]; - } - } - } - }, - writable: true, - configurable: true - } - }); - return SelectionHandler; - })(); +/***/ }, +/* 80 */ +/***/ function(module, exports, __webpack_require__) { - exports.SelectionHandler = SelectionHandler; - Object.defineProperty(exports, "__esModule", { - value: true - }); + /* WEBPACK VAR INJECTION */(function(__webpack_amd_options__) {module.exports = __webpack_amd_options__; + + /* WEBPACK VAR INJECTION */}.call(exports, {})) /***/ } /******/ ]) diff --git a/dist/vis.map b/dist/vis.map index 53593247..0ac1a4e9 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","Queue","Graph3d","graph3d","Camera","Filter","Point2d","Point3d","Slider","StepNumber","Timeline","Graph2d","timeline","DateUtil","DataStep","Range","stack","TimeStep","components","items","Item","BackgroundItem","BoxItem","PointItem","RangeItem","Component","CurrentTime","CustomTime","DataAxis","GraphGroup","Group","BackgroundGroup","ItemSet","Legend","LineGraph","TimeAxis","Network","network","Edge","Groups","Images","Node","Popup","dotparser","gephiParser","Graph","Error","moment","hammer","isNumber","object","Number","giveRange","min","max","total","value","scale","Math","isString","String","isDate","Date","match","ASPDateRegex","exec","isNaN","parse","isDataTable","google","visualization","DataTable","randomUUID","S4","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","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","hexToRGB","hex","shorthandRegex","replace","r","g","result","parseInt","overrideOpacity","color","opacity","rgb","substr","RGBToHex","red","green","blue","slice","parseColor","isValidRGB","isValidHex","hsv","hexToHSV","lighterColorHSV","h","s","v","darkerColorHSV","darkerColorHex","HSVToHex","lighterColorHex","background","border","highlight","hover","RGBToHSV","minRGB","maxRGB","d","hue","saturation","cssUtil","cssText","styles","style","trim","parts","keys","map","addCssText","currentStyles","newStyles","removeCssText","removeStyles","HSVToRGB","f","q","t","isOk","test","selectiveBridgeObject","fields","referenceObject","objectTo","create","bridgeObject","mergeOptions","mergeTarget","options","enabled","binarySearchCustom","orderedItems","searchFunction","field","field2","maxIterations","iteration","low","high","middle","item","searchResult","binarySearchValue","sidePreference","prevValue","nextValue","easeInOutQuad","start","end","duration","change","easingFunctions","linear","easeInQuad","easeOutQuad","easeInCubic","easeOutCubic","easeInOutCubic","easeInQuart","easeOutQuart","easeInOutQuart","easeInQuint","easeOutQuint","easeInOutQuint","prepareElements","JSONcontainer","elementType","redundant","used","cleanupElements","removeChild","getSVGElement","svgContainer","shift","document","createElementNS","appendChild","getDOMElement","DOMContainer","insertBefore","createElement","drawPoint","x","y","group","labelObj","point","drawPoints","setAttributeNS","size","label","xOffset","yOffset","content","textContent","drawBar","width","height","rect","data","_options","_data","_fieldId","fieldId","_type","_subscribers","add","setOptions","prototype","queue","_queue","destroy","on","subscribers","subscribe","off","filter","unsubscribe","_trigger","params","senderId","concat","subscriber","addedIds","me","_addItem","columns","_getColumnNames","row","rows","getNumberOfRows","col","cols","getValue","update","updatedIds","updatedData","addOrUpdate","_updateItem","get","ids","firstType","returnType","allowedValues","itemId","_getItem","order","_sort","_filterFields","_appendRow","getIds","getDataSet","mappedItems","filteredItem","name","sort","av","bv","remove","removedId","removedIds","_remove","clear","maxField","itemField","minField","distinct","values","fieldType","count","exists","types","raw","converted","JSON","stringify","dataTable","getNumberOfColumns","getColumnId","getColumnLabel","addRow","setValue","_ids","_onEvent","apply","setData","refresh","newIds","added","removed","viewOptions","getArguments","defaultFilter","dataSet","updated","delay","Infinity","_timeout","_extended","_flushIfNeeded","flush","methods","original","method","args","fn","context","entry","clearTimeout","setTimeout","container","SyntaxError","containerElement","margin","defaultXCenter","defaultYCenter","xLabel","yLabel","zLabel","passValueFn","xValueLabel","yValueLabel","zValueLabel","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","getMouseX","clientX","targetTouches","getMouseY","clientY","Emitter","_setScale","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","obj","sortNumber","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","textAlign","textBaseline","fillText","visible","setValues","setPlayInterval","onchange","getIndex","selectValue","setOnChangeCallback","lineStyle","getLabel","getSelectedValue","from","to","prettyStep","text","xText","yText","zText","offset","xMin2d","xMax2d","gridLenX","gridLenY","textMargin","armAngle","H","S","V","R","G","B","C","Hi","X","abs","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","startMouseY","startStart","startEnd","startArmRotation","cursor","onmousemove","_onMouseMove","onmouseup","diffX","diffY","horizontalNew","verticalNew","snapAngle","snapValue","round","parameters","emit","boundingRect","mouseX","mouseY","tooltipTimeout","_hideTooltip","dataPoint","_dataPointFromXY","_showTooltip","ontouchmove","_onTouchMove","ontouchend","_onTouchEnd","delta","wheelDelta","detail","oldLength","newLength","_insideTriangle","triangle","sign","as","bs","cs","distMax","closestDataPoint","closestDist","triangle1","triangle2","distX","distY","sqrt","line","dot","dom","borderRadius","boxShadow","borderLeft","contentWidth","offsetWidth","contentHeight","offsetHeight","lineHeight","dotWidth","dotHeight","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","log","LN10","step1","pow","step2","step5","toPrecision","getStep","groups","forthArgument","defaultOptions","autoResize","orientation","maxHeight","minHeight","_create","body","domProps","emitter","bind","hiddenDates","getScale","timeAxis","toScreen","_toScreen","toGlobalScreen","_toGlobalScreen","toTime","_toTime","toGlobalTime","_toGlobalTime","range","currentTime","customTime","itemSet","itemsData","groupsData","setGroups","setItems","_redraw","Core","markDirty","refreshItems","newDataSet","initialLoad","dataRange","_getDataRange","setWindow","animate","fit","setSelection","focus","getSelection","itemData","e","getItemRange","dataset","minItem","maxStartItem","maxEndItem","linegraph","getLegend","groupId","isGroupVisible","visibility","convertHiddenOptions","repeat","dateItem","updateHiddenDates","centerContainer","totalRange","pixelTime","startDate","endDate","_d","runUntil","clone","day","dayOfYear","year","dayOffset","date","month","console","removeDuplicates","startHidden","isHidden","endHidden","rangeStart","rangeEnd","hidden","startToFront","endToFront","_applyRange","safeDates","printDates","dates","stepOverHiddenDates","timeStep","previousTime","stepInHidden","currentValue","current","newValue","switchedYear","switchedMonth","switchedDay","time","conversion","getHiddenDurationBetween","correctTimeForHidden","hiddenDuration","totalDuration","partialDuration","accumulatedHiddenDuration","getAccumulatedHiddenDuration","newTime","getHiddenDurationBefore","timeOffset","requiredDuration","previousPoint","snapAwayFromHidden","direction","correctionEnabled","minimumStep","containerHeight","customRange","alignZeros","autoScale","stepIndex","marginStart","marginEnd","deadSpace","majorSteps","minorSteps","setMinimumStep","setFirst","safeSize","minimumStepValue","orderOfMagnitude","minorStepIdx","magnitudefactor","solutionFound","stepSize","niceStart","niceEnd","roundToMinor","marginRange","rounded","hasNext","previous","decimals","exp","cnt","isMajor","now","hours","minutes","seconds","milliseconds","deltaDifference","scaleOffset","moveable","zoomable","zoomMin","zoomMax","touch","animateTimer","_onDragStart","_onDrag","_onDragEnd","_onHold","_onMouseWheel","_onTouch","_onPinch","validateDirection","getPointer","pageX","pageY","hammerUtil","byUser","_cancelAnimation","initStart","initEnd","initTime","anyChanged","dragging","done","changed","newStart","newEnd","getRange","totalHidden","previousDelta","allowDragging","gesture","deltaX","deltaY","diffRange","safeStart","safeEnd","fakeGesture","pointer","pointerDate","_pointerToDate","zoom","touches","centerDate","hiddenDurationBefore","hiddenDurationAfter","move","EPSILON","orderByStart","orderByEnd","aTime","bTime","force","iMax","axis","collidingItem","jj","collision","nostack","subgroups","newTop","subgroup","format","FORMAT","minorLabels","millisecond","second","minute","hour","weekday","majorLabels","setFormat","defaultFormat","first","setFullYear","getFullYear","setMonth","setDate","setHours","setMinutes","setSeconds","setMilliseconds","getMilliseconds","getSeconds","getMinutes","getHours","getDate","getMonth","setScale","setAutoScale","enable","stepYear","stepMonth","stepDay","stepHour","stepMinute","stepSecond","stepMillisecond","snap","getLabelMinor","getLabelMajor","getClassName","even","today","isSame","currentWeek","currentMonth","currentYear","locale","lang","toLowerCase","parent","selected","displayed","dirty","Hammer","select","unselect","setParent","hide","show","isVisible","repositionX","repositionY","_repaintDeleteButton","anchor","editable","deleteButton","title","removeFromDataSet","stopPropagation","_updateContents","template","Element","_updateTitle","removeAttribute","_updateDataAttributes","dataAttributes","attributes","setAttribute","_updateStyle","emptyContent","baseClassName","box","getComputedStyle","onTop","itemSubgroup","subgroupIndex","foreground","align","itemSetHeight","marginLeft","maxWidth","_repaintDragLeft","_repaintDragRight","contentLeft","parentWidth","boxWidth","updateTime","dragLeft","dragLeftItem","dragRight","dragRightItem","_isResized","resized","_previousWidth","_previousHeight","showCurrentTime","locales","backgroundVertical","toUpperCase","substring","currentTimeTimer","setCurrentTime","getCurrentTime","showCustomTime","eventParams","drag","prevent_default","setCustomTime","getCustomTime","svg","linegraphOptions","showMinorLabels","showMajorLabels","icons","majorLinesOffset","minorLinesOffset","labelOffsetX","labelOffsetY","iconWidth","linegraphSVG","DOMelements","lines","labels","conversionFactor","minWidth","stepPixels","stepPixelsForced","zeroCrossing","lineOffset","master","svgElements","iconsRemoved","amountOfGroups","lineContainer","scrollTop","addGroup","graphOptions","updateGroup","removeGroup","display","_redrawGroupIcons","iconHeight","iconOffset","drawIcon","_cleanupIcons","backgroundHorizontal","activeGroups","_calculateCharSize","minorLabelHeight","minorCharHeight","majorLabelHeight","majorCharHeight","minorLineWidth","minorLineHeight","majorLineWidth","majorLineHeight","_redrawLabels","_redrawTitle","amountOfSteps","stepDifference","zeroStepDifference","valueAtZero","marginStartPos","maxLabelSize","_redrawLabel","_redrawLine","titleWidth","titleCharHeight","convertValue","invertedValue","convertedValue","characterHeight","largestWidth","majorCharWidth","minorCharWidth","textMinor","createTextNode","measureCharMinor","textMajor","measureCharMajor","textTitle","measureCharTitle","titleCharWidth","groupsUsingDefaultStyles","usingDefaultStyle","zeroPosition","Line","Bar","Points","setZeroPosition","catmullRom","parametrization","alpha","SVGcontainer","path","fillPath","fillHeight","outline","shaded","barWidth","bar1Height","bar2Height","icon","yAxisOrientation","getYRange","groupData","draw","framework","subgroupOrderer","subgroupOrder","visibleItems","byStart","byEnd","checkRangedItems","inner","marker","getLabelWidth","restack","_updateVisibleItems","markerHeight","lastMarkerHeight","_calculateHeight","offsetTop","offsetLeft","ii","resetSubgroups","labelSet","orderSubgroups","_checkIfVisible","sortArray","sortField","removeItem","startArray","endArray","oldVisibleItems","visibleItemsLookup","lowerBound","upperBound","_checkIfVisibleWithReference","initialPosByStart","_traceVisible","initialPosByEnd","initialPos","breakCondition","groupOrder","selectable","onAdd","onUpdate","onMove","onRemove","onMoving","itemOptions","itemListeners","_onAdd","_onUpdate","_onRemove","groupListeners","_onAddGroups","_onUpdateGroups","_onRemoveGroups","groupIds","selection","stackDirty","touchParams","UNGROUPED","BACKGROUND","_updateUngrouped","backgroundGroup","_onSelectItem","_onMultiSelectItem","_onAddItem","addCallback","Function","getVisibleItems","rawVisibleItems","_deselect","_orderGroups","visibleInterval","zoomed","lastVisibleInterval","lastWidth","firstGroup","_firstGroup","firstMargin","nonFirstMargin","groupMargin","groupResized","firstGroupIndex","firstGroupId","ungrouped","_getGroupId","getLabelSet","oldItemsData","getItems","_order","getGroups","_getType","_removeItem","groupOptions","oldGroupId","oldGroup","_constructByEndArray","itemFromTarget","initialX","itemProps","newProps","initial","groupFromTarget","_updateItemProps","_moveToGroup","changes","ctrlKey","srcEvent","shiftKey","oldSelection","newSelection","xAbs","newItem","_getItemRange","_item","itemSetFromTarget","side","iconSize","iconSpacing","textArea","scrollableHeight","drawLegendIcons","paddingTop","defaultGroup","sampling","graphHeight","barChart","handleOverlap","dataAxis","legend","abortedGraphUpdate","updateSVGheight","updateSVGheightOnResize","lastStart","COUNTER","BarGraphFunctions","yAxisLeft","yAxisRight","legendLeft","legendRight","_updateAllGroupData","_updateGroup","groupsContent","ungroupedCounter","forceGraphUpdate","_updateGraph","rangePerPixelInv","preprocessedGroupData","processedGroupData","groupRanges","changeCalled","minDate","maxDate","_getRelevantData","_applySampling","_convertXcoordinates","_getYRanges","_updateYAxis","MAX_CYCLES","_convertYcoordinates","dataContainer","guess","increment","amountOfPoints","xDistance","pointsPerPixel","ceil","sampledData","barCombinedDataLeft","barCombinedDataRight","getStackedBarYRange","minVal","maxVal","yAxisLeftUsed","yAxisRightUsed","minLeft","minRight","maxLeft","maxRight","ignore","_toggleAxisVisiblity","drawIcons","axisUsed","datapoints","xValue","yValue","extractedData","svgHeight","labelValue","majorTexts","minorTexts","lineTop","parentChanged","foregroundNextSibling","nextSibling","backgroundNextSibling","_repaintLabels","timeLabelsize","cur","prevLine","xPrev","xFirstMajorLabel","_repaintMinorText","_repaintMajorText","_repaintMajorLine","_repaintMinorLine","leftTime","leftText","widthText","arr","pop","childNodes","nodeValue","_determineBrowserMethod","_initializeMixinLoaders","renderRefreshRate","renderTimestep","renderTime","physicsTime","runDoubleSpeed","physicsDiscreteStepsize","initializing","triggerFunctions","edit","editEdge","connect","del","customScalingFunction","nodes","mass","radiusMin","radiusMax","shape","image","fontColor","fontSize","fontFace","fontFill","fontStrokeWidth","fontStrokeColor","fontDrawThreshold","scaleFontWithValue","fontSizeMin","fontSizeMax","fontSizeMaxVisible","level","borderWidthSelected","edges","widthSelectionMultiplier","hoverWidth","labelAlignment","arrowScaleFactor","dash","gap","altLength","inheritColor","useGradients","configurePhysics","physics","barnesHut","thetaInverted","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","clusterByZoom","navigation","keyboard","speed","bindToWindow","dataManipulation","initiallyVisible","hierarchicalLayout","levelSeparation","nodeSpacing","layout","freezeForStabilization","smoothCurves","dynamic","roundness","maxVelocity","minVelocity","stabilize","stabilizationIterations","zoomExtentOnStabilize","dragNetwork","dragNodes","hideEdgesOnDrag","hideNodesOnDrag","useDefaultGroups","constants","pixelRatio","hoverObj","controlNodesActive","navigationHammers","manipulationHammers","existing","_new","animationSpeed","animationEasingFunction","animating","easingTime","sourceScale","targetScale","sourceTranslation","targetTranslation","lockedOnNodeId","lockedOnNodeOffset","touchTime","redrawRequested","images","setOnloadCallback","_requestRedraw","xIncrement","yIncrement","zoomIncrement","_loadPhysicsSystem","_loadSectorSystem","_loadClusterSystem","_loadSelectionSystem","_loadHierarchySystem","_setTranslation","freezeSimulationEnabled","cachedFunctions","startedStabilization","stabilized","draggingNodes","calculationNodes","calculationNodeIndices","nodeIndices","canvasTopLeft","canvasBottomRight","pointerPosition","areaCenter","previousScale","nodesData","edgesData","nodesListeners","_addNodes","_updateNodes","_removeNodes","edgesListeners","_addEdges","_updateEdges","_removeEdges","moving","timer","_setupHierarchicalLayout","zoomExtent","startWithClustering","keycharm","MixinLoader","Activator","browserType","requiresTimeout","_getScriptPath","scripts","getElementsByTagName","src","_getRange","specificNodes","node","minY","maxY","minX","maxX","boundingBox","nodeId","_findCenter","initialZoom","disableStart","zoomLevel","positionDefined","predefinedPosition","numberOfNodes","factor","yDistance","xZoomLevel","yZoomLevel","animation","_updateNodeIndexList","_clearNodeIndexList","idx","_unselectAll","_createManipulatorBar","dotData","DOTToGraph","gephi","gephiData","parseGephi","_setNodes","_setEdges","_putDataInSector","_resetLevels","_stabilize","onEdit","onEditEdge","onConnect","onDelete","editMode","newColorObj","groupname","clickToUse","activator","_createKeyBinds","_loadNavigationControls","_loadManipulationSystem","_configureSmoothCurves","_bindHammer","_markAllEdgesAsDirty","tabIndex","devicePixelRatio","webkitBackingStorePixelRatio","mozBackingStorePixelRatio","msBackingStorePixelRatio","oBackingStorePixelRatio","backingStorePixelRatio","setTransform","dispose","pinch","_onTap","_onDoubleTap","_onMouseMoveTitle","hammerFrame","_onRelease","reset","isActive","_moveUp","_yStopMoving","_moveDown","_moveLeft","_xStopMoving","_moveRight","_zoomIn","_stopZoom","_zoomOut","_deleteSelected","_cleanupPhysicsConfiguration","_recursiveDOMDelete","DOMobject","_getPointer","pinched","_getScale","_handleTouch","_handleDragStart","_getNodeAt","_getTranslation","isSelected","_selectObject","nodeIds","objectId","selectionObj","xFixed","yFixed","_handleOnDrag","releaseNode","_XconvertDOMtoCanvas","_XconvertCanvasToDOM","_YconvertDOMtoCanvas","_YconvertCanvasToDOM","_handleDragEnd","_handleTap","_handleDoubleTap","_handleOnHold","_handleOnRelease","_zoom","scaleOld","preScaleDragPointer","DOMtoCanvas","scaleFrac","tx","ty","updateClustersDefault","postScaleDragPointer","canvasToDOM","popupVisible","popup","_checkHidePopup","setPosition","checkShow","_checkShowPopup","popupTimer","edgeId","_getEdgeAt","_hoverObject","_blurObject","previousPopupObjId","popupObj","nodeUnderCursor","popupType","overlappingNodes","isOverlappingWith","getTitle","overlappingEdges","edge","connected","popupTargetType","popupTargetId","setText","pointerObj","stillOnObj","overNode","emitEvent","oldWidth","oldHeight","oldNodesData","_updateSelection","angle","_updateCalculationNodes","_reconnectEdges","_updateValueRange","updateLabels","changedData","setProperties","properties","colorDirty","_removeFromSelection","oldEdgesData","oldEdge","disconnect","showInternalIds","_createBezierNodes","via","sectors","dynamicEdges","valueTotal","setValueRange","requestAnimationFrame","w","save","translate","_doInAllSectors","restore","offsetX","offsetY","_drawNodes","alwaysShow","setScaleAndPos","inArea","sMax","_drawEdges","_drawControlNodes","_freezeDefinedNodes","_physicsTick","_restoreFrozenNodes","fixedData","_isMoving","vmin","isMoving","_discreteStepNodes","nodesPresent","discreteStepLimited","discreteStep","vminCorrected","_revertPhysicsState","revertPosition","_revertPhysicsTick","_doInAllActiveSectors","_doInSupportSector","mainMovingStatus","supportMovingStatus","mainMoving","_animationStep","_handleNavigation","startTime","renderStartTime","mozRequestAnimationFrame","webkitRequestAnimationFrame","msRequestAnimationFrame","iterations","freezeSimulation","freeze","parentEdgeId","internalMultiplier","positionBezierNode","mixin","storePosition","storePositions","dataArray","allowedToMoveX","allowedToMoveY","getPositions","focusOnNode","nodePosition","lockedOnNode","easingFunction","animateView","locked","_transitionRedraw","viewCenter","distanceFromCenter","_classicRedraw","_lockedRedraw","active","getCenterCoordinates","getBoundingBox","getConnectedNodes","nodeList","nodeObj","toId","fromId","getEdgesFromNode","edgesList","generateColorObject","defaultIndex","groupsArray","groupIndex","DEFAULT","groupName","imageBroken","load","url","brokenUrl","img","Image","onload","onerror","error","networkConstants","widthSelected","labelDimensions","yLine","dirtyLabel","fromBackup","toBackup","originalFromId","originalToId","widthFixed","lengthFixed","controlNodesEnabled","controlNodes","positions","connectedNode","_drawLine","_drawArrow","_drawArrowCenter","_drawDashLine","attachEdge","detachEdge","widthDiff","xFrom","yFrom","xTo","yTo","xObj","yObj","_getDistanceToEdge","_getColor","colorObj","fromColor","toColor","grd","createLinearGradient","addColorStop","_getLineWidth","_line","midpointX","midpointY","_pointOnLine","_label","resize","_circle","_pointOnCircle","networkScaleInv","_getViaCoordinates","xVia","yVia","pi","originalAngle","atan2","myAngle","quadraticCurveTo","lineCount","measureText","_rotateForLabelAlignment","_drawLabelRect","_drawLabelText","angleInDegrees","rotate","lineMargin","fillRect","lineJoin","strokeText","setLineDash","pattern","lineDashOffset","lineCap","dashedLine","percentage","arrow","_pointOnBezier","_findBorderPosition","distanceToBorder","distanceToNodes","difference","threshold","arrowPos","guidePos","edgeSegmentLength","toBorderDist","toBorderPoint","x1","y1","x2","y2","x3","y3","lastX","lastY","minDistance","_getDistanceToLine","px","py","something","u","nodeIdFrom","nodeIdTo","getControlNodeFromPosition","getControlNodeToPosition","_enableControlNodes","_disableControlNodes","_getSelectedControlNode","fromDistance","toDistance","_restoreControlNodes","controlnodeFromPos","fromBorderDist","fromBorderPoint","controlnodeToPos","imagelist","grouplist","reroutedEdges","horizontalAlignLeft","verticalAlignTop","baseRadiusValue","radiusFixed","preassignedLevel","hierarchyEnumerated","fx","fy","vx","vy","previousState","resetCluster","clusterSession","clusterSizeWidthFactor","clusterSizeHeightFactor","clusterSizeRadiusFactor","growthIndicator","networkScale","formationScale","clusterSize","containedNodes","containedEdges","clusterSessions","originalLabel","triggerFunction","groupObj","imageObj","brokenImage","_drawDatabase","_resizeDatabase","_drawBox","_resizeBox","_drawCircle","_resizeCircle","_drawEllipse","_resizeEllipse","_drawImage","_resizeImage","_drawCircularImage","_resizeCircularImage","_drawText","_resizeText","_drawDot","_resizeShape","_drawSquare","_drawTriangle","_drawTriangleDown","_drawStar","_drawIcon","_resizeIcon","_reset","clearSizeCache","_setForce","_addForce","storeState","isFixed","velocity","getDistance","radiusDiff","fontDiff","_drawImageAtPosition","globalAlpha","drawImage","_drawImageLabel","getTextSize","_swapToImageResizeWhenImageLoaded","diameter","centerX","centerY","_drawRawCircle","circle","clip","textSize","clusterLineWidth","selectionLineWidth","roundRect","database","defaultSize","ellipse","_drawShape","radiusMultiplier","_icon","iconTextSpacing","relativeIconSize","iconFontFace","iconColor","baseline","labelUnderNode","relativeFontSize","strokecolor","inView","clearVelocity","updateVelocity","massBeforeClustering","energyBefore","fontFamily","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","graphData","dotNode","graphNode","convertEdge","dotEdge","graphEdge","subEdge","{","}","[","]",";","=",",","->","--","gephiJSON","allowedToMove","gEdges","gNodes","gEdge","source","gNode","leftContainer","rightContainer","shadowTop","shadowBottom","shadowTopLeft","shadowBottomLeft","shadowTopRight","shadowBottomRight","_redrawTimer","listeners","events","scrollTopMin","redrawCount","_initAutoResize","component","_stopAutoResize","barId","addCustomTime","numIds","customBarId","ts","customBarIds","removeCustomTime","what","getWindow","borderRootHeight","borderRootWidth","autoHeight","centerWidth","_updateScrollTop","visibilityTop","visibilityBottom","MAX_REDRAWS","repaint","_startAutoResize","_onResize","lastHeight","watchTimer","setInterval","initialScrollTop","oldScrollTop","_getScrollTop","newScrollTop","_setScrollTop","eventType","getTouchList","collectEventData","custom","_catmullRom","_linear","dFill","_catmullRomUniform","p0","p1","p2","p3","bp1","bp2","normalization","d1","d2","d3","A","N","M","d3powA","d2powA","d3pow2A","d2pow2A","d1pow2A","d1powA","Bargraph","barCombinedData","coreDistance","drawData","combinedData","intersections","barPoints","_getDataIntersections","heightOffset","_getSafeDrawData","nextKey","amount","resolved","prevKey","accumulated","groupLabel","_getStackedBarYRange","xpos","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","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","_callbacks","once","self","removeListener","removeAllListeners","callbacks","cb","hasListeners","__WEBPACK_AMD_DEFINE_FACTORY__","__WEBPACK_AMD_DEFINE_ARRAY__","__WEBPACK_AMD_DEFINE_RESULT__","_exportFunctions","_bound","keydown","keyup","_keys","fromCharCode","code","down","handleEvent","up","keyCode","bound","bindAll","getKey","newBindings","global","dfl","hasOwnProp","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","monthDiff","anchor2","adjust","wholeMonthDiff","meridiemFixWrap","meridiem","isPm","meridiemHour","isPM","Locale","Moment","config","skipOverflow","checkOverflow","copyConfig","updateInProgress","updateOffset","Duration","normalizedInput","normalizeObjectUnits","years","quarters","quarter","months","weeks","week","days","_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","setTime","rawSetter","rawGetter","rawMonthSetter","input","compareArrays","dontConvert","lengthDiff","diffs","toInt","normalizeUnits","units","lowered","unitAliases","camelFunctions","inputObject","normalizedProp","makeList","setter","getter","results","utc","set","argumentForCoercion","coercedNumber","isFinite","daysInMonth","UTC","getUTCDate","weeksInYear","dow","doy","weekOfYear","daysInYear","isLeapYear","_a","MONTH","DATE","YEAR","HOUR","MINUTE","SECOND","MILLISECOND","_overflowDayOfYear","isValid","_isValid","getTime","bigHour","normalizeLocale","chooseLocale","names","loadLocale","oldLocale","hasModule","model","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","parseTokenOffsetMs","parseTokenTimestampMs","parseTokenTimezone","parseTokenT","parseTokenDigits","parseTokenOneOrTwoDigits","_ordinalParse","_ordinalParseLenient","RegExp","regexpEscape","unescapeFormat","utcOffsetFromString","string","possibleTzMatches","tzChunk","parseTimezoneChunker","addTimeToArrayFromToken","datePartArray","monthsParse","_dayOfYear","parseTwoDigitYear","_meridiem","_useUTC","weekdaysParse","_w","invalidWeekday","dayOfYearFromWeekInfo","weekYear","temp","GG","W","E","_week","gg","dayOfYearFromWeeks","dateFromConfig","currentDate","yearToUse","currentDateArray","makeUTCDate","getUTCMonth","_nextDay","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","SS","SSS","SSSS","Z","utcOffset","ZZ","zoneAbbr","zz","zoneName","unix","lists","DDDD","_monthsShort","monthName","regex","_monthsParse","_longMonthsParse","_shortMonthsParse","_weekdays","_weekdaysShort","_weekdaysMin","weekdayName","_weekdaysParse","_longDateFormat","LTS","LT","L","LL","LLL","LLLL","isLower","_calendar","sameDay","nextDay","nextWeek","lastDay","lastWeek","sameElse","calendar","_relativeTime","future","past","mm","hh","MM","yy","pastFuture","_ordinal","postformat","firstDayOfYear","_invalidDate","ret","parseIso","diffRes","isDuration","inp","version","relativeTimeThreshold","limit","defineLocale","_abbr","abbr","langData","flags","parseZone","isDSTShifted","parsingFlags","invalidAt","keepLocalTime","_dateUtcOffset","inputString","asFloat","that","zoneDiff","humanize","fromNow","sod","startOf","isDST","getDay","endOf","inputMs","isBetween","zone","localAdjust","_changeInProgress","isLocal","isUtcOffset","isUtc","hasAlignedHourOffset","isoWeeksInYear","weekInfo","newLocaleData","getTimezoneOffset","isoWeeks","toJSON","isUTC","withSuffix","toIsoString","asSeconds","asMilliseconds","asMinutes","asHours","asDays","asWeeks","asMonths","asYears","ordinalParse","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","inStr","find","inArray","hasParent","getCenter","getVelocity","deltaTime","getAngle","touch1","touch2","getDirection","getRotation","isVertical","setPrefixedCss","toggle","prefixes","toCamelCase","toggleBehavior","falseFn","onselectstart","ondragstart","str","preventMouseEvents","started","shouldDetect","hook","onTouchHandler","ev","triggerType","srcType","isPointer","isMouse","buttons","PointerEvent","matchType","updatePointer","doDetect","touchList","touchListLength","triggerChange","trigger","changedLength","changedTouches","evData","identifiers","identifier","pointerType","timeStamp","preventManipulation","stopDetect","pointers","touchlist","pointerEvent","pointerId","pt","MSPOINTER_TYPE_MOUSE","MSPOINTER_TYPE_TOUCH","MSPOINTER_TYPE_PEN","detection","stopped","startDetect","inst","eventData","startEvent","lastEvent","lastCalcEvent","futureCalcEvent","lastCalcData","extendEventData","instOptions","getCalculatedData","recalc","calcEv","calcData","velocityX","velocityY","interimAngle","interimDirection","startEv","lastEv","rotation","eventStartHandler","eventHandlers","createEvent","initEvent","dispatchEvent","state","eh","dragGesture","dragMaxTouches","triggered","dragMinDistance","startCenter","dragDistanceCorrection","dragLockToAxis","dragLockMinDistance","lastDirection","dragBlockVertical","dragBlockHorizontal","Drag","Gesture","holdGesture","holdTimeout","holdThreshold","Hold","Release","Swipe","swipeMinTouches","swipeMaxTouches","swipeVelocityX","swipeVelocityY","tapGesture","sincePrev","didDoubleTap","hasMoved","tapMaxDistance","tapMaxTime","doubleTapInterval","doubleTapDistance","tapAlways","Tap","Touch","preventMouse","transformGesture","scaleThreshold","rotationThreshold","transformMinScale","transformMinRotation","Transform","graphToggleSmoothCurves","graph_toggleSmooth","getElementById","graphRepositionNodes","showValueOfRange","repositionNodes","graphGenerateOptions","optionsSpecific","radioButton1","radioButton2","checked","backupConstants","optionsDiv","switchConfigurations","radioButton","querySelector","tableId","table","_restoreNodes","constantsVariableName","valueId","rangeValue","_overWriteGraphConstants","RepulsionMixin","HierarchialRepulsionMixin","BarnesHutMixin","_toggleBarnesHut","barnesHutTree","_initializeForceCalculation","clusterToFit","_calculateForces","_calculateGravitationalForces","_calculateNodeForces","_calculateSpringForcesWithSupport","_calculateHierarchicalSpringForces","_calculateSpringForces","supportNodes","supportNodeId","gravity","gravityForce","_sector","edgeLength","springForce","combinedClusterSize","node1","node2","node3","_calculateSpringForce","physicsConfiguration","maxGravitational","maxSpring","hierarchicalLayoutDirections","parentElement","rangeElement","radioButton3","graph_repositionNodes","graph_generateOptions","dynamicSmoothCurves","nameArray","maxNumberOfNodes","reposition","maxLevels","forceAggregateHubs","normalizeClusterLevels","increaseClusterLevel","openCluster","isMovingBeforeClustering","_nodeInActiveArea","_addSector","decreaseClusterLevel","_expandClusterNode","updateClusters","zoomDirection","recursive","doNotStart","amountOfNodes","detectedZoomingIn","detectedZoomingOut","_collapseSector","_formClusters","_openClusters","_aggregateHubs","handleChains","chainPercentage","_getChainFraction","_reduceAmountOfChains","_getHubSize","_formClustersByHub","_openClustersBySize","openAll","containedNodeId","childNode","_expelChildFromParent","_releaseContainedEdges","_connectEdgeBackToChild","_validateEdges","othersPresent","childNodeId","_repositionBezierNodes","_formClustersByZoom","_forceClustersByZoom","minLength","_addToCluster","_clusterToSmallestNeighbour","smallestNeighbour","smallestNeighbourNode","neighbour","onlyEqual","_formClusterFromHub","hubNode","absorptionSizeOffset","allowCluster","edgesIdarray","amountOfInitialEdges","children","childrenIds","_addToContainedEdges","_connectEdgeToCluster","_containCircularEdgesFromNode","massBefore","_addToReroutedEdges","maxLevel","minLevel","clusterLevel","targetLevel","average","averageSquared","hubCounter","largestHub","variance","standardDeviation","fraction","reduceAmount","chains","_switchToSector","sectorId","sectorType","_switchToActiveSector","_switchToFrozenSector","_switchToSupportSector","_loadLatestSector","_previousSector","_setActiveSector","newId","_forgetLastSector","_createNewSector","_deleteActiveSector","_deleteFrozenSector","_freezeSector","_activateSector","_mergeThisWithFrozen","_collapseThisToSingleCluster","sector","unqiueIdentifier","previousSector","runFunction","argument","returnValues","_doInAllFrozenSectors","_drawSectorNodes","_drawAllSectorNodes","_getNodesOverlappingWith","_getAllNodesOverlappingWith","_pointerToPositionObject","positionObject","_getEdgesOverlappingWith","_getAllEdgesOverlappingWith","_addToSelection","_addToHover","doNotTrigger","_unselectClusters","_getSelectedNodeCount","_getSelectedNode","_getSelectedEdge","_getSelectedEdgeCount","_getSelectedObjectCount","_selectionIsEmpty","_clusterInSelection","_selectConnectedEdges","_hoverConnectedEdges","_unselectConnectedEdges","append","highlightEdges","overrideSelectable","DOM","_manipulationReleaseOverload","_navigationReleaseOverload","getSelectedNodes","edgeIds","getSelectedEdges","idArray","selectNodes","RangeError","selectEdges","_clearManipulatorBar","manipulationDOM","_cleanManipulatorHammers","_restoreOverloadedFunctions","functionName","_toggleEditMode","toolbar","boundFunction","edgeBeingEdited","selectedControlNode","_createAddNodeToolbar","_createAddEdgeToolbar","_editNode","_createEditEdgeToolbar","_addNode","_handleConnect","_finishConnect","_selectControlNode","_controlNodeDrag","_releaseControlNode","newNode","_editEdge","alert","targetNode","connectionEdge","connectFromId","_createEdge","defaultData","finalizedData","sourceNodeId","targetNodeId","selectedNodes","selectedEdges","navigationDOM","navigationDivs","navigationDivActions","_stopMovement","_zoomExtent","hubsize","definedLevel","undefinedLevel","_changeConstants","_determineLevels","_determineLevelsDirected","distribution","_getDistribution","_placeNodesByHierarchy","minPos","_placeBranchNodes","maxCount","_setLevel","firstNode","_setLevelDirected","parentId","parentLevel","nodeMoved","webpackContext","req","resolve","repulsingForce","a_base","minimumDistance","steepness","springFx","springFy","totalFx","totalFy","correctionFx","correctionFy","nodeCount","_formBarnesHutTree","_getForceContribution","NW","NE","SW","SE","parentBranch","childrenCount","centerOfMass","calcSize","MAX_VALUE","sizeDiff","minimumTreeSize","rootSize","halfRootSize","_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","Queue","Graph3d","graph3d","Camera","Filter","Point2d","Point3d","Slider","StepNumber","Timeline","Graph2d","timeline","DateUtil","DataStep","Range","stack","TimeStep","components","items","Item","BackgroundItem","BoxItem","PointItem","RangeItem","Component","CurrentTime","CustomTime","DataAxis","GraphGroup","Group","BackgroundGroup","ItemSet","Legend","LineGraph","TimeAxis","Network","network","Edge","Groups","Images","Node","Popup","dotparser","gephiParser","Graph","Error","moment","hammer","Hammer","isNumber","object","Number","giveRange","min","max","total","value","scale","Math","isString","String","isDate","Date","match","ASPDateRegex","exec","isNaN","parse","isDataTable","google","visualization","DataTable","randomUUID","S4","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","protoExtend","equalArray","convert","type","Boolean","valueOf","isMoment","toDate","getType","toISOString","getAbsoluteLeft","elem","getBoundingClientRect","left","getAbsoluteTop","top","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","window","returnValue","getTarget","target","srcElement","nodeType","parentNode","option","asBoolean","defaultValue","asNumber","asString","asSize","asElement","hexToRGB","hex","shorthandRegex","replace","r","g","result","parseInt","overrideOpacity","color","opacity","rgb","substr","RGBToHex","red","green","blue","slice","parseColor","isValidRGB","isValidHex","hsv","hexToHSV","lighterColorHSV","h","s","v","darkerColorHSV","darkerColorHex","HSVToHex","lighterColorHex","background","border","highlight","hover","RGBToHSV","minRGB","maxRGB","d","hue","saturation","cssUtil","cssText","styles","style","trim","parts","keys","map","addCssText","currentStyles","newStyles","removeCssText","removeStyles","HSVToRGB","f","q","t","isOk","test","selectiveBridgeObject","fields","referenceObject","objectTo","create","bridgeObject","mergeOptions","mergeTarget","options","enabled","binarySearchCustom","orderedItems","searchFunction","field","field2","maxIterations","iteration","low","high","middle","item","searchResult","binarySearchValue","sidePreference","prevValue","nextValue","easeInOutQuad","start","end","duration","change","easingFunctions","linear","easeInQuad","easeOutQuad","easeInCubic","easeOutCubic","easeInOutCubic","easeInQuart","easeOutQuart","easeInOutQuart","easeInQuint","easeOutQuint","easeInOutQuint","prepareElements","JSONcontainer","elementType","redundant","used","cleanupElements","removeChild","getSVGElement","svgContainer","shift","document","createElementNS","appendChild","getDOMElement","DOMContainer","insertBefore","createElement","drawPoint","x","y","group","labelObj","point","drawPoints","setAttributeNS","size","label","xOffset","yOffset","content","textContent","drawBar","width","height","rect","data","_options","_data","_fieldId","fieldId","_type","_subscribers","add","setOptions","prototype","queue","_queue","destroy","on","subscribers","subscribe","off","filter","unsubscribe","_trigger","params","senderId","concat","subscriber","addedIds","me","_addItem","columns","_getColumnNames","row","rows","getNumberOfRows","col","cols","getValue","update","updatedIds","updatedData","addOrUpdate","_updateItem","get","ids","firstType","returnType","allowedValues","itemId","_getItem","order","_sort","_filterFields","_appendRow","getIds","getDataSet","mappedItems","filteredItem","name","sort","av","bv","remove","removedId","removedIds","_remove","clear","maxField","itemField","minField","distinct","values","fieldType","count","exists","types","raw","converted","JSON","stringify","dataTable","getNumberOfColumns","getColumnId","getColumnLabel","addRow","setValue","_ids","_onEvent","apply","setData","refresh","newIds","added","removed","viewOptions","getArguments","defaultFilter","dataSet","updated","delay","Infinity","_timeout","_extended","_flushIfNeeded","flush","methods","original","method","args","fn","context","entry","clearTimeout","setTimeout","container","SyntaxError","containerElement","margin","defaultXCenter","defaultYCenter","xLabel","yLabel","zLabel","passValueFn","xValueLabel","yValueLabel","zValueLabel","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","getMouseX","clientX","targetTouches","getMouseY","clientY","Emitter","_setScale","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","obj","sortNumber","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","textAlign","textBaseline","fillText","visible","setValues","setPlayInterval","onchange","getIndex","selectValue","setOnChangeCallback","lineStyle","getLabel","getSelectedValue","from","to","prettyStep","text","xText","yText","zText","offset","xMin2d","xMax2d","gridLenX","gridLenY","textMargin","armAngle","H","S","V","R","G","B","C","Hi","X","abs","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","startMouseY","startStart","startEnd","startArmRotation","cursor","onmousemove","_onMouseMove","onmouseup","diffX","diffY","horizontalNew","verticalNew","snapAngle","snapValue","round","parameters","emit","boundingRect","mouseX","mouseY","tooltipTimeout","_hideTooltip","dataPoint","_dataPointFromXY","_showTooltip","ontouchmove","_onTouchMove","ontouchend","_onTouchEnd","delta","wheelDelta","detail","oldLength","newLength","_insideTriangle","triangle","sign","as","bs","cs","distMax","closestDataPoint","closestDist","triangle1","triangle2","distX","distY","sqrt","line","dot","dom","borderRadius","boxShadow","borderLeft","contentWidth","offsetWidth","contentHeight","offsetHeight","lineHeight","dotWidth","dotHeight","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","log","LN10","step1","pow","step2","step5","toPrecision","getStep","groups","forthArgument","defaultOptions","autoResize","orientation","maxHeight","minHeight","_create","body","domProps","emitter","bind","hiddenDates","getScale","timeAxis","toScreen","_toScreen","toGlobalScreen","_toGlobalScreen","toTime","_toTime","toGlobalTime","_toGlobalTime","range","currentTime","customTime","itemSet","itemsData","groupsData","setGroups","setItems","_redraw","Core","markDirty","refreshItems","newDataSet","initialLoad","dataRange","_getDataRange","setWindow","animate","fit","setSelection","focus","getSelection","itemData","e","getItemRange","dataset","minItem","maxStartItem","maxEndItem","linegraph","getLegend","groupId","isGroupVisible","visibility","convertHiddenOptions","repeat","dateItem","updateHiddenDates","centerContainer","totalRange","pixelTime","startDate","endDate","_d","runUntil","clone","day","dayOfYear","year","dayOffset","date","month","console","removeDuplicates","startHidden","isHidden","endHidden","rangeStart","rangeEnd","hidden","startToFront","endToFront","_applyRange","safeDates","printDates","dates","stepOverHiddenDates","timeStep","previousTime","stepInHidden","currentValue","current","newValue","switchedYear","switchedMonth","switchedDay","time","conversion","getHiddenDurationBetween","correctTimeForHidden","hiddenDuration","totalDuration","partialDuration","accumulatedHiddenDuration","getAccumulatedHiddenDuration","newTime","getHiddenDurationBefore","timeOffset","requiredDuration","previousPoint","snapAwayFromHidden","direction","correctionEnabled","minimumStep","containerHeight","customRange","alignZeros","autoScale","stepIndex","marginStart","marginEnd","deadSpace","majorSteps","minorSteps","setMinimumStep","setFirst","safeSize","minimumStepValue","orderOfMagnitude","minorStepIdx","magnitudefactor","solutionFound","stepSize","niceStart","niceEnd","roundToMinor","marginRange","rounded","hasNext","previous","decimals","exp","cnt","isMajor","now","hours","minutes","seconds","milliseconds","deltaDifference","scaleOffset","moveable","zoomable","zoomMin","zoomMax","touch","animateTimer","_onDragStart","_onDrag","_onDragEnd","_onHold","_onMouseWheel","_onTouch","_onPinch","validateDirection","getPointer","byUser","_cancelAnimation","initStart","initEnd","initTime","anyChanged","dragging","done","changed","newStart","newEnd","getRange","totalHidden","previousDelta","allowDragging","deltaX","deltaY","diffRange","safeStart","safeEnd","pointer","pageX","pageY","pointerDate","_pointerToDate","zoom","centerDate","hiddenDurationBefore","hiddenDurationAfter","move","EPSILON","orderByStart","orderByEnd","aTime","bTime","force","iMax","axis","collidingItem","jj","collision","nostack","subgroups","newTop","subgroup","format","FORMAT","minorLabels","millisecond","second","minute","hour","weekday","majorLabels","setFormat","defaultFormat","first","setFullYear","getFullYear","setMonth","setDate","setHours","setMinutes","setSeconds","setMilliseconds","getMilliseconds","getSeconds","getMinutes","getHours","getDate","getMonth","setScale","setAutoScale","enable","stepYear","stepMonth","stepDay","stepHour","stepMinute","stepSecond","stepMillisecond","snap","getLabelMinor","getLabelMajor","getClassName","even","today","isSame","currentWeek","currentMonth","currentYear","locale","lang","toLowerCase","parent","selected","displayed","dirty","select","unselect","setParent","hide","show","isVisible","repositionX","repositionY","_repaintDeleteButton","anchor","editable","deleteButton","title","removeFromDataSet","stopPropagation","_updateContents","template","Element","_updateTitle","removeAttribute","_updateDataAttributes","dataAttributes","attributes","setAttribute","_updateStyle","emptyContent","baseClassName","box","getComputedStyle","onTop","itemSubgroup","subgroupIndex","foreground","align","itemSetHeight","marginLeft","maxWidth","_repaintDragLeft","_repaintDragRight","contentLeft","parentWidth","boxWidth","updateTime","dragLeft","dragLeftItem","dragRight","dragRightItem","_isResized","resized","_previousWidth","_previousHeight","showCurrentTime","locales","backgroundVertical","toUpperCase","substring","currentTimeTimer","setCurrentTime","getCurrentTime","showCustomTime","eventParams","drag","setCustomTime","getCustomTime","svg","linegraphOptions","showMinorLabels","showMajorLabels","icons","majorLinesOffset","minorLinesOffset","labelOffsetX","labelOffsetY","iconWidth","linegraphSVG","DOMelements","lines","labels","conversionFactor","minWidth","stepPixels","stepPixelsForced","zeroCrossing","lineOffset","master","svgElements","iconsRemoved","amountOfGroups","lineContainer","scrollTop","addGroup","graphOptions","updateGroup","removeGroup","display","_redrawGroupIcons","iconHeight","iconOffset","drawIcon","_cleanupIcons","backgroundHorizontal","activeGroups","_calculateCharSize","minorLabelHeight","minorCharHeight","majorLabelHeight","majorCharHeight","minorLineWidth","minorLineHeight","majorLineWidth","majorLineHeight","_redrawLabels","_redrawTitle","amountOfSteps","stepDifference","zeroStepDifference","valueAtZero","marginStartPos","maxLabelSize","_redrawLabel","_redrawLine","titleWidth","titleCharHeight","convertValue","invertedValue","convertedValue","characterHeight","largestWidth","majorCharWidth","minorCharWidth","textMinor","createTextNode","measureCharMinor","textMajor","measureCharMajor","textTitle","measureCharTitle","titleCharWidth","groupsUsingDefaultStyles","usingDefaultStyle","zeroPosition","Line","Bar","Points","setZeroPosition","catmullRom","parametrization","alpha","SVGcontainer","path","fillPath","fillHeight","outline","shaded","barWidth","bar1Height","bar2Height","icon","yAxisOrientation","getYRange","groupData","draw","framework","subgroupOrderer","subgroupOrder","visibleItems","byStart","byEnd","checkRangedItems","inner","marker","getLabelWidth","restack","_updateVisibleItems","markerHeight","lastMarkerHeight","_calculateHeight","offsetTop","offsetLeft","ii","resetSubgroups","labelSet","orderSubgroups","_checkIfVisible","sortArray","sortField","removeItem","startArray","endArray","oldVisibleItems","visibleItemsLookup","lowerBound","upperBound","_checkIfVisibleWithReference","initialPosByStart","_traceVisible","initialPosByEnd","initialPos","breakCondition","groupOrder","selectable","onAdd","onUpdate","onMove","onRemove","onMoving","itemOptions","itemListeners","_onAdd","_onUpdate","_onRemove","groupListeners","_onAddGroups","_onUpdateGroups","_onRemoveGroups","groupIds","selection","stackDirty","touchParams","UNGROUPED","BACKGROUND","_updateUngrouped","backgroundGroup","isFirst","_onSelectItem","_onMultiSelectItem","_onAddItem","addCallback","Function","getVisibleItems","rawVisibleItems","_deselect","_orderGroups","visibleInterval","zoomed","lastVisibleInterval","lastWidth","firstGroup","_firstGroup","firstMargin","nonFirstMargin","groupMargin","groupResized","firstGroupIndex","firstGroupId","ungrouped","_getGroupId","getLabelSet","oldItemsData","getItems","_order","getGroups","_getType","_removeItem","groupOptions","oldGroupId","oldGroup","_constructByEndArray","itemFromTarget","itemProps","initialX","newProps","initial","groupFromTarget","_updateItemProps","_moveToGroup","changes","ctrlKey","srcEvent","shiftKey","oldSelection","newSelection","xAbs","newItem","_getItemRange","_item","gesture","itemSetFromTarget","side","iconSize","iconSpacing","textArea","scrollableHeight","drawLegendIcons","paddingTop","defaultGroup","sampling","graphHeight","barChart","handleOverlap","dataAxis","legend","abortedGraphUpdate","updateSVGheight","updateSVGheightOnResize","lastStart","COUNTER","BarGraphFunctions","yAxisLeft","yAxisRight","legendLeft","legendRight","_updateAllGroupData","_updateGroup","groupsContent","ungroupedCounter","forceGraphUpdate","_updateGraph","rangePerPixelInv","preprocessedGroupData","processedGroupData","groupRanges","changeCalled","minDate","maxDate","_getRelevantData","_applySampling","_convertXcoordinates","_getYRanges","_updateYAxis","MAX_CYCLES","_convertYcoordinates","dataContainer","guess","increment","amountOfPoints","xDistance","pointsPerPixel","ceil","sampledData","barCombinedDataLeft","barCombinedDataRight","getStackedBarYRange","minVal","maxVal","yAxisLeftUsed","yAxisRightUsed","minLeft","minRight","maxLeft","maxRight","ignore","_toggleAxisVisiblity","drawIcons","axisUsed","datapoints","xValue","yValue","extractedData","svgHeight","labelValue","majorTexts","minorTexts","lineTop","parentChanged","foregroundNextSibling","nextSibling","backgroundNextSibling","_repaintLabels","timeLabelsize","cur","prevLine","xPrev","xFirstMajorLabel","_repaintMinorText","_repaintMajorText","_repaintMajorLine","_repaintMinorLine","leftTime","leftText","widthText","arr","pop","childNodes","nodeValue","_initializeMixinLoaders","initializing","triggerFunctions","edit","editEdge","connect","del","customScalingFunction","nodes","mass","radiusMin","radiusMax","shape","image","fontColor","fontSize","fontFace","fontFill","fontStrokeWidth","fontStrokeColor","fontDrawThreshold","scaleFontWithValue","fontSizeMin","fontSizeMax","fontSizeMaxVisible","level","borderWidthSelected","edges","widthSelectionMultiplier","hoverWidth","labelAlignment","arrowScaleFactor","dash","gap","altLength","inheritColor","useGradients","configurePhysics","navigation","keyboard","speed","bindToWindow","dataManipulation","initiallyVisible","hierarchicalLayout","levelSeparation","nodeSpacing","layout","smoothCurves","dynamic","roundness","dragNetwork","dragNodes","hideEdgesOnDrag","hideNodesOnDrag","useDefaultGroups","constants","nodeIndices","supportNodes","supportNodeIndices","functions","createNode","_createNode","createEdge","_createEdge","once","eventListeners","onTap","onTouch","onDoubleTap","onHold","onDragStart","onDrag","onDragEnd","onMouseWheel","onPinch","onMouseMove","onRelease","view","View","renderer","CanvasRenderer","clustering","ClusterEngine","physics","PhysicsEngine","Canvas","touchHandler","TouchEventHandler","setCanvas","hoverObj","controlNodesActive","navigationHammers","manipulationHammers","images","setOnloadCallback","_requestRedraw","xIncrement","yIncrement","zoomIncrement","_loadSelectionSystem","cachedFunctions","startedStabilization","stabilized","stabilizationIterations","draggingNodes","pointerPosition","nodesListeners","_addNodes","_updateNodes","_removeNodes","edgesListeners","_addEdges","_updateEdges","_removeEdges","moving","renderTimer","_setupHierarchicalLayout","stabilize","zoomExtent","_updateNodeIndexList","_updateCalculationNodes","_markAllEdgesAsDirty","_createBezierNodes","MixinLoader","Activator","properties","disableStart","_unselectAll","_createManipulatorBar","dotData","DOTToGraph","gephi","gephiData","parseGephi","_setNodes","_setEdges","_resetLevels","startSimulation","onEdit","onEditEdge","onConnect","onDelete","editMode","newColorObj","groupname","clickToUse","activator","_createKeyBinds","_bindHammer","_cleanupPhysicsConfiguration","keycharm","reset","dispose","_recursiveDOMDelete","DOMobject","_checkShowPopup","_XconvertDOMtoCanvas","_YconvertDOMtoCanvas","previousPopupObjId","popupObj","nodeUnderCursor","popupType","overlappingNodes","node","isOverlappingWith","getTitle","overlappingEdges","edge","connected","popup","popupTargetType","popupTargetId","setPosition","setText","_checkHidePopup","pointerObj","stillOnObj","overNode","_getNodeAt","oldNodesData","_updateSelection","xFixed","yFixed","angle","_reconnectEdges","_updateValueRange","changedData","setProperties","edgeId","colorDirty","selectionObj","_removeFromSelection","oldEdgesData","edgesData","oldEdge","disconnect","showInternalIds","via","valueTotal","setValueRange","_setTranslation","offsetX","offsetY","_getTranslation","_getScale","_handleNavigation","_zoom","freezeSimulation","freeze","freezeSimulationEnabled","_configureSmoothCurves","nodeId","parentEdgeId","specificEdges","internalMultiplier","positionBezierNode","mixin","storePosition","storePositions","dataArray","allowedToMoveX","allowedToMoveY","getPositions","isActive","active","isCluster","getCenterCoordinates","DOMtoCanvas","getBoundingBox","boundingBox","getConnectedNodes","nodeList","nodeObj","toId","fromId","getEdgesFromNode","edgesList","generateColorObject","networkConstants","widthSelected","labelDimensions","yLine","dirtyLabel","fromBackup","toBackup","fromArray","widthFixed","lengthFixed","controlNodesEnabled","controlNodes","positions","connectedNode","springLength","_drawLine","_drawArrow","_drawArrowCenter","_drawDashLine","attachEdge","detachEdge","widthDiff","xFrom","yFrom","xTo","yTo","xObj","yObj","_getDistanceToEdge","_getColor","colorObj","fromColor","toColor","grd","createLinearGradient","addColorStop","_getLineWidth","_line","midpointX","midpointY","_pointOnLine","_label","resize","_circle","_pointOnCircle","networkScaleInv","_getViaCoordinates","xVia","yVia","factor","pi","originalAngle","atan2","myAngle","quadraticCurveTo","lineCount","measureText","save","translate","_rotateForLabelAlignment","_drawLabelRect","_drawLabelText","restore","angleInDegrees","rotate","lineMargin","fillRect","lineJoin","strokeText","setLineDash","pattern","lineDashOffset","lineCap","dashedLine","percentage","arrow","_pointOnBezier","_findBorderPosition","distanceToBorder","distanceToNodes","difference","threshold","arrowPos","guidePos","edgeSegmentLength","toBorderDist","toBorderPoint","x1","y1","x2","y2","x3","y3","lastX","lastY","minDistance","_getDistanceToLine","px","py","something","u","_drawControlNodes","nodeIdFrom","nodeIdTo","damping","maxNodeSizeIncrements","nodeScaling","getControlNodeFromPosition","getControlNodeToPosition","_enableControlNodes","_disableControlNodes","_getSelectedControlNode","fromDistance","toDistance","_restoreControlNodes","controlnodeFromPos","fromBorderDist","fromBorderPoint","controlnodeToPos","defaultIndex","groupsArray","groupIndex","DEFAULT","groupName","imageBroken","load","url","brokenUrl","img","Image","onload","onerror","error","src","imagelist","grouplist","horizontalAlignLeft","verticalAlignTop","baseRadiusValue","radiusFixed","preassignedLevel","hierarchyEnumerated","predefinedPosition","previousState","vx","vy","fixedData","networkScale","canvasTopLeft","canvasBottomRight","originalLabel","triggerFunction","groupObj","imageObj","brokenImage","_drawDatabase","_resizeDatabase","_drawBox","_resizeBox","_drawCircle","_resizeCircle","_drawEllipse","_resizeEllipse","_drawImage","_resizeImage","_drawCircularImage","_resizeCircularImage","_drawText","_resizeText","_drawDot","_resizeShape","_drawSquare","_drawTriangle","_drawTriangleDown","_drawStar","_drawIcon","_resizeIcon","_reset","clearSizeCache","w","isFixed","isSelected","getDistance","radiusDiff","fontDiff","_drawImageAtPosition","globalAlpha","drawImage","_drawImageLabel","getTextSize","_swapToImageResizeWhenImageLoaded","diameter","centerX","centerY","_drawRawCircle","circle","clip","textSize","selectionLineWidth","roundRect","database","ellipse","_drawShape","radiusMultiplier","_icon","iconTextSpacing","relativeIconSize","iconFontFace","iconColor","baseline","labelUnderNode","relativeFontSize","strokecolor","inArea","setScaleAndPos","clearVelocity","updateVelocity","massBeforeClustering","energyBefore","fontFamily","parseDOT","parseGraph","nextPreview","isAlphaNumeric","regexAlphaNumeric","merge","o","addNode","graphs","attr","addEdge","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","graphData","dotNode","graphNode","convertEdge","dotEdge","graphEdge","subEdge","{","}","[","]",";","=",",","->","--","gephiJSON","allowedToMove","gEdges","gNodes","gEdge","source","gNode","propagating","leftContainer","rightContainer","shadowTop","shadowBottom","shadowTopLeft","shadowBottomLeft","shadowTopRight","shadowBottomRight","_redrawTimer","touchAction","set","listeners","events","scrollTopMin","redrawCount","_initAutoResize","component","_stopAutoResize","barId","addCustomTime","numIds","customBarId","ts","customBarIds","removeCustomTime","what","getWindow","borderRootHeight","borderRootWidth","autoHeight","centerWidth","_updateScrollTop","visibilityTop","visibilityBottom","MAX_REDRAWS","repaint","_startAutoResize","_onResize","lastHeight","watchTimer","setInterval","_setScrollTop","_getScrollTop","inputHandler","isFinal","offTouch","offRelease","en","en_EN","en_US","nl","custom","nl_NL","nl_BE","_catmullRom","_linear","dFill","_catmullRomUniform","p0","p1","p2","p3","bp1","bp2","normalization","d1","d2","d3","A","N","M","d3powA","d2powA","d3pow2A","d2pow2A","d1pow2A","d1powA","Bargraph","barCombinedData","coreDistance","drawData","combinedData","intersections","barPoints","_getDataIntersections","heightOffset","_getSafeDrawData","nextKey","amount","resolved","prevKey","accumulated","groupLabel","_getStackedBarYRange","xpos","SelectionMixin","ManipulationMixin","NavigationMixin","HierarchicalLayoutMixin","_loadMixin","sourceVariable","mixinFunction","_clearMixin","_loadPhysicsSystem","PhysicsMixin","_loadSelectedForceSolver","_loadPhysicsConfiguration","_loadManipulationSystem","blockConnectingEdgeSelection","forceAppendSelection","manipulationDiv","editModeDiv","closeDiv","_loadNavigationControls","_cleanNavigation","_loadNavigationElements","_loadHierarchySystem","overlay","prevent_default","_onTapOverlay","windowHammer","_hasParent","deactivate","escListener","activate","unbind","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","_prototypeProperties","child","staticProps","instanceProps","defineProperties","_classCallCheck","instance","Constructor","BarnesHutSolver","Repulsion","HierarchicalRepulsion","SpringSolver","HierarchicalSpringSolver","CentralGravitySolver","_this","physicsBody","calculationNodes","calculationNodeIndices","forces","velocities","viewFunction","simulationInterval","requiresTimeout","previousStates","barnesHut","thetaInverted","gravitationalConstant","centralGravity","springConstant","repulsion","nodeDistance","hierarchicalRepulsion","model","timestep","maxVelocity","minVelocity","stabilization","iterations","updateInterval","onlyDynamicEdges","init","writable","configurable","nodesSolver","edgesSolver","gravitySolver","modelOptions","runSimulation","simulationStep","startTime","physicsTick","physicsTime","runDoubleSpeed","calculateForces","moveNodes","revert","supportNodeId","nodeIds","nodesPresent","vminCorrected","nodeVelocity","_performStep","totalVelocity","solve","_freezeNodes","_restoreFrozenNodes","stabilizationSteps","_stabilizationBatch","steps","_finalizeStabilization","defineProperty","clusteredNodes","clusterByConnectionCount","hubsize","_getHubSize","tyepof","_checkOptions","nodesToCluster","clusterByConnection","clusterByNodeData","doNotUpdateCalculationNodes","joinCondition","childNodesObj","childEdgesObj","clonedOptions","_cloneOptions","_cluster","clusterOutliers","clusters","childNodeId","_getConnectedId","clusterNodeProperties","parentNodeId","parentClonedOptions","childClonedOptions","objId","amountOfConnections","_createClusterEdges","newEdges","childNode","childKeys","otherNodeId","otherOnTo","clusterEdgeProperties","clusterId","processProperties","childNodesOptions","childEdgesOptions","_getClusterPosition","clusterNode","containedNodes","containedEdges","viaId","minX","maxX","minY","maxY","lenght","openCluster","clusterNodeId","_connectEdge","edgeIds","clusterStack","_getClusterStack","average","averageSquared","hubCounter","largestHub","variance","standardDeviation","hubThreshold","requestAnimationFrame","mozRequestAnimationFrame","webkitRequestAnimationFrame","msRequestAnimationFrame","redrawRequested","continueRendering","renderRequests","startRendering","_determineBrowserMethod","renderStep","setTransform","pixelRatio","_drawEdges","_drawNodes","alwaysShow","sMax","browserType","tabIndex","devicePixelRatio","webkitBackingStorePixelRatio","mozBackingStorePixelRatio","msBackingStorePixelRatio","oBackingStorePixelRatio","backingStorePixelRatio","pinch","hammerFrame","emitEvent","oldWidth","oldHeight","_XconvertCanvasToDOM","_YconvertCanvasToDOM","canvasToDOM","animationSpeed","renderRefreshRate","animationEasingFunction","easingTime","sourceScale","targetScale","sourceTranslation","targetTranslation","lockedOnNodeId","lockedOnNodeOffset","touchTime","releaseNode","_getRange","specificNodes","_findCenter","zoomLevel","initialZoom","positionDefined","numberOfNodes","yDistance","xZoomLevel","yZoomLevel","animationOptions","animation","focusOnNode","nodePosition","lockedOnNode","easingFunction","animateView","locked","_transitionRedraw","viewCenter","distanceFromCenter","_lockedRedraw","finished","SelectionHandler","selectionHandler","pinched","selectOnPoint","_callbacks","self","removeListener","removeAllListeners","callbacks","cb","hasListeners","__WEBPACK_AMD_DEFINE_FACTORY__","__WEBPACK_AMD_DEFINE_ARRAY__","__WEBPACK_AMD_DEFINE_RESULT__","_exportFunctions","_bound","keydown","keyup","_keys","fromCharCode","code","down","handleEvent","up","keyCode","bound","bindAll","getKey","newBindings","global","dfl","hasOwnProp","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","monthDiff","anchor2","adjust","wholeMonthDiff","meridiemFixWrap","meridiem","isPm","meridiemHour","isPM","Locale","Moment","config","skipOverflow","checkOverflow","copyConfig","updateInProgress","updateOffset","Duration","normalizedInput","normalizeObjectUnits","years","quarters","quarter","months","weeks","week","days","_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","setTime","rawSetter","rawGetter","rawMonthSetter","input","compareArrays","dontConvert","lengthDiff","diffs","toInt","normalizeUnits","units","lowered","unitAliases","camelFunctions","inputObject","normalizedProp","makeList","setter","getter","results","utc","argumentForCoercion","coercedNumber","isFinite","daysInMonth","UTC","getUTCDate","weeksInYear","dow","doy","weekOfYear","daysInYear","isLeapYear","_a","MONTH","DATE","YEAR","HOUR","MINUTE","SECOND","MILLISECOND","_overflowDayOfYear","isValid","_isValid","getTime","bigHour","normalizeLocale","chooseLocale","names","loadLocale","oldLocale","hasModule","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","parseTokenOffsetMs","parseTokenTimestampMs","parseTokenTimezone","parseTokenT","parseTokenDigits","parseTokenOneOrTwoDigits","_ordinalParse","_ordinalParseLenient","RegExp","regexpEscape","unescapeFormat","utcOffsetFromString","string","possibleTzMatches","tzChunk","parseTimezoneChunker","addTimeToArrayFromToken","datePartArray","monthsParse","_dayOfYear","parseTwoDigitYear","_meridiem","_useUTC","weekdaysParse","_w","invalidWeekday","dayOfYearFromWeekInfo","weekYear","temp","GG","W","E","_week","gg","dayOfYearFromWeeks","dateFromConfig","currentDate","yearToUse","currentDateArray","makeUTCDate","getUTCMonth","_nextDay","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","SS","SSS","SSSS","Z","utcOffset","ZZ","zoneAbbr","zz","zoneName","unix","lists","DDDD","_monthsShort","monthName","regex","_monthsParse","_longMonthsParse","_shortMonthsParse","_weekdays","_weekdaysShort","_weekdaysMin","weekdayName","_weekdaysParse","_longDateFormat","LTS","LT","L","LL","LLL","LLLL","isLower","_calendar","sameDay","nextDay","nextWeek","lastDay","lastWeek","sameElse","calendar","_relativeTime","future","past","mm","hh","MM","yy","pastFuture","_ordinal","postformat","firstDayOfYear","_invalidDate","ret","parseIso","diffRes","isDuration","inp","version","relativeTimeThreshold","limit","defineLocale","_abbr","abbr","langData","flags","parseZone","isDSTShifted","parsingFlags","invalidAt","keepLocalTime","_dateUtcOffset","inputString","asFloat","that","zoneDiff","humanize","fromNow","sod","startOf","isDST","getDay","endOf","inputMs","isBetween","zone","localAdjust","_changeInProgress","isLocal","isUtcOffset","isUtc","hasAlignedHourOffset","isoWeeksInYear","weekInfo","newLocaleData","getTimezoneOffset","isoWeeks","toJSON","isUTC","withSuffix","toIsoString","asSeconds","asMilliseconds","asMinutes","asHours","asDays","asWeeks","asMonths","asYears","ordinalParse","require","noGlobal","_firstTarget","propagatedHandler","_handled","stopped","firstTarget","_handlers","Manager","PropagatingHammer","_on","_off","_emit","_destroy","handler","eventType","exportName","setTimeoutContext","timeout","bindFn","invokeArrayArg","arg","each","iterator","dest","inherit","childP","baseP","_super","boolOrFn","TYPE_FUNCTION","ifUndefined","val1","val2","addEventListeners","splitStr","removeEventListeners","hasParent","inStr","str","find","inArray","findByKey","uniqueArray","prefixed","property","prefix","camelProp","VENDOR_PREFIXES","uniqueId","_uniqueId","getWindowForElement","doc","ownerDocument","defaultView","parentWindow","Input","manager","inputTarget","domHandler","ev","createInputInstance","Type","inputClass","SUPPORT_POINTER_EVENTS","PointerEventInput","SUPPORT_ONLY_TOUCH","TouchInput","SUPPORT_TOUCH","TouchMouseInput","MouseInput","pointersLen","pointers","changedPointersLen","changedPointers","INPUT_START","INPUT_END","INPUT_CANCEL","session","computeInputData","recognize","prevInput","pointersLength","firstInput","simpleCloneInputData","firstMultiple","offsetCenter","getCenter","timeStamp","deltaTime","getAngle","computeDeltaXY","offsetDirection","getDirection","rotation","getRotation","computeIntervalInputData","offsetDelta","prevDelta","velocity","velocityX","velocityY","last","lastInterval","COMPUTE_INTERVAL","getVelocity","DIRECTION_NONE","DIRECTION_LEFT","DIRECTION_RIGHT","DIRECTION_UP","DIRECTION_DOWN","PROPS_XY","PROPS_CLIENT_XY","evEl","MOUSE_ELEMENT_EVENTS","evWin","MOUSE_WINDOW_EVENTS","allow","pressed","POINTER_ELEMENT_EVENTS","POINTER_WINDOW_EVENTS","store","pointerEvents","SingleTouchInput","evTarget","SINGLE_TOUCH_TARGET_EVENTS","SINGLE_TOUCH_WINDOW_EVENTS","started","normalizeSingleTouches","all","touches","changedTouches","TOUCH_TARGET_EVENTS","targetIds","getTouches","allTouches","INPUT_MOVE","identifier","changedTargetTouches","mouse","TouchAction","cleanTouchActions","actions","TOUCH_ACTION_NONE","hasPanX","TOUCH_ACTION_PAN_X","hasPanY","TOUCH_ACTION_PAN_Y","TOUCH_ACTION_MANIPULATION","TOUCH_ACTION_AUTO","Recognizer","defaults","state","STATE_POSSIBLE","simultaneous","requireFail","stateStr","STATE_CANCELLED","STATE_ENDED","STATE_CHANGED","STATE_BEGAN","directionStr","getRecognizerByNameIfManager","otherRecognizer","recognizer","AttrRecognizer","PanRecognizer","pX","pY","PinchRecognizer","PressRecognizer","_timer","_input","RotateRecognizer","SwipeRecognizer","TapRecognizer","pTime","pCenter","recognizers","preset","handlers","toggleCssProps","recognizeWith","requireFailure","cssProps","triggerDomEvent","gestureEvent","createEvent","initEvent","dispatchEvent","TEST_ELEMENT","MOBILE_REGEX","INPUT_TYPE_TOUCH","INPUT_TYPE_PEN","INPUT_TYPE_MOUSE","INPUT_TYPE_KINECT","DIRECTION_HORIZONTAL","DIRECTION_VERTICAL","DIRECTION_ALL","MOUSE_INPUT_MAP","mousedown","mousemove","mouseup","pointerType","POINTER_INPUT_MAP","pointerdown","pointermove","pointerup","pointercancel","pointerout","IE10_POINTER_TYPE_ENUM",2,3,4,5,"MSPointerEvent","removePointer","eventTypeNormalized","isTouch","storeIndex","pointerId","SINGLE_TOUCH_INPUT_MAP","touchstart","touchmove","touchend","touchcancel","TOUCH_INPUT_MAP","inputEvent","inputData","isMouse","PREFIXED_TOUCH_ACTION","NATIVE_TOUCH_ACTION","TOUCH_ACTION_COMPUTE","compute","getTouchAction","preventDefaults","prevented","hasNone","preventSrc","STATE_RECOGNIZED","STATE_FAILED","dropRecognizeWith","dropRequireFailure","hasRequireFailures","canRecognizeWith","withState","tryEmit","canEmit","inputDataClone","process","attrTest","optionPointers","isRecognized","directionTest","hasMoved","inOut","validPointers","validMovement","validTime","taps","posThreshold","validTouchTime","failTimeout","validInterval","validMultiTap","tapCount","domEvents","userSelect","touchSelect","touchCallout","contentZooming","userDrag","tapHighlightColor","STOP","FORCED_STOP","curRecognizer","existing","Tap","Pan","Swipe","Pinch","Rotate","Press","barnesHutTree","nodeCount","_formBarnesHutTree","_getForceContribution","children","NW","NE","SW","SE","parentBranch","childrenCount","centerOfMass","calcSize","gravityForce","fx","fy","MAX_VALUE","sizeDiff","minimumTreeSize","rootSize","halfRootSize","_splitBranch","_placeInTree","_updateBranchMass","totalMass","totalMassInv","biggestSize","skipMassUpdate","_placeInRegion","region","containedNode","_insertRegion","childSize","_debug","_drawBranch","branch","RepulsionSolver","repulsingForce","node1","node2","HierarchicalRepulsionSolver","steepness","edgeLength","node3","_calculateSpringForce","springForce","springFx","springFy","totalFx","totalFy","correctionFx","correctionFy","gravity","selectConnectedEdges","_getSelectedObjectCount","selectObject","_generateClickEvent","DOM","_selectConnectedEdges","_getEdgeAt","_addToSelection","_getNodesOverlappingWith","_getAllNodesOverlappingWith","_pointerToPositionObject","canvasPos","positionObject","_getEdgesOverlappingWith","_getAllEdgesOverlappingWith","_addToHover","doNotTrigger","_getSelectedNodeCount","_getSelectedNode","_getSelectedEdge","_getSelectedEdgeCount","_selectionIsEmpty","_clusterInSelection","clusterSize","_hoverConnectedEdges","_unselectConnectedEdges","_blurObject","_hoverObject","_handleDoubleTap","areaCenter","_handleOnHold","_selectObject","getSelectedNodes","getSelectedEdges","idArray","selectNodes","highlightEdges","RangeError","selectEdges","_unselectClusters","append","overrideSelectable","_handleTouch","_handleTap","_handleOnRelease","_manipulationReleaseOverload","_navigationReleaseOverload","_clearManipulatorBar","manipulationDOM","_cleanManipulatorHammers","sectors","support","targetNode","targetViaNode","_restoreOverloadedFunctions","functionName","_toggleEditMode","toolbar","_bindHammerToDiv","boundFunction","edgeBeingEdited","selectedControlNode","addNodeSpan","addNodeLabelSpan","seperatorLineDiv1","addEdgeSpan","addEdgeLabelSpan","seperatorLineDiv2","editNodeSpan","editNodeLabelSpan","seperatorLineDiv3","editEdgeSpan","editEdgeLabelSpan","seperatorLineDiv4","deleteSpan","deleteLabelSpan","editModeSpan","editModeLabelSpan","domElement","funct","_createAddNodeToolbar","backSpan","backLabelSpan","descriptionSpan","descriptionLabelSpan","_addNode","_createAddEdgeToolbar","_handleConnect","_handleDragStart","_handleDragEnd","_finishConnect","_createEditEdgeToolbar","_handleOnDrag","_selectControlNode","_controlNodeDrag","_releaseControlNode","_getPointer","newNode","_editEdge","alert","connectionEdge","connectFromId","defaultData","finalizedData","sourceNodeId","targetNodeId","_editNode","_deleteSelected","selectedNodes","selectedEdges","navigationDOM","wrapper","navigationDivs","navigationDivActions","_stopMovement","_zoomExtent","_xStopMoving","_yStopMoving","_stopZoom","_moveUp","_moveDown","_moveLeft","_moveRight","_zoomIn","_zoomOut","definedLevel","undefinedLevel","_changeConstants","_determineLevels","_determineLevelsDirected","distribution","_getDistribution","_placeNodesByHierarchy","minPos","_placeBranchNodes","_stabilize","maxCount","_setLevel","firstNode","minLevel","_setLevelDirected","parentId","parentLevel","nodeMoved","_restoreNodes","webpackContext","req","resolve","webpackPolyfill","paths","__webpack_amd_options__"],"mappings":"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"} \ No newline at end of file diff --git a/dist/vis.min.css b/dist/vis.min.css index f624ec20..693909ff 100644 --- a/dist/vis.min.css +++ b/dist/vis.min.css @@ -1 +1 @@ -.vis .overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10}.vis-active{box-shadow:0 0 10px #86d5f8}.vis [class*=span]{min-height:0;width:auto}.vis.timeline.root{position:relative;border:1px solid #bfbfbf;overflow:hidden;padding:0;margin:0;box-sizing:border-box}.vis.timeline .vispanel{position:absolute;padding:0;margin:0;box-sizing:border-box}.vis.timeline .vispanel.bottom,.vis.timeline .vispanel.center,.vis.timeline .vispanel.left,.vis.timeline .vispanel.right,.vis.timeline .vispanel.top{border:1px #bfbfbf}.vis.timeline .vispanel.center,.vis.timeline .vispanel.left,.vis.timeline .vispanel.right{border-top-style:solid;border-bottom-style:solid;overflow:hidden}.vis.timeline .vispanel.bottom,.vis.timeline .vispanel.center,.vis.timeline .vispanel.top{border-left-style:solid;border-right-style:solid}.vis.timeline .background{overflow:hidden}.vis.timeline .vispanel>.content{position:relative}.vis.timeline .vispanel .shadow{position:absolute;width:100%;height:1px;box-shadow:0 0 10px rgba(0,0,0,.8)}.vis.timeline .vispanel .shadow.top{top:-1px;left:0}.vis.timeline .vispanel .shadow.bottom{bottom:-1px;left:0}.vis.timeline .labelset{position:relative;overflow:hidden;box-sizing:border-box}.vis.timeline .labelset .vlabel{position:relative;left:0;top:0;width:100%;color:#4d4d4d;box-sizing:border-box;border-bottom:1px solid #bfbfbf}.vis.timeline .labelset .vlabel:last-child{border-bottom:none}.vis.timeline .labelset .vlabel .inner{display:inline-block;padding:5px}.vis.timeline .labelset .vlabel .inner.hidden{padding:0}.vis.timeline .itemset{position:relative;padding:0;margin:0;box-sizing:border-box}.vis.timeline .itemset .background,.vis.timeline .itemset .foreground{position:absolute;width:100%;height:100%;overflow:visible}.vis.timeline .axis{position:absolute;width:100%;height:0;left:0;z-index:1}.vis.timeline .foreground .group{position:relative;box-sizing:border-box;border-bottom:1px solid #bfbfbf}.vis.timeline .foreground .group:last-child{border-bottom:none}.vis.timeline .item{position:absolute;color:#1A1A1A;border-color:#97B0F8;border-width:1px;background-color:#D5DDF6;display:inline-block;overflow:hidden}.vis.timeline .item.selected{border-color:#FFC200;background-color:#FFF785;z-index:2}.vis.timeline .editable .item.selected{cursor:move}.vis.timeline .item.point.selected{background-color:#FFF785}.vis.timeline .item.box{text-align:center;border-style:solid;border-radius:2px}.vis.timeline .item.point{background:0 0}.vis.timeline .item.dot{position:absolute;padding:0;border-width:4px;border-style:solid;border-radius:4px}.vis.timeline .item.range{border-style:solid;border-radius:2px;box-sizing:border-box}.vis.timeline .item.background{border:none;background-color:rgba(213,221,246,.4);box-sizing:border-box;padding:0;margin:0}.vis.timeline .item.range .content{position:relative;display:inline-block;max-width:100%}.vis.timeline .item.background .content{position:absolute;display:inline-block;max-width:100%;margin:5px}.vis.timeline .item.line{padding:0;position:absolute;width:0;border-left-width:1px;border-left-style:solid}.vis.timeline .item .content{white-space:nowrap;box-sizing:border-box;padding:5px}.vis.timeline .item .delete{background:url(img/timeline/delete.png) top center no-repeat;position:absolute;width:24px;height:24px;top:0;right:-24px;cursor:pointer}.vis.timeline .item.range .drag-left{position:absolute;width:24px;height:100%;top:0;left:-4px;cursor:w-resize}.vis.timeline .item.range .drag-right{position:absolute;width:24px;height:100%;top:0;right:-4px;cursor:e-resize}.vis.timeline .timeaxis{position:relative;overflow:hidden}.vis.timeline .timeaxis.foreground{top:0;left:0;width:100%}.vis.timeline .timeaxis.background{position:absolute;top:0;left:0;width:100%;height:100%}.vis.timeline .timeaxis .text{position:absolute;color:#4d4d4d;padding:3px;white-space:nowrap}.vis.timeline .timeaxis .text.measure{position:absolute;padding-left:0;padding-right:0;margin-left:0;margin-right:0;visibility:hidden}.vis.timeline .timeaxis .grid.vertical{position:absolute;border-left:1px solid}.vis.timeline .timeaxis .grid.minor{border-color:#e5e5e5}.vis.timeline .timeaxis .grid.major{border-color:#bfbfbf}.vis.timeline .currenttime{background-color:#FF7F6E;width:2px;z-index:1}.vis.timeline .customtime{background-color:#6E94FF;width:2px;cursor:move;z-index:1}.vis.timeline .vispanel.background.horizontal .grid.horizontal{position:absolute;width:100%;height:0;border-bottom:1px solid}.vis.timeline .vispanel.background.horizontal .grid.minor{border-color:#e5e5e5}.vis.timeline .vispanel.background.horizontal .grid.major{border-color:#bfbfbf}.vis.timeline .dataaxis .yAxis.major{width:100%;position:absolute;color:#4d4d4d;white-space:nowrap}.vis.timeline .dataaxis .yAxis.major.measure{padding:0;margin:0;border:0;visibility:hidden;width:auto}.vis.timeline .dataaxis .yAxis.minor{position:absolute;width:100%;color:#bebebe;white-space:nowrap}.vis.timeline .dataaxis .yAxis.minor.measure{padding:0;margin:0;border:0;visibility:hidden;width:auto}.vis.timeline .dataaxis .yAxis.title{position:absolute;color:#4d4d4d;white-space:nowrap;bottom:20px;text-align:center}.vis.timeline .dataaxis .yAxis.title.measure{padding:0;margin:0;visibility:hidden;width:auto}.vis.timeline .dataaxis .yAxis.title.left{bottom:0;-webkit-transform-origin:left top;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg)}.vis.timeline .dataaxis .yAxis.title.right{bottom:0;-webkit-transform-origin:right bottom;-moz-transform-origin:right bottom;-ms-transform-origin:right bottom;-o-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.vis.timeline .legend{background-color:rgba(247,252,255,.65);padding:5px;border-color:#b3b3b3;border-style:solid;border-width:1px;box-shadow:2px 2px 10px rgba(154,154,154,.55)}.vis.timeline .legendText{white-space:nowrap;display:inline-block}.vis.timeline .graphGroup0{fill:#4f81bd;fill-opacity:0;stroke-width:2px;stroke:#4f81bd}.vis.timeline .graphGroup1{fill:#f79646;fill-opacity:0;stroke-width:2px;stroke:#f79646}.vis.timeline .graphGroup2{fill:#8c51cf;fill-opacity:0;stroke-width:2px;stroke:#8c51cf}.vis.timeline .graphGroup3{fill:#75c841;fill-opacity:0;stroke-width:2px;stroke:#75c841}.vis.timeline .graphGroup4{fill:#ff0100;fill-opacity:0;stroke-width:2px;stroke:#ff0100}.vis.timeline .graphGroup5{fill:#37d8e6;fill-opacity:0;stroke-width:2px;stroke:#37d8e6}.vis.timeline .graphGroup6{fill:#042662;fill-opacity:0;stroke-width:2px;stroke:#042662}.vis.timeline .graphGroup7{fill:#00ff26;fill-opacity:0;stroke-width:2px;stroke:#00ff26}.vis.timeline .graphGroup8{fill:#f0f;fill-opacity:0;stroke-width:2px;stroke:#f0f}.vis.timeline .graphGroup9{fill:#8f3938;fill-opacity:0;stroke-width:2px;stroke:#8f3938}.vis.timeline .fill{fill-opacity:.1;stroke:none}.vis.timeline .bar{fill-opacity:.5;stroke-width:1px}.vis.timeline .point{stroke-width:2px;fill-opacity:1}.vis.timeline .legendBackground{stroke-width:1px;fill-opacity:.9;fill:#fff;stroke:#c2c2c2}.vis.timeline .outline{stroke-width:1px;fill-opacity:1;fill:#fff;stroke:#e5e5e5}.vis.timeline .iconFill{fill-opacity:.3;stroke:none}div.network-manipulationDiv{border-width:0;border-bottom:1px;border-style:solid;border-color:#d6d9d8;background:#fff;background:-moz-linear-gradient(top,#fff 0,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(48%,#fcfcfc),color-stop(50%,#fafafa),color-stop(100%,#fcfcfc));background:-webkit-linear-gradient(top,#fff 0,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%);background:-o-linear-gradient(top,#fff 0,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%);background:-ms-linear-gradient(top,#fff 0,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%);background:linear-gradient(to bottom,#fff 0,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#fcfcfc', GradientType=0);position:absolute;left:0;top:0;width:100%;height:30px}div.network-manipulation-editMode{position:absolute;left:0;top:15px;height:30px}div.network-manipulation-closeDiv{position:absolute;right:0;top:0;width:30px;height:30px;background-position:20px 3px;background-repeat:no-repeat;background-image:url(img/network/cross.png);cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}div.network-manipulation-closeDiv:hover{opacity:.6}div.network-manipulationUI{position:relative;top:-7px;font-family:verdana;font-size:12px;-moz-border-radius:15px;border-radius:15px;display:inline-block;background-position:0 0;background-repeat:no-repeat;height:24px;margin:0 0 0 10px;vertical-align:middle;cursor:pointer;padding:0 8px;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}div.network-manipulationUI:hover{box-shadow:1px 1px 8px rgba(0,0,0,.2)}div.network-manipulationUI:active{box-shadow:1px 1px 8px rgba(0,0,0,.5)}div.network-manipulationUI.back{background-image:url(img/network/backIcon.png)}div.network-manipulationUI.none:hover{box-shadow:1px 1px 8px transparent;cursor:default}div.network-manipulationUI.none:active{box-shadow:1px 1px 8px transparent}div.network-manipulationUI.none{padding:0}div.network-manipulationUI.notification{margin:2px;font-weight:700}div.network-manipulationUI.add{background-image:url(img/network/addNodeIcon.png)}div.network-manipulationUI.edit{background-image:url(img/network/editIcon.png)}div.network-manipulationUI.edit.editmode{background-color:#fcfcfc;border-style:solid;border-width:1px;border-color:#ccc}div.network-manipulationUI.connect{background-image:url(img/network/connectIcon.png)}div.network-manipulationUI.delete{background-image:url(img/network/deleteIcon.png)}div.network-manipulationLabel{margin:0 0 0 23px;line-height:25px}div.network-seperatorLine{display:inline-block;width:1px;height:20px;background-color:#bdbdbd;margin:5px 7px 0 15px}div.network-navigation_wrapper{position:absolute;left:0;top:0;width:100%;height:100%}div.network-navigation{width:34px;height:34px;-moz-border-radius:17px;border-radius:17px;position:absolute;display:inline-block;background-position:2px 2px;background-repeat:no-repeat;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}div.network-navigation:hover{box-shadow:0 0 3px 3px rgba(56,207,21,.3)}div.network-navigation:active{box-shadow:0 0 1px 3px rgba(56,207,21,.95)}div.network-navigation.up{background-image:url(img/network/upArrow.png);bottom:50px;left:55px}div.network-navigation.down{background-image:url(img/network/downArrow.png);bottom:10px;left:55px}div.network-navigation.left{background-image:url(img/network/leftArrow.png);bottom:10px;left:15px}div.network-navigation.right{background-image:url(img/network/rightArrow.png);bottom:10px;left:95px}div.network-navigation.zoomIn{background-image:url(img/network/plus.png);bottom:10px;right:15px}div.network-navigation.zoomOut{background-image:url(img/network/minus.png);bottom:10px;right:55px}div.network-navigation.zoomExtends{background-image:url(img/network/zoomExtends.png);bottom:50px;right:15px}div.network-tooltip{position:absolute;visibility:hidden;padding:5px;white-space:nowrap;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;border:1px solid;box-shadow:3px 3px 10px rgba(128,128,128,.5)} \ No newline at end of file +div.network-manipulation-closeDiv,div.network-manipulationUI,div.network-navigation{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-khtml-user-select:none}div.network-manipulation-closeDiv,div.network-manipulationUI{background-repeat:no-repeat;cursor:pointer;-webkit-touch-callout:none}.vis .overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10}.vis-active{box-shadow:0 0 10px #86d5f8}.vis [class*=span]{min-height:0;width:auto}.vis.timeline.root{position:relative;border:1px solid #bfbfbf;overflow:hidden;padding:0;margin:0;box-sizing:border-box}.vis.timeline .vispanel{position:absolute;padding:0;margin:0;box-sizing:border-box}.vis.timeline .vispanel.bottom,.vis.timeline .vispanel.center,.vis.timeline .vispanel.left,.vis.timeline .vispanel.right,.vis.timeline .vispanel.top{border:1px #bfbfbf}.vis.timeline .vispanel.center,.vis.timeline .vispanel.left,.vis.timeline .vispanel.right{border-top-style:solid;border-bottom-style:solid;overflow:hidden}.vis.timeline .vispanel.bottom,.vis.timeline .vispanel.center,.vis.timeline .vispanel.top{border-left-style:solid;border-right-style:solid}.vis.timeline .background{overflow:hidden}.vis.timeline .vispanel>.content{position:relative}.vis.timeline .vispanel .shadow{position:absolute;width:100%;height:1px;box-shadow:0 0 10px rgba(0,0,0,.8)}.vis.timeline .vispanel .shadow.top{top:-1px;left:0}.vis.timeline .vispanel .shadow.bottom{bottom:-1px;left:0}.vis.timeline .labelset{position:relative;overflow:hidden;box-sizing:border-box}.vis.timeline .labelset .vlabel{position:relative;left:0;top:0;width:100%;color:#4d4d4d;box-sizing:border-box;border-bottom:1px solid #bfbfbf}.vis.timeline .labelset .vlabel:last-child{border-bottom:none}.vis.timeline .labelset .vlabel .inner{display:inline-block;padding:5px}.vis.timeline .labelset .vlabel .inner.hidden{padding:0}.vis.timeline .itemset{position:relative;padding:0;margin:0;box-sizing:border-box}.vis.timeline .itemset .background,.vis.timeline .itemset .foreground{position:absolute;width:100%;height:100%;overflow:visible}.vis.timeline .axis{position:absolute;width:100%;height:0;left:0;z-index:1}.vis.timeline .foreground .group{position:relative;box-sizing:border-box;border-bottom:1px solid #bfbfbf}.vis.timeline .foreground .group:last-child{border-bottom:none}.vis.timeline .item{position:absolute;color:#1A1A1A;border-color:#97B0F8;border-width:1px;background-color:#D5DDF6;display:inline-block;overflow:hidden}.vis.timeline .item.selected{border-color:#FFC200;background-color:#FFF785;z-index:2}.vis.timeline .editable .item.selected{cursor:move}.vis.timeline .item.point.selected{background-color:#FFF785}.vis.timeline .item.box{text-align:center;border-style:solid;border-radius:2px}.vis.timeline .item.point{background:0 0}.vis.timeline .item.dot{position:absolute;padding:0;border-width:4px;border-style:solid;border-radius:4px}.vis.timeline .item.range{border-style:solid;border-radius:2px;box-sizing:border-box}.vis.timeline .item.background{border:none;background-color:rgba(213,221,246,.4);box-sizing:border-box;padding:0;margin:0}.vis.timeline .item.range .content{position:relative;display:inline-block;max-width:100%}.vis.timeline .item.background .content{position:absolute;display:inline-block;max-width:100%;margin:5px}.vis.timeline .item.line{padding:0;position:absolute;width:0;border-left-width:1px;border-left-style:solid}.vis.timeline .item .content{white-space:nowrap;box-sizing:border-box;padding:5px}.vis.timeline .item .delete{background:url(img/timeline/delete.png)top center no-repeat;position:absolute;width:24px;height:24px;top:0;right:-24px;cursor:pointer}.vis.timeline .item.range .drag-left{position:absolute;width:24px;height:100%;top:0;left:-4px;cursor:w-resize}.vis.timeline .item.range .drag-right{position:absolute;width:24px;height:100%;top:0;right:-4px;cursor:e-resize}.vis.timeline .timeaxis{position:relative;overflow:hidden}.vis.timeline .timeaxis.foreground{top:0;left:0;width:100%}.vis.timeline .timeaxis.background{position:absolute;top:0;left:0;width:100%;height:100%}.vis.timeline .timeaxis .text{position:absolute;color:#4d4d4d;padding:3px;white-space:nowrap}.vis.timeline .timeaxis .text.measure{position:absolute;padding-left:0;padding-right:0;margin-left:0;margin-right:0;visibility:hidden}.vis.timeline .timeaxis .grid.vertical{position:absolute;border-left:1px solid}.vis.timeline .timeaxis .grid.minor{border-color:#e5e5e5}.vis.timeline .timeaxis .grid.major{border-color:#bfbfbf}.vis.timeline .currenttime{background-color:#FF7F6E;width:2px;z-index:1}.vis.timeline .customtime{background-color:#6E94FF;width:2px;cursor:move;z-index:1}.vis.timeline .vispanel.background.horizontal .grid.horizontal{position:absolute;width:100%;height:0;border-bottom:1px solid}.vis.timeline .vispanel.background.horizontal .grid.minor{border-color:#e5e5e5}.vis.timeline .vispanel.background.horizontal .grid.major{border-color:#bfbfbf}.vis.timeline .dataaxis .yAxis.major{width:100%;position:absolute;color:#4d4d4d;white-space:nowrap}.vis.timeline .dataaxis .yAxis.major.measure{padding:0;margin:0;border:0;visibility:hidden;width:auto}.vis.timeline .dataaxis .yAxis.minor{position:absolute;width:100%;color:#bebebe;white-space:nowrap}.vis.timeline .dataaxis .yAxis.minor.measure{padding:0;margin:0;border:0;visibility:hidden;width:auto}.vis.timeline .dataaxis .yAxis.title{position:absolute;color:#4d4d4d;white-space:nowrap;bottom:20px;text-align:center}.vis.timeline .dataaxis .yAxis.title.measure{padding:0;margin:0;visibility:hidden;width:auto}.vis.timeline .dataaxis .yAxis.title.left{bottom:0;-webkit-transform-origin:left top;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg)}.vis.timeline .dataaxis .yAxis.title.right{bottom:0;-webkit-transform-origin:right bottom;-moz-transform-origin:right bottom;-ms-transform-origin:right bottom;-o-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.vis.timeline .legend{background-color:rgba(247,252,255,.65);padding:5px;border-color:#b3b3b3;border-style:solid;border-width:1px;box-shadow:2px 2px 10px rgba(154,154,154,.55)}.vis.timeline .legendText{white-space:nowrap;display:inline-block}.vis.timeline .graphGroup0{fill:#4f81bd;fill-opacity:0;stroke-width:2px;stroke:#4f81bd}.vis.timeline .graphGroup1{fill:#f79646;fill-opacity:0;stroke-width:2px;stroke:#f79646}.vis.timeline .graphGroup2{fill:#8c51cf;fill-opacity:0;stroke-width:2px;stroke:#8c51cf}.vis.timeline .graphGroup3{fill:#75c841;fill-opacity:0;stroke-width:2px;stroke:#75c841}.vis.timeline .graphGroup4{fill:#ff0100;fill-opacity:0;stroke-width:2px;stroke:#ff0100}.vis.timeline .graphGroup5{fill:#37d8e6;fill-opacity:0;stroke-width:2px;stroke:#37d8e6}.vis.timeline .graphGroup6{fill:#042662;fill-opacity:0;stroke-width:2px;stroke:#042662}.vis.timeline .graphGroup7{fill:#00ff26;fill-opacity:0;stroke-width:2px;stroke:#00ff26}.vis.timeline .graphGroup8{fill:#f0f;fill-opacity:0;stroke-width:2px;stroke:#f0f}.vis.timeline .graphGroup9{fill:#8f3938;fill-opacity:0;stroke-width:2px;stroke:#8f3938}.vis.timeline .fill{fill-opacity:.1;stroke:none}.vis.timeline .bar{fill-opacity:.5;stroke-width:1px}.vis.timeline .point{stroke-width:2px;fill-opacity:1}.vis.timeline .legendBackground{stroke-width:1px;fill-opacity:.9;fill:#fff;stroke:#c2c2c2}.vis.timeline .outline{stroke-width:1px;fill-opacity:1;fill:#fff;stroke:#e5e5e5}.vis.timeline .iconFill{fill-opacity:.3;stroke:none}div.network-manipulationDiv{border-width:0;border-bottom:1px;border-style:solid;border-color:#d6d9d8;background:#fff;background:-moz-linear-gradient(top,#fff 0,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(48%,#fcfcfc),color-stop(50%,#fafafa),color-stop(100%,#fcfcfc));background:-webkit-linear-gradient(top,#fff 0,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%);background:-o-linear-gradient(top,#fff 0,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%);background:-ms-linear-gradient(top,#fff 0,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%);background:linear-gradient(to bottom,#fff 0,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#fcfcfc', GradientType=0);position:absolute;left:0;top:0;width:100%;height:30px}div.network-manipulation-editMode{position:absolute;left:0;top:15px;height:30px}div.network-manipulation-closeDiv{position:absolute;right:0;top:0;width:30px;height:30px;background-position:20px 3px;background-image:url(img/network/cross.png);user-select:none}div.network-manipulation-closeDiv:hover{opacity:.6}div.network-manipulationUI{position:relative;top:-7px;font-family:verdana;font-size:12px;-moz-border-radius:15px;border-radius:15px;display:inline-block;background-position:0 0;height:24px;margin:0 0 0 10px;vertical-align:middle;padding:0 8px;user-select:none}div.network-manipulationUI:hover{box-shadow:1px 1px 8px rgba(0,0,0,.2)}div.network-manipulationUI:active{box-shadow:1px 1px 8px rgba(0,0,0,.5)}div.network-manipulationUI.back{background-image:url(img/network/backIcon.png)}div.network-manipulationUI.none:hover{box-shadow:1px 1px 8px transparent;cursor:default}div.network-manipulationUI.none:active{box-shadow:1px 1px 8px transparent}div.network-manipulationUI.none{padding:0}div.network-manipulationUI.notification{margin:2px;font-weight:700}div.network-manipulationUI.add{background-image:url(img/network/addNodeIcon.png)}div.network-manipulationUI.edit{background-image:url(img/network/editIcon.png)}div.network-manipulationUI.edit.editmode{background-color:#fcfcfc;border-style:solid;border-width:1px;border-color:#ccc}div.network-manipulationUI.connect{background-image:url(img/network/connectIcon.png)}div.network-manipulationUI.delete{background-image:url(img/network/deleteIcon.png)}div.network-manipulationLabel{margin:0 0 0 23px;line-height:25px}div.network-seperatorLine{display:inline-block;width:1px;height:20px;background-color:#bdbdbd;margin:5px 7px 0 15px}div.network-navigation_wrapper{position:absolute;left:0;top:0;width:100%;height:100%}div.network-navigation{width:34px;height:34px;-moz-border-radius:17px;border-radius:17px;position:absolute;display:inline-block;background-position:2px 2px;background-repeat:no-repeat;cursor:pointer;-webkit-touch-callout:none;user-select:none}div.network-navigation:hover{box-shadow:0 0 3px 3px rgba(56,207,21,.3)}div.network-navigation:active{box-shadow:0 0 1px 3px rgba(56,207,21,.95)}div.network-navigation.up{background-image:url(img/network/upArrow.png);bottom:50px;left:55px}div.network-navigation.down{background-image:url(img/network/downArrow.png);bottom:10px;left:55px}div.network-navigation.left{background-image:url(img/network/leftArrow.png);bottom:10px;left:15px}div.network-navigation.right{background-image:url(img/network/rightArrow.png);bottom:10px;left:95px}div.network-navigation.zoomIn{background-image:url(img/network/plus.png);bottom:10px;right:15px}div.network-navigation.zoomOut{background-image:url(img/network/minus.png);bottom:10px;right:55px}div.network-navigation.zoomExtends{background-image:url(img/network/zoomExtends.png);bottom:50px;right:15px}div.network-tooltip{position:absolute;visibility:hidden;padding:5px;white-space:nowrap;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;border:1px solid;box-shadow:3px 3px 10px rgba(128,128,128,.5)} \ No newline at end of file diff --git a/dist/vis.min.js b/dist/vis.min.js index b50cc19c..25fb8075 100644 --- a/dist/vis.min.js +++ b/dist/vis.min.js @@ -4,8 +4,8 @@ * * A dynamic, browser-based visualization library. * - * @version 3.10.1-SNAPSHOT - * @date 2015-02-24 + * @version 4.0.0-SNAPSHOT + * @date 2015-03-02 * * @license * Copyright (C) 2011-2014 Almende B.V, http://almende.com @@ -22,18 +22,18 @@ * * Vis.js may be distributed under either license. */ -"use strict";!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.Queue=i(5),e.Graph3d=i(6),e.graph3d={Camera:i(7),Filter:i(8),Point2d:i(9),Point3d:i(10),Slider:i(11),StepNumber:i(12)},e.Timeline=i(13),e.Graph2d=i(14),e.timeline={DateUtil:i(15),DataStep:i(16),Range:i(17),stack:i(18),TimeStep:i(19),components:{items:{Item:i(20),BackgroundItem:i(21),BoxItem:i(22),PointItem:i(23),RangeItem:i(24)},Component:i(25),CurrentTime:i(26),CustomTime:i(27),DataAxis:i(28),GraphGroup:i(29),Group:i(30),BackgroundGroup:i(31),ItemSet:i(32),Legend:i(33),LineGraph:i(34),TimeAxis:i(35)}},e.Network=i(36),e.network={Edge:i(39),Groups:i(37),Images:i(38),Node:i(40),Popup:i(41),dotparser:i(42),gephiParser:i(45)},e.Graph=function(){throw new Error("Graph is renamed to Network. Please create a graph as new vis.Network(...)")},e.moment=i(43),e.hammer=i(44)},function(t,e,i){var s=i(43);e.isNumber=function(t){return t instanceof Number||"number"==typeof t},e.giveRange=function(t,e,i,s){if(e==t)return.5;var o=1/(e-t);return Math.max(0,(s-t)*o)},e.isString=function(t){return t instanceof String||"string"==typeof t},e.isDate=function(t){if(t instanceof Date)return!0;if(e.isString(t)){var i=o.exec(t);if(i)return!0;if(!isNaN(Date.parse(t)))return!0}return!1},e.isDataTable=function(t){return"undefined"!=typeof google&&google.visualization&&google.visualization.DataTable&&t instanceof google.visualization.DataTable},e.randomUUID=function(){var t=function(){return Math.floor(65536*Math.random()).toString(16)};return t()+t()+"-"+t()+"-"+t()+"-"+t()+"-"+t()+t()+t()},e.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},e.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},e.convert=function(t,i){var n;if(void 0===t)return void 0;if(null===t)return null;if(!i)return t;if("string"!=typeof i&&!(i instanceof String))throw new Error("Type must be a string");switch(i){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(e.isNumber(t))return new Date(t);if(t instanceof Date)return new Date(t.valueOf());if(s.isMoment(t))return new Date(t.valueOf());if(e.isString(t))return n=o.exec(t),n?new Date(Number(n[1])):s(t).toDate();throw new Error("Cannot convert object of type "+e.getType(t)+" to type Date");case"Moment":if(e.isNumber(t))return s(t);if(t instanceof Date)return s(t.valueOf());if(s.isMoment(t))return s(t);if(e.isString(t))return n=o.exec(t),s(n?Number(n[1]):t);throw new Error("Cannot convert object of type "+e.getType(t)+" to type Date");case"ISODate":if(e.isNumber(t))return new Date(t);if(t instanceof Date)return t.toISOString();if(s.isMoment(t))return t.toDate().toISOString();if(e.isString(t))return n=o.exec(t),n?new Date(Number(n[1])).toISOString():new Date(t).toISOString();throw new Error("Cannot convert object of type "+e.getType(t)+" to type ISODate");case"ASPDate":if(e.isNumber(t))return"/Date("+t+")/";if(t instanceof Date)return"/Date("+t.valueOf()+")/";if(e.isString(t)){n=o.exec(t);var r;return r=n?new Date(Number(n[1])).valueOf():new Date(t).valueOf(),"/Date("+r+")/"}throw new Error("Cannot convert object of type "+e.getType(t)+" to type ASPDate");default:throw new Error('Unknown type "'+i+'"')}};var o=/^\/?Date\((\-?\d+)/i;e.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":Array.isArray(t)?"Array":t instanceof Date?"Date":"Object":"number"==e?"Number":"boolean"==e?"Boolean":"string"==e?"String":e},e.getAbsoluteLeft=function(t){return t.getBoundingClientRect().left+window.pageXOffset},e.getAbsoluteTop=function(t){return t.getBoundingClientRect().top+window.pageYOffset},e.addClassName=function(t,e){var i=t.className.split(" ");-1==i.indexOf(e)&&(i.push(e),t.className=i.join(" "))},e.removeClassName=function(t,e){var i=t.className.split(" "),s=i.indexOf(e);-1!=s&&(i.splice(s,1),t.className=i.join(" "))},e.forEach=function(t,e){var i,s;if(Array.isArray(t))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)},e.toArray=function(t){var e=[];for(var i in t)t.hasOwnProperty(i)&&e.push(t[i]);return e},e.updateProperty=function(t,e,i){return t[e]!==i?(t[e]=i,!0):!1},e.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)},e.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)},e.preventDefault=function(t){t||(t=window.event),t.preventDefault?t.preventDefault():t.returnValue=!1},e.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},e.option={},e.option.asBoolean=function(t,e){return"function"==typeof t&&(t=t()),null!=t?0!=t:e||null},e.option.asNumber=function(t,e){return"function"==typeof t&&(t=t()),null!=t?Number(t)||e||null:e||null},e.option.asString=function(t,e){return"function"==typeof t&&(t=t()),null!=t?String(t):e||null},e.option.asSize=function(t,i){return"function"==typeof t&&(t=t()),e.isString(t)?t:e.isNumber(t)?t+"px":i||null},e.option.asElement=function(t,e){return"function"==typeof t&&(t=t()),t||e||null},e.hexToRGB=function(t){var e=/^#?([a-f\d])([a-f\d])([a-f\d])$/i;t=t.replace(e,function(t,e,i,s){return e+e+i+i+s+s});var i=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(t);return i?{r:parseInt(i[1],16),g:parseInt(i[2],16),b:parseInt(i[3],16)}:null},e.overrideOpacity=function(t,i){if(-1!=t.indexOf("rgb")){var s=t.substr(t.indexOf("(")+1).replace(")","").split(",");return"rgba("+s[0]+","+s[1]+","+s[2]+","+i+")"}var s=e.hexToRGB(t);return null==s?t:"rgba("+s.r+","+s.g+","+s.b+","+i+")"},e.RGBToHex=function(t,e,i){return"#"+((1<<24)+(t<<16)+(e<<8)+i).toString(16).slice(1)},e.parseColor=function(t){var i;if(e.isString(t)){if(e.isValidRGB(t)){var s=t.substr(4).substr(0,t.length-5).split(",");t=e.RGBToHex(s[0],s[1],s[2])}if(e.isValidHex(t)){var o=e.hexToHSV(t),n={h:o.h,s:.45*o.s,v:Math.min(1,1.05*o.v)},r={h:o.h,s:Math.min(1,1.25*o.v),v:.6*o.v},a=e.HSVToHex(r.h,r.h,r.v),h=e.HSVToHex(n.h,n.s,n.v);i={background:t,border:a,highlight:{background:h,border:a},hover:{background:h,border:a}}}else i={background:t,border:t,highlight:{background:t,border:t},hover:{background:t,border:t}}}else i={},i.background=t.background||"white",i.border=t.border||i.background,e.isString(t.highlight)?i.highlight={border:t.highlight,background:t.highlight}:(i.highlight={},i.highlight.background=t.highlight&&t.highlight.background||i.background,i.highlight.border=t.highlight&&t.highlight.border||i.border),e.isString(t.hover)?i.hover={border:t.hover,background:t.hover}:(i.hover={},i.hover.background=t.hover&&t.hover.background||i.background,i.hover.border=t.hover&&t.hover.border||i.border);return i},e.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}};var n={split:function(t){var e={};return t.split(";").forEach(function(t){if(""!=t.trim()){var i=t.split(":"),s=i[0].trim(),o=i[1].trim();e[s]=o}}),e},join:function(t){return Object.keys(t).map(function(e){return e+": "+t[e]}).join("; ")}};e.addCssText=function(t,i){var s=n.split(t.style.cssText),o=n.split(i),r=e.extend(s,o);t.style.cssText=n.join(r)},e.removeCssText=function(t,e){var i=n.split(t.style.cssText),s=n.split(e);for(var o in s)s.hasOwnProperty(o)&&delete i[o];t.style.cssText=n.join(i)},e.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)}},e.HSVToHex=function(t,i,s){var o=e.HSVToRGB(t,i,s);return e.RGBToHex(o.r,o.g,o.b)},e.hexToHSV=function(t){var i=e.hexToRGB(t);return e.RGBToHSV(i.r,i.g,i.b)},e.isValidHex=function(t){var e=/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(t);return e},e.isValidRGB=function(t){t=t.replace(" ","");var e=/rgb\((\d{1,3}),(\d{1,3}),(\d{1,3})\)/i.test(t);return e},e.selectiveBridgeObject=function(t,i){if("object"==typeof i){for(var s=Object.create(i),o=0;o=r&&o>n;){var h=Math.floor((r+a)/2),d=t[h],l=void 0===s?d[i]:d[i][s],c=e(l);if(0==c)return h;-1==c?r=h+1:a=h-1,n++}return-1},e.binarySearchValue=function(t,e,i,s){for(var o,n,r,a,h=1e4,d=0,l=0,c=t.length-1;c>=l&&h>d;){if(a=Math.floor(.5*(c+l)),o=t[Math.max(0,a-1)][i],n=t[a][i],r=t[Math.min(t.length-1,a+1)][i],n==e)return a;if(e>o&&n>e)return"before"==s?Math.max(0,a-1):a;if(e>n&&r>e)return"before"==s?a:Math.min(t.length-1,a+1);e>n?l=a+1:c=a-1,d++}return-1},e.easeInOutQuad=function(t,e,i,s){var o=i-e;return t/=s/2,1>t?o/2*t*t+e:(t--,-o/2*(t*(t-2)-1)+e)},e.easingFunctions={linear:function(t){return t},easeInQuad:function(t){return t*t},easeOutQuad:function(t){return t*(2-t)},easeInOutQuad:function(t){return.5>t?2*t*t:-1+(4-2*t)*t},easeInCubic:function(t){return t*t*t},easeOutCubic:function(t){return--t*t*t+1},easeInOutCubic:function(t){return.5>t?4*t*t*t:(t-1)*(2*t-2)*(2*t-2)+1},easeInQuart:function(t){return t*t*t*t},easeOutQuart:function(t){return 1- --t*t*t*t},easeInOutQuart:function(t){return.5>t?8*t*t*t*t:1-8*--t*t*t*t},easeInQuint:function(t){return t*t*t*t*t},easeOutQuint:function(t){return 1+--t*t*t*t*t},easeInOutQuint:function(t){return.5>t?16*t*t*t*t*t:1+16*--t*t*t*t*t}}},function(t,e){e.prepareElements=function(t){for(var e in t)t.hasOwnProperty(e)&&(t[e].redundant=t[e].used,t[e].used=[])},e.cleanupElements=function(t){for(var e in t)if(t.hasOwnProperty(e)&&t[e].redundant){for(var i=0;i0?(s=e[t].redundant[0],e[t].redundant.shift()):(s=document.createElementNS("http://www.w3.org/2000/svg",t),i.appendChild(s)):(s=document.createElementNS("http://www.w3.org/2000/svg",t),e[t]={used:[],redundant:[]},i.appendChild(s)),e[t].used.push(s),s},e.getDOMElement=function(t,e,i,s){var o;return e.hasOwnProperty(t)?e[t].redundant.length>0?(o=e[t].redundant[0],e[t].redundant.shift()):(o=document.createElement(t),void 0!==s?i.insertBefore(o,s):i.appendChild(o)):(o=document.createElement(t),e[t]={used:[],redundant:[]},void 0!==s?i.insertBefore(o,s):i.appendChild(o)),e[t].used.push(o),o},e.drawPoint=function(t,i,s,o,n,r){var a;"circle"==s.options.drawPoints.style?(a=e.getSVGElement("circle",o,n),a.setAttributeNS(null,"cx",t),a.setAttributeNS(null,"cy",i),a.setAttributeNS(null,"r",.5*s.options.drawPoints.size)):(a=e.getSVGElement("rect",o,n),a.setAttributeNS(null,"x",t-.5*s.options.drawPoints.size),a.setAttributeNS(null,"y",i-.5*s.options.drawPoints.size),a.setAttributeNS(null,"width",s.options.drawPoints.size),a.setAttributeNS(null,"height",s.options.drawPoints.size)),void 0!==s.options.drawPoints.styles&&a.setAttributeNS(null,"style",s.group.options.drawPoints.styles),a.setAttributeNS(null,"class",s.className+" point");var h=e.getSVGElement("text",o,n);return r&&(r.xOffset&&(t+=r.xOffset),r.yOffset&&(i+=r.yOffset),r.content&&(h.textContent=r.content),r.className&&h.setAttributeNS(null,"class",r.className+" label")),h.setAttributeNS(null,"x",t),h.setAttributeNS(null,"y",i),a},e.drawBar=function(t,i,s,o,n,r,a){if(0!=o){0>o&&(o*=-1,i-=o);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.length=0,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),this.setOptions(e)}var o=i(1),n=i(5);s.prototype.setOptions=function(t){t&&void 0!==t.queue&&(t.queue===!1?this._queue&&(this._queue.destroy(),delete this._queue):(this._queue||(this._queue=n.extend(this,{replace:["add","update","remove"]})),"object"==typeof t.queue&&this._queue.setOptions(t.queue)))},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 m=h[p];c[m]=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=[],r=this,a=r._fieldId,h=function(t){var e=t[a];r._data[e]?(e=r._updateItem(t),s.push(e),n.push(t)):(e=r._addItem(t),i.push(e))};if(Array.isArray(t))for(var d=0,l=t.length;l>d;d++)h(t[d]);else if(o.isDataTable(t))for(var c=this._getColumnNames(t),p=0,u=t.getNumberOfRows();u>p;p++){for(var m={},f=0,g=c.length;g>f;f++){var v=c[f];m[v]=t.getValue(p,f)}h(m)}else{if(!(t instanceof Object))throw new Error("Unknown dataType");h(t)}return i.length&&this._trigger("add",{items:i},e),s.length&&this._trigger("update",{items:s,data:n},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,m=i&&i.filter,f=[];if(void 0!=t)d=n._getItem(t,u),m&&!m(d)&&(d=null);else if(void 0!=e)for(c=0,p=e.length;p>c;c++)d=n._getItem(e[c],u),(!m||m(d))&&f.push(d);else for(l in this._data)this._data.hasOwnProperty(l)&&(d=n._getItem(l,u),(!m||m(d))&&f.push(d));if(i&&i.order&&void 0==t&&this._sort(f,i.order),i&&i.fields){var g=i.fields;if(void 0!=t)d=this._filterFields(d,g);else for(c=0,p=f.length;p>c;c++)f[c]=this._filterFields(f[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(f[c]);return s}return f},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){if(!t)return t;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],this.length--,t}else if(t instanceof Object){var e=t[this._fieldId];if(e&&this._data[e])return delete this._data[e],this.length--,e}return null},s.prototype.clear=function(t){var e=Object.keys(this._data);return this._data={},this.length=0,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.length=0,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.length=0,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.length=e.length,this._trigger("add",{items:e}),this._data.on&&this._data.on("*",this.listener)}},s.prototype.refresh=function(){for(var t,e=this._data.getIds({filter:this._options&&this._options.filter}),i={},s=[],o=[],n=0;ns;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))}this.length+=d.length-c.length,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){function e(t){this.delay=null,this.max=1/0,this._queue=[],this._timeout=null,this._extended=null,this.setOptions(t)}e.prototype.setOptions=function(t){t&&"undefined"!=typeof t.delay&&(this.delay=t.delay),t&&"undefined"!=typeof t.max&&(this.max=t.max),this._flushIfNeeded()},e.extend=function(t,i){var s=new e(i);if(void 0!==t.flush)throw new Error("Target object already has a property flush");t.flush=function(){s.flush()};var o=[{name:"flush",original:void 0}];if(i&&i.replace)for(var n=0;nthis.max&&this.flush(),clearTimeout(this._timeout),this.queue.length>0&&"number"==typeof this.delay){var t=this;this._timeout=setTimeout(function(){t.flush()},this.delay)}},e.prototype.flush=function(){for(;this._queue.length>0;){var t=this._queue.shift();t.fn.apply(t.context||t.fn,t.args||[])}},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");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";var o=function(t){return t};this.xValueLabel=o,this.yValueLabel=o,this.zValueLabel=o,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 p,this.eye=new l(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)}function o(t){return"clientX"in t?t.clientX:t.targetTouches[0]&&t.targetTouches[0].clientX||0}function n(t){return"clientY"in t?t.clientY:t.targetTouches[0]&&t.targetTouches[0].clientY||0}var r=i(56),a=i(3),h=i(4),d=i(1),l=i(10),c=i(9),p=i(7),u=i(8),m=i(11),f=i(12);r(s.prototype),s.prototype._setScale=function(){this.scale=new l(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)/(u-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 f(this.valueMin,this.valueMax,(this.valueMax-this.valueMin)/5,!0);for(b.start(),b.getCurrent()0?this.yMin:this.yMax,o=this._convert3Dto2D(new l(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(" "+this.xValueLabel(i.getCurrent())+" ",o.x,o.y),i.next()}for(g.lineWidth=1,s=void 0===this.defaultYStep,i=new f(this.yMin,this.yMax,this.yStep,s),i.start(),i.getCurrent()0?this.xMin:this.xMax,o=this._convert3Dto2D(new l(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(" "+this.yValueLabel(i.getCurrent())+" ",o.x,o.y),i.next();for(g.lineWidth=1,s=void 0===this.defaultZStep,i=new f(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 l(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(this.zValueLabel(i.getCurrent())+" ",t.x-5,t.y),i.next();g.lineWidth=1,t=this._convert3Dto2D(new l(n,r,this.zMin)),e=this._convert3Dto2D(new l(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 l(this.xMin,this.yMin,this.zMin)),u=this._convert3Dto2D(new l(this.xMax,this.yMin,this.zMin)),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(p.x,p.y),g.lineTo(u.x,u.y),g.stroke(),p=this._convert3Dto2D(new l(this.xMin,this.yMax,this.zMin)),u=this._convert3Dto2D(new l(this.xMax,this.yMax,this.zMin)),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(p.x,p.y),g.lineTo(u.x,u.y),g.stroke(),g.lineWidth=1,t=this._convert3Dto2D(new l(this.xMin,this.yMin,this.zMin)),e=this._convert3Dto2D(new l(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 l(this.xMax,this.yMin,this.zMin)),e=this._convert3Dto2D(new l(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 l(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 M=this.yLabel;M.length>0&&(d=.1/this.scale.x,n=Math.sin(_)>0?this.xMin-d:this.xMax+d,r=(this.yMin+this.yMax)/2,o=this._convert3Dto2D(new l(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(M,o.x,o.y));var S=this.zLabel;S.length>0&&(h=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 l(n,r,a)),g.textAlign="right",g.textBaseline="middle",g.fillStyle=this.colorAxis,g.fillText(S,o.x-h,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,h,d,c,p,u,m,f=this.frame.canvas,g=f.getContext("2d");if(!(void 0===this.dataPoints||this.dataPoints.length<=0)){for(n=0;n0}else r=!0;r?(m=(t.point.z+e.point.z+i.point.z+o.point.z)/4,c=240*(1-(m-this.zMin)*this.scale.z/this.verticalRatio),p=1,this.showShadow?(u=Math.min(1+M.x/S/2,1),a=this._hsv2rgb(c,p,u),h=a):(u=1,a=this._hsv2rgb(c,p,u),h=this.colorAxis)):(a="gray",h=this.colorAxis),d=.5,g.lineWidth=d,g.fillStyle=a,g.strokeStyle=h,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,m,f;this.style===s.STYLE.DOTCOLOR?(u=240*(1-(d.point.value-this.valueMin)*this.scale.value),m=this._hsv2rgb(u,1,1),f=this._hsv2rgb(u,1,.8)):this.style===s.STYLE.DOTSIZE?(m=this.colorDot,f=this.colorDotBorder):(u=240*(1-(d.point.z-this.zMin)*this.scale.z/this.verticalRatio),m=this._hsv2rgb(u,1,1),f=this._hsv2rgb(u,1,.8)),i.lineWidth=1,i.strokeStyle=f,i.fillStyle=m,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=o(t),this.startMouseY=n(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)},d.addEventListener(document,"mousemove",e.onmousemove),d.addEventListener(document,"mouseup",e.onmouseup),d.preventDefault(t)}},s.prototype._onMouseMove=function(t){t=t||window.event;var e=parseFloat(o(t))-this.startMouseX,i=parseFloat(n(t))-this.startMouseY,s=this.startArmRotation.horizontal+e/200,r=this.startArmRotation.vertical+i/200,a=4,h=Math.sin(a/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 c(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 d=n.surfaces;if(d)for(var l=d.length-1;l>=0;l--){var p=d[l],u=p.corners,m=[u[0].screen,u[1].screen,u[2].screen],f=[u[2].screen,u[3].screen,u[0].screen];if(this._insideTriangle(h,m)||this._insideTriangle(h,f))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)}}},t.exports=s},function(t,e,i){function s(){this.armLocation=new o,this.armRotation={},this.armRotation.horizontal=0,this.armRotation.vertical=0,this.armLength=1.7,this.cameraLocation=new o,this.cameraRotation=new o(.5*Math.PI,0,0),this.calculateCameraOrientation()}var o=i(10);s.prototype.setArmLocation=function(t,e,i){this.armLocation.x=t,this.armLocation.y=e,this.armLocation.z=i,this.calculateCameraOrientation()},s.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()},s.prototype.getArmRotation=function(){var t={};return t.horizontal=this.armRotation.horizontal,t.vertical=this.armRotation.vertical,t},s.prototype.setArmLength=function(t){void 0!==t&&(this.armLength=t,this.armLength<.71&&(this.armLength=.71),this.armLength>5&&(this.armLength=5),this.calculateCameraOrientation())},s.prototype.getArmLength=function(){return this.armLength},s.prototype.getCameraLocation=function(){return this.cameraLocation},s.prototype.getCameraRotation=function(){return this.cameraRotation},s.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=s},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,h){if(!(this instanceof s))throw new SyntaxError("Constructor must be called with the new operator");if(!(Array.isArray(i)||i instanceof n||i instanceof r)&&i instanceof Object){var u=h;h=i,i=u}var m=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)},hiddenDates:[],util:{getScale:function(){return m.timeAxis.step.scale},getStep:function(){return m.timeAxis.step.step},toScreen:m._toScreen.bind(m),toGlobalScreen:m._toGlobalScreen.bind(m),toTime:m._toTime.bind(m),toGlobalTime:m._toGlobalTime.bind(m)}},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.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,h&&this.setOptions(h),i&&this.setGroups(i),e?this.setItems(e):this._redraw()}var o=(i(56),i(44),i(1)),n=i(3),r=i(4),a=i(17),h=i(46),d=i(35),l=i(26),c=i(27),p=i(32);s.prototype=new h,s.prototype.redraw=function(){this.itemSet&&this.itemSet.markDirty({refreshItems:!0}),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)if(void 0!=this.options.start||void 0!=this.options.end){if(void 0==this.options.start||void 0==this.options.end)var s=this._getDataRange();var o=void 0!=this.options.start?this.options.start:s.start,a=void 0!=this.options.end?this.options.end:s.end;this.setWindow(o,a,{animate:!1})}else this.fit({animate:!1})},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),e&&e.focus&&this.focus(t,e)},s.prototype.getSelection=function(){return this.itemSet&&this.itemSet.getSelection()||[]},s.prototype.focus=function(t,e){if(this.itemsData&&void 0!=t){var i=Array.isArray(t)?t:[t],s=this.itemsData.getDataSet().get(i,{type:{start:"Date",end:"Date"}}),o=null,n=null;if(s.forEach(function(t){var e=t.start.valueOf(),i="end"in t?t.end.valueOf():t.start.valueOf();(null===o||o>e)&&(o=e),(null===n||i>n)&&(n=i)}),null!==o&&null!==n){var r=(o+n)/2,a=Math.max(this.range.end-this.range.start,1.1*(n-o)),h=e&&void 0!==e.animate?e.animate:!0;this.range.setRange(r-a/2,r+a/2,h)}}},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){if(!(Array.isArray(i)||i instanceof n)&&i instanceof Object){var r=s;s=i,i=r}var h=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)},hiddenDates:[],util:{toScreen:h._toScreen.bind(h),toGlobalScreen:h._toGlobalScreen.bind(h),toTime:h._toTime.bind(h),toGlobalTime:h._toGlobalTime.bind(h)}},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.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,s&&this.setOptions(s),i&&this.setGroups(i),e?this.setItems(e):this._redraw()}var o=(i(56),i(44),i(1)),n=i(3),r=i(4),a=i(17),h=i(46),d=i(35),l=i(26),c=i(27),p=i(34);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)if(void 0!=this.options.start||void 0!=this.options.end){var s=void 0!=this.options.start?this.options.start:null,o=void 0!=this.options.end?this.options.end:null;this.setWindow(s,o,{animate:!1})}else this.fit({animate:!1})},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&&(void 0===this.linegraph.options.groups.visibility[t]||1==this.linegraph.options.groups.visibility[t]):!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,e,i){var s=i(43);e.convertHiddenOptions=function(t,e){if(t.hiddenDates=[],e&&1==Array.isArray(e)){for(var i=0;i=4*a){var p=0,u=n.clone();switch(i[h].repeat){case"daily":d.day()!=l.day()&&(p=1),d.dayOfYear(o.dayOfYear()),d.year(o.year()),d.subtract(7,"days"),l.dayOfYear(o.dayOfYear()),l.year(o.year()),l.subtract(7-p,"days"),u.add(1,"weeks");break;case"weekly":var m=l.diff(d,"days"),f=d.day();d.date(o.date()),d.month(o.month()),d.year(o.year()),l=d.clone(),d.day(f),l.day(f),l.add(m,"days"),d.subtract(1,"weeks"),l.subtract(1,"weeks"),u.add(1,"weeks");break;case"monthly":d.month()!=l.month()&&(p=1),d.month(o.month()),d.year(o.year()),d.subtract(1,"months"),l.month(o.month()),l.year(o.year()),l.subtract(1,"months"),l.add(p,"months"),u.add(1,"months");break;case"yearly":d.year()!=l.year()&&(p=1),d.year(o.year()),d.subtract(1,"years"),l.year(o.year()),l.subtract(1,"years"),l.add(p,"years"),u.add(1,"years");break;default:return void console.log("Wrong repeat format, allowed are: daily, weekly, monthly, yearly. Given:",i[h].repeat)}for(;u>d;)switch(t.hiddenDates.push({start:d.valueOf(),end:l.valueOf()}),i[h].repeat){case"daily":d.add(1,"days"),l.add(1,"days");break;case"weekly":d.add(1,"weeks"),l.add(1,"weeks");break;case"monthly":d.add(1,"months"),l.add(1,"months");break;case"yearly":d.add(1,"y"),l.add(1,"y");break;default:return void console.log("Wrong repeat format, allowed are: daily, weekly, monthly, yearly. Given:",i[h].repeat)}t.hiddenDates.push({start:d.valueOf(),end:l.valueOf()})}}e.removeDuplicates(t);var g=e.isHidden(t.range.start,t.hiddenDates),v=e.isHidden(t.range.end,t.hiddenDates),y=t.range.start,b=t.range.end;1==g.hidden&&(y=1==t.range.startToFront?g.startDate-1:g.endDate+1),1==v.hidden&&(b=1==t.range.endToFront?v.startDate-1:v.endDate+1),(1==g.hidden||1==v.hidden)&&t.range._applyRange(y,b)}},e.removeDuplicates=function(t){for(var e=t.hiddenDates,i=[],s=0;s=e[s].start&&e[o].end<=e[s].end?e[o].remove=!0:e[o].start>=e[s].start&&e[o].start<=e[s].end?(e[s].end=e[o].end,e[o].remove=!0):e[o].end>=e[s].start&&e[o].end<=e[s].end&&(e[s].start=e[o].start,e[o].remove=!0));for(var s=0;s=r&&a>o){i=!0;break}}if(1==i&&o=e&&i>r&&(s+=r-n)}return s},e.correctTimeForHidden=function(t,i,o){return o=s(o).toDate().valueOf(),o-=e.getHiddenDurationBefore(t,i,o)},e.getHiddenDurationBefore=function(t,e,i){var o=0;i=s(i).toDate().valueOf();for(var n=0;n=e.start&&a=a&&(o+=a-r)}return o},e.getAccumulatedHiddenDuration=function(t,e,i){for(var s=0,o=0,n=e.start,r=0;r=e.start&&h=i)break;s+=h-a}}return s},e.snapAwayFromHidden=function(t,i,s,o){var n=e.isHidden(i,t);return 1==n.hidden?0>s?1==o?n.startDate-(n.endDate-i)-1:n.startDate-1:1==o?n.endDate+(i-n.startDate)+1:n.endDate+1:i},e.isHidden=function(t,e){for(var i=0;i=s&&o>t)return{hidden:!0,startDate:s,endDate:o}}return{hidden:!1,startDate:s,endDate:o}}},function(t){function e(t,e,i,s,o,n){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.alignZeros=n,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,this._start==this._end&&(this._start-=.75,this._end+=1),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,1==this.alignZeros&&(this.marginEnd-this.marginStart)%this.step!=0&&(this.marginEnd+=this.marginEnd%this.step),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(t){var e=Math.abs(this.current)0;s--){if("0"!=i[s]){if("."==i[s]||","==i[s]){i=i.slice(0,s);break}break}i=i.slice(0,s)}}else{var o="",n=i.indexOf("e");if(-1!=n&&(o=i.slice(n),i=i.slice(0,n)),n=Math.max(i.indexOf(","),i.indexOf(".")),-1===n?(0!==t&&(i+="."),n=i.length+t):0!==t&&(n+=t+1),n>i.length)for(var r=n-i.length;r>0;r--)i+="0";else i=i.slice(0,n);i+=o}return i},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(-3,"days").valueOf(),this.end=i.clone().add(4,"days").valueOf(),this.body=t,this.deltaDifference=0,this.scaleOffset=0,this.startToFront=!1,this.endToFront=!0,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.animateTimer=null,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(47),h=i(43),d=i(25),l=i(15);s.prototype=new d,s.prototype.setOptions=function(t){if(t){var e=["direction","min","max","zoomMin","zoomMax","moveable","zoomable","activate","hiddenDates"];r.selectiveExtend(e,this.options,t),("start"in t||"end"in t)&&this.setRange(t.start,t.end)}},s.prototype.setRange=function(t,e,i,s){s!==!0&&(s=!1);var o=void 0!=t?r.convert(t,"Date").valueOf():null,n=void 0!=e?r.convert(e,"Date").valueOf():null;if(this._cancelAnimation(),i){var a=this,h=this.start,d=this.end,c="number"==typeof i?i:500,p=(new Date).valueOf(),u=!1,m=function(){if(!a.props.touch.dragging){var t=(new Date).valueOf(),e=t-p,i=e>c,g=i||null===o?o:r.easeInOutQuad(e,h,o,c),v=i||null===n?n:r.easeInOutQuad(e,d,n,c);f=a._applyRange(g,v),l.updateHiddenDates(a.body,a.options.hiddenDates),u=u||f,f&&a.body.emitter.emit("rangechange",{start:new Date(a.start),end:new Date(a.end),byUser:s}),i?u&&a.body.emitter.emit("rangechanged",{start:new Date(a.start),end:new Date(a.end),byUser:s}):a.animateTimer=setTimeout(m,20)}};return m()}var f=this._applyRange(o,n);if(l.updateHiddenDates(this.body,this.options.hiddenDates),f){var g={start:new Date(this.start),end:new Date(this.end),byUser:s};this.body.emitter.emit("rangechange",g),this.body.emitter.emit("rangechanged",g)}},s.prototype._cancelAnimation=function(){this.animateTimer&&(clearTimeout(this.animateTimer),this.animateTimer=null)},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&&od&&(d=0),o-s>d&&(this.end-this.start===d&&sthis.end?(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 s>=this.start&&s<=this.end||o>=this.start&&o<=this.end||this.start>=s&&this.start<=o||this.end>=s&&this.end<=o||this.body.emitter.emit("checkRangedItems"),this.start=s,this.end=o,l},s.prototype.getRange=function(){return{start:this.start,end:this.end}},s.prototype.conversion=function(t,e){return s.conversion(this.start,this.end,t,e)},s.conversion=function(t,e,i,s){return void 0===s&&(s=0),0!=i&&e-t!=0?{offset:t,scale:i/(e-t-s)}:{offset:0,scale:1}},s.prototype._onDragStart=function(){this.deltaDifference=0,this.previousDelta=0,this.options.moveable&&this.props.touch.allowDragging&&(this.props.touch.start=this.start,this.props.touch.end=this.end,this.props.touch.dragging=!0,this.body.dom.root&&(this.body.dom.root.style.cursor="move"))},s.prototype._onDrag=function(t){if(this.options.moveable&&this.props.touch.allowDragging){var e=this.options.direction;o(e);var i="horizontal"==e?t.gesture.deltaX:t.gesture.deltaY;i-=this.deltaDifference;var s=this.props.touch.end-this.props.touch.start,n=l.getHiddenDurationBetween(this.body.hiddenDates,this.start,this.end);s-=n;var r="horizontal"==e?this.body.domProps.center.width:this.body.domProps.center.height,a=-i/r*s,h=this.props.touch.start+a,d=this.props.touch.end+a,c=l.snapAwayFromHidden(this.body.hiddenDates,h,this.previousDelta-i,!0),p=l.snapAwayFromHidden(this.body.hiddenDates,d,this.previousDelta-i,!0);if(c!=h||p!=d)return this.deltaDifference+=i,this.props.touch.start=c,this.props.touch.end=p,void this._onDrag(t);this.previousDelta=i,this._applyRange(h,d),this.body.emitter.emit("rangechange",{start:new Date(this.start),end:new Date(this.end),byUser:!0})}},s.prototype._onDragEnd=function(){this.options.moveable&&this.props.touch.allowDragging&&(this.props.touch.dragging=!1,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),byUser:!0}))},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,e)}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,this.scaleOffset=0,this.deltaDifference=0},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+this.scaleOffset),i=this._pointerToDate(this.props.touch.center),s=l.getHiddenDurationBetween(this.body.hiddenDates,this.start,this.end),o=l.getHiddenDurationBefore(this.body.hiddenDates,this,i),r=s-o,a=i-o+(this.props.touch.start-(i-o))*e,h=i+r+(this.props.touch.end-(i+r))*e;this.startToFront=1-e>0?!1:!0,this.endToFront=e-1>0?!1:!0;var d=l.snapAwayFromHidden(this.body.hiddenDates,a,1-e,!0),c=l.snapAwayFromHidden(this.body.hiddenDates,h,e-1,!0);(d!=a||c!=h)&&(this.props.touch.start=d,this.props.touch.end=c,this.scaleOffset=1-t.gesture.scale,a=d,h=c),this.setRange(a,h,!1,!0),this.startToFront=!1,this.endToFront=!0}},s.prototype._pointerToDate=function(t){var e,i=this.options.direction;if(o(i),"horizontal"==i)return this.body.util.toTime(t.x).valueOf();var s=this.body.domProps.center.height;return e=this.conversion(s),t.y/e.scale+e.offset},s.prototype.zoom=function(t,e,i){null==e&&(e=(this.start+this.end)/2);var s=l.getHiddenDurationBetween(this.body.hiddenDates,this.start,this.end),o=l.getHiddenDurationBefore(this.body.hiddenDates,this,e),n=s-o,r=e-o+(this.start-(e-o))*t,a=e+n+(this.end-(e+n))*t;this.startToFront=i>0?!1:!0,this.endToFront=-i>0?!1:!0;var h=l.snapAwayFromHidden(this.body.hiddenDates,r,i,!0),d=l.snapAwayFromHidden(this.body.hiddenDates,a,-i,!0);(h!=r||d!=a)&&(r=h,a=d),this.setRange(r,a,!1,!0),this.startToFront=!1,this.endToFront=!0},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(r.stack&&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&&l.stack&&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,i){var s,o,n;for(s=0,o=t.length;o>s;s++)if(void 0!==t[s].data.subgroup){n=e.axis;for(var r in i)i.hasOwnProperty(r)&&1==i[r].visible&&i[r].indexe.left&&t.top-s.vertical+ie.top}},function(t,e,i){function s(t,e,i,o){this.current=new Date,this._start=new Date,this._end=new Date,this.autoScale=!0,this.scale="day",this.step=1,this.setRange(t,e,i),this.switchedDay=!1,this.switchedMonth=!1,this.switchedYear=!1,this.hiddenDates=o,void 0===o&&(this.hiddenDates=[]),this.format=s.FORMAT}var o=i(43),n=i(15),r=i(1);s.FORMAT={minorLabels:{millisecond:"SSS",second:"s",minute:"HH:mm",hour:"HH:mm",weekday:"ddd D",day:"D",month:"MMM",year:"YYYY"},majorLabels:{millisecond:"HH:mm:ss",second:"D MMMM HH:mm",minute:"ddd D MMMM",hour:"ddd D MMMM",weekday:"MMMM YYYY",day:"MMMM YYYY",month:"YYYY",year:""}},s.prototype.setFormat=function(t){var e=r.deepExtend({},s.FORMAT);this.format=r.deepExtend(e,t)},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"year":this.current.setFullYear(this.step*Math.floor(this.current.getFullYear()/this.step)),this.current.setMonth(0);case"month":this.current.setDate(1);case"day":case"weekday":this.current.setHours(0);case"hour":this.current.setMinutes(0);case"minute":this.current.setSeconds(0);case"second":this.current.setMilliseconds(0)}if(1!=this.step)switch(this.scale){case"millisecond":this.current.setMilliseconds(this.current.getMilliseconds()-this.current.getMilliseconds()%this.step);break;case"second":this.current.setSeconds(this.current.getSeconds()-this.current.getSeconds()%this.step); -break;case"minute":this.current.setMinutes(this.current.getMinutes()-this.current.getMinutes()%this.step);break;case"hour":this.current.setHours(this.current.getHours()-this.current.getHours()%this.step);break;case"weekday":case"day":this.current.setDate(this.current.getDate()-1-(this.current.getDate()-1)%this.step+1);break;case"month":this.current.setMonth(this.current.getMonth()-this.current.getMonth()%this.step);break;case"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"millisecond":this.current=new Date(this.current.valueOf()+this.step);break;case"second":this.current=new Date(this.current.valueOf()+1e3*this.step);break;case"minute":this.current=new Date(this.current.valueOf()+1e3*this.step*60);break;case"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"weekday":case"day":this.current.setDate(this.current.getDate()+this.step);break;case"month":this.current.setMonth(this.current.getMonth()+this.step);break;case"year":this.current.setFullYear(this.current.getFullYear()+this.step)}else switch(this.scale){case"millisecond":this.current=new Date(this.current.valueOf()+this.step);break;case"second":this.current.setSeconds(this.current.getSeconds()+this.step);break;case"minute":this.current.setMinutes(this.current.getMinutes()+this.step);break;case"hour":this.current.setHours(this.current.getHours()+this.step);break;case"weekday":case"day":this.current.setDate(this.current.getDate()+this.step);break;case"month":this.current.setMonth(this.current.getMonth()+this.step);break;case"year":this.current.setFullYear(this.current.getFullYear()+this.step)}if(1!=this.step)switch(this.scale){case"millisecond":this.current.getMilliseconds()0?t.step:1,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,s=864e5,o=36e5,n=6e4,r=1e3,a=1;1e3*e>t&&(this.scale="year",this.step=1e3),500*e>t&&(this.scale="year",this.step=500),100*e>t&&(this.scale="year",this.step=100),50*e>t&&(this.scale="year",this.step=50),10*e>t&&(this.scale="year",this.step=10),5*e>t&&(this.scale="year",this.step=5),e>t&&(this.scale="year",this.step=1),3*i>t&&(this.scale="month",this.step=3),i>t&&(this.scale="month",this.step=1),5*s>t&&(this.scale="day",this.step=5),2*s>t&&(this.scale="day",this.step=2),s>t&&(this.scale="day",this.step=1),s/2>t&&(this.scale="weekday",this.step=1),4*o>t&&(this.scale="hour",this.step=4),o>t&&(this.scale="hour",this.step=1),15*n>t&&(this.scale="minute",this.step=15),10*n>t&&(this.scale="minute",this.step=10),5*n>t&&(this.scale="minute",this.step=5),n>t&&(this.scale="minute",this.step=1),15*r>t&&(this.scale="second",this.step=15),10*r>t&&(this.scale="second",this.step=10),5*r>t&&(this.scale="second",this.step=5),r>t&&(this.scale="second",this.step=1),200*a>t&&(this.scale="millisecond",this.step=200),100*a>t&&(this.scale="millisecond",this.step=100),50*a>t&&(this.scale="millisecond",this.step=50),10*a>t&&(this.scale="millisecond",this.step=10),5*a>t&&(this.scale="millisecond",this.step=5),a>t&&(this.scale="millisecond",this.step=1)}},s.snap=function(t,e,i){var s=new Date(t.valueOf());if("year"==e){var o=s.getFullYear()+Math.round(s.getMonth()/12);s.setFullYear(Math.round(o/i)*i),s.setMonth(0),s.setDate(0),s.setHours(0),s.setMinutes(0),s.setSeconds(0),s.setMilliseconds(0)}else if("month"==e)s.getDate()>15?(s.setDate(1),s.setMonth(s.getMonth()+1)):s.setDate(1),s.setHours(0),s.setMinutes(0),s.setSeconds(0),s.setMilliseconds(0);else if("day"==e){switch(i){case 5:case 2:s.setHours(24*Math.round(s.getHours()/24));break;default:s.setHours(12*Math.round(s.getHours()/12))}s.setMinutes(0),s.setSeconds(0),s.setMilliseconds(0)}else if("weekday"==e){switch(i){case 5:case 2:s.setHours(12*Math.round(s.getHours()/12));break;default:s.setHours(6*Math.round(s.getHours()/6))}s.setMinutes(0),s.setSeconds(0),s.setMilliseconds(0)}else if("hour"==e){switch(i){case 4:s.setMinutes(60*Math.round(s.getMinutes()/60));break;default:s.setMinutes(30*Math.round(s.getMinutes()/30))}s.setSeconds(0),s.setMilliseconds(0)}else if("minute"==e){switch(i){case 15:case 10:s.setMinutes(5*Math.round(s.getMinutes()/5)),s.setSeconds(0);break;case 5:s.setSeconds(60*Math.round(s.getSeconds()/60));break;default:s.setSeconds(30*Math.round(s.getSeconds()/30))}s.setMilliseconds(0)}else if("second"==e)switch(i){case 15:case 10:s.setSeconds(5*Math.round(s.getSeconds()/5)),s.setMilliseconds(0);break;case 5:s.setMilliseconds(1e3*Math.round(s.getMilliseconds()/1e3));break;default:s.setMilliseconds(500*Math.round(s.getMilliseconds()/500))}else if("millisecond"==e){var n=i>5?i/2:1;s.setMilliseconds(Math.round(s.getMilliseconds()/n)*n)}return s},s.prototype.isMajor=function(){if(1==this.switchedYear)switch(this.switchedYear=!1,this.scale){case"year":case"month":case"weekday":case"day":case"hour":case"minute":case"second":case"millisecond":return!0;default:return!1}else if(1==this.switchedMonth)switch(this.switchedMonth=!1,this.scale){case"weekday":case"day":case"hour":case"minute":case"second":case"millisecond":return!0;default:return!1}else if(1==this.switchedDay)switch(this.switchedDay=!1,this.scale){case"millisecond":case"second":case"minute":case"hour":return!0;default:return!1}switch(this.scale){case"millisecond":return 0==this.current.getMilliseconds();case"second":return 0==this.current.getSeconds();case"minute":return 0==this.current.getHours()&&0==this.current.getMinutes();case"hour":return 0==this.current.getHours();case"weekday":case"day":return 1==this.current.getDate();case"month":return 0==this.current.getMonth();case"year":return!1;default:return!1}},s.prototype.getLabelMinor=function(t){void 0==t&&(t=this.current);var e=this.format.minorLabels[this.scale];return e&&e.length>0?o(t).format(e):""},s.prototype.getLabelMajor=function(t){void 0==t&&(t=this.current);var e=this.format.majorLabels[this.scale];return e&&e.length>0?o(t).format(e):""},s.prototype.getClassName=function(){function t(t){return t/h%2==0?" even":" odd"}function e(t){return t.isSame(new Date,"day")?" today":t.isSame(o().add(1,"day"),"day")?" tomorrow":t.isSame(o().add(-1,"day"),"day")?" yesterday":""}function i(t){return t.isSame(new Date,"week")?" current-week":""}function s(t){return t.isSame(new Date,"month")?" current-month":""}function n(t){return t.isSame(new Date,"year")?" current-year":""}var r=o(this.current),a=r.locale?r.locale("en"):r.lang("en"),h=this.step;switch(this.scale){case"millisecond":return t(a.milliseconds()).trim();case"second":return t(a.seconds()).trim();case"minute":return t(a.minutes()).trim();case"hour":var d=a.hours();return 4==this.step&&(d=d+"-"+(d+4)),d+"h"+e(a)+t(a.hours());case"weekday":return a.format("dddd").toLowerCase()+e(a)+i(a)+t(a.date());case"day":var l=a.date(),c=a.format("MMMM").toLowerCase();return"day"+l+" "+c+s(a)+t(l-1);case"month":return a.format("MMMM").toLowerCase()+s(a)+t(a.month());case"year":var p=a.year();return"year"+p+n(a)+t(p);default:return""}},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(44),n=i(1);s.prototype.stack=!0,s.prototype.select=function(){this.selected=!0,this.dirty=!0,this.displayed&&this.redraw()},s.prototype.unselect=function(){this.selected=!1,this.dirty=!0,this.displayed&&this.redraw()},s.prototype.setData=function(t){this.data=t,this.dirty=!0,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)},s.prototype._updateContents=function(t){var e;if(this.options.template){var i=this.parent.itemSet.itemsData.get(this.id);e=this.options.template(i)}else e=this.data.content;if(e!==this.content){if(e instanceof Element)t.innerHTML="",t.appendChild(e);else if(void 0!=e)t.innerHTML=e;else if("background"!=this.data.type||void 0!==this.data.content)throw new Error('Property "content" missing in item '+this.id);this.content=e}},s.prototype._updateTitle=function(t){null!=this.data.title?t.title=this.data.title||"":t.removeAttribute("title")},s.prototype._updateDataAttributes=function(t){if(this.options.dataAttributes&&this.options.dataAttributes.length>0){var e=[];if(Array.isArray(this.options.dataAttributes))e=this.options.dataAttributes;else{if("all"!=this.options.dataAttributes)return;e=Object.keys(this.data)}for(var i=0;it.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),this.dirty=!0),!this.parent)throw new Error("Cannot redraw item: no parent attached");if(!t.box.parentNode){var e=this.parent.dom.background;if(!e)throw new Error("Cannot redraw item: parent has no background container element");e.appendChild(t.box)}if(this.displayed=!0,this.dirty){this._updateContents(this.dom.content),this._updateTitle(this.dom.content),this._updateDataAttributes(this.dom.content),this._updateStyle(this.dom.box);var i=(this.data.className?" "+this.data.className:"")+(this.selected?" selected":"");t.box.className=this.baseClassName+i,this.overflow="hidden"!==window.getComputedStyle(t.content).overflow,this.props.content.width=this.dom.content.offsetWidth,this.height=0,this.dirty=!1}},s.prototype.show=r.prototype.show,s.prototype.hide=r.prototype.hide,s.prototype.repositionX=r.prototype.repositionX,s.prototype.repositionY=function(t){var e="top"===this.options.orientation;this.dom.content.style.top=e?"":"0",this.dom.content.style.bottom=e?"0":"";var i;if(void 0!==this.data.subgroup){var s=this.data.subgroup,o=this.parent.subgroups,r=o[s].index;if(1==e){i=this.parent.subgroups[s].height+t.item.vertical,i+=0==r?t.axis-.5*t.item.vertical:0;var a=this.parent.top;for(var h in o)o.hasOwnProperty(h)&&1==o[h].visible&&o[h].indexr&&(a+=o[h].height+t.item.vertical);i=this.parent.subgroups[s].height+t.item.vertical,this.dom.box.style.top=a+"px",this.dom.box.style.bottom=""}}else this.parent instanceof n?(i=Math.max(this.parent.height,this.parent.itemSet.body.domProps.center.height,this.parent.itemSet.body.domProps.centerContainer.height),this.dom.box.style.top=e?"0":"",this.dom.box.style.bottom=e?"":"0"):(i=this.parent.height,this.dom.box.style.top=this.parent.top+"px",this.dom.box.style.bottom="");this.dom.box.style.height=i+"px"},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(20);i(1)}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.dirty=!0),!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 item: parent has no foreground container element");e.appendChild(t.box)}if(this.displayed=!0,this.dirty){this._updateContents(this.dom.content),this._updateTitle(this.dom.box),this._updateDataAttributes(this.dom.box),this._updateStyle(this.dom.box);var i=(this.data.className?" "+this.data.className:"")+(this.selected?" selected":"");t.box.className=this.baseClassName+i,this.overflow="hidden"!==window.getComputedStyle(t.content).overflow,this.dom.content.style.maxWidth="none",this.props.content.width=this.dom.content.offsetWidth,this.height=this.dom.box.offsetHeight,this.dom.content.style.maxWidth="",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,i=this.parent.width,s=this.conversion.toScreen(this.data.start),o=this.conversion.toScreen(this.data.end);-i>s&&(s=-i),o>2*i&&(o=2*i);var n=Math.max(o-s,1);switch(this.overflow?(this.left=s,this.width=n+this.props.content.width,e=this.props.content.width):(this.left=s,this.width=n,e=Math.min(o-s-2*this.options.padding,this.props.content.width)),this.dom.box.style.left=this.left+"px",this.dom.box.style.width=n+"px",this.options.align){case"left":this.dom.content.style.left="0";break;case"right":this.dom.content.style.left=Math.max(n-e-2*this.options.padding,0)+"px";break;case"center":this.dom.content.style.left=Math.max((n-e-2*this.options.padding)/2,0)+"px";break;default:t=this.overflow?o>0?Math.max(-s,0):-e:0>s?Math.min(-s,o-s-e-2*this.options.padding):0,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){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.offset=0,this._create(),this.setOptions(e)}var o=i(1),n=i(25),r=i(43),a=i(48);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((new Date).valueOf()+this.offset),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)},s.prototype.setCurrentTime=function(t){var e=o.convert(t,"Date").valueOf(),i=(new Date).valueOf();this.offset=e-i,this.redraw()},s.prototype.getCurrentTime=function(){return new Date((new Date).valueOf()+this.offset)},t.exports=s},function(t,e,i){function s(t,e){this.body=t,this.defaultOptions={showCustomTime:!1,locales:h,locale:"en",id:0},this.options=n.extend({},this.defaultOptions),this.customTime=e&&e.time?e.time:new Date,this.eventParams={},this._create(),this.setOptions(e)}var o=i(44),n=i(1),r=i(25),a=i(43),h=i(48);s.prototype=new r,s.prototype.setOptions=function(t){t&&(n.selectiveExtend(["showCustomTime","locale","locales","id"],this.options,t),this.options.id&&this.redraw())},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=n.convert(t,"Date"),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",{id:this.options.id,time:new Date(this.customTime.valueOf())}),t.stopPropagation(),t.preventDefault()}},s.prototype._onDragEnd=function(t){this.eventParams.dragging&&(this.body.emitter.emit("timechanged",{id:this.options.id,time:new Date(this.customTime.valueOf())}),t.stopPropagation(),t.preventDefault())},t.exports=s},function(t,e,i){function s(t,e,i,s){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,alignZeros:!0,customRange:{left:{min:void 0,max:void 0},right:{min:void 0,max:void 0}},title:{left:{text:void 0},right:{text:void 0}},format:{left:{decimals:void 0},right:{decimals:void 0}}},this.linegraphOptions=s,this.linegraphSVG=i,this.props={},this.DOMelements={lines:{},labels:{},title:{}},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.hidden=!1,this.stepPixels=25,this.stepPixelsForced=25,this.zeroCrossing=-1,this.lineOffset=0,this.master=!0,this.svgElements={},this.iconsRemoved=!1,this.groups={},this.amountOfGroups=0,this._create();var n=this;this.body.emitter.on("verticalDrag",function(){n.dom.lineContainer.style.top=n.body.domProps.scrollTop+"px"})}var o=i(1),n=i(2),r=i(25),a=i(16);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","title","format","alignZeros"];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.dom.lineContainer.style.position="relative",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||void 0!==this.linegraphOptions.visibility[r]&&1!=this.linegraphOptions.visibility[r]||(this.groups[r].drawIcon(t,o,this.svgElements,this.svg,e,i),o+=i+s));n.cleanupElements(this.svgElements),this.iconsRemoved=!1},s.prototype._cleanupIcons=function(){0==this.iconsRemoved&&(n.prepareElements(this.svgElements),n.cleanupElements(this.svgElements),this.iconsRemoved=!0)},s.prototype.show=function(){this.hidden=!1,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.hidden=!0,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){0==this.master&&1==this.options.alignZeros&&-1!=this.zeroCrossing&&t>0&&(t=0),this.range.start=t,this.range.end=e},s.prototype.redraw=function(){var t=!1,e=0;this.dom.lineContainer.style.top=this.body.domProps.scrollTop+"px";for(var i in this.groups)this.groups.hasOwnProperty(i)&&(1!=this.groups[i].visible||void 0!==this.linegraphOptions.visibility[i]&&1!=this.linegraphOptions.visibility[i]||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",this.props.width=this.body.domProps.left.width,this.props.height=this.body.domProps.left.height):(o.style.top="",o.style.bottom="0",o.style.left="0",o.style.width=this.width+"px",o.style.height=this.height+"px",this.props.width=this.body.domProps.right.width,this.props.height=this.body.domProps.right.height),t=this._redrawLabels(),t=this._isResized()||t,1==this.options.icons?this._redrawGroupIcons():this._cleanupIcons(),this._redrawTitle(n) -}return t},s.prototype._redrawLabels=function(){var t=!1;n.prepareElements(this.DOMelements.lines),n.prepareElements(this.DOMelements.labels);var e=this.options.orientation,i=this.master?this.props.majorCharHeight||10:this.stepPixelsForced,s=new a(this.range.start,this.range.end,i,this.dom.frame.offsetHeight,this.options.customRange[this.options.orientation],0==this.master&&this.options.alignZeros);this.step=s;var o=(this.dom.frame.offsetHeight-s.deadSpace*(this.dom.frame.offsetHeight/s.marginRange))/((s.marginRange-s.deadSpace)/s.step);this.stepPixels=o;var r=this.height/o,h=0;if(0==this.master){o=this.stepPixelsForced,h=Math.round(this.dom.frame.offsetHeight/o-r);for(var d=0;.5*h>d;d++)s.previous();if(r=this.height/o,-1!=this.zeroCrossing&&1==this.options.alignZeros){var l=s.marginEnd/s.step-this.zeroCrossing;if(l>0)for(var d=0;l>d;d++)s.next();else if(0>l)for(var d=0;-l>d;d++)s.previous()}}else r+=.25;this.valueAtZero=s.marginEnd;var c,p=0,u=1;void 0!==this.options.format[e]&&(c=this.options.format[e].decimals),this.maxLabelSize=0;for(var m=0;u=0&&this._redrawLabel(m-2,s.getCurrent(c),e,"yAxis major",this.props.majorCharHeight),this._redrawLine(m,e,"grid horizontal major",this.options.majorLinesOffset,this.props.majorLineWidth)):this._redrawLine(m,e,"grid horizontal minor",this.options.minorLinesOffset,this.props.minorLineWidth),1==this.master&&0==s.current&&(this.zeroCrossing=u),u++}this.conversionFactor=0==this.master?m/(this.valueAtZero-s.current):this.dom.frame.offsetHeight/s.marginRange;var g=0;void 0!==this.options.title[e]&&void 0!==this.options.title[e].text&&(g=this.props.titleCharHeight);var v=1==this.options.icons?Math.max(this.options.iconWidth,g)+this.options.labelOffsetX+15:g+this.options.labelOffsetX+15;return this.maxLabelSize>this.width-v&&1==this.options.visible?(this.width=this.maxLabelSize+v,this.options.width=this.width+"px",n.cleanupElements(this.DOMelements.lines),n.cleanupElements(this.DOMelements.labels),this.redraw(),t=!0):this.maxLabelSizethis.minWidth?(this.width=Math.max(this.minWidth,this.maxLabelSize+v),this.options.width=this.width+"px",n.cleanupElements(this.DOMelements.lines),n.cleanupElements(this.DOMelements.labels),this.redraw(),t=!0):(n.cleanupElements(this.DOMelements.lines),n.cleanupElements(this.DOMelements.labels),t=!1),t},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.maxLabelSized;d++){var c=this.visibleItems[d];c.repositionY(e)}return s},s.prototype._calculateHeight=function(t){var e,i=this.visibleItems;this.resetSubgroups();var s=this;if(i.length){var n=i[0].top,r=i[0].top+i[0].height;if(o.forEach(i,function(t){n=Math.min(n,t.top),r=Math.max(r,t.top+t.height),void 0!==t.data.subgroup&&(s.subgroups[t.data.subgroup].height=Math.max(s.subgroups[t.data.subgroup].height,t.height),s.subgroups[t.data.subgroup].visible=!0)}),n>t.axis){var a=n-t.axis;r-=a,o.forEach(i,function(t){t.top-=a})}e=r+t.item.vertical/2}else e=t.axis+t.item.vertical;return e=Math.max(e,this.props.label.height)},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),void 0!==t.data.subgroup&&(void 0===this.subgroups[t.data.subgroup]&&(this.subgroups[t.data.subgroup]={height:0,visible:!1,index:this.subgroupIndex,items:[]},this.subgroupIndex++),this.subgroups[t.data.subgroup].items.push(t)),this.orderSubgroups(),-1==this.visibleItems.indexOf(t)){var e=this.itemSet.body.range;this._checkIfVisible(t,this.visibleItems,e)}},s.prototype.orderSubgroups=function(){if(void 0!==this.subgroupOrderer){var t=[];if("string"==typeof this.subgroupOrderer){for(var e in this.subgroups)t.push({subgroup:e,sortField:this.subgroups[e].items[0].data[this.subgroupOrderer]});t.sort(function(t,e){return t.sortField-e.sortField})}else if("function"==typeof this.subgroupOrderer){for(var e in this.subgroups)t.push(this.subgroups[e].items[0].data);t.sort(this.subgroupOrderer)}if(t.length>0)for(var i=0;it?-1:l>=t?0:1};if(e.length>0)for(n=0;nl}),1==this.checkRangedItems)for(this.checkRangedItems=!1,n=0;nl})}for(n=0;n=0&&(n=e[r],!o(n));r--)void 0===s[n.id]&&(s[n.id]=!0,i.push(n));for(r=t+1;rs;s++){var n=this.visibleItems[s];n.repositionY(e)}return i},s.prototype.show=function(){this.dom.background.parentNode||this.itemSet.dom.background.appendChild(this.dom.background)},t.exports=s},function(t,e,i){function s(t,e){this.body=t,this.defaultOptions={type:null,orientation:"bottom",align:"auto",stack:!0,groupOrder:null,selectable:!0,editable:{updateTime:!1,updateGroup:!1,add:!1,remove:!1},snap:h.snap,onAdd:function(t,e){e(t)},onUpdate:function(t,e){e(t)},onMove:function(t,e){e(t)},onRemove:function(t,e){e(t)},onMoving:function(t,e){e(t)},margin:{item:{horizontal:10,vertical:10},axis:20},padding:5},this.options=n.extend({},this.defaultOptions),this.itemOptions={type:{start:"Date",end:"Date"}},this.conversion={toScreen:t.util.toScreen,toTime:t.util.toTime},this.dom={},this.props={},this.hammer=null;var i=this;this.itemsData=null,this.groupsData=null,this.itemListeners={add:function(t,e){i._onAdd(e.items)},update:function(t,e){i._onUpdate(e.items)},remove:function(t,e){i._onRemove(e.items)}},this.groupListeners={add:function(t,e){i._onAddGroups(e.items)},update:function(t,e){i._onUpdateGroups(e.items)},remove:function(t,e){i._onRemoveGroups(e.items)}},this.items={},this.groups={},this.groupIds=[],this.selection=[],this.stackDirty=!0,this.touchParams={},this._create(),this.setOptions(e)}var o=i(44),n=i(1),r=i(3),a=i(4),h=i(19),d=i(25),l=i(30),c=i(31),p=i(22),u=i(23),m=i(24),f=i(21),g="__ungrouped__",v="__background__";s.prototype=new d,s.types={background:f,box:p,range:m,point:u},s.prototype._create=function(){var t=document.createElement("div");t.className="itemset",t["timeline-itemset"]=this,this.dom.frame=t;var e=document.createElement("div");e.className="background",t.appendChild(e),this.dom.background=e;var i=document.createElement("div");i.className="foreground",t.appendChild(i),this.dom.foreground=i;var s=document.createElement("div");s.className="axis",this.dom.axis=s;var n=document.createElement("div");n.className="labelset",this.dom.labelSet=n,this._updateUngrouped();var r=new c(v,null,this);r.show(),this.groups[v]=r,this.hammer=o(this.body.dom.centerContainer,{preventDefault:!0}),this.hammer.on("touch",this._onTouch.bind(this)),this.hammer.on("dragstart",this._onDragStart.bind(this)),this.hammer.on("drag",this._onDrag.bind(this)),this.hammer.on("dragend",this._onDragEnd.bind(this)),this.hammer.on("tap",this._onSelectItem.bind(this)),this.hammer.on("hold",this._onMultiSelectItem.bind(this)),this.hammer.on("doubletap",this._onAddItem.bind(this)),this.show()},s.prototype.setOptions=function(t){if(t){var e=["type","align","orientation","padding","stack","selectable","groupOrder","dataAttributes","template","hide","snap"];n.selectiveExtend(e,this.options,t),"margin"in t&&("number"==typeof t.margin?(this.options.margin.axis=t.margin,this.options.margin.item.horizontal=t.margin,this.options.margin.item.vertical=t.margin):"object"==typeof t.margin&&(n.selectiveExtend(["axis"],this.options.margin,t.margin),"item"in t.margin&&("number"==typeof t.margin.item?(this.options.margin.item.horizontal=t.margin.item,this.options.margin.item.vertical=t.margin.item):"object"==typeof t.margin.item&&n.selectiveExtend(["horizontal","vertical"],this.options.margin.item,t.margin.item)))),"editable"in t&&("boolean"==typeof t.editable?(this.options.editable.updateTime=t.editable,this.options.editable.updateGroup=t.editable,this.options.editable.add=t.editable,this.options.editable.remove=t.editable):"object"==typeof t.editable&&n.selectiveExtend(["updateTime","updateGroup","add","remove"],this.options.editable,t.editable));var i=function(e){var i=t[e];if(i){if(!(i instanceof Function))throw new Error("option "+e+" must be a function "+e+"(item, callback)");this.options[e]=i}}.bind(this);["onAdd","onUpdate","onRemove","onMove","onMoving"].forEach(i),this.markDirty()}},s.prototype.markDirty=function(t){this.groupIds=[],this.stackDirty=!0,t&&t.refreshItems&&n.forEach(this.items,function(t){t.dirty=!0,t.displayed&&t.redraw()})},s.prototype.destroy=function(){this.hide(),this.setItems(null),this.setGroups(null),this.hammer=null,this.body=null,this.conversion=null},s.prototype.hide=function(){this.dom.frame.parentNode&&this.dom.frame.parentNode.removeChild(this.dom.frame),this.dom.axis.parentNode&&this.dom.axis.parentNode.removeChild(this.dom.axis),this.dom.labelSet.parentNode&&this.dom.labelSet.parentNode.removeChild(this.dom.labelSet)},s.prototype.show=function(){this.dom.frame.parentNode||this.body.dom.center.appendChild(this.dom.frame),this.dom.axis.parentNode||this.body.dom.backgroundVertical.appendChild(this.dom.axis),this.dom.labelSet.parentNode||this.body.dom.left.appendChild(this.dom.labelSet)},s.prototype.setSelection=function(t){var e,i,s,o;for(void 0==t&&(t=[]),Array.isArray(t)||(t=[t]),e=0,i=this.selection.length;i>e;e++)s=this.selection[e],o=this.items[s],o&&o.unselect();for(this.selection=[],e=0,i=t.length;i>e;e++)s=t[e],o=this.items[s],o&&(this.selection.push(s),o.select())},s.prototype.getSelection=function(){return this.selection.concat([])},s.prototype.getVisibleItems=function(){var t=this.body.range.getRange(),e=this.body.util.toScreen(t.start),i=this.body.util.toScreen(t.end),s=[];for(var o in this.groups)if(this.groups.hasOwnProperty(o))for(var n=this.groups[o],r=n.visibleItems,a=0;ae&&s.push(h.id)}return s},s.prototype._deselect=function(t){for(var e=this.selection,i=0,s=e.length;s>i;i++)if(e[i]==t){e.splice(i,1);break}},s.prototype.redraw=function(){var t=this.options.margin,e=this.body.range,i=n.option.asSize,s=this.options,o=s.orientation,r=!1,a=this.dom.frame,h=s.editable.updateTime||s.editable.updateGroup;this.props.top=this.body.domProps.top.height+this.body.domProps.border.top,this.props.left=this.body.domProps.left.width+this.body.domProps.border.left,a.className="itemset"+(h?" editable":""),r=this._orderGroups()||r;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},m={item:t.item,axis:t.item.vertical/2},f=0,g=t.axis+t.item.vertical;return this.groups[v].redraw(e,m,c),n.forEach(this.groups,function(t){var i=t==p?u:m,s=t.redraw(e,i,c);r=s||r,f+=t.height}),f=Math.max(f,g),this.stackDirty=!1,a.style.height=i(f),this.props.width=a.offsetWidth,this.props.height=f,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",r=this._isResized()||r},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[g];return i||null},s.prototype._updateUngrouped=function(){{var t,e,i=this.groups[g];this.groups[v]}if(this.groupsData){if(i){i.hide(),delete this.groups[g];for(e in this.items)if(this.items.hasOwnProperty(e)){t=this.items[e],t.parent&&t.parent.remove(t);var s=this._getGroupId(t.data),o=this.groups[s];o&&o.add(t)||t.hide()}}}else if(!i){var n=null,r=null;i=new l(n,r,this),this.groups[g]=i;for(e in this.items)this.items.hasOwnProperty(e)&&(t=this.items[e],i.add(t));i.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 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&&(n.forEach(this.itemListeners,function(t,e){s.off(e,t)}),e=s.getIds(),this._onRemove(e)),this.itemsData){var o=this.id;n.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&&(n.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;n.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",{queue:!0})},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._getType=function(t){return t.type||this.options.type||(t.end?"range":"box")},s.prototype._getGroupId=function(t){var e=this._getType(t);return"background"==e&&void 0==t.group?v:this.groupsData?t.group:g},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=e._getType(i),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",{queue:!0})},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",{queue:!0}))},s.prototype._order=function(){n.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==g||t==v)throw new Error("Illegal group id. "+t+" is a reserved id.");var o=Object.create(e.options);n.extend(o,{height:null}),s=new l(t,i,e),e.groups[t]=s;for(var r in e.items)if(e.items.hasOwnProperty(r)){var a=e.items[r];a.data.group==t&&s.add(a)}s.order(),s.show()}}),this.body.emitter.emit("change",{queue:!0})},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",{queue:!0})},s.prototype._orderGroups=function(){if(this.groupsData){var t=this.groupsData.getIds({order:this.options.groupOrder}),e=!n.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._getGroupId(t.data),i=this.groups[e];i&&i.add(t)},s.prototype._updateItem=function(t,e){var i=t.data.group;if(t.setData(e),i!=t.data.group){var s=this.groups[i];s&&s.remove(t);var o=this._getGroupId(t.data),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),t.parent&&t.parent.remove(t)},s.prototype._constructByEndArray=function(t){for(var e=[],i=0;i0||o.length>0)&&this.body.emitter.emit("select",{items:a})}},s.prototype._onAddItem=function(t){if(this.options.selectable&&this.options.editable.add){var e=this,i=this.options.snap||null,o=s.itemFromTarget(t);if(o){var r=e.itemsData.get(o.id);this.options.onUpdate(r,function(t){t&&e.itemsData.getDataSet().update(t)})}else{var a=n.getAbsoluteLeft(this.dom.frame),h=t.gesture.center.pageX-a,d=this.body.util.toTime(h),l=this.body.util.getScale(),c=this.body.util.getStep(),p={start:i?i(d,l,c):d,content:"new item"};if("range"===this.options.type){var u=this.body.util.toTime(h+this.props.width/5);p.end=i?i(u,l,c):u}p[this.itemsData._fieldId]=n.randomUUID();var m=this.groupFromTarget(t);m&&(p.group=m.groupId),this.options.onAdd(p,function(t){t&&e.itemsData.getDataSet().add(t)})}}},s.prototype._onMultiSelectItem=function(t){if(this.options.selectable){var e,i=s.itemFromTarget(t);if(i){e=this.getSelection();var o=t.gesture.touches[0]&&t.gesture.touches[0].shiftKey||!1;if(o){e.push(i.id);var n=s._getItemRange(this.itemsData.get(e,this.itemOptions));e=[];for(var r in this.items)if(this.items.hasOwnProperty(r)){var a=this.items[r],h=a.data.start,d=void 0!==a.data.end?a.data.end:h;h>=n.min&&d<=n.max&&e.push(a.id)}}else{var l=e.indexOf(i.id);-1==l?e.push(i.id):e.splice(l,1)}this.setSelection(e),this.body.emitter.emit("select",{items:this.getSelection()})}}},s._getItemRange=function(t){var e=null,i=null;return t.forEach(function(t){(null==i||t.starte)&&(e=t.end):(null==e||t.start>e)&&(e=t.start)}),{min:i,max:e}},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.prototype.groupFromTarget=function(t){for(var e=t.gesture.center.clientY,i=0;ia&&ea)return o}else if(0===i&&e"));this.dom.textArea.innerHTML=s,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||void 0!==this.linegraphOptions.visibility[a]&&1!=this.linegraphOptions.visibility[a]||(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,alignZeros:!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"}},groups:{visibility:{}}},this.options=o.extend({},this.defaultOptions),this.dom={},this.props={},this.hammer=null,this.groups={},this.abortedGraphUpdate=!1,this.updateSVGheight=!1,this.updateSVGheightOnResize=!1;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.COUNTER=0,this.body.emitter.on("rangechanged",function(){i.lastStart=i.body.range.start,i.svg.style.left=o.option.asSize(-i.props.width),i.redraw.call(i,!0)}),this._create(),this.framework={svg:this.svg,svgElements:this.svgElements,options:this.options,groups:this.groups},this.body.emitter.emit("change")}var o=i(1),n=i(2),r=i(3),a=i(4),h=i(25),d=i(28),l=i(29),c=i(33),p=i(50),u="__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.groups),this.options.dataAxis.orientation="right",this.yAxisRight=new d(this.body,this.options.dataAxis,this.svg,this.options.groups),delete this.options.dataAxis.orientation,this.legendLeft=new c(this.body,this.options.legend,"left",this.options.groups),this.legendRight=new c(this.body,this.options.legend,"right",this.options.groups),this.show()},s.prototype.setOptions=function(t){if(t){var e=["sampling","defaultGroup","height","graphHeight","yAxisOrientation","style","barChart","dataAxis","sort","groups"];void 0===t.graphHeight&&void 0!==t.height&&void 0!==this.body.domProps.centerContainer.height?(this.updateSVGheight=!0,this.updateSVGheightOnResize=!0):void 0!==this.body.domProps.centerContainer.height&&void 0!==t.graphHeight&&parseInt((t.graphHeight+"").replace("px",""))0){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),this._applySampling(a,c),e=0;eu&&console.log("WARNING: there may be an infinite loop in the _updateGraph emitter cycle."),this.COUNTER=0,this.abortedGraphUpdate=!1,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=[];if(t.length>0){for(n=0;n0&&(o=this.groups[t[n]],"stack"==r.barChart.handleOverlap&&"bar"==r.style?"left"==r.yAxisOrientation?a=a.concat(o.getYRange(s)):h=h.concat(o.getYRange(s)):i[t[n]]=o.getYRange(s,t[n]));p.getStackedBarYRange(a,i,t,"__barchartLeft","left"),p.getStackedBarYRange(h,i,t,"__barchartRight","right")}},s.prototype._updateYAxis=function(t,e){var i,s,o=!1,n=!1,r=!1,a=1e9,h=1e9,d=-1e9,l=-1e9;if(t.length>0){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,this.yAxisRight.zeroCrossing=this.yAxisLeft.zeroCrossing,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&&0==e.hidden&&(e.hide(),i=!0):e.dom.frame.parentNode||1!=e.hidden||(e.show(),i=!0),i},s.prototype._convertXcoordinates=function(t){for(var e,i,s=[],o=this.body.util.toScreen,n=0;ny;)y++,l=h.getCurrent(),c=h.isMajor(),u=h.getClassName(),f=m,m=this.body.util.toScreen(l),g=m-f,p&&(p.style.width=g+"px"),this.options.showMinorLabels&&this._repaintMinorText(m,h.getLabelMinor(),t,u),c&&this.options.showMajorLabels?(m>0&&(void 0==v&&(v=m),this._repaintMajorText(m,h.getLabelMajor(),t,u)),p=this._repaintMajorLine(m,t,u)):p=this._repaintMinorLine(m,t,u),h.next();if(this.options.showMajorLabels){var b=this.body.util.toTime(0),_=h.getLabelMajor(b),x=_.length*(this.props.majorCharWidth||10)+10;(void 0==v||v>x)&&this._repaintMajorText(0,_,t,u)}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,s){var o=this.dom.redundant.minorTexts.shift();if(!o){var n=document.createTextNode("");o=document.createElement("div"),o.appendChild(n),this.dom.foreground.appendChild(o)}this.dom.minorTexts.push(o),o.childNodes[0].nodeValue=e,o.style.top="top"==i?this.props.majorLabelHeight+"px":"0",o.style.left=t+"px",o.className="text minor "+s},s.prototype._repaintMajorText=function(t,e,i,s){var o=this.dom.redundant.majorTexts.shift();if(!o){var n=document.createTextNode(e);o=document.createElement("div"),o.appendChild(n),this.dom.foreground.appendChild(o)}this.dom.majorTexts.push(o),o.childNodes[0].nodeValue=e,o.className="text major "+s,o.style.top="top"==i?"0":this.props.minorLabelHeight+"px",o.style.left=t+"px"},s.prototype._repaintMinorLine=function(t,e,i){var s=this.dom.redundant.lines.shift();s||(s=document.createElement("div"),this.dom.background.appendChild(s)),this.dom.lines.push(s);var o=this.props;return s.style.top="top"==e?o.majorLabelHeight+"px":this.body.domProps.top.height+"px",s.style.height=o.minorLineHeight+"px",s.style.left=t-o.minorLineWidth/2+"px",s.className="grid vertical minor "+i,s},s.prototype._repaintMajorLine=function(t,e,i){var s=this.dom.redundant.lines.shift();s||(s=document.createElement("div"),this.dom.background.appendChild(s)),this.dom.lines.push(s);var o=this.props;return s.style.top="top"==e?"0":this.body.domProps.top.height+"px",s.style.left=t-o.majorLineWidth/2+"px",s.style.height=o.majorLineHeight+"px",s.className="grid vertical major "+i,s},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 major measure",this.dom.measureCharMajor.style.position="absolute",this.dom.measureCharMajor.appendChild(document.createTextNode("0")),this.dom.foreground.appendChild(this.dom.measureCharMajor)),this.props.majorCharHeight=this.dom.measureCharMajor.clientHeight,this.props.majorCharWidth=this.dom.measureCharMajor.clientWidth},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._determineBrowserMethod(),this._initializeMixinLoaders(),this.containerElement=t,this.renderRefreshRate=60,this.renderTimestep=1e3/this.renderRefreshRate,this.renderTime=0,this.physicsTime=0,this.runDoubleSpeed=!1,this.physicsDiscreteStepsize=.5,this.initializing=!0,this.triggerFunctions={add:null,edit:null,editEdge:null,connect:null,del:null};var o=function(t,e,i,s){if(e==t)return.5;var o=1/(e-t);return Math.max(0,(s-t)*o)};this.defaultOptions={nodes:{customScalingFunction:o,mass:1,radiusMin:10,radiusMax:30,radius:10,shape:"ellipse",image:void 0,widthMin:16,widthMax:64,fontColor:"black",fontSize:14,fontFace:"verdana",fontFill:void 0,fontStrokeWidth:0,fontStrokeColor:"#ffffff",fontDrawThreshold:3,scaleFontWithValue:!1,fontSizeMin:14,fontSizeMax:30,fontSizeMaxVisible:30,level:-1,color:{border:"#2B7CE9",background:"#97C2FC",highlight:{border:"#2B7CE9",background:"#D2E5FF"},hover:{border:"#2B7CE9",background:"#D2E5FF"}},group:void 0,borderWidth:1,borderWidthSelected:void 0},edges:{customScalingFunction:o,widthMin:1,widthMax:15,width:1,widthSelectionMultiplier:2,hoverWidth:1.5,style:"line",color:{color:"#848484",highlight:"#848484",hover:"#848484"},opacity:1,fontColor:"#343434",fontSize:14,fontFace:"arial",fontFill:"white",fontStrokeWidth:0,fontStrokeColor:"white",labelAlignment:"horizontal",arrowScaleFactor:1,dash:{length:10,gap:5,altLength:void 0},inheritColor:"from",useGradients:!1},configurePhysics:!1,physics:{barnesHut:{enabled:!0,thetaInverted:2,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,clusterByZoom:!0},navigation:{enabled:!1},keyboard:{enabled:!1,speed:{x:10,y:10,zoom:.02},bindToWindow:!0},dataManipulation:{enabled:!1,initiallyVisible:!1},hierarchicalLayout:{enabled:!1,levelSeparation:150,nodeSpacing:100,direction:"UD",layout:"hubsize"},freezeForStabilization:!1,smoothCurves:{enabled:!0,dynamic:!0,type:"continuous",roundness:.5},maxVelocity:50,minVelocity:.1,stabilize:!0,stabilizationIterations:1e3,zoomExtentOnStabilize:!0,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,useDefaultGroups:!0},this.constants=a.extend({},this.defaultOptions),this.pixelRatio=1,this.hoverObj={nodes:{},edges:{}},this.controlNodesActive=!1,this.navigationHammers=[],this.manipulationHammers={existing:[],_new:[]},this.animationSpeed=1/this.renderRefreshRate,this.animationEasingFunction="easeInOutQuint",this.animating=!1,this.easingTime=0,this.sourceScale=0,this.targetScale=0,this.sourceTranslation=0,this.targetTranslation=0,this.lockedOnNodeId=null,this.lockedOnNodeOffset=null,this.touchTime=0,this.redrawRequested=!1;var n=this;this.groups=new u,this.images=new m,this.images.setOnloadCallback(function(){n._requestRedraw()}),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.freezeSimulationEnabled=!1,this.cachedFunctions={},this.startedStabilization=!1,this.stabilized=!1,this.stabilizationIterations=null,this.draggingNodes=!1,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){n._addNodes(e.items),n.start()},update:function(t,e){n._updateNodes(e.items,e.data),n.start()},remove:function(t,e){n._removeNodes(e.items),n.start()}},this.edgesListeners={add:function(t,e){n._addEdges(e.items),n.start()},update:function(t,e){n._updateEdges(e.items),n.start()},remove:function(t,e){n._removeEdges(e.items),n.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({duration:0},!0,this.constants.clustering.enabled),this.constants.clustering.enabled&&this.startWithClustering()}var o=i(56),n=i(44),r=i(57),a=i(1),h=i(47),d=i(3),l=i(4),c=i(42),p=i(45),u=i(37),m=i(38),f=i(40),g=i(39),v=i(41),y=i(52),b=i(53),_=i(54);i(55),o(s.prototype),s.prototype._determineBrowserMethod=function(){var t=navigator.userAgent.toLowerCase();this.requiresTimeout=!1,-1!=t.indexOf("msie 9.0")?this.requiresTimeout=!0:-1!=t.indexOf("safari")&&t.indexOf("chrome")<=-1&&(this.requiresTimeout=!0)},s.prototype._getScriptPath=function(){for(var t=document.getElementsByTagName("script"),e=0;e0)for(var r=0;re.boundingBox.left&&(o=e.boundingBox.left),ne.boundingBox.bottom&&(i=e.boundingBox.top),se.boundingBox.left&&(o=e.boundingBox.left),ne.boundingBox.bottom&&(i=e.boundingBox.top),s.5*this.nodeIndices.length)return void this.zoomExtent(t,!1,i);s=this._getRange(t.nodes);var h=this.nodeIndices.length;o=1==this.constants.smoothCurves?1==this.constants.clustering.enabled&&h>=this.constants.clustering.initialMaxNodes?49.07548/(h+142.05338)+91444e-8:12.662/(h+7.4147)+.0964822:1==this.constants.clustering.enabled&&h>=this.constants.clustering.initialMaxNodes?77.5271985/(h+187.266146)+476710517e-13:30.5062972/(h+19.93597763)+.08413486; -var d=Math.min(this.frame.canvas.clientWidth/600,this.frame.canvas.clientHeight/600);o*=d}else{s=this._getRange(t.nodes);var l=1.1*Math.abs(s.maxX-s.minX),c=1.1*Math.abs(s.maxY-s.minY),p=this.frame.canvas.clientWidth/l,u=this.frame.canvas.clientHeight/c;o=u>=p?p:u}o>1&&(o=1);var m=this._findCenter(s);if(0==i){var t={position:m,scale:o,animation:t};this.moveTo(t),this.moving=!0,this.start()}else m.x*=o,m.y*=o,m.x-=.5*this.frame.canvas.clientWidth,m.y-=.5*this.frame.canvas.clientHeight,this._setScale(o),this._setTranslation(-m.x,-m.y)},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),this._unselectAll(!0),this.initializing=!0,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(1==this.constants.dataManipulation.enabled&&this._createManipulatorBar(),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);this._putDataInSector(),0==e&&(1==this.constants.hierarchicalLayout.enabled?(this._resetLevels(),this._setupHierarchicalLayout()):1==this.constants.stabilize&&this._stabilize(),this.start()),this.initializing=!1},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),this.groups.useDefaultGroups=this.constants.useDefaultGroups,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)),this.constants.edges.inheritColor=!1),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||(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._bindHammer(),this._createKeyBinds(),this._markAllEdgesAsDirty(),this.setSize(this.constants.width,this.constants.height),this.moving=!0,1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),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.tabIndex=900,this.frame.canvas=document.createElement("canvas"),this.frame.canvas.style.position="relative",this.frame.appendChild(this.frame.canvas),this.frame.canvas.getContext){var t=this.frame.canvas.getContext("2d");this.pixelRatio=(window.devicePixelRatio||1)/(t.webkitBackingStorePixelRatio||t.mozBackingStorePixelRatio||t.msBackingStorePixelRatio||t.oBackingStorePixelRatio||t.backingStorePixelRatio||1),this.frame.canvas.getContext("2d").setTransform(this.pixelRatio,0,0,this.pixelRatio,0,0)}else{var e=document.createElement("DIV");e.style.color="red",e.style.fontWeight="bold",e.style.padding="10px",e.innerHTML="Error: your browser does not support HTML canvas",this.frame.canvas.appendChild(e)}this._bindHammer()},s.prototype._bindHammer=function(){var t=this;void 0!==this.hammer&&this.hammer.dispose(),this.drag={},this.pinch={},this.hammer=n(this.frame.canvas,{prevent_default:!0}),this.hammer.on("tap",t._onTap.bind(t)),this.hammer.on("doubletap",t._onDoubleTap.bind(t)),this.hammer.on("hold",t._onHold.bind(t)),this.hammer.on("touch",t._onTouch.bind(t)),this.hammer.on("dragstart",t._onDragStart.bind(t)),this.hammer.on("drag",t._onDrag.bind(t)),this.hammer.on("dragend",t._onDragEnd.bind(t)),1==this.constants.zoomable&&(this.hammer.on("mousewheel",t._onMouseWheel.bind(t)),this.hammer.on("DOMMouseScroll",t._onMouseWheel.bind(t)),this.hammer.on("pinch",t._onPinch.bind(t))),this.hammer.on("mousemove",t._onMouseMoveTitle.bind(t)),this.hammerFrame=n(this.frame,{prevent_default:!0}),this.hammerFrame.on("release",t._onRelease.bind(t)),this.containerElement.appendChild(this.frame)},s.prototype._createKeyBinds=function(){var t=this;void 0!==this.keycharm&&this.keycharm.destroy(),this.keycharm=r(1==this.constants.keyboard.bindToWindow?{container:window,preventDefault:!1}:{container:this.frame,preventDefault:!1}),this.keycharm.reset(),this.constants.keyboard.enabled&&this.isActive()&&(this.keycharm.bind("up",this._moveUp.bind(t),"keydown"),this.keycharm.bind("up",this._yStopMoving.bind(t),"keyup"),this.keycharm.bind("down",this._moveDown.bind(t),"keydown"),this.keycharm.bind("down",this._yStopMoving.bind(t),"keyup"),this.keycharm.bind("left",this._moveLeft.bind(t),"keydown"),this.keycharm.bind("left",this._xStopMoving.bind(t),"keyup"),this.keycharm.bind("right",this._moveRight.bind(t),"keydown"),this.keycharm.bind("right",this._xStopMoving.bind(t),"keyup"),this.keycharm.bind("=",this._zoomIn.bind(t),"keydown"),this.keycharm.bind("=",this._stopZoom.bind(t),"keyup"),this.keycharm.bind("num+",this._zoomIn.bind(t),"keydown"),this.keycharm.bind("num+",this._stopZoom.bind(t),"keyup"),this.keycharm.bind("num-",this._zoomOut.bind(t),"keydown"),this.keycharm.bind("num-",this._stopZoom.bind(t),"keyup"),this.keycharm.bind("-",this._zoomOut.bind(t),"keydown"),this.keycharm.bind("-",this._stopZoom.bind(t),"keyup"),this.keycharm.bind("[",this._zoomIn.bind(t),"keydown"),this.keycharm.bind("[",this._stopZoom.bind(t),"keyup"),this.keycharm.bind("]",this._zoomOut.bind(t),"keydown"),this.keycharm.bind("]",this._stopZoom.bind(t),"keyup"),this.keycharm.bind("pageup",this._zoomIn.bind(t),"keydown"),this.keycharm.bind("pageup",this._stopZoom.bind(t),"keyup"),this.keycharm.bind("pagedown",this._zoomOut.bind(t),"keydown"),this.keycharm.bind("pagedown",this._stopZoom.bind(t),"keyup")),1==this.constants.dataManipulation.enabled&&(this.keycharm.bind("esc",this._createManipulatorBar.bind(t)),this.keycharm.bind("delete",this._deleteSelected.bind(t)))},s.prototype.destroy=function(){this.start=function(){},this.redraw=function(){},this.timer=!1,this._cleanupPhysicsConfiguration(),this.keycharm.reset(),this.hammer.dispose(),this.off(),this._recursiveDOMDelete(this.containerElement)},s.prototype._recursiveDOMDelete=function(t){for(;1==t.hasChildNodes();)this._recursiveDOMDelete(t.firstChild),t.removeChild(t.firstChild)},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){(new Date).valueOf()-this.touchTime>100&&(this.drag.pointer=this._getPointer(t.gesture.center),this.drag.pinched=!1,this.pinch.scale=this._getScale(),this.touchTime=(new Date).valueOf(),this._handleTouch(this.drag.pointer))},s.prototype._onDragStart=function(t){this._handleDragStart(t)},s.prototype._handleDragStart=function(t){void 0===this.drag.pointer&&this._onTouch(t);var e=this._getNodeAt(this.drag.pointer);if(this.drag.dragging=!0,this.drag.selection=[],this.drag.translation=this._getTranslation(),this.drag.nodeId=null,this.draggingNodes=!1,null!=e&&1==this.constants.dragNodes){this.draggingNodes=!0,this.drag.nodeId=e.id,e.isSelected()||this._selectObject(e,!1),this.emit("dragStart",{nodeIds:this.getSelection().nodes});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,this.drag.selection.push(o)}}},s.prototype._onDrag=function(t){this._handleOnDrag(t)},s.prototype._handleOnDrag=function(t){if(!this.drag.pinched){this.releaseNode();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){if(void 0===this.drag.pointer)return void this._handleDragStart(t);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(t){this._handleDragEnd(t)},s.prototype._handleDragEnd=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(),0==this.draggingNodes?this.emit("dragEnd",{nodeIds:[]}):this.emit("dragEnd",{nodeIds:this.getSelection().nodes})},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),s=!1;if(void 0!==this.popup&&(this.popup.hidden===!1&&this._checkHidePopup(i),this.popup.hidden===!1&&(s=!0,this.popup.setPosition(i.x+3,i.y-5),this.popup.show())),0==this.constants.keyboard.bindToWindow&&1==this.constants.keyboard.enabled&&this.frame.focus(),s===!1){var o=this,n=function(){o._checkShowPopup(i)};this.popupTimer&&clearInterval(this.popupTimer),this.drag.dragging||(this.popupTimer=setTimeout(n,this.constants.tooltip.delay))}if(1==this.constants.hover){for(var r in this.hoverObj.edges)this.hoverObj.edges.hasOwnProperty(r)&&(this.hoverObj.edges[r].hover=!1,delete this.hoverObj.edges[r]);var a=this._getNodeAt(i);null==a&&(a=this._getEdgeAt(i)),null!=a&&this._hoverObject(a);for(var d in this.hoverObj.nodes)this.hoverObj.nodes.hasOwnProperty(d)&&(a instanceof f&&a.id!=d||a instanceof g||null==a)&&(this._blurObject(this.hoverObj.nodes[d]),delete this.hoverObj.nodes[d]);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=void 0===this.popupObj?"":this.popupObj.id,o=!1,n="node";if(void 0==this.popupObj){var r=this.nodes,a=[];for(e in r)if(r.hasOwnProperty(e)){var h=r[e];h.isOverlappingWith(i)&&void 0!==h.getTitle()&&a.push(e)}a.length>0&&(this.popupObj=this.nodes[a[a.length-1]],o=!0)}if(void 0===this.popupObj&&0==o){var d=this.edges,l=[];for(e in d)if(d.hasOwnProperty(e)){var c=d[e];c.connected&&void 0!==c.getTitle()&&c.isOverlappingWith(i)&&l.push(e)}l.length>0&&(this.popupObj=this.edges[l[l.length-1]],n="edge")}this.popupObj?this.popupObj.id!=s&&(void 0===this.popup&&(this.popup=new v(this.frame,this.constants.tooltip)),this.popup.popupTargetType=n,this.popup.popupTargetId=this.popupObj.id,this.popup.setPosition(t.x+3,t.y-5),this.popup.setText(this.popupObj.getTitle()),this.popup.show()):this.popup&&this.popup.hide()},s.prototype._checkHidePopup=function(t){var e={left:this._XconvertDOMtoCanvas(t.x),top:this._YconvertDOMtoCanvas(t.y),right:this._XconvertDOMtoCanvas(t.x),bottom:this._YconvertDOMtoCanvas(t.y)},i=!1;if("node"==this.popup.popupTargetType){if(i=this.nodes[this.popup.popupTargetId].isOverlappingWith(e),i===!0){var s=this._getNodeAt(t);i=s.id==this.popup.popupTargetId}}else null===this._getNodeAt(t)&&(i=this.edges[this.popup.popupTargetId].isOverlappingWith(e));i===!1&&(this.popupObj=void 0,this.popup.hide())},s.prototype.setSize=function(t,e){var i=!1,s=this.frame.canvas.width,o=this.frame.canvas.height;t!=this.constants.width||e!=this.constants.height||this.frame.style.width!=t||this.frame.style.height!=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.pixelRatio,this.frame.canvas.height=this.frame.canvas.clientHeight*this.pixelRatio,this.constants.width=t,this.constants.height=e,i=!0):(this.frame.canvas.width!=this.frame.canvas.clientWidth*this.pixelRatio&&(this.frame.canvas.width=this.frame.canvas.clientWidth*this.pixelRatio,i=!0),this.frame.canvas.height!=this.frame.canvas.clientHeight*this.pixelRatio&&(this.frame.canvas.height=this.frame.canvas.clientHeight*this.pixelRatio,i=!0)),1==i&&this.emit("resize",{width:this.frame.canvas.width*this.pixelRatio,height:this.frame.canvas.height*this.pixelRatio,oldWidth:s*this.pixelRatio,oldHeight:o*this.pixelRatio})},s.prototype._setNodes=function(t){var e=this.nodesData;if(t instanceof d||t instanceof l)this.nodesData=t;else if(Array.isArray(t))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 f(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,e){for(var i=this.nodes,s=0,o=t.length;o>s;s++){var n=t[s],r=i[n],a=e[s];r?r.setProperties(a,this.constants):(r=new f(properties,this.images,this.groups,this.constants),i[n]=r)}this.moving=!0,1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateNodeIndexList(),this._updateValueRange(i),this._markAllEdgesAsDirty()},s.prototype._markAllEdgesAsDirty=function(){for(var t in this.edges)this.edges[t].colorDirty=!0},s.prototype._removeNodes=function(t){for(var e=this.nodes,i=0,s=t.length;s>i;i++)void 0!==this.selectionObj.nodes[t[i]]&&(this.nodes[t[i]].unselect(),this._removeFromSelection(this.nodes[t[i]]));for(var 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(Array.isArray(t))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(),this._updateCalculationNodes(),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout())},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++)void 0!==this.selectionObj.edges[t[i]]&&(e[t[i]].unselect(),this._removeFromSelection(e[t[i]]));for(var 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=[],e[t].dynamicEdges=[]);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,o=0;for(e in t)if(t.hasOwnProperty(e)){var n=t[e].getValue();void 0!==n&&(i=void 0===i?n:Math.min(n,i),s=void 0===s?n:Math.max(n,s),o+=n)}if(void 0!==i&&void 0!==s)for(e in t)t.hasOwnProperty(e)&&t[e].setValueRange(i,s,o)},s.prototype.redraw=function(){this.setSize(this.constants.width,this.constants.height),this._redraw()},s.prototype._requestRedraw=function(t){this.redrawRequested!==!0&&(this.redrawRequested=!0,this.requiresTimeout===!0?window.setTimeout(this._redraw.bind(this,t),0):window.requestAnimationFrame(this._redraw.bind(this,t,!0)))},s.prototype._redraw=function(t){void 0===t&&(t=!1),this.redrawRequested=!1;var e=this.frame.canvas.getContext("2d");e.setTransform(this.pixelRatio,0,0,this.pixelRatio,0,0);var i=this.frame.canvas.clientWidth,s=this.frame.canvas.clientHeight;e.clearRect(0,0,i,s),e.save(),e.translate(this.translation.x,this.translation.y),e.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)},t===!1&&(this._doInAllSectors("_drawAllSectorNodes",e),(0==this.drag.dragging||void 0===this.drag.dragging||0==this.constants.hideEdgesOnDrag)&&this._doInAllSectors("_drawEdges",e)),(0==this.drag.dragging||void 0===this.drag.dragging||0==this.constants.hideNodesOnDrag)&&this._doInAllSectors("_drawNodes",e,!1),t===!1&&1==this.controlNodesActive&&this._doInAllSectors("_drawControlNodes",e),e.restore(),t===!0&&e.clearRect(0,0,i,s)},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(t in i)i.hasOwnProperty(t)&&(i[t].discreteStepLimited(e,this.constants.maxVelocity),s=!0);else for(t in i)i.hasOwnProperty(t)&&(i[t].discreteStep(e),s=!0);if(1==s){var o=this.constants.minVelocity/Math.max(this.scale,.05);return o>.5*this.constants.maxVelocity?!0:this._isMoving(o)}return!1},s.prototype._revertPhysicsState=function(){var t=this.nodes;for(var e in t)t.hasOwnProperty(e)&&t[e].revertPosition()},s.prototype._revertPhysicsTick=function(){this._doInAllActiveSectors("_revertPhysicsState"),1==this.constants.smoothCurves.enabled&&1==this.constants.smoothCurves.dynamic&&this._doInSupportSector("_revertPhysicsState")},s.prototype._physicsTick=function(){if(!this.freezeSimulationEnabled&&1==this.moving){var t=!1,e=!1;this._doInAllActiveSectors("_initializeForceCalculation");var i=this._doInAllActiveSectors("_discreteStepNodes");1==this.constants.smoothCurves.enabled&&1==this.constants.smoothCurves.dynamic&&(e=this._doInSupportSector("_discreteStepNodes"));for(var s=0;s2*e||1==this.runDoubleSpeed)&&1==this.moving&&(this._physicsTick(),0!=this.renderTime&&(this.runDoubleSpeed=!0))}var i=Date.now();this._redraw(),this.renderTime=Date.now()-i,0==this.requiresTimeout&&this.start()},"undefined"!=typeof window&&(window.requestAnimationFrame=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||window.msRequestAnimationFrame),s.prototype.start=function(){if(1==this.freezeSimulationEnabled&&(this.moving=!1),1==this.moving||0!=this.xIncrement||0!=this.yIncrement||0!=this.zoomIncrement||1==this.animating)this.timer||(this.timer=1==this.requiresTimeout?window.setTimeout(this._animationStep.bind(this),this.renderTimestep):window.requestAnimationFrame(this._animationStep.bind(this)));else if(this._requestRedraw(),this.stabilizationIterations>1){var t=this,e={iterations:t.stabilizationIterations};this.stabilizationIterations=0,this.startedStabilization=!1,setTimeout(function(){t.emit("stabilized",e)},0)}else this.stabilizationIterations=0},s.prototype._handleNavigation=function(){if(0!=this.xIncrement||0!=this.yIncrement){var t=this._getTranslation();this._setTranslation(t.x+this.xIncrement,t.y+this.yIncrement)}if(0!=this.zoomIncrement){var e={x:this.frame.canvas.clientWidth/2,y:this.frame.canvas.clientHeight/2};this._zoom(this.scale*(1+this.zoomIncrement),e)}},s.prototype.freezeSimulation=function(t){1==t?(this.freezeSimulationEnabled=!0,this.moving=!1):(this.freezeSimulationEnabled=!1,this.moving=!0,this.start())},s.prototype._configureSmoothCurves=function(t){if(void 0===t&&(t=!0),1==this.constants.smoothCurves.enabled&&1==this.constants.smoothCurves.dynamic){this._createBezierNodes();for(var e in this.sectors.support.nodes)this.sectors.support.nodes.hasOwnProperty(e)&&void 0===this.edges[this.sectors.support.nodes[e].parentEdgeId]&&delete this.sectors.support.nodes[e]}else{this.sectors.support.nodes={};for(var i in this.edges)this.edges.hasOwnProperty(i)&&(this.edges[i].via=null)}this._updateCalculationNodes(),t||(this.moving=!0,this.start())},s.prototype._createBezierNodes=function(){if(1==this.constants.smoothCurves.enabled&&1==this.constants.smoothCurves.dynamic)for(var t in this.edges)if(this.edges.hasOwnProperty(t)){var e=this.edges[t];if(null==e.via){var i="edgeId:".concat(e.id);this.sectors.support.nodes[i]=new f({id:i,mass:1,shape:"circle",image:"",internalMultiplier:1},{},{},this.constants),e.via=this.sectors.support.nodes[i],e.via.parentEdgeId=e.id,e.positionBezierNode()}}},s.prototype._initializeMixinLoaders=function(){for(var t in y)y.hasOwnProperty(t)&&(s.prototype[t]=y[t])},s.prototype.storePosition=function(){console.log("storePosition is depricated: use .storePositions() from now on."),this.storePositions()},s.prototype.storePositions=function(){var t=[];for(var e in this.nodes)if(this.nodes.hasOwnProperty(e)){var i=this.nodes[e],s=!this.nodes.xFixed,o=!this.nodes.yFixed;(this.nodesData._data[e].x!=Math.round(i.x)||this.nodesData._data[e].y!=Math.round(i.y))&&t.push({id:e,x:Math.round(i.x),y:Math.round(i.y),allowedToMoveX:s,allowedToMoveY:o})}this.nodesData.update(t)},s.prototype.getPositions=function(t){var e={};if(void 0!==t){if(1==Array.isArray(t)){for(var i=0;i=1&&(this.animating=!1,this.easingTime=0,this._redraw=null!=this.lockedOnNodeId?this._lockedRedraw:this._classicRedraw,this.emit("animationFinished"))},s.prototype._classicRedraw=function(){},s.prototype.isActive=function(){return!this.activator||this.activator.active},s.prototype.setScale=function(){return this._setScale()},s.prototype.getScale=function(){return this._getScale()},s.prototype.getCenterCoordinates=function(){return this.DOMtoCanvas({x:.5*this.frame.canvas.clientWidth,y:.5*this.frame.canvas.clientHeight})},s.prototype.getBoundingBox=function(t){return void 0!==this.nodes[t]?this.nodes[t].boundingBox:void 0},s.prototype.getConnectedNodes=function(t){var e=[];if(void 0!==this.nodes[t])for(var i=this.nodes[t],s={nodeId:!0},o=0;o0){var i=this.groupIndex%this.groupsArray.length;this.groupIndex++,e={},e.color=this.groups[this.groupsArray[i]],this.groups[t]=e}else{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,this.groupsArray.push(t),e},t.exports=s},function(t){function e(){this.images={},this.imageBroken={},this.callback=void 0}e.prototype.setOnloadCallback=function(t){this.callback=t},e.prototype.load=function(t,e){var i=this.images[t];if(void 0===i){var s=this;i=new Image,i.onload=function(){0==this.width&&(document.body.appendChild(this),this.width=this.offsetWidth,this.height=this.offsetHeight,document.body.removeChild(this)),s.callback&&(s.images[t]=i,s.callback(this))},i.onerror=function(){void 0===e?(console.error("Could not load image:",t),delete this.src,s.callback&&s.callback(this)):s.imageBroken[t]===!0?this.src==e?(console.error("Could not load brokenImage:",e),delete this.src,s.callback&&s.callback(this)):(console.error("Could not load image:",t),this.src=e):(console.error("Could not load image:",t),this.src=e,s.imageBroken[t]=!0)},i.src=t}return i},t.exports=e},function(t,e,i){function s(t,e,i){if(!e)throw"No network provided";var s=["edges","physics"],n=o.selectiveBridgeObject(s,i);this.options=n.edges,this.physics=n.physics,this.options.smoothCurves=i.smoothCurves,this.network=e,this.id=void 0,this.fromId=void 0,this.toId=void 0,this.title=void 0,this.widthSelected=this.options.width*this.options.widthSelectionMultiplier,this.value=void 0,this.selected=!1,this.hover=!1,this.labelDimensions={top:0,left:0,width:0,height:0,yLine:0},this.dirtyLabel=!0,this.colorDirty=!0,this.from=null,this.to=null,this.via=null,this.fromBackup=null,this.toBackup=null,this.originalFromId=[],this.originalToId=[],this.connected=!1,this.widthFixed=!1,this.lengthFixed=!1,this.setProperties(t),this.controlNodesEnabled=!1,this.controlNodes={from:null,to:null,positions:{}},this.connectedNode=null}var o=i(1),n=i(40);s.prototype.setProperties=function(t){if(this.colorDirty=!0,t){var e=["style","fontSize","fontFace","fontColor","fontFill","fontStrokeWidth","fontStrokeColor","width","widthSelectionMultiplier","hoverWidth","arrowScaleFactor","dash","inheritColor","labelAlignment","opacity","customScalingFunction","useGradients"];switch(o.selectiveDeepExtend(e,this.options,t),void 0!==t.from&&(this.fromId=t.from),void 0!==t.to&&(this.toId=t.to),void 0!==t.id&&(this.id=t.id),void 0!==t.label&&(this.label=t.label,this.dirtyLabel=!0),void 0!==t.title&&(this.title=t.title),void 0!==t.value&&(this.value=t.value),void 0!==t.length&&(this.physics.springLength=t.length),void 0!==t.color&&(this.options.inheritColor=!1,o.isString(t.color)?(this.options.color.color=t.color,this.options.color.highlight=t.color):(void 0!==t.color.color&&(this.options.color.color=t.color.color),void 0!==t.color.highlight&&(this.options.color.highlight=t.color.highlight),void 0!==t.color.hover&&(this.options.color.hover=t.color.hover))),this.connect(),this.widthFixed=this.widthFixed||void 0!==t.width,this.lengthFixed=this.lengthFixed||void 0!==t.length,this.widthSelected=this.options.width*this.options.widthSelectionMultiplier,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}}},s.prototype.connect=function(){this.disconnect(),this.from=this.network.nodes[this.fromId]||null,this.to=this.network.nodes[this.toId]||null,this.connected=this.from&&this.to,this.connected?(this.from.attachEdge(this),this.to.attachEdge(this)):(this.from&&this.from.detachEdge(this),this.to&&this.to.detachEdge(this))},s.prototype.disconnect=function(){this.from&&(this.from.detachEdge(this),this.from=null),this.to&&(this.to.detachEdge(this),this.to=null),this.connected=!1},s.prototype.getTitle=function(){return"function"==typeof this.title?this.title():this.title},s.prototype.getValue=function(){return this.value},s.prototype.setValueRange=function(t,e,i){if(!this.widthFixed&&void 0!==this.value){var s=this.options.customScalingFunction(t,e,i,this.value),o=this.options.widthMax-this.options.widthMin;this.options.width=this.options.widthMin+s*o,this.widthSelected=this.options.width*this.options.widthSelectionMultiplier}},s.prototype.draw=function(){throw"Method draw not initialized in edge"},s.prototype.isOverlappingWith=function(t){if(this.connected){var e=10,i=this.from.x,s=this.from.y,o=this.to.x,n=this.to.y,r=t.left,a=t.top,h=this._getDistanceToEdge(i,s,o,n,r,a);return e>h}return!1},s.prototype._getColor=function(t){var e=this.options.color;if(1==this.options.useGradients){var i,s,n=t.createLinearGradient(this.from.x,this.from.y,this.to.x,this.to.y);return i=this.from.options.color.highlight.border,s=this.to.options.color.highlight.border,0==this.from.selected&&0==this.to.selected?(i=o.overrideOpacity(this.from.options.color.border,this.options.opacity),s=o.overrideOpacity(this.to.options.color.border,this.options.opacity)):1==this.from.selected&&0==this.to.selected?s=this.to.options.color.border:0==this.from.selected&&1==this.to.selected&&(i=this.from.options.color.border),n.addColorStop(0,i),n.addColorStop(1,s),n}return this.colorDirty===!0&&("to"==this.options.inheritColor?e={highlight:this.to.options.color.highlight.border,hover:this.to.options.color.hover.border,color:o.overrideOpacity(this.from.options.color.border,this.options.opacity)}:("from"==this.options.inheritColor||1==this.options.inheritColor)&&(e={highlight:this.from.options.color.highlight.border,hover:this.from.options.color.hover.border,color:o.overrideOpacity(this.from.options.color.border,this.options.opacity)}),this.options.color=e,this.colorDirty=!1),1==this.selected?e.highlight:1==this.hover?e.hover:e.color},s.prototype._drawLine=function(t){if(t.strokeStyle=this._getColor(t),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.max(Math.min(this.widthSelected,this.options.widthMax),.3*this.networkScaleInv):1==this.hover?Math.max(Math.min(this.options.hoverWidth,this.options.widthMax),.3*this.networkScaleInv):Math.max(this.options.width,.3*this.networkScaleInv)},s.prototype._getViaCoordinates=function(){if(1==this.options.smoothCurves.dynamic&&1==this.options.smoothCurves.enabled)return this.via;if(0==this.options.smoothCurves.enabled)return{x:0,y:0};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);if("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));else if("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.yd;d++){var l=t.measureText(n[d]).width;h=l>h?l:h}var c=this.options.fontSize*r,p=i-h/2,u=s-c/2;this.labelDimensions={top:u,left:p,width:h,height:c,yLine:o}}var o=this.labelDimensions.yLine;t.save(),"horizontal"!=this.options.labelAlignment&&(t.translate(i,o),this._rotateForLabelAlignment(t),i=0,o=0),this._drawLabelRect(t),this._drawLabelText(t,i,o,n,r,a),t.restore()}},s.prototype._rotateForLabelAlignment=function(t){var e=this.from.y-this.to.y,i=this.from.x-this.to.x,s=Math.atan2(e,i);(-1>s&&0>i||s>0&&0>i)&&(s+=Math.PI),t.rotate(s)},s.prototype._drawLabelRect=function(t){if(void 0!==this.options.fontFill&&null!==this.options.fontFill&&"none"!==this.options.fontFill){t.fillStyle=this.options.fontFill;var e=2;"line-center"==this.options.labelAlignment?t.fillRect(.5*-this.labelDimensions.width,.5*-this.labelDimensions.height,this.labelDimensions.width,this.labelDimensions.height):"line-above"==this.options.labelAlignment?t.fillRect(.5*-this.labelDimensions.width,-(this.labelDimensions.height+e),this.labelDimensions.width,this.labelDimensions.height):"line-below"==this.options.labelAlignment?t.fillRect(.5*-this.labelDimensions.width,e,this.labelDimensions.width,this.labelDimensions.height):t.fillRect(this.labelDimensions.left,this.labelDimensions.top,this.labelDimensions.width,this.labelDimensions.height)}},s.prototype._drawLabelText=function(t,e,i,s,o,n){if(t.fillStyle=this.options.fontColor||"black",t.textAlign="center","horizontal"!=this.options.labelAlignment){var r=2;"line-above"==this.options.labelAlignment?(t.textBaseline="alphabetic",i-=2*r):"line-below"==this.options.labelAlignment?(t.textBaseline="hanging",i+=2*r):t.textBaseline="middle"}else t.textBaseline="middle";this.options.fontStrokeWidth>0&&(t.lineWidth=this.options.fontStrokeWidth,t.strokeStyle=this.options.fontStrokeColor,t.lineJoin="round");for(var a=0;o>a;a++)this.options.fontStrokeWidth>0&&t.strokeText(s[a],e,i),t.fillText(s[a],e,i),i+=n},s.prototype._drawDashLine=function(t){t.strokeStyle=this._getColor(t),t.lineWidth=this._getLineWidth();var e=null;if(void 0!==t.setLineDash){t.save();var i=[0];i=void 0!==this.options.dash.length&&void 0!==this.options.dash.gap?[this.options.dash.length,this.options.dash.gap]:[5,5],t.setLineDash(i),t.lineDashOffset=0,e=this._line(t),t.setLineDash([0]),t.lineDashOffset=0,t.restore()}else t.beginPath(),t.lineCap="round",void 0!==this.options.dash.altLength?t.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]):void 0!==this.options.dash.length&&void 0!==this.options.dash.gap?t.dashedLine(this.from.x,this.from.y,this.to.x,this.to.y,[this.options.dash.length,this.options.dash.gap]):(t.moveTo(this.from.x,this.from.y),t.lineTo(this.to.x,this.to.y)),t.stroke();if(this.label){var s;if(1==this.options.smoothCurves.enabled&&null!=e){var o=.5*(.5*(this.from.x+e.x)+.5*(this.to.x+e.x)),n=.5*(.5*(this.from.y+e.y)+.5*(this.to.y+e.y));s={x:o,y:n}}else s=this._pointOnLine(.5);this._label(t,this.label,s.x,s.y)}},s.prototype._pointOnLine=function(t){return{x:(1-t)*this.from.x+t*this.to.x,y:(1-t)*this.from.y+t*this.to.y}},s.prototype._pointOnCircle=function(t,e,i,s){var o=2*(s-3/8)*Math.PI;return{x:t+i*Math.cos(o),y:e-i*Math.sin(o)}},s.prototype._drawArrowCenter=function(t){var e;if(t.strokeStyle=this._getColor(t),t.fillStyle=t.strokeStyle,t.lineWidth=this._getLineWidth(),this.from!=this.to){var i=this._line(t),s=Math.atan2(this.to.y-this.from.y,this.to.x-this.from.x),o=(10+5*this.options.width)*this.options.arrowScaleFactor;if(1==this.options.smoothCurves.enabled&&null!=i){var n=.5*(.5*(this.from.x+i.x)+.5*(this.to.x+i.x)),r=.5*(.5*(this.from.y+i.y)+.5*(this.to.y+i.y));e={x:n,y:r}}else e=this._pointOnLine(.5);t.arrow(e.x,e.y,s,o),t.fill(),t.stroke(),this.label&&this._label(t,this.label,e.x,e.y)}else{var a,h,d=.25*Math.max(100,this.physics.springLength),l=this.from;l.width||l.resize(t),l.width>l.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._pointOnBezier=function(t){var e=this._getViaCoordinates(),i=Math.pow(1-t,2)*this.from.x+2*t*(1-t)*e.x+Math.pow(t,2)*this.to.x,s=Math.pow(1-t,2)*this.from.y+2*t*(1-t)*e.y+Math.pow(t,2)*this.to.y;return{x:i,y:s}},s.prototype._findBorderPosition=function(t,e){var i,s,o,n,r,a=10,h=0,d=0,l=1,c=.2,p=this.to;for(1==t&&(p=this.from);l>=d&&a>h;){var u=.5*(d+l);if(i=this._pointOnBezier(u),s=Math.atan2(p.y-i.y,p.x-i.x),o=p.distanceToBorder(e,s),n=Math.sqrt(Math.pow(i.x-p.x,2)+Math.pow(i.y-p.y,2)),r=o-n,Math.abs(r)r?0==t?d=u:l=u:0==t?l=u:d=u,h++}return i.t=u,i},s.prototype._drawArrow=function(t){t.strokeStyle=this._getColor(t),t.fillStyle=t.strokeStyle,t.lineWidth=this._getLineWidth();var e,i,s;if(this.from!=this.to){if(this._line(t),1==this.options.smoothCurves.enabled){var o=this._getViaCoordinates();s=this._findBorderPosition(!1,t);var n=this._pointOnBezier(Math.max(0,s.t-.1));e=Math.atan2(s.y-n.y,s.x-n.x)}else{e=Math.atan2(this.to.y-this.from.y,this.to.x-this.from.x);var r=this.to.x-this.from.x,a=this.to.y-this.from.y,h=Math.sqrt(r*r+a*a),d=this.to.distanceToBorder(t,e),l=(h-d)/h;s={},s.x=(1-l)*this.from.x+l*this.to.x,s.y=(1-l)*this.from.y+l*this.to.y}if(i=(10+5*this.options.width)*this.options.arrowScaleFactor,t.arrow(s.x,s.y,e,i),t.fill(),t.stroke(),this.label){var c;c=1==this.options.smoothCurves.enabled&&null!=o?this._pointOnBezier(.5):this._pointOnLine(.5),this._label(t,this.label,c.x,c.y)}}else{var p,u,m,f=this.from,g=.25*Math.max(100,this.physics.springLength);f.width||f.resize(t),f.width>f.height?(p=f.x+.5*f.width,u=f.y-g,m={x:p,y:f.y,angle:.9*Math.PI}):(p=f.x+g,u=f.y-.5*f.height,m={x:f.x,y:u,angle:.6*Math.PI}),t.beginPath(),t.arc(p,u,g,0,2*Math.PI,!1),t.stroke();var i=(10+5*this.options.width)*this.options.arrowScaleFactor;t.arrow(m.x,m.y,m.angle,i),t.fill(),t.stroke(),this.label&&(c=this._pointOnCircle(p,u,g,.5),this._label(t,this.label,c.x,c.y))}},s.prototype._getDistanceToEdge=function(t,e,i,s,o,n){var r=0;if(this.from!=this.to)if(1==this.options.smoothCurves.enabled){var a,h;if(1==this.options.smoothCurves.enabled&&1==this.options.smoothCurves.dynamic)a=this.via.x,h=this.via.y;else{var d=this._getViaCoordinates();a=d.x,h=d.y}var l,c,p,u,m,f,g,v=1e9;for(c=0;10>c;c++)p=.1*c,u=Math.pow(1-p,2)*t+2*p*(1-p)*a+Math.pow(p,2)*i,m=Math.pow(1-p,2)*e+2*p*(1-p)*h+Math.pow(p,2)*s,c>0&&(l=this._getDistanceToLine(f,g,u,m,o,n),v=v>l?l:v),f=u,g=m;r=v}else r=this._getDistanceToLine(t,e,i,s,o,n);else{var u,m,y,b,_=.25*this.physics.springLength,x=this.from;x.width>x.height?(u=x.x+.5*x.width,m=x.y-_):(u=x.x+_,m=x.y-.5*x.height),y=u-o,b=m-n,r=Math.abs(Math.sqrt(y*y+b*b)-_)}return this.labelDimensions.lefto&&this.labelDimensions.topn?0:r},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)):null!==this.via&&(this.via.x=0,this.via.y=0)},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:7,borderWidth:2,borderWidthSelected:2},physics:{damping:0},clustering:{maxNodeSizeIncrements:0,nodeScaling:{width:0,height:0,radius:0}}};this.controlNodes.from=new n({id:e,shape:"dot",color:{background:"#ff0000",border:"#3c3c3c",highlight:{background:"#07f968"}}},{},{},s),this.controlNodes.to=new n({id:i,shape:"dot",color:{background:"#ff0000",border:"#3c3c3c",highlight:{background:"#07f968"}}},{},{},s)}this.controlNodes.positions={},0==this.controlNodes.from.selected&&(this.controlNodes.positions.from=this.getControlNodeFromPosition(t),this.controlNodes.from.x=this.controlNodes.positions.from.x,this.controlNodes.from.y=this.controlNodes.positions.from.y),0==this.controlNodes.to.selected&&(this.controlNodes.positions.to=this.getControlNodeToPosition(t),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.fromBackup=this.from,this.toBackup=this.to,this.controlNodesEnabled=!0},s.prototype._disableControlNodes=function(){this.fromId=this.from.id,this.toId=this.to.id,this.fromId!=this.fromBackup.id?this.fromBackup.detachEdge(this):this.toId!=this.toBackup.id&&this.toBackup.detachEdge(this),this.fromBackup=null,this.toBackup=null,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.getControlNodeFromPosition=function(t){var e;if(1==this.options.smoothCurves.enabled)e=this._findBorderPosition(!0,t);else{var 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;e={},e.x=a*this.from.x+(1-a)*this.to.x,e.y=a*this.from.y+(1-a)*this.to.y}return e},s.prototype.getControlNodeToPosition=function(t){var e;if(1==this.options.smoothCurves.enabled)e=this._findBorderPosition(!1,t);else{var 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.to.distanceToBorder(t,i),a=(n-r)/n;e={},e.x=(1-a)*this.from.x+a*this.to.x,e.y=(1-a)*this.from.y+a*this.to.y}return e},t.exports=s},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.id=void 0,this.allowedToMoveX=!1,this.allowedToMoveY=!1,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.hierarchyEnumerated=!1,this.labelDimensions={top:0,left:0,width:0,height:0,yLine:0},this.boundingBox={top:0,left:0,right:0,bottom:0},this.imagelist=e,this.grouplist=i,this.fx=0,this.fy=0,this.vx=0,this.vy=0,this.x=null,this.y=null,this.predefinedPosition=!1,this.previousState={vx:0,vy:0,x:0,y:0},this.damping=s.physics.damping,this.fixedData={x:null,y:null},this.setProperties(t,n),this.resetCluster(),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.revertPosition=function(){this.x=this.previousState.x,this.y=this.previousState.y,this.vx=this.previousState.vx,this.vy=this.previousState.vy},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)},s.prototype.detachEdge=function(t){var e=this.edges.indexOf(t);-1!=e&&this.edges.splice(e,1),e=this.dynamicEdges.indexOf(t),-1!=e&&this.dynamicEdges.splice(e,1)},s.prototype.setProperties=function(t,e){if(t){var i=["borderWidth","borderWidthSelected","shape","image","brokenImage","radius","fontColor","fontSize","fontFace","fontFill","fontStrokeWidth","fontStrokeColor","group","mass","fontDrawThreshold","scaleFontWithValue","fontSizeMaxVisible","customScalingFunction","iconFontFace","icon","iconColor","iconSize"];if(o.selectiveDeepExtend(i,this.options,t),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,this.predefinedPosition=!0),void 0!==t.y&&(this.y=t.y,this.predefinedPosition=!0),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 t.group||"string"==typeof t.group&&""!=t.group){var s=this.grouplist.get(t.group);o.deepExtend(this.options,s),this.options.color=o.parseColor(this.options.color)}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,this.options.brokenImage)}switch(void 0!==t.allowedToMoveX?(this.xFixed=!t.allowedToMoveX,this.allowedToMoveX=t.allowedToMoveX):void 0!==t.x&&0==this.allowedToMoveX&&(this.xFixed=!0),void 0!==t.allowedToMoveY?(this.yFixed=!t.allowedToMoveY,this.allowedToMoveY=t.allowedToMoveY):void 0!==t.y&&0==this.allowedToMoveY&&(this.yFixed=!0),this.radiusFixed=this.radiusFixed||void 0!==t.radius,("image"===this.options.shape||"circularImage"===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"circularImage":this.draw=this._drawCircularImage,this.resize=this._resizeCircularImage;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;case"icon":this.draw=this._drawIcon,this.resize=this._resizeIcon;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.storeState=function(){this.previousState.x=this.x,this.previousState.y=this.y,this.previousState.vx=this.vx,this.previousState.vy=this.vy},s.prototype.discreteStep=function(t){if(this.storeState(),this.xFixed)this.fx=0,this.vx=0;else{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)this.fy=0,this.vy=0;else{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.storeState(),this.xFixed)this.fx=0,this.vx=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,this.vy=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,i){if(!this.radiusFixed&&void 0!==this.value){var s=this.options.customScalingFunction(t,e,i,this.value),o=this.options.radiusMax-this.options.radiusMin;if(1==this.options.scaleFontWithValue){var n=this.options.fontSizeMax-this.options.fontSizeMin;this.options.fontSize=this.options.fontSizeMin+s*n}this.options.radius=this.options.radiusMin+s*o}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._drawImageAtPosition=function(t){if(0!=this.imageObj.width){if(this.clusterSize>1){var e=this.clusterSize>1?10:0;e*=this.networkScaleInv,e=Math.min(.2*this.width,e),t.globalAlpha=.5,t.drawImage(this.imageObj,this.left-e,this.top-e,this.width+2*e,this.height+2*e)}t.globalAlpha=1,t.drawImage(this.imageObj,this.left,this.top,this.width,this.height)}},s.prototype._drawImageLabel=function(t){var e,i=0;if(this.height){i=this.height/2;var s=this.getTextSize(t);s.lineCount>=1&&(i+=s.height/2,i+=3)}e=this.y+i,this._label(t,this.label,this.x,e,void 0)},s.prototype._drawImage=function(t){this._resizeImage(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2,this._drawImageAtPosition(t),this.boundingBox.top=this.top,this.boundingBox.left=this.left,this.boundingBox.right=this.left+this.width,this.boundingBox.bottom=this.top+this.height,this._drawImageLabel(t),this.boundingBox.left=Math.min(this.boundingBox.left,this.labelDimensions.left),this.boundingBox.right=Math.max(this.boundingBox.right,this.labelDimensions.left+this.labelDimensions.width),this.boundingBox.bottom=Math.max(this.boundingBox.bottom,this.boundingBox.bottom+this.labelDimensions.height)},s.prototype._resizeCircularImage=function(t){if(this.imageObj.src&&this.imageObj.width&&this.imageObj.height)this._swapToImageResizeWhenImageLoaded&&(this.width=0,this.height=0,delete this._swapToImageResizeWhenImageLoaded),this._resizeImage(t);else if(!this.width){var e=2*this.options.radius;this.width=e,this.height=e,this.options.radius+=.5*Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.options.radius-.5*e,this._swapToImageResizeWhenImageLoaded=!0}},s.prototype._drawCircularImage=function(t){this._resizeCircularImage(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var e=this.left+this.width/2,i=this.top+this.height/2,s=Math.abs(this.height/2);this._drawRawCircle(t,e,i,s),t.save(),t.circle(this.x,this.y,s),t.stroke(),t.clip(),this._drawImageAtPosition(t),t.restore(),this.boundingBox.top=this.y-this.options.radius,this.boundingBox.left=this.x-this.options.radius,this.boundingBox.right=this.x+this.options.radius,this.boundingBox.bottom=this.y+this.options.radius,this._drawImageLabel(t),this.boundingBox.left=Math.min(this.boundingBox.left,this.labelDimensions.left),this.boundingBox.right=Math.max(this.boundingBox.right,this.labelDimensions.left+this.labelDimensions.width),this.boundingBox.bottom=Math.max(this.boundingBox.bottom,this.boundingBox.bottom+this.labelDimensions.height)},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.hover?this.options.color.hover.background:this.options.color.background,t.roundRect(this.left,this.top,this.width,this.height,this.options.radius),t.fill(),t.stroke(),this.boundingBox.top=this.top,this.boundingBox.left=this.left,this.boundingBox.right=this.left+this.width,this.boundingBox.bottom=this.top+this.height,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.boundingBox.top=this.top,this.boundingBox.left=this.left,this.boundingBox.right=this.left+this.width,this.boundingBox.bottom=this.top+this.height,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._drawRawCircle=function(t,e,i,s){var o=2.5,n=this.options.borderWidth,r=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?r:n)+(this.clusterSize>1?o:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.circle(e,i,s+2*t.lineWidth),t.stroke()),t.lineWidth=(this.selected?r:n)+(this.clusterSize>1?o: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,s),t.fill(),t.stroke()},s.prototype._drawCircle=function(t){this._resizeCircle(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2,this._drawRawCircle(t,this.x,this.y,this.options.radius),this.boundingBox.top=this.y-this.options.radius,this.boundingBox.left=this.x-this.options.radius,this.boundingBox.right=this.x+this.options.radius,this.boundingBox.bottom=this.y+this.options.radius,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.boundingBox.top=this.top,this.boundingBox.left=this.left,this.boundingBox.right=this.left+this.width,this.boundingBox.bottom=this.top+this.height,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.boundingBox.top=this.y-this.options.radius,this.boundingBox.left=this.x-this.options.radius,this.boundingBox.right=this.x+this.options.radius,this.boundingBox.bottom=this.y+this.options.radius,this.label&&(this._label(t,this.label,this.x,this.y+this.height/2,void 0,"hanging",!0),this.boundingBox.left=Math.min(this.boundingBox.left,this.labelDimensions.left),this.boundingBox.right=Math.max(this.boundingBox.right,this.labelDimensions.left+this.labelDimensions.width),this.boundingBox.bottom=Math.max(this.boundingBox.bottom,this.boundingBox.bottom+this.labelDimensions.height))},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),this.boundingBox.top=this.top,this.boundingBox.left=this.left,this.boundingBox.right=this.left+this.width,this.boundingBox.bottom=this.top+this.height},s.prototype._resizeIcon=function(){if(!this.width){var t=5,e={width:Number(this.options.iconSize),height:Number(this.options.iconSize)};this.width=e.width+2*t,this.height=e.height+2*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+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.width-(e.width+2*t)}},s.prototype._drawIcon=function(t){if(this._resizeIcon(t),this.options.iconSize=this.options.iconSize||50,this.left=this.x-this.width/2,this.top=this.y-this.height/2,this._icon(t),this.boundingBox.top=this.y-this.options.iconSize/2,this.boundingBox.left=this.x-this.options.iconSize/2,this.boundingBox.right=this.x+this.options.iconSize/2,this.boundingBox.bottom=this.y+this.options.iconSize/2,this.label){var e=5;this._label(t,this.label,this.x,this.y+this.height/2+e,"top",!0),this.boundingBox.left=Math.min(this.boundingBox.left,this.labelDimensions.left),this.boundingBox.right=Math.max(this.boundingBox.right,this.labelDimensions.left+this.labelDimensions.width),this.boundingBox.bottom=Math.max(this.boundingBox.bottom,this.boundingBox.bottom+this.labelDimensions.height)}},s.prototype._icon=function(t){var e=Number(this.options.iconSize)*this.networkScale;if(this.options.icon&&e>this.options.fontDrawThreshold-1){var i=Number(this.options.iconSize);t.font=(this.selected?"bold ":"")+i+"px "+this.options.iconFontFace,t.fillStyle=this.options.iconColor||"black",t.textAlign="center",t.textBaseline="middle",t.fillText(this.options.icon,this.x,this.y)}},s.prototype._label=function(t,e,i,s,n,r,a){var h=Number(this.options.fontSize)*this.networkScale;if(e&&h>=this.options.fontDrawThreshold-1){var d=Number(this.options.fontSize);h>=this.options.fontSizeMaxVisible&&(d=Number(this.options.fontSizeMaxVisible)*this.networkScaleInv);var l=this.options.fontColor||"#000000",c=this.options.fontStrokeColor;if(h<=this.options.fontDrawThreshold){var p=Math.max(0,Math.min(1,1-(this.options.fontDrawThreshold-h)));l=o.overrideOpacity(l,p),c=o.overrideOpacity(c,p)}t.font=(this.selected?"bold ":"")+d+"px "+this.options.fontFace;var u=e.split("\n"),m=u.length,f=s+(1-m)/2*d;1==a&&(f=s+(1-m)/(2*d));for(var g=t.measureText(u[0]).width,v=1;m>v;v++){var y=t.measureText(u[v]).width;g=y>g?y:g}var b=d*m,_=i-g/2,x=s-b/2;"hanging"==r&&(x+=.5*d,x+=4,f+=4),this.labelDimensions={top:x,left:_,width:g,height:b,yLine:f},void 0!==this.options.fontFill&&null!==this.options.fontFill&&"none"!==this.options.fontFill&&(t.fillStyle=this.options.fontFill,t.fillRect(_,x,g,b)),t.fillStyle=l,t.textAlign=n||"center",t.textBaseline=r||"middle",this.options.fontStrokeWidth>0&&(t.lineWidth=this.options.fontStrokeWidth,t.strokeStyle=c,t.lineJoin="round");for(var v=0;m>v;v++)this.options.fontStrokeWidth&&t.strokeText(u[v],i,f),t.fillText(u[v],i,f),f+=d}},s.prototype.getTextSize=function(t){if(void 0!==this.label){var e=Number(this.options.fontSize);e*this.networkScale>this.options.fontSizeMaxVisible&&(e=Number(this.options.fontSizeMaxVisible)*this.networkScaleInv),t.font=(this.selected?"bold ":"")+e+"px "+this.options.fontFace;for(var i=this.label.split("\n"),s=(e+4)*i.length,o=0,n=0,r=i.length;r>n;n++)o=Math.max(o,t.measureText(i[n]).width);return{width:o,height:s,lineCount:i.length}}return{width:0,height:0,lineCount: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(N=D.NULL,k="";" "==E||" "==E||"\n"==E||"\r"==E;)o();do{var t=!1;if("#"==E){for(var e=O-1;" "==T.charAt(e)||" "==T.charAt(e);)e--;if("\n"==T.charAt(e)||""==T.charAt(e)){for(;""!=E&&"\n"!=E;)o();t=!0}}if("/"==E&&"/"==n()){for(;""!=E&&"\n"!=E;)o();t=!0}if("/"==E&&"*"==n()){for(;""!=E;){if("*"==E&&"/"==n()){o(),o();break}o()}t=!0}for(;" "==E||" "==E||"\n"==E||"\r"==E;)o()}while(t);if(""==E)return void(N=D.DELIMITER);var i=E+n();if(C[i])return N=D.DELIMITER,k=i,o(),void o();if(C[E])return N=D.DELIMITER,k=E,void o();if(r(E)||"-"==E){for(k+=E,o();r(E);)k+=E,o();return"false"==k?k=!1:"true"==k?k=!0:isNaN(Number(k))||(k=Number(k)),void(N=D.IDENTIFIER)}if('"'==E){for(o();""!=E&&('"'!=E||'"'==E&&'"'==n());)k+=E,'"'==E&&o(),o();if('"'!=E)throw x('End of string " expected');return o(),void(N=D.IDENTIFIER)}for(N=D.UNKNOWN;""!=E;)k+=E,o();throw new SyntaxError('Syntax error in part "'+w(k,30)+'"')}function u(){var t={};if(s(),p(),"strict"==k&&(t.strict=!0,p()),("graph"==k||"digraph"==k)&&(t.type=k,p()),N==D.IDENTIFIER&&(t.id=k,p()),"{"!=k)throw x("Angle bracket { expected");if(p(),m(t),"}"!=k)throw x("Angle bracket } expected");if(p(),""!==k)throw x("End of file expected");return p(),delete t.node,delete t.edge,delete t.graph,t}function m(t){for(;""!==k&&"}"!=k;)f(t),";"==k&&p()}function f(t){var e=g(t);if(e)return void b(t,e);var i=v(t);if(!i){if(N!=D.IDENTIFIER)throw x("Identifier expected");var s=k;if(p(),"="==k){if(p(),N!=D.IDENTIFIER)throw x("Identifier expected");t[s]=k,p()}else y(t,s)}}function g(t){var e=null;if("subgraph"==k&&(e={},e.type="subgraph",p(),N==D.IDENTIFIER&&(e.id=k,p())),"{"==k){if(p(),e||(e={}),e.parent=t,e.node=t.node,e.edge=t.edge,e.graph=t.graph,m(e),"}"!=k)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"==k?(p(),t.node=_(),"node"):"edge"==k?(p(),t.edge=_(),"edge"):"graph"==k?(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(;"->"==k||"--"==k;){var i,s=k;p();var o=g(t);if(o)i=o;else{if(N!=D.IDENTIFIER)throw x("Identifier or subgraph expected");i=k,d(t,{id:i}),p()}var n=_(),r=c(t,e,i,s,n);l(t,r),e=i}}function _(){for(var t=null;"["==k;){for(p(),t={};""!==k&&"]"!=k;){if(N!=D.IDENTIFIER)throw x("Attribute name expected");var e=k;if(p(),"="!=k)throw x("Equal sign = expected");if(p(),N!=D.IDENTIFIER)throw x("Attribute value expected");var i=k;h(t,e,i),p(),","==k&&p()}if("]"!=k)throw x("Bracket ] expected");p()}return t}function x(t){return new SyntaxError(t+', got "'+w(k,30)+'" (char '+O+")")}function w(t,e){return t.length<=e?t:t.substr(0,27)+"..."}function M(t,e,i){Array.isArray(t)?t.forEach(function(t){Array.isArray(e)?e.forEach(function(e){i(t,e)}):i(t,e)}):Array.isArray(e)?e.forEach(function(e){i(t,e)}):i(t,e)}function S(t){var e=i(t),s={nodes:[],edges:[],options:{}};if(e.nodes&&e.nodes.forEach(function(t){var e={id:t.id,label:String(t.label||t.id)};a(e,t.attr),e.image&&(e.shape="image"),s.nodes.push(e)}),e.edges){var o=function(t){var e={from:t.from,to:t.to};return a(e,t.attr),e.style="->"==t.type?"arrow":"line",e};e.edges.forEach(function(t){var e,i;e=t.from instanceof Object?t.from.nodes:{id:t.from},i=t.to instanceof Object?t.to.nodes:{id:t.to},t.from instanceof Object&&t.from.edges&&t.from.edges.forEach(function(t){var e=o(t);s.edges.push(e)}),M(e,i,function(e,i){var n=c(s,e.id,i.id,t.type,t.attr),r=o(n);s.edges.push(r)}),t.to instanceof Object&&t.to.edges&&t.to.edges.forEach(function(t){var e=o(t);s.edges.push(e)})})}return e.attr&&(s.options=e.attr),s}var D={NULL:0,DELIMITER:1,IDENTIFIER:2,UNKNOWN:3},C={"{":!0,"}":!0,"[":!0,"]":!0,";":!0,"=":!0,",":!0,"->":!0,"--":!0},T="",O=0,E="",k="",N=D.NULL,I=/[a-zA-Z_0-9.:#]/;e.parseDOT=i,e.DOTToGraph=S},function(t,e,i){t.exports="undefined"!=typeof window&&window.moment||i(58)},function(t,e,i){t.exports="undefined"!=typeof window?window.Hammer||i(59):function(){throw Error("hammer.js is only available in a browser, not in node.js.")}},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;r0?Math.max.apply(null,i)+1:1):(this.customBarIds.forEach(function(t){if(t===e)throw new Error("Custom time ID already exists")}),o=e),this.customBarIds.push(o),s=new d(this.body,{showCustomTime:!0,time:n,id:o}),this.components.push(s),this.redraw(),o},s.prototype.removeCustomTime=function(t){var e=this;this.components.forEach(function(i,s,o){i instanceof d&&i.options.id===t&&0!==i.options.id&&(e.customBarIds.splice(e.customBarIds.indexOf(t),1),o.splice(s,1),i.destroy())})},s.prototype.getVisibleItems=function(){return this.itemSet&&this.itemSet.getVisibleItems()||[]},s.prototype.clear=function(t){(!t||t.items)&&this.setItems(null),(!t||t.groups)&&this.setGroups(null),(!t||t.options)&&(this.components.forEach(function(t){t.setOptions(t.defaultOptions)}),this.setOptions(this.defaultOptions))},s.prototype.fit=function(t){var e=this._getDataRange();if(null!==e.start||null!==e.end){var i=t&&void 0!==t.animate?t.animate:!0;this.range.setRange(e.start,e.end,i)}},s.prototype._getDataRange=function(){var t=this.getItemRange(),e=t.min,i=t.max;if(null!=e&&null!=i){var s=i.valueOf()-e.valueOf();0>=s&&(s=864e5),e=new Date(e.valueOf()-.05*s),i=new Date(i.valueOf()+.05*s)}return{start:e,end:i}},s.prototype.setWindow=function(t,e,i){var s;if(1==arguments.length){var o=arguments[0];s=void 0!==o.animate?o.animate:!0,this.range.setRange(o.start,o.end,s)}else s=i&&void 0!==i.animate?i.animate:!0,this.range.setRange(t,e,s)},s.prototype.moveTo=function(t,e){var i=this.range.end-this.range.start,s=r.convert(t,"Date").valueOf(),o=s-i/2,n=s+i/2,a=e&&void 0!==e.animate?e.animate:!0;this.range.setRange(o,n,a)},s.prototype.getWindow=function(){var t=this.range.getRange();return{start:new Date(t.start),end:new Date(t.end)}},s.prototype.redraw=function(){this._redraw()},s.prototype._redraw=function(){var t=!1,e=this.options,i=this.props,s=this.dom;if(s){h.updateHiddenDates(this.body,this.options.hiddenDates),"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;0===s.centerContainer.clientHeight&&(i.border.left=i.border.top,i.border.right=i.border.left),0===s.root.clientHeight&&(n=o),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),d=i.top.height+a+i.bottom.height+o+i.border.top+i.border.bottom;s.root.style.height=r.option.asSize(e.height,d+"px"),i.root.height=s.root.offsetHeight,i.background.height=i.root.height-o;var l=i.root.height-i.top.height-i.bottom.height-o;i.centerContainer.height=l,i.leftContainer.height=l,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 c=i.root.width-i.left.width-i.right.width-n;i.center.width=c,i.centerContainer.width=c,i.top.width=c,i.bottom.width=c,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+i.border.left+"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 p=this.props.scrollTop;"bottom"==e.orientation&&(p+=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=p+"px",s.left.style.left="0",s.left.style.top=p+"px",s.right.style.left="0",s.right.style.top=p+"px";var u=0==this.props.scrollTop?"hidden":"",m=this.props.scrollTop==this.props.scrollTopMin?"hidden":"";if(s.shadowTop.style.visibility=u,s.shadowBottom.style.visibility=m,s.shadowTopLeft.style.visibility=u,s.shadowBottomLeft.style.visibility=m,s.shadowTopRight.style.visibility=u,s.shadowBottomRight.style.visibility=m,this.components.forEach(function(e){t=e.redraw()||t}),t){var f=3;this.redrawCount0&&(this.props.scrollTop=0),this.props.scrollTopt[s].y?t[s].y:e,i=i0){var r,a,h=Number(i.svg.style.height.replace("px",""));if(r=o.getSVGElement("path",i.svgElements,i.svg),r.setAttributeNS(null,"class",e.className),void 0!==e.style&&r.setAttributeNS(null,"style",e.style),a=1==e.options.catmullRom.enabled?s._catmullRom(t,e):s._linear(t),1==e.options.shaded.enabled){var d,l=o.getSVGElement("path",i.svgElements,i.svg);d="top"==e.options.shaded.orientation?"M"+t[0].x+",0 "+a+"L"+t[t.length-1].x+",0":"M"+t[0].x+","+h+" "+a+"L"+t[t.length-1].x+","+h,l.setAttributeNS(null,"class",e.className+" fill"),void 0!==e.options.shaded.style&&l.setAttributeNS(null,"style",e.options.shaded.style),l.setAttributeNS(null,"d",d)}r.setAttributeNS(null,"d","M"+a),1==e.options.drawPoints.enabled&&n.draw(t,e,i)}},s._catmullRomUniform=function(t){for(var e,i,s,o,n,r,a=Math.round(t[0].x)+","+Math.round(t[0].y)+" ",h=1/6,d=t.length,l=0;d-1>l;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._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,m,f,g,v,y,b,_,x,w=Math.round(t[0].x)+","+Math.round(t[0].y)+" ",M=t.length,S=0;M-1>S;S++)s=0==S?t[0]:t[S-1],o=t[S],n=t[S+1],r=M>S+2?t[S+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,m=3*x*(x+v),m>0&&(m=1/m),f=3*g*(g+v),f>0&&(f=1/f),a={x:(-b*s.x+p*o.x+_*n.x)*m,y:(-b*s.y+p*o.y+_*n.y)*m},h={x:(y*o.x+u*n.x-b*r.x)*f,y:(y*o.y+u*n.y-b*r.y)*f},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._linear=function(t){for(var e="",i=0;it[s].y?t[s].y:e,i=i0&&(n=Math.min(n,Math.abs(c[d-1].x-r))),a=s._getSafeDrawData(n,h,m);else{var g=d+(p[r].amount-p[r].resolved),v=d-(p[r].resolved+1);g0&&(n=Math.min(n,Math.abs(c[v].x-r))),a=s._getSafeDrawData(n,h,m),p[r].resolved+=1,"stack"==h.options.barChart.handleOverlap?(f=p[r].accumulated,p[r].accumulated+=h.zeroPosition-c[d].y):"sideBySide"==h.options.barChart.handleOverlap&&(a.width=a.width/p[r].amount,a.offset+=p[r].resolved*a.width-.5*a.width*(p[r].amount+1),"left"==h.options.barChart.align?a.offset-=.5*a.width:"right"==h.options.barChart.align&&(a.offset+=.5*a.width))}o.drawBar(c[d].x+a.offset,c[d].y-f,a.width,h.zeroPosition-c[d].y,h.className+" bar",i.svgElements,i.svg),1==h.options.drawPoints.enabled&&o.drawPoint(c[d].x+a.offset,c[d].y,h,i.svgElements,i.svg)}},s._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._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.getStackedBarYRange=function(t,e,i,o,n){if(t.length>0){t.sort(function(t,e){return t.x==e.x?t.groupId-e.groupId:t.x-e.x});var r={};s._getDataIntersections(r,t),e[o]=s._getStackedBarYRange(r,t),e[o].yAxisOrientation=n,i.push(o)}},s._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=ot[s].y?t[s].y:e,i=is;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,m=e+(s-r/2),f=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,m),this.bezierCurveTo(l,m+d,p+h,f,p,f),this.bezierCurveTo(p-h,f,t,m+d,t,m),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){function e(t){return t?i(t):void 0}function i(t){for(var i in e.prototype)t[i]=e.prototype[i];return t}t.exports=e,e.prototype.on=e.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks[t]=this._callbacks[t]||[]).push(e),this},e.prototype.once=function(t,e){function i(){s.off(t,i),e.apply(this,arguments)}var s=this;return this._callbacks=this._callbacks||{},i.fn=e,this.on(t,i),this},e.prototype.off=e.prototype.removeListener=e.prototype.removeAllListeners=e.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var i=this._callbacks[t];if(!i)return this;if(1==arguments.length)return delete this._callbacks[t],this;for(var s,o=0;os;++s)i[s].apply(this,e)}return this},e.prototype.listeners=function(t){return this._callbacks=this._callbacks||{},this._callbacks[t]||[]},e.prototype.hasListeners=function(t){return!!this.listeners(t).length}},function(t,e){var i,s,o;!function(n,r){s=[],i=r,o="function"==typeof i?i.apply(e,s):i,!(void 0!==o&&(t.exports=o))}(this,function(){function t(t){var e,i=t&&t.preventDefault||!1,s=t&&t.container||window,o={},n={keydown:{},keyup:{}},r={};for(e=97;122>=e;e++)r[String.fromCharCode(e)]={code:65+(e-97),shift:!1};for(e=65;90>=e;e++)r[String.fromCharCode(e)]={code:e,shift:!0};for(e=0;9>=e;e++)r[""+e]={code:48+e,shift:!1};for(e=1;12>=e;e++)r["F"+e]={code:111+e,shift:!1};for(e=0;9>=e;e++)r["num"+e]={code:96+e,shift:!1};r["num*"]={code:106,shift:!1},r["num+"]={code:107,shift:!1},r["num-"]={code:109,shift:!1},r["num/"]={code:111,shift:!1},r["num."]={code:110,shift:!1},r.left={code:37,shift:!1},r.up={code:38,shift:!1},r.right={code:39,shift:!1},r.down={code:40,shift:!1},r.space={code:32,shift:!1},r.enter={code:13,shift:!1},r.shift={code:16,shift:void 0},r.esc={code:27,shift:!1},r.backspace={code:8,shift:!1},r.tab={code:9,shift:!1},r.ctrl={code:17,shift:!1},r.alt={code:18,shift:!1},r["delete"]={code:46,shift:!1},r.pageup={code:33,shift:!1},r.pagedown={code:34,shift:!1},r["="]={code:187,shift:!1},r["-"]={code:189,shift:!1},r["]"]={code:221,shift:!1},r["["]={code:219,shift:!1};var a=function(t){d(t,"keydown")},h=function(t){d(t,"keyup")},d=function(t,e){if(void 0!==n[e][t.keyCode]){for(var s=n[e][t.keyCode],o=0;oe-n?(i=t.clone().add(o-1,"months"),s=(e-n)/(n-i)):(i=t.clone().add(o+1,"months"),s=(e-n)/(i-n)),-(o+s)}function f(t,e,i){var s;return null==i?e:null!=t.meridiemHour?t.meridiemHour(e,i):null!=t.isPM?(s=t.isPM(i),s&&12>e&&(e+=12),s||12!==e||(e=0),e):e}function g(){}function v(t,e){e!==!1&&R(t),_(this,t),this._d=new Date(+t._d),Di===!1&&(Di=!0,Ce.updateOffset(this),Di=!1)}function y(t){var e=N(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=Ce.localeData(),this._bubble()}function b(t,e){for(var i in e)a(e,i)&&(t[i]=e[i]);return a(e,"toString")&&(t.toString=e.toString),a(e,"valueOf")&&(t.valueOf=e.valueOf),t}function _(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),Ye.length>0)for(i in Ye)s=Ye[i],o=e[s],"undefined"!=typeof o&&(t[s]=o);return t}function x(t){return 0>t?Math.ceil(t):Math.floor(t)}function w(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 k(t){if(t){var e=t.toLowerCase().replace(/(.)s$/,"$1");t=gi[t]||vi[e]||e}return t}function N(t){var e,i,s={};for(i in t)a(t,i)&&(e=k(i),e&&(s[e]=t[i]));return s}function I(t){var e,i;if(0===t.indexOf("week"))e=7,i="day";else{if(0!==t.indexOf("month"))return;e=12,i="month"}Ce[t]=function(s,o){var r,a,h=Ce._locale[t],d=[];if("number"==typeof s&&(o=s,s=n),a=function(t){var e=Ce().utc().set(i,t);return h.call(Ce._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 z(t,e){return new Date(Date.UTC(t,e+1,0)).getUTCDate()}function A(t,e,i){return me(Ce([t,11,31+e-i]),e,i).week}function P(t){return F(t)?366:365}function F(t){return t%4===0&&t%100!==0||t%400===0}function R(t){var e;t._a&&-2===t._pf.overflow&&(e=t._a[ze]<0||t._a[ze]>11?ze:t._a[Ae]<1||t._a[Ae]>z(t._a[Le],t._a[ze])?Ae:t._a[Pe]<0||t._a[Pe]>24||24===t._a[Pe]&&(0!==t._a[Fe]||0!==t._a[Re]||0!==t._a[Be])?Pe:t._a[Fe]<0||t._a[Fe]>59?Fe:t._a[Re]<0||t._a[Re]>59?Re:t._a[Be]<0||t._a[Be]>999?Be:-1,t._pf._overflowDayOfYear&&(Le>e||e>Ae)&&(e=Ae),t._pf.overflow=e) -}function B(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._pf.bigHour===n)),t._isValid}function H(t){return t?t.toLowerCase().replace("_","-"):t}function Y(t){for(var e,i,s,o,n=0;n0;){if(s=W(o.slice(0,e).join("-")))return s;if(i&&i.length>=e&&E(o,i,!0)>=e-1)break;e--}n++}return null}function W(t){var e=null;if(!He[t]&&We)try{e=Ce.locale(),!function(){var t=new Error('Cannot find module "./locale"');throw t.code="MODULE_NOT_FOUND",t}(),Ce.locale(e)}catch(i){}return He[t]}function G(t,e){var i,s;return e._isUTC?(i=e.clone(),s=(Ce.isMoment(t)||O(t)?+t:+Ce(t))-+i,i._d.setTime(+i._d+s),Ce.updateOffset(i,!1),i):Ce(t).local()}function j(t){return t.match(/\[[\s\S]/)?t.replace(/^\[|\]$/g,""):t.replace(/\\/g,"")}function V(t){var e,i,s=t.match(Ue);for(e=0,i=s.length;i>e;e++)s[e]=wi[s[e]]?wi[s[e]]:j(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 U(t,e){return t.isValid()?(e=X(e,t.localeData()),yi[e]||(yi[e]=V(e)),yi[e](t)):t.localeData().invalidDate()}function X(t,e){function i(t){return e.longDateFormat(t)||t}var s=5;for(Xe.lastIndex=0;s>=0&&Xe.test(t);)t=t.replace(Xe,i),Xe.lastIndex=0,s-=1;return t}function q(t,e){var i,s=e._strict;switch(t){case"Q":return oi;case"DDDD":return ri;case"YYYY":case"GGGG":case"gggg":return s?ai:Qe;case"Y":case"G":case"g":return di;case"YYYYYY":case"YYYYY":case"GGGGG":case"ggggg":return s?hi:Ke;case"S":if(s)return oi;case"SS":if(s)return ni;case"SSS":if(s)return ri;case"DDD":return Ze;case"MMM":case"MMMM":case"dd":case"ddd":case"dddd":return Je;case"a":case"A":return e._locale._meridiemParse;case"x":return ii;case"X":return si;case"Z":case"ZZ":return ti;case"T":return ei;case"SSSS":return $e;case"MM":case"DD":case"YY":case"GG":case"gg":case"HH":case"hh":case"mm":case"ss":case"ww":case"WW":return s?ni:qe;case"M":case"D":case"d":case"H":case"h":case"m":case"s":case"w":case"W":case"e":case"E":return qe;case"Do":return s?e._locale._ordinalParse:e._locale._ordinalParseLenient;default:return i=new RegExp(se(ie(t.replace("\\","")),"i"))}}function Z(t){t=t||"";var e=t.match(ti)||[],i=e[e.length-1]||[],s=(i+"").match(mi)||["-",0,0],o=+(60*s[1])+L(s[2]);return"+"===s[0]?o:-o}function Q(t,e,i){var s,o=i._a;switch(t){case"Q":null!=e&&(o[ze]=3*(L(e)-1));break;case"M":case"MM":null!=e&&(o[ze]=L(e)-1);break;case"MMM":case"MMMM":s=i._locale.monthsParse(e,t,i._strict),null!=s?o[ze]=s:i._pf.invalidMonth=e;break;case"D":case"DD":null!=e&&(o[Ae]=L(e));break;case"Do":null!=e&&(o[Ae]=L(parseInt(e.match(/\d{1,2}/)[0],10)));break;case"DDD":case"DDDD":null!=e&&(i._dayOfYear=L(e));break;case"YY":o[Le]=Ce.parseTwoDigitYear(e);break;case"YYYY":case"YYYYY":case"YYYYYY":o[Le]=L(e);break;case"a":case"A":i._meridiem=e;break;case"h":case"hh":i._pf.bigHour=!0;case"H":case"HH":o[Pe]=L(e);break;case"m":case"mm":o[Fe]=L(e);break;case"s":case"ss":o[Re]=L(e);break;case"S":case"SS":case"SSS":case"SSSS":o[Be]=L(1e3*("0."+e));break;case"x":i._d=new Date(L(e));break;case"X":i._d=new Date(1e3*parseFloat(e));break;case"Z":case"ZZ":i._useUTC=!0,i._tzm=Z(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]=Ce.parseTwoDigitYear(e)}}function K(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[Le],me(Ce(),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[Le],me(Ce(),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=fe(i,s,o,a,n),t._a[Le]=h.year,t._dayOfYear=h.dayOfYear}function $(t){var e,i,s,o,n=[];if(!t._d){for(s=te(t),t._w&&null==t._a[Ae]&&null==t._a[ze]&&K(t),t._dayOfYear&&(o=r(t._a[Le],s[Le]),t._dayOfYear>P(o)&&(t._pf._overflowDayOfYear=!0),i=le(o,0,t._dayOfYear),t._a[ze]=i.getUTCMonth(),t._a[Ae]=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];24===t._a[Pe]&&0===t._a[Fe]&&0===t._a[Re]&&0===t._a[Be]&&(t._nextDay=!0,t._a[Pe]=0),t._d=(t._useUTC?le:de).apply(null,n),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()-t._tzm),t._nextDay&&(t._a[Pe]=24)}}function J(t){var e;t._d||(e=N(t._i),t._a=[e.year,e.month,e.day||e.date,e.hour,e.minute,e.second,e.millisecond],$(t))}function te(t){var e=new Date;return t._useUTC?[e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()]:[e.getFullYear(),e.getMonth(),e.getDate()]}function ee(t){if(t._f===Ce.ISO_8601)return void ne(t);t._a=[],t._pf.empty=!0;var e,i,s,o,r,a=""+t._i,h=a.length,d=0;for(s=X(t._f,t._locale).match(Ue)||[],e=0;e0&&t._pf.unusedInput.push(r),a=a.slice(a.indexOf(i)+i.length),d+=i.length),wi[o]?(i?t._pf.empty=!1:t._pf.unusedTokens.push(o),Q(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._pf.bigHour===!0&&t._a[Pe]<=12&&(t._pf.bigHour=n),t._a[Pe]=f(t._locale,t._a[Pe],t._meridiem),$(t),R(t)}function ie(t){return t.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(t,e,i,s,o){return e||i||s||o})}function se(t){return t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function oe(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));b(t,i||e)}function ne(t){var e,i,s=t._i,o=li.exec(s);if(o){for(t._pf.iso=!0,e=0,i=pi.length;i>e;e++)if(pi[e][1].exec(s)){t._f=pi[e][0]+(o[6]||" ");break}for(e=0,i=ui.length;i>e;e++)if(ui[e][1].exec(s)){t._f+=ui[e][0];break}s.match(ti)&&(t._f+="Z"),ee(t)}else t._isValid=!1}function re(t){ne(t),t._isValid===!1&&(delete t._isValid,Ce.createFromInputFallback(t))}function ae(t,e){var i,s=[];for(i=0;it&&a.setFullYear(t),a}function le(t){var e=new Date(Date.UTC.apply(null,arguments));return 1970>t&&e.setUTCFullYear(t),e}function ce(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 pe(t,e,i,s,o){return o.relativeTime(e||1,!!i,t,s)}function ue(t,e,i){var s=Ce.duration(t).abs(),o=Ne(s.as("s")),n=Ne(s.as("m")),r=Ne(s.as("h")),a=Ne(s.as("d")),h=Ne(s.as("M")),d=Ne(s.as("y")),l=o0,l[4]=i,pe.apply({},l)}function me(t,e,i){var s,o=i-e,n=i-t.day();return n>o&&(n-=7),o-7>n&&(n+=7),s=Ce(t).add(n,"d"),{week:Math.ceil(s.dayOfYear()/7),year:s.year()}}function fe(t,e,i,s,o){var n,r,a=le(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:P(t-1)+r}}function ge(t){var e,i=t._i,s=t._f;return t._locale=t._locale||Ce.localeData(t._l),null===i||s===n&&""===i?Ce.invalid({nullInput:!0}):("string"==typeof i&&(t._i=i=t._locale.preparse(i)),Ce.isMoment(i)?new v(i,!0):(s?T(s)?oe(t):ee(t):he(t),e=new v(t),e._nextDay&&(e.add(1,"d"),e._nextDay=n),e))}function ve(t,e){var i,s;if(1===e.length&&T(e[0])&&(e=e[0]),!e.length)return Ce();for(i=e[0],s=1;s=0?"+":"-";return e+w(Math.abs(t),6)},gg:function(){return w(this.weekYear()%100,2)},gggg:function(){return w(this.weekYear(),4)},ggggg:function(){return w(this.weekYear(),5)},GG:function(){return w(this.isoWeekYear()%100,2)},GGGG:function(){return w(this.isoWeekYear(),4)},GGGGG:function(){return w(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 w(L(this.milliseconds()/10),2)},SSS:function(){return w(this.milliseconds(),3)},SSSS:function(){return w(this.milliseconds(),3)},Z:function(){var t=this.utcOffset(),e="+";return 0>t&&(t=-t,e="-"),e+w(L(t/60),2)+":"+w(L(t)%60,2)},ZZ:function(){var t=this.utcOffset(),e="+";return 0>t&&(t=-t,e="-"),e+w(L(t/60),2)+w(L(t)%60,2)},z:function(){return this.zoneAbbr()},zz:function(){return this.zoneName()},x:function(){return this.valueOf()},X:function(){return this.unix()},Q:function(){return this.quarter()}},Mi={},Si=["months","monthsShort","weekdays","weekdaysShort","weekdaysMin"],Di=!1;_i.length;)Oe=_i.pop(),wi[Oe+"o"]=u(wi[Oe],Oe);for(;xi.length;)Oe=xi.pop(),wi[Oe+Oe]=p(wi[Oe],2);wi.DDDD=p(wi.DDD,3),b(g.prototype,{set:function(t){var e,i;for(i in t)e=t[i],"function"==typeof e?this[i]=e:this["_"+i]=e;this._ordinalParseLenient=new RegExp(this._ordinalParse.source+"|"+/\d{1,2}/.source)},_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,e,i){var s,o,n;for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),s=0;12>s;s++){if(o=Ce.utc([2e3,s]),i&&!this._longMonthsParse[s]&&(this._longMonthsParse[s]=new RegExp("^"+this.months(o,"").replace(".","")+"$","i"),this._shortMonthsParse[s]=new RegExp("^"+this.monthsShort(o,"").replace(".","")+"$","i")),i||this._monthsParse[s]||(n="^"+this.months(o,"")+"|^"+this.monthsShort(o,""),this._monthsParse[s]=new RegExp(n.replace(".",""),"i")),i&&"MMMM"===e&&this._longMonthsParse[s].test(t))return s;if(i&&"MMM"===e&&this._shortMonthsParse[s].test(t))return s;if(!i&&this._monthsParse[s].test(t))return s}},_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=Ce([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:{LTS:"h:mm:ss A",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,i){var s=this._calendar[t];return"function"==typeof s?s.apply(e,[i]):s},_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",_ordinalParse:/\d{1,2}/,preparse:function(t){return t},postformat:function(t){return t},week:function(t){return me(t,this._week.dow,this._week.doy).week},_week:{dow:0,doy:6},firstDayOfWeek:function(){return this._week.dow},firstDayOfYear:function(){return this._week.doy},_invalidDate:"Invalid date",invalidDate:function(){return this._invalidDate}}),Ce=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=h(),ge(o)},Ce.suppressDeprecationWarnings=!1,Ce.createFromInputFallback=l("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+(t._useUTC?" UTC":""))}),Ce.min=function(){var t=[].slice.call(arguments,0);return ve("isBefore",t)},Ce.max=function(){var t=[].slice.call(arguments,0);return ve("isAfter",t)},Ce.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=h(),ge(o).utc()},Ce.unix=function(t){return Ce(1e3*t)},Ce.duration=function(t,e){var i,s,o,n,r=t,h=null;return Ce.isDuration(t)?r={ms:t._milliseconds,d:t._days,M:t._months}:"number"==typeof t?(r={},e?r[e]=t:r.milliseconds=t):(h=je.exec(t))?(i="-"===h[1]?-1:1,r={y:0,d:L(h[Ae])*i,h:L(h[Pe])*i,m:L(h[Fe])*i,s:L(h[Re])*i,ms:L(h[Be])*i}):(h=Ve.exec(t))?(i="-"===h[1]?-1:1,o=function(t){var e=t&&parseFloat(t.replace(",","."));return(isNaN(e)?0:e)*i},r={y:o(h[2]),M:o(h[3]),d:o(h[4]),h:o(h[5]),m:o(h[6]),s:o(h[7]),w:o(h[8])}):null==r?r={}:"object"==typeof r&&("from"in r||"to"in r)&&(n=S(Ce(r.from),Ce(r.to)),r={},r.ms=n.milliseconds,r.M=n.months),s=new y(r),Ce.isDuration(t)&&a(t,"_locale")&&(s._locale=t._locale),s},Ce.version=Ee,Ce.defaultFormat=ci,Ce.ISO_8601=function(){},Ce.momentProperties=Ye,Ce.updateOffset=function(){},Ce.relativeTimeThreshold=function(t,e){return bi[t]===n?!1:e===n?bi[t]:(bi[t]=e,!0)},Ce.lang=l("moment.lang is deprecated. Use moment.locale instead.",function(t,e){return Ce.locale(t,e)}),Ce.locale=function(t,e){var i;return t&&(i="undefined"!=typeof e?Ce.defineLocale(t,e):Ce.localeData(t),i&&(Ce.duration._locale=Ce._locale=i)),Ce._locale._abbr},Ce.defineLocale=function(t,e){return null!==e?(e.abbr=t,He[t]||(He[t]=new g),He[t].set(e),Ce.locale(t),He[t]):(delete He[t],null)},Ce.langData=l("moment.langData is deprecated. Use moment.localeData instead.",function(t){return Ce.localeData(t)}),Ce.localeData=function(t){var e;if(t&&t._locale&&t._locale._abbr&&(t=t._locale._abbr),!t)return Ce._locale;if(!T(t)){if(e=W(t))return e;t=[t]}return Y(t)},Ce.isMoment=function(t){return t instanceof v||null!=t&&a(t,"_isAMomentObject")},Ce.isDuration=function(t){return t instanceof y};for(Oe=Si.length-1;Oe>=0;--Oe)I(Si[Oe]);Ce.normalizeUnits=function(t){return k(t)},Ce.invalid=function(t){var e=Ce.utc(0/0);return null!=t?b(e._pf,t):e._pf.userInvalidated=!0,e},Ce.parseZone=function(){return Ce.apply(null,arguments).parseZone()},Ce.parseTwoDigitYear=function(t){return L(t)+(L(t)>68?1900:2e3)},Ce.isDate=O,b(Ce.fn=v.prototype,{clone:function(){return Ce(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=Ce(this).utc();return 00:!1},parsingFlags:function(){return b({},this._pf)},invalidAt:function(){return this._pf.overflow},utc:function(t){return this.utcOffset(0,t)},local:function(t){return this._isUTC&&(this.utcOffset(0,t),this._isUTC=!1,t&&this.subtract(this._dateUtcOffset(),"m")),this},format:function(t){var e=U(this,t||Ce.defaultFormat);return this.localeData().postformat(e)},add:D(1,"add"),subtract:D(-1,"subtract"),diff:function(t,e,i){var s,o,n=G(t,this),r=6e4*(n.utcOffset()-this.utcOffset());return e=k(e),"year"===e||"month"===e||"quarter"===e?(o=m(this,n),"quarter"===e?o/=3:"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:x(o)},from:function(t,e){return Ce.duration({to:this,from:t}).locale(this.locale()).humanize(!e)},fromNow:function(t){return this.from(Ce(),t)},calendar:function(t){var e=t||Ce(),i=G(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,Ce(e)))},isLeapYear:function(){return F(this.year())},isDST:function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},day:function(t){var e=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=t?(t=ce(t,this.localeData()),this.add(t-e,"d")):e},month:xe("Month",!0),startOf:function(t){switch(t=k(t)){case"year":this.month(0);case"quarter":case"month":this.date(1);case"week":case"isoWeek":case"day":this.hours(0);case"hour":this.minutes(0);case"minute":this.seconds(0);case"second":this.milliseconds(0)}return"week"===t?this.weekday(0):"isoWeek"===t&&this.isoWeekday(1),"quarter"===t&&this.month(3*Math.floor(this.month()/3)),this},endOf:function(t){return t=k(t),t===n||"millisecond"===t?this:this.startOf(t).add(1,"isoWeek"===t?"week":t).subtract(1,"ms")},isAfter:function(t,e){var i;return e=k("undefined"!=typeof e?e:"millisecond"),"millisecond"===e?(t=Ce.isMoment(t)?t:Ce(t),+this>+t):(i=Ce.isMoment(t)?+t:+Ce(t),i<+this.clone().startOf(e))},isBefore:function(t,e){var i;return e=k("undefined"!=typeof e?e:"millisecond"),"millisecond"===e?(t=Ce.isMoment(t)?t:Ce(t),+t>+this):(i=Ce.isMoment(t)?+t:+Ce(t),+this.clone().endOf(e)t?this:t}),max:l("moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548",function(t){return t=Ce.apply(null,arguments),t>this?this:t}),zone:l("moment().zone is deprecated, use moment().utcOffset instead. https://github.com/moment/moment/issues/1779",function(t,e){return null!=t?("string"!=typeof t&&(t=-t),this.utcOffset(t,e),this):-this.utcOffset()}),utcOffset:function(t,e){var i,s=this._offset||0;return null!=t?("string"==typeof t&&(t=Z(t)),Math.abs(t)<16&&(t=60*t),!this._isUTC&&e&&(i=this._dateUtcOffset()),this._offset=t,this._isUTC=!0,null!=i&&this.add(i,"m"),s!==t&&(!e||this._changeInProgress?C(this,Ce.duration(t-s,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,Ce.updateOffset(this,!0),this._changeInProgress=null)),this):this._isUTC?s:this._dateUtcOffset()},isLocal:function(){return!this._isUTC},isUtcOffset:function(){return this._isUTC},isUtc:function(){return this._isUTC&&0===this._offset},zoneAbbr:function(){return this._isUTC?"UTC":""},zoneName:function(){return this._isUTC?"Coordinated Universal Time":""},parseZone:function(){return this._tzm?this.utcOffset(this._tzm):"string"==typeof this._i&&this.utcOffset(Z(this._i)),this},hasAlignedHourOffset:function(t){return t=t?Ce(t).utcOffset():0,(this.utcOffset()-t)%60===0},daysInMonth:function(){return z(this.year(),this.month())},dayOfYear:function(t){var e=Ne((Ce(this).startOf("day")-Ce(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=me(this,this.localeData()._week.dow,this.localeData()._week.doy).year;return null==t?e:this.add(t-e,"y")},isoWeekYear:function(t){var e=me(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=me(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 A(this.year(),1,4)},weeksInYear:function(){var t=this.localeData()._week;return A(this.year(),t.dow,t.doy)},get:function(t){return t=k(t),this[t]()},set:function(t,e){var i;if("object"==typeof t)for(i in t)this.set(i,t[i]);else t=k(t),"function"==typeof this[t]&&this[t](e);return this},locale:function(t){var e;return t===n?this._locale._abbr:(e=Ce.localeData(t),null!=e&&(this._locale=e),this)},lang:l("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(t){return t===n?this.localeData():this.locale(t)}),localeData:function(){return this._locale},_dateUtcOffset:function(){return 15*-Math.round(this._d.getTimezoneOffset()/15)}}),Ce.fn.millisecond=Ce.fn.milliseconds=xe("Milliseconds",!1),Ce.fn.second=Ce.fn.seconds=xe("Seconds",!1),Ce.fn.minute=Ce.fn.minutes=xe("Minutes",!1),Ce.fn.hour=Ce.fn.hours=xe("Hours",!0),Ce.fn.date=xe("Date",!0),Ce.fn.dates=l("dates accessor is deprecated. Use date instead.",xe("Date",!0)),Ce.fn.year=xe("FullYear",!0),Ce.fn.years=l("years accessor is deprecated. Use year instead.",xe("FullYear",!0)),Ce.fn.days=Ce.fn.day,Ce.fn.months=Ce.fn.month,Ce.fn.weeks=Ce.fn.week,Ce.fn.isoWeeks=Ce.fn.isoWeek,Ce.fn.quarters=Ce.fn.quarter,Ce.fn.toJSON=Ce.fn.toISOString,Ce.fn.isUTC=Ce.fn.isUtc,b(Ce.duration.fn=y.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=x(s/1e3),r.seconds=t%60,e=x(t/60),r.minutes=e%60,i=x(e/60),r.hours=i%24,o+=x(i/24),a=x(we(o)),o-=x(Me(a)),n+=x(o/30),o%=30,a+=x(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 x(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=ue(this,!t,this.localeData());return t&&(e=this.localeData().pastFuture(+this,e)),this.localeData().postformat(e)},add:function(t,e){var i=Ce.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=Ce.duration(t,e);return this._milliseconds-=i._milliseconds,this._days-=i._days,this._months-=i._months,this._bubble(),this},get:function(t){return t=k(t),this[t.toLowerCase()+"s"]()},as:function(t){var e,i;if(t=k(t),"month"===t||"year"===t)return e=this._days+this._milliseconds/864e5,i=this._months+12*we(e),"month"===t?i:i/12;switch(e=this._days+Math.round(Me(this._months/12)),t){case"week":return e/7+this._milliseconds/6048e5;case"day":return e+this._milliseconds/864e5;case"hour":return 24*e+this._milliseconds/36e5;case"minute":return 24*e*60+this._milliseconds/6e4;case"second":return 24*e*60*60+this._milliseconds/1e3;case"millisecond":return Math.floor(24*e*60*60*1e3)+this._milliseconds;default:throw new Error("Unknown unit "+t)}},lang:Ce.fn.lang,locale:Ce.fn.locale,toIsoString:l("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},toJSON:function(){return this.toISOString()}}),Ce.duration.fn.toString=Ce.duration.fn.toISOString;for(Oe in fi)a(fi,Oe)&&Se(Oe.toLowerCase());Ce.duration.fn.asMilliseconds=function(){return this.as("ms")},Ce.duration.fn.asSeconds=function(){return this.as("s")},Ce.duration.fn.asMinutes=function(){return this.as("m")},Ce.duration.fn.asHours=function(){return this.as("h")},Ce.duration.fn.asDays=function(){return this.as("d")},Ce.duration.fn.asWeeks=function(){return this.as("weeks")},Ce.duration.fn.asMonths=function(){return this.as("M")},Ce.duration.fn.asYears=function(){return this.as("y")},Ce.locale("en",{ordinalParse:/\d{1,2}(th|st|nd|rd)/,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}}),We?o.exports=Ce:(s=function(t,e,i){return i.config&&i.config()&&i.config().noGlobal===!0&&(ke.moment=Te),Ce}.call(e,i,e,o),!(s!==n&&(o.exports=s)),De(!0))}).call(this)}).call(e,function(){return this}(),i(71)(t))},function(t,e,i){var s;!function(o,n){function r(){a.READY||(w.determineEventTypes(),x.each(a.gestures,function(t){S.register(t)}),w.onTouch(a.DOCUMENT,v,S.detect),w.onTouch(a.DOCUMENT,y,S.detect),a.READY=!0)}var a=function D(t,e){return new D.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",m=a.POINTER_TOUCH="touch",f=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(S,d),a&&(d.changedLength=h,d.eventType=a,s.call(S,d),d.eventType=r,delete d.changedLength),r==y&&(s.call(S,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 M.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=m;return x.inStr(s.type,"mouse")||M.matchType(u,s)?o=u:M.matchType(f,s)&&(o=f),{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 S.stopDetect()}}}},M=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[m]=i===(e.MSPOINTER_TYPE_TOUCH||m),s[f]=i===(e.MSPOINTER_TYPE_PEN||f),s[t]},reset:function(){this.pointers={}}},S=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?S.startDetect(i,t):t.eventType==_&&S.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=S.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=S.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=S.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=S.current,h=S.previous;switch(e.eventType){case g:i=!1;break;case v:i=i||e.distance>r.tapMaxDistance;break;case y:!x.inStr(e.srcEvent.type,"cancel")&&e.deltaTimes.options.transformMinRotation&&s.trigger("rotate",e),o>s.options.transformMinScale&&(s.trigger("pinch",e),s.trigger("pinch"+(e.scale<1?"in":"out"),e));break;case b:i&&e.changedLength<2&&(s.trigger(t+"end",e),i=!1)}}var i=!1;a.gestures.Transform={name:t,index:45,defaults:{transformMinScale:.01,transformMinRotation:1},handler:e}}("transform"),s=function(){return a}.call(e,i,e,t),!(s!==n&&(t.exports=s))}(window)},function(t,e,i){function s(){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 d;d=document.getElementById("graph_BH_gc"),d.onchange=a.bind(this,"graph_BH_gc",-1,"physics_barnesHut_gravitationalConstant"),d=document.getElementById("graph_BH_cg"),d.onchange=a.bind(this,"graph_BH_cg",1,"physics_centralGravity"),d=document.getElementById("graph_BH_sc"),d.onchange=a.bind(this,"graph_BH_sc",1,"physics_springConstant"),d=document.getElementById("graph_BH_sl"),d.onchange=a.bind(this,"graph_BH_sl",1,"physics_springLength"),d=document.getElementById("graph_BH_damp"),d.onchange=a.bind(this,"graph_BH_damp",1,"physics_damping"),d=document.getElementById("graph_R_nd"),d.onchange=a.bind(this,"graph_R_nd",1,"physics_repulsion_nodeDistance"),d=document.getElementById("graph_R_cg"),d.onchange=a.bind(this,"graph_R_cg",1,"physics_centralGravity"),d=document.getElementById("graph_R_sc"),d.onchange=a.bind(this,"graph_R_sc",1,"physics_springConstant"),d=document.getElementById("graph_R_sl"),d.onchange=a.bind(this,"graph_R_sl",1,"physics_springLength"),d=document.getElementById("graph_R_damp"),d.onchange=a.bind(this,"graph_R_damp",1,"physics_damping"),d=document.getElementById("graph_H_nd"),d.onchange=a.bind(this,"graph_H_nd",1,"physics_hierarchicalRepulsion_nodeDistance"),d=document.getElementById("graph_H_cg"),d.onchange=a.bind(this,"graph_H_cg",1,"physics_centralGravity"),d=document.getElementById("graph_H_sc"),d.onchange=a.bind(this,"graph_H_sc",1,"physics_springConstant"),d=document.getElementById("graph_H_sl"),d.onchange=a.bind(this,"graph_H_sl",1,"physics_springLength"),d=document.getElementById("graph_H_damp"),d.onchange=a.bind(this,"graph_H_damp",1,"physics_damping"),d=document.getElementById("graph_H_direction"),d.onchange=a.bind(this,"graph_H_direction",i,"hierarchicalLayout_direction"),d=document.getElementById("graph_H_levsep"),d.onchange=a.bind(this,"graph_H_levsep",1,"hierarchicalLayout_levelSeparation"),d=document.getElementById("graph_H_nspac"),d.onchange=a.bind(this,"graph_H_nspac",1,"hierarchicalLayout_nodeSpacing"); -var l=document.getElementById("graph_physicsMethod1"),c=document.getElementById("graph_physicsMethod2"),p=document.getElementById("graph_physicsMethod3");c.checked=!0,this.constants.physics.barnesHut.enabled&&(l.checked=!0),this.constants.hierarchicalLayout.enabled&&(p.checked=!0);var u=document.getElementById("graph_toggleSmooth"),m=document.getElementById("graph_repositionNodes"),f=document.getElementById("graph_generateOptions");u.onclick=s.bind(this),m.onclick=o.bind(this),f.onclick=n.bind(this),u.style.background=1==this.constants.smoothCurves&&0==this.constants.dynamicSmoothCurves?"#A4FF56":"#FF8532",r.apply(this),l.onchange=r.bind(this),c.onchange=r.bind(this),p.onchange=r.bind(this)}},e._overWriteGraphConstants=function(t,e){var i=t.split("_");1==i.length?this.constants[i[0]]=e:2==i.length?this.constants[i[0]][i[1]]=e:3==i.length&&(this.constants[i[0]][i[1]][i[2]]=e)}},function(t,e){e.startWithClustering=function(){this.clusterToFit(this.constants.clustering.initialMaxNodes,!0),this.updateLabels(),1==this.constants.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(),this.forceAggregateHubs(!0),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._updateCalculationNodes(),this.updateLabels();this.moving!=e&&this.start()},e.updateClustersDefault=function(){1==this.constants.clustering.enabled&&1==this.constants.clustering.clusterByZoom&&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,r=this.previousScalethis.scale&&0==t;1==a&&this._collapseSector(),1==a||-1==t?this._formClusters(i):(1==r||1==t)&&(1==i?this._openClusters(e,i):this._openClusters(e,!1)),this._updateNodeIndexList(),this.nodeIndices.length!=n||1!=a&&-1!=t||(this._aggregateHubs(i),this._updateNodeIndexList()),(1==a||-1==t)&&(this.handleChains(),this._updateNodeIndexList()),this.previousScale=this.scale,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.updateLabels(),this._updateCalculationNodes(),this.nodeIndices.length!=i&&(this.clusterSession+=1),(0==t||void 0===t)&&this.moving!=e&&this.start()},e._openClustersBySize=function(){if(1==this.constants.clustering.clusterByZoom)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&&(void 0===s&&(s=!1),e=s||e,t.formationScalei)){var r=n.from,a=n.to;n.to.options.mass>n.from.options.mass&&(r=n.to,a=n.from),1==a.dynamicEdges.length?this._addToCluster(r,a,!1):1==r.dynamicEdges.length&&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.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.dynamicEdges.length>=this.hubThreshold&&0==i||t.dynamicEdges.length==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){var u=[],m={};for(c=0;l>c;c++){p=this.edges[d[c]];var f=this.nodes[p.fromId==t.id?p.toId:p.fromId];void 0===m[f.id]&&(m[f.id]=!0,u.push(f))}for(c=0;c1&&(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.dynamicEdges.length),t+=n.dynamicEdges.length,e+=Math.pow(n.dynamicEdges.length,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].dynamicEdges.length&&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].dynamicEdges.length&&(t+=1),e+=1);return t/e}},function(t,e,i){var s=i(1),o=i(40);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 o({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](o[0],o[1]):this[t](e))}return this._loadLatestSector(),i},e._doInSupportSector=function(t,e){var i=!1;if(void 0===e)this._switchToSupportSector(),i=this[t]();else{this._switchToSupportSector();var s=Array.prototype.splice.call(arguments,1);i=s.length>1?this[t](s[0],s[1]):this[t](e)}return this._loadLatestSector(),i},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;ei;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,!0)}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,!1,!0)}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(40),n=i(39);e._clearManipulatorBar=function(){this._recursiveDOMDelete(this.manipulationDiv),this.manipulationDOM={},this._cleanManipulatorHammers(),this._manipulationReleaseOverload=function(){},delete this.sectors.support.nodes.targetNode,delete this.sectors.support.nodes.targetViaNode,this.controlNodesActive=!1,this.freezeSimulationEnabled=!1},e._cleanManipulatorHammers=function(){if(0!=this.manipulationHammers.existing.length){for(var t=0;t1)alert(this.constants.locales[this.constants.locale].createEdgeError);else{this._selectObject(e,!1);var i=this.sectors.support.nodes;i.targetNode=new o({id:"targetNode"},{},{},this.constants);var s=i.targetNode;s.x=e.x,s.y=e.y,this.edges.connectionEdge=new n({id:"connectionEdge",from:e.id,to:s.id},this,this.constants);var r=this.edges.connectionEdge;r.from=e,r.connected=!0,r.options.smoothCurves={enabled:!0,dynamic:!1,type:"continuous",roundness:.5},r.selected=!0,r.to=s,this.cachedFunctions._handleOnDrag=this._handleOnDrag,this._handleOnDrag=function(t){var e=this._getPointer(t.gesture.center),i=this.edges.connectionEdge;i.to.x=this._XconvertDOMtoCanvas(e.x),i.to.y=this._YconvertDOMtoCanvas(e.y)},this.moving=!0,this.start()}}},e._finishConnect=function(t){if(1==this._getSelectedNodeCount()){var e=this._getPointer(t.gesture.center);this._handleOnDrag=this.cachedFunctions._handleOnDrag,delete this.cachedFunctions._handleOnDrag;var i=this.edges.connectionEdge.fromId;delete this.edges.connectionEdge,delete this.sectors.support.nodes.targetNode,delete this.sectors.support.nodes.targetViaNode;var s=this._getNodeAt(e);null!=s&&(s.clusterSize>1?alert(this.constants.locales[this.constants.locale].createEdgeError):(this._createEdge(i,s.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(2!=this.triggerFunctions.del.length)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(44));e._cleanNavigation=function(){if(0!=this.navigationHammers.length){for(var t=0;t0){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,o.edges.length>1&&this._setLevel(t+1,o.edges,o.id))}},e._setLevelDirected=function(t,e,i){this.nodes[i].hierarchyEnumerated=!0;for(var s,o,n=0;n1&&s.hierarchyEnumerated===!1&&this._setLevelDirected(s.level,s.edges,s.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){function e(t){throw new Error("Cannot find module '"+t+"'.")}e.keys=function(){return[]},e.resolve=e,t.exports=e,e.id=67},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,m=4/3,f=this.constants.physics.repulsion.nodeDistance,g=f;for(d=0;di&&(r=.5*g>i?1:v*i+m,r*=0==n?1:1+n*this.constants.clustering.forceAmplification,r/=Math.max(i,.01*g),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.thetaInverted){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)),m=.5*u,f=.5*(o+r),g=.5*(n+a),v={root:{centerOfMass:{x:0,y:0},mass:0,range:{minX:f-m,maxX:f+m,minY:g-m,maxY:g+m},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}}])}); +"use strict";!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(o){if(i[o])return i[o].exports;var s=i[o]={exports:{},id:o,loaded:!1};return t[o].call(s.exports,s,s.exports,e),s.loaded=!0,s.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.Queue=i(5),e.Graph3d=i(6),e.graph3d={Camera:i(7),Filter:i(8),Point2d:i(9),Point3d:i(10),Slider:i(11),StepNumber:i(12)},e.Timeline=i(13),e.Graph2d=i(14),e.timeline={DateUtil:i(15),DataStep:i(16),Range:i(17),stack:i(18),TimeStep:i(19),components:{items:{Item:i(20),BackgroundItem:i(21),BoxItem:i(22),PointItem:i(23),RangeItem:i(24)},Component:i(25),CurrentTime:i(26),CustomTime:i(27),DataAxis:i(28),GraphGroup:i(29),Group:i(30),BackgroundGroup:i(31),ItemSet:i(32),Legend:i(33),LineGraph:i(34),TimeAxis:i(35)}},e.Network=i(36),e.network={Edge:i(37),Groups:i(38),Images:i(39),Node:i(40),Popup:i(41),dotparser:i(42),gephiParser:i(43)},e.Graph=function(){throw new Error("Graph is renamed to Network. Please create a graph as new vis.Network(...)")},e.moment=i(44),e.hammer=i(45),e.Hammer=i(45)},function(t,e,i){var o=i(44);e.isNumber=function(t){return t instanceof Number||"number"==typeof t},e.giveRange=function(t,e,i,o){if(e==t)return.5;var s=1/(e-t);return Math.max(0,(o-t)*s)},e.isString=function(t){return t instanceof String||"string"==typeof t},e.isDate=function(t){if(t instanceof Date)return!0;if(e.isString(t)){var i=s.exec(t);if(i)return!0;if(!isNaN(Date.parse(t)))return!0}return!1},e.isDataTable=function(t){return"undefined"!=typeof google&&google.visualization&&google.visualization.DataTable&&t instanceof google.visualization.DataTable},e.randomUUID=function(){var t=function(){return Math.floor(65536*Math.random()).toString(16)};return t()+t()+"-"+t()+"-"+t()+"-"+t()+"-"+t()+t()+t()},e.extend=function(t){for(var e=1,i=arguments.length;i>e;e++){var o=arguments[e];for(var s in o)o.hasOwnProperty(s)&&(t[s]=o[s])}return t},e.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},e.convert=function(t,i){var n;if(void 0===t)return void 0;if(null===t)return null;if(!i)return t;if("string"!=typeof i&&!(i instanceof String))throw new Error("Type must be a string");switch(i){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(e.isNumber(t))return new Date(t);if(t instanceof Date)return new Date(t.valueOf());if(o.isMoment(t))return new Date(t.valueOf());if(e.isString(t))return n=s.exec(t),n?new Date(Number(n[1])):o(t).toDate();throw new Error("Cannot convert object of type "+e.getType(t)+" to type Date");case"Moment":if(e.isNumber(t))return o(t);if(t instanceof Date)return o(t.valueOf());if(o.isMoment(t))return o(t);if(e.isString(t))return n=s.exec(t),o(n?Number(n[1]):t);throw new Error("Cannot convert object of type "+e.getType(t)+" to type Date");case"ISODate":if(e.isNumber(t))return new Date(t);if(t instanceof Date)return t.toISOString();if(o.isMoment(t))return t.toDate().toISOString();if(e.isString(t))return n=s.exec(t),n?new Date(Number(n[1])).toISOString():new Date(t).toISOString();throw new Error("Cannot convert object of type "+e.getType(t)+" to type ISODate");case"ASPDate":if(e.isNumber(t))return"/Date("+t+")/";if(t instanceof Date)return"/Date("+t.valueOf()+")/";if(e.isString(t)){n=s.exec(t);var r;return r=n?new Date(Number(n[1])).valueOf():new Date(t).valueOf(),"/Date("+r+")/"}throw new Error("Cannot convert object of type "+e.getType(t)+" to type ASPDate");default:throw new Error('Unknown type "'+i+'"')}};var s=/^\/?Date\((\-?\d+)/i;e.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":Array.isArray(t)?"Array":t instanceof Date?"Date":"Object":"number"==e?"Number":"boolean"==e?"Boolean":"string"==e?"String":e},e.getAbsoluteLeft=function(t){return t.getBoundingClientRect().left},e.getAbsoluteTop=function(t){return t.getBoundingClientRect().top},e.addClassName=function(t,e){var i=t.className.split(" ");-1==i.indexOf(e)&&(i.push(e),t.className=i.join(" "))},e.removeClassName=function(t,e){var i=t.className.split(" "),o=i.indexOf(e);-1!=o&&(i.splice(o,1),t.className=i.join(" "))},e.forEach=function(t,e){var i,o;if(Array.isArray(t))for(i=0,o=t.length;o>i;i++)e(t[i],i,t);else for(i in t)t.hasOwnProperty(i)&&e(t[i],i,t)},e.toArray=function(t){var e=[];for(var i in t)t.hasOwnProperty(i)&&e.push(t[i]);return e},e.updateProperty=function(t,e,i){return t[e]!==i?(t[e]=i,!0):!1},e.addEventListener=function(t,e,i,o){t.addEventListener?(void 0===o&&(o=!1),"mousewheel"===e&&navigator.userAgent.indexOf("Firefox")>=0&&(e="DOMMouseScroll"),t.addEventListener(e,i,o)):t.attachEvent("on"+e,i)},e.removeEventListener=function(t,e,i,o){t.removeEventListener?(void 0===o&&(o=!1),"mousewheel"===e&&navigator.userAgent.indexOf("Firefox")>=0&&(e="DOMMouseScroll"),t.removeEventListener(e,i,o)):t.detachEvent("on"+e,i)},e.preventDefault=function(t){t||(t=window.event),t.preventDefault?t.preventDefault():t.returnValue=!1},e.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},e.option={},e.option.asBoolean=function(t,e){return"function"==typeof t&&(t=t()),null!=t?0!=t:e||null},e.option.asNumber=function(t,e){return"function"==typeof t&&(t=t()),null!=t?Number(t)||e||null:e||null},e.option.asString=function(t,e){return"function"==typeof t&&(t=t()),null!=t?String(t):e||null},e.option.asSize=function(t,i){return"function"==typeof t&&(t=t()),e.isString(t)?t:e.isNumber(t)?t+"px":i||null},e.option.asElement=function(t,e){return"function"==typeof t&&(t=t()),t||e||null},e.hexToRGB=function(t){var e=/^#?([a-f\d])([a-f\d])([a-f\d])$/i;t=t.replace(e,function(t,e,i,o){return e+e+i+i+o+o});var i=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(t);return i?{r:parseInt(i[1],16),g:parseInt(i[2],16),b:parseInt(i[3],16)}:null},e.overrideOpacity=function(t,i){if(-1!=t.indexOf("rgb")){var o=t.substr(t.indexOf("(")+1).replace(")","").split(",");return"rgba("+o[0]+","+o[1]+","+o[2]+","+i+")"}var o=e.hexToRGB(t);return null==o?t:"rgba("+o.r+","+o.g+","+o.b+","+i+")"},e.RGBToHex=function(t,e,i){return"#"+((1<<24)+(t<<16)+(e<<8)+i).toString(16).slice(1)},e.parseColor=function(t){var i;if(e.isString(t)){if(e.isValidRGB(t)){var o=t.substr(4).substr(0,t.length-5).split(",");t=e.RGBToHex(o[0],o[1],o[2])}if(e.isValidHex(t)){var s=e.hexToHSV(t),n={h:s.h,s:.45*s.s,v:Math.min(1,1.05*s.v)},r={h:s.h,s:Math.min(1,1.25*s.v),v:.6*s.v},a=e.HSVToHex(r.h,r.h,r.v),h=e.HSVToHex(n.h,n.s,n.v);i={background:t,border:a,highlight:{background:h,border:a},hover:{background:h,border:a}}}else i={background:t,border:t,highlight:{background:t,border:t},hover:{background:t,border:t}}}else i={},i.background=t.background||"white",i.border=t.border||i.background,e.isString(t.highlight)?i.highlight={border:t.highlight,background:t.highlight}:(i.highlight={},i.highlight.background=t.highlight&&t.highlight.background||i.background,i.highlight.border=t.highlight&&t.highlight.border||i.border),e.isString(t.hover)?i.hover={border:t.hover,background:t.hover}:(i.hover={},i.hover.background=t.hover&&t.hover.background||i.background,i.hover.border=t.hover&&t.hover.border||i.border);return i},e.RGBToHSV=function(t,e,i){t/=255,e/=255,i/=255;var o=Math.min(t,Math.min(e,i)),s=Math.max(t,Math.max(e,i));if(o==s)return{h:0,s:0,v:o};var n=t==o?e-i:i==o?t-e:i-t,r=t==o?3:i==o?1:5,a=60*(r-n/(s-o))/360,h=(s-o)/s,d=s;return{h:a,s:h,v:d}};var n={split:function(t){var e={};return t.split(";").forEach(function(t){if(""!=t.trim()){var i=t.split(":"),o=i[0].trim(),s=i[1].trim();e[o]=s}}),e},join:function(t){return Object.keys(t).map(function(e){return e+": "+t[e]}).join("; ")}};e.addCssText=function(t,i){var o=n.split(t.style.cssText),s=n.split(i),r=e.extend(o,s);t.style.cssText=n.join(r)},e.removeCssText=function(t,e){var i=n.split(t.style.cssText),o=n.split(e);for(var s in o)o.hasOwnProperty(s)&&delete i[s];t.style.cssText=n.join(i)},e.HSVToRGB=function(t,e,i){var o,s,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:o=i,s=l,n=h;break;case 1:o=d,s=i,n=h;break;case 2:o=h,s=i,n=l;break;case 3:o=h,s=d,n=i;break;case 4:o=l,s=h,n=i;break;case 5:o=i,s=h,n=d}return{r:Math.floor(255*o),g:Math.floor(255*s),b:Math.floor(255*n)}},e.HSVToHex=function(t,i,o){var s=e.HSVToRGB(t,i,o);return e.RGBToHex(s.r,s.g,s.b)},e.hexToHSV=function(t){var i=e.hexToRGB(t);return e.RGBToHSV(i.r,i.g,i.b)},e.isValidHex=function(t){var e=/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(t);return e},e.isValidRGB=function(t){t=t.replace(" ","");var e=/rgb\((\d{1,3}),(\d{1,3}),(\d{1,3})\)/i.test(t);return e},e.selectiveBridgeObject=function(t,i){if("object"==typeof i){for(var o=Object.create(i),s=0;s=r&&s>n;){var h=Math.floor((r+a)/2),d=t[h],l=void 0===o?d[i]:d[i][o],c=e(l);if(0==c)return h;-1==c?r=h+1:a=h-1,n++}return-1},e.binarySearchValue=function(t,e,i,o){for(var s,n,r,a,h=1e4,d=0,l=0,c=t.length-1;c>=l&&h>d;){if(a=Math.floor(.5*(c+l)),s=t[Math.max(0,a-1)][i],n=t[a][i],r=t[Math.min(t.length-1,a+1)][i],n==e)return a;if(e>s&&n>e)return"before"==o?Math.max(0,a-1):a;if(e>n&&r>e)return"before"==o?a:Math.min(t.length-1,a+1);e>n?l=a+1:c=a-1,d++}return-1},e.easeInOutQuad=function(t,e,i,o){var s=i-e;return t/=o/2,1>t?s/2*t*t+e:(t--,-s/2*(t*(t-2)-1)+e)},e.easingFunctions={linear:function(t){return t},easeInQuad:function(t){return t*t},easeOutQuad:function(t){return t*(2-t)},easeInOutQuad:function(t){return.5>t?2*t*t:-1+(4-2*t)*t},easeInCubic:function(t){return t*t*t},easeOutCubic:function(t){return--t*t*t+1},easeInOutCubic:function(t){return.5>t?4*t*t*t:(t-1)*(2*t-2)*(2*t-2)+1},easeInQuart:function(t){return t*t*t*t},easeOutQuart:function(t){return 1- --t*t*t*t},easeInOutQuart:function(t){return.5>t?8*t*t*t*t:1-8*--t*t*t*t},easeInQuint:function(t){return t*t*t*t*t},easeOutQuint:function(t){return 1+--t*t*t*t*t},easeInOutQuint:function(t){return.5>t?16*t*t*t*t*t:1+16*--t*t*t*t*t}}},function(t,e){e.prepareElements=function(t){for(var e in t)t.hasOwnProperty(e)&&(t[e].redundant=t[e].used,t[e].used=[])},e.cleanupElements=function(t){for(var e in t)if(t.hasOwnProperty(e)&&t[e].redundant){for(var i=0;i0?(o=e[t].redundant[0],e[t].redundant.shift()):(o=document.createElementNS("http://www.w3.org/2000/svg",t),i.appendChild(o)):(o=document.createElementNS("http://www.w3.org/2000/svg",t),e[t]={used:[],redundant:[]},i.appendChild(o)),e[t].used.push(o),o},e.getDOMElement=function(t,e,i,o){var s;return e.hasOwnProperty(t)?e[t].redundant.length>0?(s=e[t].redundant[0],e[t].redundant.shift()):(s=document.createElement(t),void 0!==o?i.insertBefore(s,o):i.appendChild(s)):(s=document.createElement(t),e[t]={used:[],redundant:[]},void 0!==o?i.insertBefore(s,o):i.appendChild(s)),e[t].used.push(s),s},e.drawPoint=function(t,i,o,s,n,r){var a;"circle"==o.options.drawPoints.style?(a=e.getSVGElement("circle",s,n),a.setAttributeNS(null,"cx",t),a.setAttributeNS(null,"cy",i),a.setAttributeNS(null,"r",.5*o.options.drawPoints.size)):(a=e.getSVGElement("rect",s,n),a.setAttributeNS(null,"x",t-.5*o.options.drawPoints.size),a.setAttributeNS(null,"y",i-.5*o.options.drawPoints.size),a.setAttributeNS(null,"width",o.options.drawPoints.size),a.setAttributeNS(null,"height",o.options.drawPoints.size)),void 0!==o.options.drawPoints.styles&&a.setAttributeNS(null,"style",o.group.options.drawPoints.styles),a.setAttributeNS(null,"class",o.className+" point");var h=e.getSVGElement("text",s,n);return r&&(r.xOffset&&(t+=r.xOffset),r.yOffset&&(i+=r.yOffset),r.content&&(h.textContent=r.content),r.className&&h.setAttributeNS(null,"class",r.className+" label")),h.setAttributeNS(null,"x",t),h.setAttributeNS(null,"y",i),a},e.drawBar=function(t,i,o,s,n,r,a){if(0!=s){0>s&&(s*=-1,i-=s);var h=e.getSVGElement("rect",r,a);h.setAttributeNS(null,"x",t-.5*o),h.setAttributeNS(null,"y",i),h.setAttributeNS(null,"width",o),h.setAttributeNS(null,"height",s),h.setAttributeNS(null,"class",n)}}},function(t,e,i){function o(t,e){if(!t||Array.isArray(t)||s.isDataTable(t)||(e=t,t=null),this._options=e||{},this._data={},this.length=0,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 o=this._options.type[i];this._type[i]="Date"==o||"ISODate"==o||"ASPDate"==o?"Date":o}if(this._options.convert)throw new Error('Option "convert" is deprecated. Use "type" instead.');this._subscribers={},t&&this.add(t),this.setOptions(e)}var s=i(1),n=i(5);o.prototype.setOptions=function(t){t&&void 0!==t.queue&&(t.queue===!1?this._queue&&(this._queue.destroy(),delete this._queue):(this._queue||(this._queue=n.extend(this,{replace:["add","update","remove"]})),"object"==typeof t.queue&&this._queue.setOptions(t.queue)))},o.prototype.on=function(t,e){var i=this._subscribers[t];i||(i=[],this._subscribers[t]=i),i.push({callback:e})},o.prototype.subscribe=o.prototype.on,o.prototype.off=function(t,e){var i=this._subscribers[t];i&&(this._subscribers[t]=i.filter(function(t){return t.callback!=e}))},o.prototype.unsubscribe=o.prototype.off,o.prototype._trigger=function(t,e,i){if("*"==t)throw new Error("Cannot trigger event *");var o=[];t in this._subscribers&&(o=o.concat(this._subscribers[t])),"*"in this._subscribers&&(o=o.concat(this._subscribers["*"]));for(var s=0;sr;r++)i=n._addItem(t[r]),o.push(i);else if(s.isDataTable(t))for(var h=this._getColumnNames(t),d=0,l=t.getNumberOfRows();l>d;d++){for(var c={},u=0,p=h.length;p>u;u++){var f=h[u];c[f]=t.getValue(d,u)}i=n._addItem(c),o.push(i)}else{if(!(t instanceof Object))throw new Error("Unknown dataType");i=n._addItem(t),o.push(i)}return o.length&&this._trigger("add",{items:o},e),o},o.prototype.update=function(t,e){var i=[],o=[],n=[],r=this,a=r._fieldId,h=function(t){var e=t[a];r._data[e]?(e=r._updateItem(t),o.push(e),n.push(t)):(e=r._addItem(t),i.push(e))};if(Array.isArray(t))for(var d=0,l=t.length;l>d;d++)h(t[d]);else if(s.isDataTable(t))for(var c=this._getColumnNames(t),u=0,p=t.getNumberOfRows();p>u;u++){for(var f={},m=0,g=c.length;g>m;m++){var v=c[m];f[v]=t.getValue(u,m)}h(f)}else{if(!(t instanceof Object))throw new Error("Unknown dataType");h(t)}return i.length&&this._trigger("add",{items:i},e),o.length&&this._trigger("update",{items:o,data:n},e),i.concat(o)},o.prototype.get=function(){var t,e,i,o,n=this,r=s.getType(arguments[0]);"String"==r||"Number"==r?(t=arguments[0],i=arguments[1],o=arguments[2]):"Array"==r?(e=arguments[0],i=arguments[1],o=arguments[2]):(i=arguments[0],o=arguments[1]);var a;if(i&&i.returnType){var h=["DataTable","Array","Object"];if(a=-1==h.indexOf(i.returnType)?"Array":i.returnType,o&&a!=s.getType(o))throw new Error('Type of parameter "data" ('+s.getType(o)+") does not correspond with specified options.type ("+i.type+")");if("DataTable"==a&&!s.isDataTable(o))throw new Error('Parameter "data" must be a DataTable when options.type is "DataTable"')}else a=o&&"DataTable"==s.getType(o)?"DataTable":"Array";var d,l,c,u,p=i&&i.type||this._options.type,f=i&&i.filter,m=[];if(void 0!=t)d=n._getItem(t,p),f&&!f(d)&&(d=null);else if(void 0!=e)for(c=0,u=e.length;u>c;c++)d=n._getItem(e[c],p),(!f||f(d))&&m.push(d);else for(l in this._data)this._data.hasOwnProperty(l)&&(d=n._getItem(l,p),(!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,u=m.length;u>c;c++)m[c]=this._filterFields(m[c],g)}if("DataTable"==a){var v=this._getColumnNames(o);if(void 0!=t)n._appendRow(o,v,d);else for(c=0;cc;c++)o.push(m[c]);return o}return m},o.prototype.getIds=function(t){var e,i,o,s,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(o in r)r.hasOwnProperty(o)&&(s=this._getItem(o,d),a(s)&&n.push(s));for(this._sort(n,h),e=0,i=n.length;i>e;e++)l[e]=n[e][this._fieldId]}else for(o in r)r.hasOwnProperty(o)&&(s=this._getItem(o,d),a(s)&&l.push(s[this._fieldId]));else if(h){n=[];for(o in r)r.hasOwnProperty(o)&&n.push(r[o]);for(this._sort(n,h),e=0,i=n.length;i>e;e++)l[e]=n[e][this._fieldId]}else for(o in r)r.hasOwnProperty(o)&&(s=r[o],l.push(s[this._fieldId]));return l},o.prototype.getDataSet=function(){return this},o.prototype.forEach=function(t,e){var i,o,s=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],o=i[this._fieldId],t(i,o);else for(o in r)r.hasOwnProperty(o)&&(i=this._getItem(o,n),(!s||s(i))&&t(i,o))},o.prototype.map=function(t,e){var i,o=e&&e.filter,s=e&&e.type||this._options.type,n=[],r=this._data;for(var a in r)r.hasOwnProperty(a)&&(i=this._getItem(a,s),(!o||o(i))&&n.push(t(i,a)));return e&&e.order&&this._sort(n,e.order),n},o.prototype._filterFields=function(t,e){if(!t)return t;var i={};for(var o in t)t.hasOwnProperty(o)&&-1!=e.indexOf(o)&&(i[o]=t[o]);return i},o.prototype._sort=function(t,e){if(s.isString(e)){var i=e;t.sort(function(t,e){var o=t[i],s=e[i];return o>s?1:s>o?-1:0})}else{if("function"!=typeof e)throw new TypeError("Order must be a function or a string");t.sort(e)}},o.prototype.remove=function(t,e){var i,o,s,n=[];if(Array.isArray(t))for(i=0,o=t.length;o>i;i++)s=this._remove(t[i]),null!=s&&n.push(s);else s=this._remove(t),null!=s&&n.push(s);return n.length&&this._trigger("remove",{items:n},e),n},o.prototype._remove=function(t){if(s.isNumber(t)||s.isString(t)){if(this._data[t])return delete this._data[t],this.length--,t}else if(t instanceof Object){var e=t[this._fieldId];if(e&&this._data[e])return delete this._data[e],this.length--,e}return null},o.prototype.clear=function(t){var e=Object.keys(this._data);return this._data={},this.length=0,this._trigger("remove",{items:e},t),e},o.prototype.max=function(t){var e=this._data,i=null,o=null;for(var s in e)if(e.hasOwnProperty(s)){var n=e[s],r=n[t];null!=r&&(!i||r>o)&&(i=n,o=r)}return i},o.prototype.min=function(t){var e=this._data,i=null,o=null;for(var s in e)if(e.hasOwnProperty(s)){var n=e[s],r=n[t];null!=r&&(!i||o>r)&&(i=n,o=r)}return i},o.prototype.distinct=function(t){var e,i=this._data,o=[],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(o[e]==d){l=!0;break}l||void 0===d||(o[r]=d,r++)}if(n)for(e=0;ei;i++)e[i]=t.getColumnId(i)||t.getColumnLabel(i);return e},o.prototype._appendRow=function(t,e,i){for(var o=t.addRow(),s=0,n=e.length;n>s;s++){var r=e[s];t.setValue(o,s,i[r])}},t.exports=o},function(t,e,i){function o(t,e){this._data=null,this._ids={},this.length=0,this._options=e||{},this._fieldId="id",this._subscribers={};var i=this;this.listener=function(){i._onEvent.apply(i,arguments)},this.setData(t)}var s=i(1),n=i(3);o.prototype.setData=function(t){var e,i,o;if(this._data){this._data.unsubscribe&&this._data.unsubscribe("*",this.listener),e=[];for(var s in this._ids)this._ids.hasOwnProperty(s)&&e.push(s);this._ids={},this.length=0,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,o=e.length;o>i;i++)s=e[i],this._ids[s]=!0;this.length=e.length,this._trigger("add",{items:e}),this._data.on&&this._data.on("*",this.listener)}},o.prototype.refresh=function(){for(var t,e=this._data.getIds({filter:this._options&&this._options.filter}),i={},o=[],s=[],n=0;no;o++)n=a[o],r=this.get(n),r&&(this._ids[n]=!0,d.push(n));break;case"update":for(o=0,s=a.length;s>o;o++)n=a[o],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(o=0,s=a.length;s>o;o++)n=a[o],this._ids[n]&&(delete this._ids[n],c.push(n))}this.length+=d.length-c.length,d.length&&this._trigger("add",{items:d},i),l.length&&this._trigger("update",{items:l},i),c.length&&this._trigger("remove",{items:c},i)}},o.prototype.on=n.prototype.on,o.prototype.off=n.prototype.off,o.prototype._trigger=n.prototype._trigger,o.prototype.subscribe=o.prototype.on,o.prototype.unsubscribe=o.prototype.off,t.exports=o},function(t){function e(t){this.delay=null,this.max=1/0,this._queue=[],this._timeout=null,this._extended=null,this.setOptions(t)}e.prototype.setOptions=function(t){t&&"undefined"!=typeof t.delay&&(this.delay=t.delay),t&&"undefined"!=typeof t.max&&(this.max=t.max),this._flushIfNeeded()},e.extend=function(t,i){var o=new e(i);if(void 0!==t.flush)throw new Error("Target object already has a property flush");t.flush=function(){o.flush()};var s=[{name:"flush",original:void 0}];if(i&&i.replace)for(var n=0;nthis.max&&this.flush(),clearTimeout(this._timeout),this.queue.length>0&&"number"==typeof this.delay){var t=this;this._timeout=setTimeout(function(){t.flush()},this.delay)}},e.prototype.flush=function(){for(;this._queue.length>0;){var t=this._queue.shift();t.fn.apply(t.context||t.fn,t.args||[])}},t.exports=e},function(t,e,i){function o(t,e,i){if(!(this instanceof o))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";var s=function(t){return t};this.xValueLabel=s,this.yValueLabel=s,this.zValueLabel=s,this.filterLabel="time",this.legendLabel="value",this.style=o.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 u,this.eye=new l(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)}function s(t){return"clientX"in t?t.clientX:t.targetTouches[0]&&t.targetTouches[0].clientX||0}function n(t){return"clientY"in t?t.clientY:t.targetTouches[0]&&t.targetTouches[0].clientY||0}var r=i(62),a=i(3),h=i(4),d=i(1),l=i(10),c=i(9),u=i(7),p=i(8),f=i(11),m=i(12);r(o.prototype),o.prototype._setScale=function(){this.scale=new l(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!==o.STYLE.DOTCOLOR&&this.style!==o.STYLE.DOTSIZE&&this.style!==o.STYLE.BARCOLOR&&this.style!==o.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)}},o.prototype.getNumberOfRows=function(t){return t.length},o.prototype.getNumberOfColumns=function(t){var e=0;for(var i in t[0])t[0].hasOwnProperty(i)&&e++;return e},o.prototype.getDistinctValues=function(t,e){for(var i=[],o=0;ot[o][e]&&(i.min=t[o][e]),i.maxt;t++){var f=(t-u)/(p-u),g=240*f,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===o.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===o.STYLE.DOTCOLOR||this.style===o.STYLE.DOTSIZE){var y=5,b=new m(this.valueMin,this.valueMax,(this.valueMax-this.valueMin)/5,!0);for(b.start(),b.getCurrent()0?this.yMin:this.yMax,s=this._convert3Dto2D(new l(x,r,this.zMin)),Math.cos(2*w)>0?(g.textAlign="center",g.textBaseline="top",s.y+=b):Math.sin(2*w)<0?(g.textAlign="right",g.textBaseline="middle"):(g.textAlign="left",g.textBaseline="middle"),g.fillStyle=this.colorAxis,g.fillText(" "+this.xValueLabel(i.getCurrent())+" ",s.x,s.y),i.next()}for(g.lineWidth=1,o=void 0===this.defaultYStep,i=new m(this.yMin,this.yMax,this.yStep,o),i.start(),i.getCurrent()0?this.xMin:this.xMax,s=this._convert3Dto2D(new l(n,i.getCurrent(),this.zMin)),Math.cos(2*w)<0?(g.textAlign="center",g.textBaseline="top",s.y+=b):Math.sin(2*w)>0?(g.textAlign="right",g.textBaseline="middle"):(g.textAlign="left",g.textBaseline="middle"),g.fillStyle=this.colorAxis,g.fillText(" "+this.yValueLabel(i.getCurrent())+" ",s.x,s.y),i.next();for(g.lineWidth=1,o=void 0===this.defaultZStep,i=new m(this.zMin,this.zMax,this.zStep,o),i.start(),i.getCurrent()0?this.xMin:this.xMax,r=Math.sin(w)<0?this.yMin:this.yMax;!i.end();)t=this._convert3Dto2D(new l(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(this.zValueLabel(i.getCurrent())+" ",t.x-5,t.y),i.next();g.lineWidth=1,t=this._convert3Dto2D(new l(n,r,this.zMin)),e=this._convert3Dto2D(new l(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,u=this._convert3Dto2D(new l(this.xMin,this.yMin,this.zMin)),p=this._convert3Dto2D(new l(this.xMax,this.yMin,this.zMin)),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(u.x,u.y),g.lineTo(p.x,p.y),g.stroke(),u=this._convert3Dto2D(new l(this.xMin,this.yMax,this.zMin)),p=this._convert3Dto2D(new l(this.xMax,this.yMax,this.zMin)),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(u.x,u.y),g.lineTo(p.x,p.y),g.stroke(),g.lineWidth=1,t=this._convert3Dto2D(new l(this.xMin,this.yMin,this.zMin)),e=this._convert3Dto2D(new l(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 l(this.xMax,this.yMin,this.zMin)),e=this._convert3Dto2D(new l(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 _=this.xLabel;_.length>0&&(c=.1/this.scale.y,n=(this.xMin+this.xMax)/2,r=Math.cos(w)>0?this.yMin-c:this.yMax+c,s=this._convert3Dto2D(new l(n,r,this.zMin)),Math.cos(2*w)>0?(g.textAlign="center",g.textBaseline="top"):Math.sin(2*w)<0?(g.textAlign="right",g.textBaseline="middle"):(g.textAlign="left",g.textBaseline="middle"),g.fillStyle=this.colorAxis,g.fillText(_,s.x,s.y));var M=this.yLabel;M.length>0&&(d=.1/this.scale.x,n=Math.sin(w)>0?this.xMin-d:this.xMax+d,r=(this.yMin+this.yMax)/2,s=this._convert3Dto2D(new l(n,r,this.zMin)),Math.cos(2*w)<0?(g.textAlign="center",g.textBaseline="top"):Math.sin(2*w)>0?(g.textAlign="right",g.textBaseline="middle"):(g.textAlign="left",g.textBaseline="middle"),g.fillStyle=this.colorAxis,g.fillText(M,s.x,s.y));var D=this.zLabel;D.length>0&&(h=30,n=Math.cos(w)>0?this.xMin:this.xMax,r=Math.sin(w)<0?this.yMin:this.yMax,a=(this.zMin+this.zMax)/2,s=this._convert3Dto2D(new l(n,r,a)),g.textAlign="right",g.textBaseline="middle",g.fillStyle=this.colorAxis,g.fillText(D,s.x-h,s.y))},o.prototype._hsv2rgb=function(t,e,i){var o,s,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:o=r,s=h,n=0;break;case 1:o=h,s=r,n=0;break;case 2:o=0,s=r,n=h;break;case 3:o=0,s=h,n=r;break;case 4:o=h,s=0,n=r;break;case 5:o=r,s=0,n=h;break;default:o=0,s=0,n=0}return"RGB("+parseInt(255*o)+","+parseInt(255*s)+","+parseInt(255*n)+")"},o.prototype._redrawDataGrid=function(){var t,e,i,s,n,r,a,h,d,c,u,p,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+s.point.z)/4,c=240*(1-(f-this.zMin)*this.scale.z/this.verticalRatio),u=1,this.showShadow?(p=Math.min(1+M.x/D/2,1),a=this._hsv2rgb(c,u,p),h=a):(p=1,a=this._hsv2rgb(c,u,p),h=this.colorAxis)):(a="gray",h=this.colorAxis),d=.5,g.lineWidth=d,g.fillStyle=a,g.strokeStyle=h,g.beginPath(),g.moveTo(t.screen.x,t.screen.y),g.lineTo(e.screen.x,e.screen.y),g.lineTo(s.screen.x,s.screen.y),g.lineTo(i.screen.x,i.screen.y),g.closePath(),g.fill(),g.stroke()}}else for(n=0;nu&&(u=0);var p,f,m;this.style===o.STYLE.DOTCOLOR?(p=240*(1-(d.point.value-this.valueMin)*this.scale.value),f=this._hsv2rgb(p,1,1),m=this._hsv2rgb(p,1,.8)):this.style===o.STYLE.DOTSIZE?(f=this.colorDot,m=this.colorDotBorder):(p=240*(1-(d.point.z-this.zMin)*this.scale.z/this.verticalRatio),f=this._hsv2rgb(p,1,1),m=this._hsv2rgb(p,1,.8)),i.lineWidth=1,i.strokeStyle=m,i.fillStyle=f,i.beginPath(),i.arc(d.screen.x,d.screen.y,u,0,2*Math.PI,!0),i.fill(),i.stroke()}}},o.prototype._redrawDataBar=function(){var t,e,i,s,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],o.lineWidth=1,o.strokeStyle="blue",o.beginPath(),o.moveTo(t.screen.x,t.screen.y)),e=1;e0&&o.stroke()}},o.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=s(t),this.startMouseY=n(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)},d.addEventListener(document,"mousemove",e.onmousemove),d.addEventListener(document,"mouseup",e.onmouseup),d.preventDefault(t)}},o.prototype._onMouseMove=function(t){t=t||window.event;var e=parseFloat(s(t))-this.startMouseX,i=parseFloat(n(t))-this.startMouseY,o=this.startArmRotation.horizontal+e/200,r=this.startArmRotation.vertical+i/200,a=4,h=Math.sin(a/360*2*Math.PI);Math.abs(Math.sin(o))0?1:0>t?-1:0}var o=e[0],s=e[1],n=e[2],r=i((s.x-o.x)*(t.y-o.y)-(s.y-o.y)*(t.x-o.x)),a=i((n.x-s.x)*(t.y-s.y)-(n.y-s.y)*(t.x-s.x)),h=i((o.x-n.x)*(t.y-n.y)-(o.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)},o.prototype._dataPointFromXY=function(t,e){var i,s=100,n=null,r=null,a=null,h=new c(t,e);if(this.style===o.STYLE.BAR||this.style===o.STYLE.BARCOLOR||this.style===o.STYLE.BARSIZE)for(i=this.dataPoints.length-1;i>=0;i--){n=this.dataPoints[i];var d=n.surfaces;if(d)for(var l=d.length-1;l>=0;l--){var u=d[l],p=u.corners,f=[p[0].screen,p[1].screen,p[2].screen],m=[p[2].screen,p[3].screen,p[0].screen];if(this._insideTriangle(h,f)||this._insideTriangle(h,m))return n}}else for(i=0;ib)&&s>b&&(a=b,r=n)}}return r},o.prototype._showTooltip=function(t){var e,i,o;this.tooltip?(e=this.tooltip.dom.content,i=this.tooltip.dom.line,o=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",o=document.createElement("div"),o.style.position="absolute",o.style.height="0",o.style.width="0",o.style.border="5px solid #4d4d4d",o.style.borderRadius="5px",this.tooltip={dataPoint:null,dom:{content:e,line:i,dot:o}}),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(o);var s=e.offsetWidth,n=e.offsetHeight,r=i.offsetHeight,a=o.offsetWidth,h=o.offsetHeight,d=t.screen.x-s/2;d=Math.min(Math.max(d,10),this.frame.clientWidth-10-s),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",o.style.left=t.screen.x-a/2+"px",o.style.top=t.screen.y-h/2+"px"},o.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)}}},t.exports=o},function(t,e,i){function o(){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()}var s=i(10);o.prototype.setArmLocation=function(t,e,i){this.armLocation.x=t,this.armLocation.y=e,this.armLocation.z=i,this.calculateCameraOrientation()},o.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()},o.prototype.getArmRotation=function(){var t={};return t.horizontal=this.armRotation.horizontal,t.vertical=this.armRotation.vertical,t},o.prototype.setArmLength=function(t){void 0!==t&&(this.armLength=t,this.armLength<.71&&(this.armLength=.71),this.armLength>5&&(this.armLength=5),this.calculateCameraOrientation())},o.prototype.getArmLength=function(){return this.armLength},o.prototype.getCameraLocation=function(){return this.cameraLocation},o.prototype.getCameraRotation=function(){return this.cameraRotation},o.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=o},function(t,e,i){function o(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 s=i(4);o.prototype.isLoaded=function(){return this.loaded},o.prototype.getLoadedProgress=function(){for(var t=this.values.length,e=0;this.dataPoints[e];)e++;return Math.round(e/t*100)},o.prototype.getLabel=function(){return this.graph.filterLabel},o.prototype.getColumn=function(){return this.column},o.prototype.getSelectedValue=function(){return void 0===this.index?void 0:this.values[this.index]},o.prototype.getValues=function(){return this.values},o.prototype.getValue=function(t){if(t>=this.values.length)throw"Error: index out of range";return this.values[t]},o.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 o=new s(this.data,{filter:function(t){return t[i.column]==i.value}}).get();e=this.graph._getDataPoints(o),this.dataPoints[t]=e}return e},o.prototype.setOnLoadCallback=function(t){this.onLoadCallback=t},o.prototype.selectValue=function(t){if(t>=this.values.length)throw"Error: index out of range";this.index=t,this.value=this.values[t]},o.prototype.loadInBackground=function(t){void 0===t&&(t=0);var e=this.graph.frame;if(t0&&(t--,this.setIndex(t))},o.prototype.next=function(){var t=this.getIndex();t0?this.setIndex(0):this.index=void 0},o.prototype.setIndex=function(t){if(!(to&&(o=0),o>this.values.length-1&&(o=this.values.length-1),o},o.prototype.indexToLeft=function(t){var e=parseFloat(this.frame.bar.style.width)-this.frame.slide.clientWidth-10,i=t/(this.values.length-1)*e,o=i+3;return o},o.prototype._onMouseMove=function(t){var e=t.clientX-this.startClientX,i=this.startSlideX+e,o=this.leftToIndex(i);this.setIndex(o),s.preventDefault()},o.prototype._onMouseUp=function(){this.frame.style.cursor="auto",s.removeEventListener(document,"mousemove",this.onmousemove),s.removeEventListener(document,"mouseup",this.onmouseup),s.preventDefault()},t.exports=o},function(t){function e(t,e,i,o){this._start=0,this._end=0,this._step=1,this.prettyStep=!0,this.precision=5,this._current=0,this.setRange(t,e,i,o)}e.prototype.setRange=function(t,e,i,o){this._start=t?t:0,this._end=e?e:0,this.setStep(i,o)},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))),o=2*Math.pow(10,Math.round(e(t/2))),s=5*Math.pow(10,Math.round(e(t/5))),n=i;return Math.abs(o-t)<=Math.abs(n-t)&&(n=o),Math.abs(s-t)<=Math.abs(n-t)&&(n=s),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 o(t,e,i,h){if(!(this instanceof o))throw new SyntaxError("Constructor must be called with the new operator");if(!(Array.isArray(i)||i instanceof n||i instanceof r)&&i instanceof Object){var p=h;h=i,i=p}var f=this;this.defaultOptions={start:null,end:null,autoResize:!0,orientation:"bottom",width:null,height:null,maxHeight:null,minHeight:null},this.options=s.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)},hiddenDates:[],util:{getScale:function(){return f.timeAxis.step.scale},getStep:function(){return f.timeAxis.step.step},toScreen:f._toScreen.bind(f),toGlobalScreen:f._toGlobalScreen.bind(f),toTime:f._toTime.bind(f),toGlobalTime:f._toGlobalTime.bind(f)}},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.currentTime=new l(this.body),this.components.push(this.currentTime),this.customTime=new c(this.body),this.components.push(this.customTime),this.itemSet=new u(this.body),this.components.push(this.itemSet),this.itemsData=null,this.groupsData=null,h&&this.setOptions(h),i&&this.setGroups(i),e?this.setItems(e):this._redraw()}var s=(i(62),i(45),i(1)),n=i(3),r=i(4),a=i(17),h=i(46),d=i(35),l=i(26),c=i(27),u=i(32);o.prototype=new h,o.prototype.redraw=function(){this.itemSet&&this.itemSet.markDirty({refreshItems:!0}),this._redraw()},o.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)if(void 0!=this.options.start||void 0!=this.options.end){if(void 0==this.options.start||void 0==this.options.end)var o=this._getDataRange();var s=void 0!=this.options.start?this.options.start:o.start,a=void 0!=this.options.end?this.options.end:o.end;this.setWindow(s,a,{animate:!1})}else this.fit({animate:!1})},o.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)},o.prototype.setSelection=function(t,e){this.itemSet&&this.itemSet.setSelection(t),e&&e.focus&&this.focus(t,e)},o.prototype.getSelection=function(){return this.itemSet&&this.itemSet.getSelection()||[]},o.prototype.focus=function(t,e){if(this.itemsData&&void 0!=t){var i=Array.isArray(t)?t:[t],o=this.itemsData.getDataSet().get(i,{type:{start:"Date",end:"Date"}}),s=null,n=null;if(o.forEach(function(t){var e=t.start.valueOf(),i="end"in t?t.end.valueOf():t.start.valueOf();(null===s||s>e)&&(s=e),(null===n||i>n)&&(n=i)}),null!==s&&null!==n){var r=(s+n)/2,a=Math.max(this.range.end-this.range.start,1.1*(n-s)),h=e&&void 0!==e.animate?e.animate:!0;this.range.setRange(r-a/2,r+a/2,h)}}},o.prototype.getItemRange=function(){var t=this.itemsData.getDataSet(),e=null,i=null;if(t){var o=t.min("start");e=o?s.convert(o.start,"Date").valueOf():null;var n=t.max("start");n&&(i=s.convert(n.start,"Date").valueOf());var r=t.max("end");r&&(i=null==i?s.convert(r.end,"Date").valueOf():Math.max(i,s.convert(r.end,"Date").valueOf()))}return{min:null!=e?new Date(e):null,max:null!=i?new Date(i):null}},t.exports=o},function(t,e,i){function o(t,e,i,o){if(!(Array.isArray(i)||i instanceof n)&&i instanceof Object){var r=o;o=i,i=r}var h=this;this.defaultOptions={start:null,end:null,autoResize:!0,orientation:"bottom",width:null,height:null,maxHeight:null,minHeight:null},this.options=s.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)},hiddenDates:[],util:{toScreen:h._toScreen.bind(h),toGlobalScreen:h._toGlobalScreen.bind(h),toTime:h._toTime.bind(h),toGlobalTime:h._toGlobalTime.bind(h)}},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.currentTime=new l(this.body),this.components.push(this.currentTime),this.customTime=new c(this.body),this.components.push(this.customTime),this.linegraph=new u(this.body),this.components.push(this.linegraph),this.itemsData=null,this.groupsData=null,o&&this.setOptions(o),i&&this.setGroups(i),e?this.setItems(e):this._redraw()}var s=(i(62),i(45),i(1)),n=i(3),r=i(4),a=i(17),h=i(46),d=i(35),l=i(26),c=i(27),u=i(34);o.prototype=new h,o.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)if(void 0!=this.options.start||void 0!=this.options.end){var o=void 0!=this.options.start?this.options.start:null,s=void 0!=this.options.end?this.options.end:null;this.setWindow(o,s,{animate:!1})}else this.fit({animate:!1})},o.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)},o.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},o.prototype.isGroupVisible=function(t){return void 0!==this.linegraph.groups[t]?this.linegraph.groups[t].visible&&(void 0===this.linegraph.options.groups.visibility[t]||1==this.linegraph.options.groups.visibility[t]):!1},o.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 o=0;or?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=o},function(t,e,i){var o=i(44);e.convertHiddenOptions=function(t,e){if(t.hiddenDates=[],e&&1==Array.isArray(e)){for(var i=0;i=4*a){var u=0,p=n.clone();switch(i[h].repeat){case"daily":d.day()!=l.day()&&(u=1),d.dayOfYear(s.dayOfYear()),d.year(s.year()),d.subtract(7,"days"),l.dayOfYear(s.dayOfYear()),l.year(s.year()),l.subtract(7-u,"days"),p.add(1,"weeks");break;case"weekly":var f=l.diff(d,"days"),m=d.day();d.date(s.date()),d.month(s.month()),d.year(s.year()),l=d.clone(),d.day(m),l.day(m),l.add(f,"days"),d.subtract(1,"weeks"),l.subtract(1,"weeks"),p.add(1,"weeks");break;case"monthly":d.month()!=l.month()&&(u=1),d.month(s.month()),d.year(s.year()),d.subtract(1,"months"),l.month(s.month()),l.year(s.year()),l.subtract(1,"months"),l.add(u,"months"),p.add(1,"months");break;case"yearly":d.year()!=l.year()&&(u=1),d.year(s.year()),d.subtract(1,"years"),l.year(s.year()),l.subtract(1,"years"),l.add(u,"years"),p.add(1,"years");break;default:return void console.log("Wrong repeat format, allowed are: daily, weekly, monthly, yearly. Given:",i[h].repeat)}for(;p>d;)switch(t.hiddenDates.push({start:d.valueOf(),end:l.valueOf()}),i[h].repeat){case"daily":d.add(1,"days"),l.add(1,"days");break;case"weekly":d.add(1,"weeks"),l.add(1,"weeks");break;case"monthly":d.add(1,"months"),l.add(1,"months");break;case"yearly":d.add(1,"y"),l.add(1,"y");break;default:return void console.log("Wrong repeat format, allowed are: daily, weekly, monthly, yearly. Given:",i[h].repeat)}t.hiddenDates.push({start:d.valueOf(),end:l.valueOf()})}}e.removeDuplicates(t);var g=e.isHidden(t.range.start,t.hiddenDates),v=e.isHidden(t.range.end,t.hiddenDates),y=t.range.start,b=t.range.end;1==g.hidden&&(y=1==t.range.startToFront?g.startDate-1:g.endDate+1),1==v.hidden&&(b=1==t.range.endToFront?v.startDate-1:v.endDate+1),(1==g.hidden||1==v.hidden)&&t.range._applyRange(y,b)}},e.removeDuplicates=function(t){for(var e=t.hiddenDates,i=[],o=0;o=e[o].start&&e[s].end<=e[o].end?e[s].remove=!0:e[s].start>=e[o].start&&e[s].start<=e[o].end?(e[o].end=e[s].end,e[s].remove=!0):e[s].end>=e[o].start&&e[s].end<=e[o].end&&(e[o].start=e[s].start,e[s].remove=!0));for(var o=0;o=r&&a>s){i=!0;break}}if(1==i&&s=e&&i>r&&(o+=r-n)}return o},e.correctTimeForHidden=function(t,i,s){return s=o(s).toDate().valueOf(),s-=e.getHiddenDurationBefore(t,i,s)},e.getHiddenDurationBefore=function(t,e,i){var s=0;i=o(i).toDate().valueOf();for(var n=0;n=e.start&&a=a&&(s+=a-r)}return s},e.getAccumulatedHiddenDuration=function(t,e,i){for(var o=0,s=0,n=e.start,r=0;r=e.start&&h=i)break;o+=h-a}}return o},e.snapAwayFromHidden=function(t,i,o,s){var n=e.isHidden(i,t);return 1==n.hidden?0>o?1==s?n.startDate-(n.endDate-i)-1:n.startDate-1:1==s?n.endDate+(i-n.startDate)+1:n.endDate+1:i},e.isHidden=function(t,e){for(var i=0;i=o&&s>t)return{hidden:!0,startDate:o,endDate:s}}return{hidden:!1,startDate:o,endDate:s}}},function(t){function e(t,e,i,o,s,n){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.alignZeros=n,this.setRange(t,e,i,o,s)}e.prototype.setRange=function(t,e,i,o,s){this._start=void 0===s.min?t:s.min,this._end=void 0===s.max?e:s.max,this._start==this._end&&(this._start-=.75,this._end+=1),1==this.autoScale&&this.setMinimumStep(i,o),this.setFirst(s)},e.prototype.setMinimumStep=function(t,e){var i=this._end-this._start,o=1.2*i,s=t*(o/e),n=Math.round(Math.log(o)/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=s){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,1==this.alignZeros&&(this.marginEnd-this.marginStart)%this.step!=0&&(this.marginEnd+=this.marginEnd%this.step),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(t){var e=Math.abs(this.current)0;o--){if("0"!=i[o]){if("."==i[o]||","==i[o]){i=i.slice(0,o);break}break}i=i.slice(0,o)}}else{var s="",n=i.indexOf("e");if(-1!=n&&(s=i.slice(n),i=i.slice(0,n)),n=Math.max(i.indexOf(","),i.indexOf(".")),-1===n?(0!==t&&(i+="."),n=i.length+t):0!==t&&(n+=t+1),n>i.length)for(var r=n-i.length;r>0;r--)i+="0";else i=i.slice(0,n);i+=s}return i},e.prototype.isMajor=function(){return this.current%(this.scale*this.majorSteps[this.stepIndex])==0},t.exports=e},function(t,e,i){function o(t,e){var i=a().hours(0).minutes(0).seconds(0).milliseconds(0);this.start=i.clone().add(-3,"days").valueOf(),this.end=i.clone().add(4,"days").valueOf(),this.body=t,this.deltaDifference=0,this.scaleOffset=0,this.startToFront=!1,this.endToFront=!0,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.animateTimer=null,this.body.emitter.on("panstart",this._onDragStart.bind(this)),this.body.emitter.on("panmove",this._onDrag.bind(this)),this.body.emitter.on("panend",this._onDragEnd.bind(this)),this.body.emitter.on("press",this._onHold.bind(this)),this.body.emitter.on("mousewheel",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 s(t){if("horizontal"!=t&&"vertical"!=t)throw new TypeError('Unknown direction "'+t+'". Choose "horizontal" or "vertical".')}function n(t,e){return{x:t.x-r.getAbsoluteLeft(e),y:t.y-r.getAbsoluteTop(e)}}var r=i(1),a=(i(47),i(44)),h=i(25),d=i(15);o.prototype=new h,o.prototype.setOptions=function(t){if(t){var e=["direction","min","max","zoomMin","zoomMax","moveable","zoomable","activate","hiddenDates"];r.selectiveExtend(e,this.options,t),("start"in t||"end"in t)&&this.setRange(t.start,t.end)}},o.prototype.setRange=function(t,e,i,o){o!==!0&&(o=!1);var s=void 0!=t?r.convert(t,"Date").valueOf():null,n=void 0!=e?r.convert(e,"Date").valueOf():null;if(this._cancelAnimation(),i){var a=this,h=this.start,l=this.end,c="number"==typeof i?i:500,u=(new Date).valueOf(),p=!1,f=function(){if(!a.props.touch.dragging){var t=(new Date).valueOf(),e=t-u,i=e>c,g=i||null===s?s:r.easeInOutQuad(e,h,s,c),v=i||null===n?n:r.easeInOutQuad(e,l,n,c);m=a._applyRange(g,v),d.updateHiddenDates(a.body,a.options.hiddenDates),p=p||m,m&&a.body.emitter.emit("rangechange",{start:new Date(a.start),end:new Date(a.end),byUser:o}),i?p&&a.body.emitter.emit("rangechanged",{start:new Date(a.start),end:new Date(a.end),byUser:o}):a.animateTimer=setTimeout(f,20)}};return f()}var m=this._applyRange(s,n);if(d.updateHiddenDates(this.body,this.options.hiddenDates),m){var g={start:new Date(this.start),end:new Date(this.end),byUser:o};this.body.emitter.emit("rangechange",g),this.body.emitter.emit("rangechanged",g)}},o.prototype._cancelAnimation=function(){this.animateTimer&&(clearTimeout(this.animateTimer),this.animateTimer=null)},o.prototype._applyRange=function(t,e){var i,o=null!=t?r.convert(t,"Date").valueOf():this.start,s=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(o)||null===o)throw new Error('Invalid start "'+t+'"');if(isNaN(s)||null===s)throw new Error('Invalid end "'+e+'"');if(o>s&&(s=o),null!==a&&a>o&&(i=a-o,o+=i,s+=i,null!=n&&s>n&&(s=n)),null!==n&&s>n&&(i=s-n,o-=i,s-=i,null!=a&&a>o&&(o=a)),null!==this.options.zoomMin){var h=parseFloat(this.options.zoomMin);0>h&&(h=0),h>s-o&&(this.end-this.start===h&&o>this.start&&sd&&(d=0),s-o>d&&(this.end-this.start===d&&othis.end?(o=this.start,s=this.end):(i=s-o-d,o+=i/2,s-=i/2))}var l=this.start!=o||this.end!=s;return o>=this.start&&o<=this.end||s>=this.start&&s<=this.end||this.start>=o&&this.start<=s||this.end>=o&&this.end<=s||this.body.emitter.emit("checkRangedItems"),this.start=o,this.end=s,l},o.prototype.getRange=function(){return{start:this.start,end:this.end}},o.prototype.conversion=function(t,e){return o.conversion(this.start,this.end,t,e)},o.conversion=function(t,e,i,o){return void 0===o&&(o=0),0!=i&&e-t!=0?{offset:t,scale:i/(e-t-o)}:{offset:0,scale:1}},o.prototype._onDragStart=function(t){this.deltaDifference=0,this.previousDelta=0,this.options.moveable&&this.props.touch.allowDragging&&(this.props.touch.start=this.start,this.props.touch.end=this.end,this.props.touch.dragging=!0,this.body.dom.root&&(this.body.dom.root.style.cursor="move"),t.preventDefault())},o.prototype._onDrag=function(t){if(this.options.moveable&&this.props.touch.allowDragging){var e=this.options.direction;s(e);var i="horizontal"==e?t.deltaX:t.deltaY;i-=this.deltaDifference;var o=this.props.touch.end-this.props.touch.start,n=d.getHiddenDurationBetween(this.body.hiddenDates,this.start,this.end);o-=n;var r="horizontal"==e?this.body.domProps.center.width:this.body.domProps.center.height,a=-i/r*o,h=this.props.touch.start+a,l=this.props.touch.end+a,c=d.snapAwayFromHidden(this.body.hiddenDates,h,this.previousDelta-i,!0),u=d.snapAwayFromHidden(this.body.hiddenDates,l,this.previousDelta-i,!0);if(c!=h||u!=l)return this.deltaDifference+=i,this.props.touch.start=c,this.props.touch.end=u,void this._onDrag(t);this.previousDelta=i,this._applyRange(h,l),this.body.emitter.emit("rangechange",{start:new Date(this.start),end:new Date(this.end),byUser:!0}),t.preventDefault()}},o.prototype._onDragEnd=function(){this.options.moveable&&this.props.touch.allowDragging&&(this.props.touch.dragging=!1,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),byUser:!0}))},o.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 o=n({x:t.pageX,y:t.pageY},this.body.dom.center),s=this._pointerToDate(o);this.zoom(i,s,e)}t.preventDefault()}},o.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,this.scaleOffset=0,this.deltaDifference=0},o.prototype._onHold=function(){this.props.touch.allowDragging=!1},o.prototype._onPinch=function(t){if(this.options.zoomable&&this.options.moveable){this.props.touch.allowDragging=!1,this.props.touch.center||(this.props.touch.center=n(t.center,this.body.dom.center));var e=1/(t.scale+this.scaleOffset),i=this._pointerToDate(this.props.touch.center),o=d.getHiddenDurationBetween(this.body.hiddenDates,this.start,this.end),s=d.getHiddenDurationBefore(this.body.hiddenDates,this,i),r=o-s,a=i-s+(this.props.touch.start-(i-s))*e,h=i+r+(this.props.touch.end-(i+r))*e;this.startToFront=0>=1-e,this.endToFront=0>=e-1;var l=d.snapAwayFromHidden(this.body.hiddenDates,a,1-e,!0),c=d.snapAwayFromHidden(this.body.hiddenDates,h,e-1,!0);(l!=a||c!=h)&&(this.props.touch.start=l,this.props.touch.end=c,this.scaleOffset=1-t.scale,a=l,h=c),this.setRange(a,h,!1,!0),this.startToFront=!1,this.endToFront=!0,t.preventDefault()}},o.prototype._pointerToDate=function(t){var e,i=this.options.direction;if(s(i),"horizontal"==i)return this.body.util.toTime(t.x).valueOf();var o=this.body.domProps.center.height;return e=this.conversion(o),t.y/e.scale+e.offset},o.prototype.zoom=function(t,e,i){null==e&&(e=(this.start+this.end)/2);var o=d.getHiddenDurationBetween(this.body.hiddenDates,this.start,this.end),s=d.getHiddenDurationBefore(this.body.hiddenDates,this,e),n=o-s,r=e-s+(this.start-(e-s))*t,a=e+n+(this.end-(e+n))*t;this.startToFront=i>0?!1:!0,this.endToFront=-i>0?!1:!0;var h=d.snapAwayFromHidden(this.body.hiddenDates,r,i,!0),l=d.snapAwayFromHidden(this.body.hiddenDates,a,-i,!0);(h!=r||l!=a)&&(r=h,a=l),this.setRange(r,a,!1,!0),this.startToFront=!1,this.endToFront=!0},o.prototype.move=function(t){var e=this.end-this.start,i=this.start+e*t,o=this.end+e*t;this.start=i,this.end=o},o.prototype.moveTo=function(t){var e=(this.start+this.end)/2,i=e-t,o=this.start-i,s=this.end-i;this.setRange(o,s)},t.exports=o},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,o="end"in e.data?e.data.end:e.data.start;return i-o})},e.stack=function(t,i,o){var s,n;if(o)for(s=0,n=t.length;n>s;s++)t[s].top=null;for(s=0,n=t.length;n>s;s++){var r=t[s];if(r.stack&&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&&l.stack&&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,i){var o,s,n;for(o=0,s=t.length;s>o;o++)if(void 0!==t[o].data.subgroup){n=e.axis;for(var r in i)i.hasOwnProperty(r)&&1==i[r].visible&&i[r].indexe.left&&t.top-o.vertical+ie.top}},function(t,e,i){function o(t,e,i,s){this.current=new Date,this._start=new Date,this._end=new Date,this.autoScale=!0,this.scale="day",this.step=1,this.setRange(t,e,i),this.switchedDay=!1,this.switchedMonth=!1,this.switchedYear=!1,this.hiddenDates=s,void 0===s&&(this.hiddenDates=[]),this.format=o.FORMAT}var s=i(44),n=i(15),r=i(1);o.FORMAT={minorLabels:{millisecond:"SSS",second:"s",minute:"HH:mm",hour:"HH:mm",weekday:"ddd D",day:"D",month:"MMM",year:"YYYY"},majorLabels:{millisecond:"HH:mm:ss",second:"D MMMM HH:mm",minute:"ddd D MMMM",hour:"ddd D MMMM",weekday:"MMMM YYYY",day:"MMMM YYYY",month:"YYYY",year:""}},o.prototype.setFormat=function(t){var e=r.deepExtend({},o.FORMAT);this.format=r.deepExtend(e,t)},o.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)},o.prototype.first=function(){this.current=new Date(this._start.valueOf()),this.roundToMinor()},o.prototype.roundToMinor=function(){switch(this.scale){case"year":this.current.setFullYear(this.step*Math.floor(this.current.getFullYear()/this.step)),this.current.setMonth(0);case"month":this.current.setDate(1);case"day":case"weekday":this.current.setHours(0);case"hour":this.current.setMinutes(0);case"minute":this.current.setSeconds(0);case"second":this.current.setMilliseconds(0)}if(1!=this.step)switch(this.scale){case"millisecond":this.current.setMilliseconds(this.current.getMilliseconds()-this.current.getMilliseconds()%this.step);break;case"second":this.current.setSeconds(this.current.getSeconds()-this.current.getSeconds()%this.step);break;case"minute":this.current.setMinutes(this.current.getMinutes()-this.current.getMinutes()%this.step); +break;case"hour":this.current.setHours(this.current.getHours()-this.current.getHours()%this.step);break;case"weekday":case"day":this.current.setDate(this.current.getDate()-1-(this.current.getDate()-1)%this.step+1);break;case"month":this.current.setMonth(this.current.getMonth()-this.current.getMonth()%this.step);break;case"year":this.current.setFullYear(this.current.getFullYear()-this.current.getFullYear()%this.step)}},o.prototype.hasNext=function(){return this.current.valueOf()<=this._end.valueOf()},o.prototype.next=function(){var t=this.current.valueOf();if(this.current.getMonth()<6)switch(this.scale){case"millisecond":this.current=new Date(this.current.valueOf()+this.step);break;case"second":this.current=new Date(this.current.valueOf()+1e3*this.step);break;case"minute":this.current=new Date(this.current.valueOf()+1e3*this.step*60);break;case"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"weekday":case"day":this.current.setDate(this.current.getDate()+this.step);break;case"month":this.current.setMonth(this.current.getMonth()+this.step);break;case"year":this.current.setFullYear(this.current.getFullYear()+this.step)}else switch(this.scale){case"millisecond":this.current=new Date(this.current.valueOf()+this.step);break;case"second":this.current.setSeconds(this.current.getSeconds()+this.step);break;case"minute":this.current.setMinutes(this.current.getMinutes()+this.step);break;case"hour":this.current.setHours(this.current.getHours()+this.step);break;case"weekday":case"day":this.current.setDate(this.current.getDate()+this.step);break;case"month":this.current.setMonth(this.current.getMonth()+this.step);break;case"year":this.current.setFullYear(this.current.getFullYear()+this.step)}if(1!=this.step)switch(this.scale){case"millisecond":this.current.getMilliseconds()0?t.step:1,this.autoScale=!1)},o.prototype.setAutoScale=function(t){this.autoScale=t},o.prototype.setMinimumStep=function(t){if(void 0!=t){var e=31104e6,i=2592e6,o=864e5,s=36e5,n=6e4,r=1e3,a=1;1e3*e>t&&(this.scale="year",this.step=1e3),500*e>t&&(this.scale="year",this.step=500),100*e>t&&(this.scale="year",this.step=100),50*e>t&&(this.scale="year",this.step=50),10*e>t&&(this.scale="year",this.step=10),5*e>t&&(this.scale="year",this.step=5),e>t&&(this.scale="year",this.step=1),3*i>t&&(this.scale="month",this.step=3),i>t&&(this.scale="month",this.step=1),5*o>t&&(this.scale="day",this.step=5),2*o>t&&(this.scale="day",this.step=2),o>t&&(this.scale="day",this.step=1),o/2>t&&(this.scale="weekday",this.step=1),4*s>t&&(this.scale="hour",this.step=4),s>t&&(this.scale="hour",this.step=1),15*n>t&&(this.scale="minute",this.step=15),10*n>t&&(this.scale="minute",this.step=10),5*n>t&&(this.scale="minute",this.step=5),n>t&&(this.scale="minute",this.step=1),15*r>t&&(this.scale="second",this.step=15),10*r>t&&(this.scale="second",this.step=10),5*r>t&&(this.scale="second",this.step=5),r>t&&(this.scale="second",this.step=1),200*a>t&&(this.scale="millisecond",this.step=200),100*a>t&&(this.scale="millisecond",this.step=100),50*a>t&&(this.scale="millisecond",this.step=50),10*a>t&&(this.scale="millisecond",this.step=10),5*a>t&&(this.scale="millisecond",this.step=5),a>t&&(this.scale="millisecond",this.step=1)}},o.snap=function(t,e,i){var o=new Date(t.valueOf());if("year"==e){var s=o.getFullYear()+Math.round(o.getMonth()/12);o.setFullYear(Math.round(s/i)*i),o.setMonth(0),o.setDate(0),o.setHours(0),o.setMinutes(0),o.setSeconds(0),o.setMilliseconds(0)}else if("month"==e)o.getDate()>15?(o.setDate(1),o.setMonth(o.getMonth()+1)):o.setDate(1),o.setHours(0),o.setMinutes(0),o.setSeconds(0),o.setMilliseconds(0);else if("day"==e){switch(i){case 5:case 2:o.setHours(24*Math.round(o.getHours()/24));break;default:o.setHours(12*Math.round(o.getHours()/12))}o.setMinutes(0),o.setSeconds(0),o.setMilliseconds(0)}else if("weekday"==e){switch(i){case 5:case 2:o.setHours(12*Math.round(o.getHours()/12));break;default:o.setHours(6*Math.round(o.getHours()/6))}o.setMinutes(0),o.setSeconds(0),o.setMilliseconds(0)}else if("hour"==e){switch(i){case 4:o.setMinutes(60*Math.round(o.getMinutes()/60));break;default:o.setMinutes(30*Math.round(o.getMinutes()/30))}o.setSeconds(0),o.setMilliseconds(0)}else if("minute"==e){switch(i){case 15:case 10:o.setMinutes(5*Math.round(o.getMinutes()/5)),o.setSeconds(0);break;case 5:o.setSeconds(60*Math.round(o.getSeconds()/60));break;default:o.setSeconds(30*Math.round(o.getSeconds()/30))}o.setMilliseconds(0)}else if("second"==e)switch(i){case 15:case 10:o.setSeconds(5*Math.round(o.getSeconds()/5)),o.setMilliseconds(0);break;case 5:o.setMilliseconds(1e3*Math.round(o.getMilliseconds()/1e3));break;default:o.setMilliseconds(500*Math.round(o.getMilliseconds()/500))}else if("millisecond"==e){var n=i>5?i/2:1;o.setMilliseconds(Math.round(o.getMilliseconds()/n)*n)}return o},o.prototype.isMajor=function(){if(1==this.switchedYear)switch(this.switchedYear=!1,this.scale){case"year":case"month":case"weekday":case"day":case"hour":case"minute":case"second":case"millisecond":return!0;default:return!1}else if(1==this.switchedMonth)switch(this.switchedMonth=!1,this.scale){case"weekday":case"day":case"hour":case"minute":case"second":case"millisecond":return!0;default:return!1}else if(1==this.switchedDay)switch(this.switchedDay=!1,this.scale){case"millisecond":case"second":case"minute":case"hour":return!0;default:return!1}switch(this.scale){case"millisecond":return 0==this.current.getMilliseconds();case"second":return 0==this.current.getSeconds();case"minute":return 0==this.current.getHours()&&0==this.current.getMinutes();case"hour":return 0==this.current.getHours();case"weekday":case"day":return 1==this.current.getDate();case"month":return 0==this.current.getMonth();case"year":return!1;default:return!1}},o.prototype.getLabelMinor=function(t){void 0==t&&(t=this.current);var e=this.format.minorLabels[this.scale];return e&&e.length>0?s(t).format(e):""},o.prototype.getLabelMajor=function(t){void 0==t&&(t=this.current);var e=this.format.majorLabels[this.scale];return e&&e.length>0?s(t).format(e):""},o.prototype.getClassName=function(){function t(t){return t/h%2==0?" even":" odd"}function e(t){return t.isSame(new Date,"day")?" today":t.isSame(s().add(1,"day"),"day")?" tomorrow":t.isSame(s().add(-1,"day"),"day")?" yesterday":""}function i(t){return t.isSame(new Date,"week")?" current-week":""}function o(t){return t.isSame(new Date,"month")?" current-month":""}function n(t){return t.isSame(new Date,"year")?" current-year":""}var r=s(this.current),a=r.locale?r.locale("en"):r.lang("en"),h=this.step;switch(this.scale){case"millisecond":return t(a.milliseconds()).trim();case"second":return t(a.seconds()).trim();case"minute":return t(a.minutes()).trim();case"hour":var d=a.hours();return 4==this.step&&(d=d+"-h"+(d+4)),"h"+d+e(a)+t(a.hours());case"weekday":return a.format("dddd").toLowerCase()+e(a)+i(a)+t(a.date());case"day":var l=a.date(),c=a.format("MMMM").toLowerCase();return"day"+l+" "+c+o(a)+t(l-1);case"month":return a.format("MMMM").toLowerCase()+o(a)+t(a.month());case"year":var u=a.year();return"year"+u+n(a)+t(u);default:return""}},t.exports=o},function(t,e,i){function o(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 s=i(45),n=i(1);o.prototype.stack=!0,o.prototype.select=function(){this.selected=!0,this.dirty=!0,this.displayed&&this.redraw()},o.prototype.unselect=function(){this.selected=!1,this.dirty=!0,this.displayed&&this.redraw()},o.prototype.setData=function(t){this.data=t,this.dirty=!0,this.displayed&&this.redraw()},o.prototype.setParent=function(t){this.displayed?(this.hide(),this.parent=t,this.parent&&this.show()):this.parent=t},o.prototype.isVisible=function(){return!1},o.prototype.show=function(){return!1},o.prototype.hide=function(){return!1},o.prototype.redraw=function(){},o.prototype.repositionX=function(){},o.prototype.repositionY=function(){},o.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",new s(i).on("tap",function(t){e.parent.removeFromDataSet(e),t.stopPropagation(),t.preventDefault()}),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)},o.prototype._updateContents=function(t){var e;if(this.options.template){var i=this.parent.itemSet.itemsData.get(this.id);e=this.options.template(i)}else e=this.data.content;if(e!==this.content){if(e instanceof Element)t.innerHTML="",t.appendChild(e);else if(void 0!=e)t.innerHTML=e;else if("background"!=this.data.type||void 0!==this.data.content)throw new Error('Property "content" missing in item '+this.id);this.content=e}},o.prototype._updateTitle=function(t){null!=this.data.title?t.title=this.data.title||"":t.removeAttribute("title")},o.prototype._updateDataAttributes=function(t){if(this.options.dataAttributes&&this.options.dataAttributes.length>0){var e=[];if(Array.isArray(this.options.dataAttributes))e=this.options.dataAttributes;else{if("all"!=this.options.dataAttributes)return;e=Object.keys(this.data)}for(var i=0;it.start},o.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),this.dirty=!0),!this.parent)throw new Error("Cannot redraw item: no parent attached");if(!t.box.parentNode){var e=this.parent.dom.background;if(!e)throw new Error("Cannot redraw item: parent has no background container element");e.appendChild(t.box)}if(this.displayed=!0,this.dirty){this._updateContents(this.dom.content),this._updateTitle(this.dom.content),this._updateDataAttributes(this.dom.content),this._updateStyle(this.dom.box);var i=(this.data.className?" "+this.data.className:"")+(this.selected?" selected":"");t.box.className=this.baseClassName+i,this.overflow="hidden"!==window.getComputedStyle(t.content).overflow,this.props.content.width=this.dom.content.offsetWidth,this.height=0,this.dirty=!1}},o.prototype.show=r.prototype.show,o.prototype.hide=r.prototype.hide,o.prototype.repositionX=r.prototype.repositionX,o.prototype.repositionY=function(t){var e="top"===this.options.orientation;this.dom.content.style.top=e?"":"0",this.dom.content.style.bottom=e?"0":"";var i;if(void 0!==this.data.subgroup){var o=this.data.subgroup,s=this.parent.subgroups,r=s[o].index;if(1==e){i=this.parent.subgroups[o].height+t.item.vertical,i+=0==r?t.axis-.5*t.item.vertical:0;var a=this.parent.top;for(var h in s)s.hasOwnProperty(h)&&1==s[h].visible&&s[h].indexr&&(a+=s[h].height+t.item.vertical);i=this.parent.subgroups[o].height+t.item.vertical,this.dom.box.style.top=a+"px",this.dom.box.style.bottom=""}}else this.parent instanceof n?(i=Math.max(this.parent.height,this.parent.itemSet.body.domProps.center.height,this.parent.itemSet.body.domProps.centerContainer.height),this.dom.box.style.top=e?"0":"",this.dom.box.style.bottom=e?"":"0"):(i=this.parent.height,this.dom.box.style.top=this.parent.top+"px",this.dom.box.style.bottom="");this.dom.box.style.height=i+"px"},t.exports=o},function(t,e,i){function o(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);s.call(this,t,e,i)}{var s=i(20);i(1)}o.prototype=new s(null,null,null),o.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},o.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.dirty=!0),!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 item: parent has no foreground container element");e.appendChild(t.box)}if(this.displayed=!0,this.dirty){this._updateContents(this.dom.content),this._updateTitle(this.dom.box),this._updateDataAttributes(this.dom.box),this._updateStyle(this.dom.box);var i=(this.data.className?" "+this.data.className:"")+(this.selected?" selected":"");t.box.className=this.baseClassName+i,this.overflow="hidden"!==window.getComputedStyle(t.content).overflow,this.dom.content.style.maxWidth="none",this.props.content.width=this.dom.content.offsetWidth,this.height=this.dom.box.offsetHeight,this.dom.content.style.maxWidth="",this.dirty=!1}this._repaintDeleteButton(t.box),this._repaintDragLeft(),this._repaintDragRight()},o.prototype.show=function(){this.displayed||this.redraw()},o.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}},o.prototype.repositionX=function(){var t,e,i=this.parent.width,o=this.conversion.toScreen(this.data.start),s=this.conversion.toScreen(this.data.end);-i>o&&(o=-i),s>2*i&&(s=2*i);var n=Math.max(s-o,1);switch(this.overflow?(this.left=o,this.width=n+this.props.content.width,e=this.props.content.width):(this.left=o,this.width=n,e=Math.min(s-o-2*this.options.padding,this.props.content.width)),this.dom.box.style.left=this.left+"px",this.dom.box.style.width=n+"px",this.options.align){case"left":this.dom.content.style.left="0";break;case"right":this.dom.content.style.left=Math.max(n-e-2*this.options.padding,0)+"px";break;case"center":this.dom.content.style.left=Math.max((n-e-2*this.options.padding)/2,0)+"px";break;default:t=this.overflow?s>0?Math.max(-o,0):-e:0>o?Math.min(-o,s-o-e-2*this.options.padding):0,this.dom.content.style.left=t+"px"}},o.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"},o.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,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)},o.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,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=o},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 o(t,e){this.body=t,this.defaultOptions={showCurrentTime:!0,locales:a,locale:"en"},this.options=s.extend({},this.defaultOptions),this.offset=0,this._create(),this.setOptions(e)}var s=i(1),n=i(25),r=i(44),a=i(48);o.prototype=new n,o.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},o.prototype.destroy=function(){this.options.showCurrentTime=!1,this.redraw(),this.body=null},o.prototype.setOptions=function(t){t&&s.selectiveExtend(["showCurrentTime","locale","locales"],this.options,t)},o.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((new Date).valueOf()+this.offset),i=this.body.util.toScreen(e),o=this.options.locales[this.options.locale],s=o.current+" "+o.time+": "+r(e).format("dddd, MMMM Do YYYY, H:mm:ss");s=s.charAt(0).toUpperCase()+s.substring(1),this.bar.style.left=i+"px",this.bar.title=s}else this.bar.parentNode&&this.bar.parentNode.removeChild(this.bar),this.stop();return!1},o.prototype.start=function(){function t(){e.stop();var i=e.body.range.conversion(e.body.domProps.center.width).scale,o=1/i/10;30>o&&(o=30),o>1e3&&(o=1e3),e.redraw(),e.currentTimeTimer=setTimeout(t,o)}var e=this;t()},o.prototype.stop=function(){void 0!==this.currentTimeTimer&&(clearTimeout(this.currentTimeTimer),delete this.currentTimeTimer)},o.prototype.setCurrentTime=function(t){var e=s.convert(t,"Date").valueOf(),i=(new Date).valueOf();this.offset=e-i,this.redraw()},o.prototype.getCurrentTime=function(){return new Date((new Date).valueOf()+this.offset)},t.exports=o},function(t,e,i){function o(t,e){this.body=t,this.defaultOptions={showCustomTime:!1,locales:h,locale:"en",id:0},this.options=n.extend({},this.defaultOptions),this.customTime=e&&e.time?e.time:new Date,this.eventParams={},this._create(),this.setOptions(e)}var s=i(45),n=i(1),r=i(25),a=i(44),h=i(48);o.prototype=new r,o.prototype.setOptions=function(t){t&&(n.selectiveExtend(["showCustomTime","locale","locales","id"],this.options,t),this.options.id&&this.redraw())},o.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=new s(e),this.hammer.on("panstart",this._onDragStart.bind(this)),this.hammer.on("panmove",this._onDrag.bind(this)),this.hammer.on("panend",this._onDragEnd.bind(this)),this.hammer.on("pan",function(t){t.preventDefault()})},o.prototype.destroy=function(){this.options.showCustomTime=!1,this.redraw(),this.hammer.enable(!1),this.hammer=null,this.body=null},o.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],o=i.time+": "+a(this.customTime).format("dddd, MMMM Do YYYY, H:mm:ss");o=o.charAt(0).toUpperCase()+o.substring(1),this.bar.style.left=e+"px",this.bar.title=o}else this.bar.parentNode&&this.bar.parentNode.removeChild(this.bar);return!1},o.prototype.setCustomTime=function(t){this.customTime=n.convert(t,"Date"),this.redraw()},o.prototype.getCustomTime=function(){return new Date(this.customTime.valueOf())},o.prototype._onDragStart=function(t){this.eventParams.dragging=!0,this.eventParams.customTime=this.customTime,t.stopPropagation(),t.preventDefault()},o.prototype._onDrag=function(t){if(this.eventParams.dragging){var e=this.body.util.toScreen(this.eventParams.customTime)+t.deltaX,i=this.body.util.toTime(e);this.setCustomTime(i),this.body.emitter.emit("timechange",{id:this.options.id,time:new Date(this.customTime.valueOf())}),t.stopPropagation(),t.preventDefault()}},o.prototype._onDragEnd=function(t){this.eventParams.dragging&&(this.body.emitter.emit("timechanged",{id:this.options.id,time:new Date(this.customTime.valueOf())}),t.stopPropagation(),t.preventDefault())},t.exports=o},function(t,e,i){function o(t,e,i,o){this.id=s.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,alignZeros:!0,customRange:{left:{min:void 0,max:void 0},right:{min:void 0,max:void 0}},title:{left:{text:void 0},right:{text:void 0}},format:{left:{decimals:void 0},right:{decimals:void 0}}},this.linegraphOptions=o,this.linegraphSVG=i,this.props={},this.DOMelements={lines:{},labels:{},title:{}},this.dom={},this.range={start:0,end:0},this.options=s.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.hidden=!1,this.stepPixels=25,this.stepPixelsForced=25,this.zeroCrossing=-1,this.lineOffset=0,this.master=!0,this.svgElements={},this.iconsRemoved=!1,this.groups={},this.amountOfGroups=0,this._create();var n=this;this.body.emitter.on("verticalDrag",function(){n.dom.lineContainer.style.top=n.body.domProps.scrollTop+"px"})}var s=i(1),n=i(2),r=i(25),a=i(16);o.prototype=new r,o.prototype.addGroup=function(t,e){this.groups.hasOwnProperty(t)||(this.groups[t]=e),this.amountOfGroups+=1},o.prototype.updateGroup=function(t,e){this.groups[t]=e},o.prototype.removeGroup=function(t){this.groups.hasOwnProperty(t)&&(delete this.groups[t],this.amountOfGroups-=1)},o.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","title","format","alignZeros"];s.selectiveExtend(i,this.options,t),this.minWidth=Number((""+this.options.width).replace("px","")),1==e&&this.dom.frame&&(this.hide(),this.show())}},o.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.dom.lineContainer.style.position="relative",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)},o.prototype._redrawGroupIcons=function(){n.prepareElements(this.svgElements);var t,e=this.options.iconWidth,i=15,o=4,s=o+.5*i;t="left"==this.options.orientation?o:this.width-e-o;for(var r in this.groups)this.groups.hasOwnProperty(r)&&(1!=this.groups[r].visible||void 0!==this.linegraphOptions.visibility[r]&&1!=this.linegraphOptions.visibility[r]||(this.groups[r].drawIcon(t,s,this.svgElements,this.svg,e,i),s+=i+o));n.cleanupElements(this.svgElements),this.iconsRemoved=!1},o.prototype._cleanupIcons=function(){0==this.iconsRemoved&&(n.prepareElements(this.svgElements),n.cleanupElements(this.svgElements),this.iconsRemoved=!0)},o.prototype.show=function(){this.hidden=!1,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)},o.prototype.hide=function(){this.hidden=!0,this.dom.frame.parentNode&&this.dom.frame.parentNode.removeChild(this.dom.frame),this.dom.lineContainer.parentNode&&this.dom.lineContainer.parentNode.removeChild(this.dom.lineContainer)},o.prototype.setRange=function(t,e){0==this.master&&1==this.options.alignZeros&&-1!=this.zeroCrossing&&t>0&&(t=0),this.range.start=t,this.range.end=e},o.prototype.redraw=function(){var t=!1,e=0;this.dom.lineContainer.style.top=this.body.domProps.scrollTop+"px";for(var i in this.groups)this.groups.hasOwnProperty(i)&&(1!=this.groups[i].visible||void 0!==this.linegraphOptions.visibility[i]&&1!=this.linegraphOptions.visibility[i]||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 o=this.props,s=this.dom.frame;s.className="dataaxis",this._calculateCharSize();var n=this.options.orientation,r=this.options.showMinorLabels,a=this.options.showMajorLabels;o.minorLabelHeight=r?o.minorCharHeight:0,o.majorLabelHeight=a?o.majorCharHeight:0,o.minorLineWidth=this.body.dom.backgroundHorizontal.offsetWidth-this.lineOffset-this.width+2*this.options.minorLinesOffset,o.minorLineHeight=1,o.majorLineWidth=this.body.dom.backgroundHorizontal.offsetWidth-this.lineOffset-this.width+2*this.options.majorLinesOffset,o.majorLineHeight=1,"left"==n?(s.style.top="0",s.style.left="0",s.style.bottom="",s.style.width=this.width+"px",s.style.height=this.height+"px",this.props.width=this.body.domProps.left.width,this.props.height=this.body.domProps.left.height):(s.style.top="",s.style.bottom="0",s.style.left="0",s.style.width=this.width+"px",s.style.height=this.height+"px",this.props.width=this.body.domProps.right.width,this.props.height=this.body.domProps.right.height),t=this._redrawLabels(),t=this._isResized()||t,1==this.options.icons?this._redrawGroupIcons():this._cleanupIcons(),this._redrawTitle(n) +}return t},o.prototype._redrawLabels=function(){var t=!1;n.prepareElements(this.DOMelements.lines),n.prepareElements(this.DOMelements.labels);var e=this.options.orientation,i=this.master?this.props.majorCharHeight||10:this.stepPixelsForced,o=new a(this.range.start,this.range.end,i,this.dom.frame.offsetHeight,this.options.customRange[this.options.orientation],0==this.master&&this.options.alignZeros);this.step=o;var s=(this.dom.frame.offsetHeight-o.deadSpace*(this.dom.frame.offsetHeight/o.marginRange))/((o.marginRange-o.deadSpace)/o.step);this.stepPixels=s;var r=this.height/s,h=0;if(0==this.master){s=this.stepPixelsForced,h=Math.round(this.dom.frame.offsetHeight/s-r);for(var d=0;.5*h>d;d++)o.previous();if(r=this.height/s,-1!=this.zeroCrossing&&1==this.options.alignZeros){var l=o.marginEnd/o.step-this.zeroCrossing;if(l>0)for(var d=0;l>d;d++)o.next();else if(0>l)for(var d=0;-l>d;d++)o.previous()}}else r+=.25;this.valueAtZero=o.marginEnd;var c,u=0,p=1;void 0!==this.options.format[e]&&(c=this.options.format[e].decimals),this.maxLabelSize=0;for(var f=0;p=0&&this._redrawLabel(f-2,o.getCurrent(c),e,"yAxis major",this.props.majorCharHeight),this._redrawLine(f,e,"grid horizontal major",this.options.majorLinesOffset,this.props.majorLineWidth)):this._redrawLine(f,e,"grid horizontal minor",this.options.minorLinesOffset,this.props.minorLineWidth),1==this.master&&0==o.current&&(this.zeroCrossing=p),p++}this.conversionFactor=0==this.master?f/(this.valueAtZero-o.current):this.dom.frame.offsetHeight/o.marginRange;var g=0;void 0!==this.options.title[e]&&void 0!==this.options.title[e].text&&(g=this.props.titleCharHeight);var v=1==this.options.icons?Math.max(this.options.iconWidth,g)+this.options.labelOffsetX+15:g+this.options.labelOffsetX+15;return this.maxLabelSize>this.width-v&&1==this.options.visible?(this.width=this.maxLabelSize+v,this.options.width=this.width+"px",n.cleanupElements(this.DOMelements.lines),n.cleanupElements(this.DOMelements.labels),this.redraw(),t=!0):this.maxLabelSizethis.minWidth?(this.width=Math.max(this.minWidth,this.maxLabelSize+v),this.options.width=this.width+"px",n.cleanupElements(this.DOMelements.lines),n.cleanupElements(this.DOMelements.labels),this.redraw(),t=!0):(n.cleanupElements(this.DOMelements.lines),n.cleanupElements(this.DOMelements.labels),t=!1),t},o.prototype.convertValue=function(t){var e=this.valueAtZero-t,i=e*this.conversionFactor;return i},o.prototype._redrawLabel=function(t,e,i,o,s){var r=n.getDOMElement("div",this.DOMelements.labels,this.dom.frame);r.className=o,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*s+this.options.labelOffsetY+"px",e+="";var a=Math.max(this.props.majorCharWidth,this.props.minorCharWidth);this.maxLabelSized;d++){var c=this.visibleItems[d];c.repositionY(e)}return o},o.prototype._calculateHeight=function(t){var e,i=this.visibleItems;this.resetSubgroups();var o=this;if(i.length){var n=i[0].top,r=i[0].top+i[0].height;if(s.forEach(i,function(t){n=Math.min(n,t.top),r=Math.max(r,t.top+t.height),void 0!==t.data.subgroup&&(o.subgroups[t.data.subgroup].height=Math.max(o.subgroups[t.data.subgroup].height,t.height),o.subgroups[t.data.subgroup].visible=!0)}),n>t.axis){var a=n-t.axis;r-=a,s.forEach(i,function(t){t.top-=a})}e=r+t.item.vertical/2}else e=t.axis+t.item.vertical;return e=Math.max(e,this.props.label.height)},o.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)},o.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 o=this.dom.axis;o.parentNode&&o.parentNode.removeChild(o)},o.prototype.add=function(t){if(this.items[t.id]=t,t.setParent(this),void 0!==t.data.subgroup&&(void 0===this.subgroups[t.data.subgroup]&&(this.subgroups[t.data.subgroup]={height:0,visible:!1,index:this.subgroupIndex,items:[]},this.subgroupIndex++),this.subgroups[t.data.subgroup].items.push(t)),this.orderSubgroups(),-1==this.visibleItems.indexOf(t)){var e=this.itemSet.body.range;this._checkIfVisible(t,this.visibleItems,e)}},o.prototype.orderSubgroups=function(){if(void 0!==this.subgroupOrderer){var t=[];if("string"==typeof this.subgroupOrderer){for(var e in this.subgroups)t.push({subgroup:e,sortField:this.subgroups[e].items[0].data[this.subgroupOrderer]});t.sort(function(t,e){return t.sortField-e.sortField})}else if("function"==typeof this.subgroupOrderer){for(var e in this.subgroups)t.push(this.subgroups[e].items[0].data);t.sort(this.subgroupOrderer)}if(t.length>0)for(var i=0;it?-1:l>=t?0:1};if(e.length>0)for(n=0;nl}),1==this.checkRangedItems)for(this.checkRangedItems=!1,n=0;nl})}for(n=0;n=0&&(n=e[r],!s(n));r--)void 0===o[n.id]&&(o[n.id]=!0,i.push(n));for(r=t+1;ro;o++){var n=this.visibleItems[o];n.repositionY(e)}return i},o.prototype.show=function(){this.dom.background.parentNode||this.itemSet.dom.background.appendChild(this.dom.background)},t.exports=o},function(t,e,i){function o(t,e){this.body=t,this.defaultOptions={type:null,orientation:"bottom",align:"auto",stack:!0,groupOrder:null,selectable:!0,editable:{updateTime:!1,updateGroup:!1,add:!1,remove:!1},snap:h.snap,onAdd:function(t,e){e(t)},onUpdate:function(t,e){e(t)},onMove:function(t,e){e(t)},onRemove:function(t,e){e(t)},onMoving:function(t,e){e(t)},margin:{item:{horizontal:10,vertical:10},axis:20},padding:5},this.options=n.extend({},this.defaultOptions),this.itemOptions={type:{start:"Date",end:"Date"}},this.conversion={toScreen:t.util.toScreen,toTime:t.util.toTime},this.dom={},this.props={},this.hammer=null;var i=this;this.itemsData=null,this.groupsData=null,this.itemListeners={add:function(t,e){i._onAdd(e.items)},update:function(t,e){i._onUpdate(e.items)},remove:function(t,e){i._onRemove(e.items)}},this.groupListeners={add:function(t,e){i._onAddGroups(e.items)},update:function(t,e){i._onUpdateGroups(e.items)},remove:function(t,e){i._onRemoveGroups(e.items)}},this.items={},this.groups={},this.groupIds=[],this.selection=[],this.stackDirty=!0,this.touchParams={},this._create(),this.setOptions(e)}var s=i(45),n=i(1),r=i(3),a=i(4),h=i(19),d=i(25),l=i(30),c=i(31),u=i(22),p=i(23),f=i(24),m=i(21),g="__ungrouped__",v="__background__";o.prototype=new d,o.types={background:m,box:u,range:f,point:p},o.prototype._create=function(){var t=document.createElement("div");t.className="itemset",t["timeline-itemset"]=this,this.dom.frame=t;var e=document.createElement("div");e.className="background",t.appendChild(e),this.dom.background=e;var i=document.createElement("div");i.className="foreground",t.appendChild(i),this.dom.foreground=i;var o=document.createElement("div");o.className="axis",this.dom.axis=o;var n=document.createElement("div");n.className="labelset",this.dom.labelSet=n,this._updateUngrouped();var r=new c(v,null,this);r.show(),this.groups[v]=r,this.hammer=new s(this.body.dom.centerContainer),this.hammer.on("hammer.input",function(t){t.isFirst&&this._onTouch(t)}.bind(this)),this.hammer.on("panstart",this._onDragStart.bind(this)),this.hammer.on("panmove",this._onDrag.bind(this)),this.hammer.on("panend",this._onDragEnd.bind(this)),this.hammer.on("tap",this._onSelectItem.bind(this)),this.hammer.on("press",this._onMultiSelectItem.bind(this)),this.hammer.on("doubletap",this._onAddItem.bind(this)),this.show()},o.prototype.setOptions=function(t){if(t){var e=["type","align","orientation","padding","stack","selectable","groupOrder","dataAttributes","template","hide","snap"];n.selectiveExtend(e,this.options,t),"margin"in t&&("number"==typeof t.margin?(this.options.margin.axis=t.margin,this.options.margin.item.horizontal=t.margin,this.options.margin.item.vertical=t.margin):"object"==typeof t.margin&&(n.selectiveExtend(["axis"],this.options.margin,t.margin),"item"in t.margin&&("number"==typeof t.margin.item?(this.options.margin.item.horizontal=t.margin.item,this.options.margin.item.vertical=t.margin.item):"object"==typeof t.margin.item&&n.selectiveExtend(["horizontal","vertical"],this.options.margin.item,t.margin.item)))),"editable"in t&&("boolean"==typeof t.editable?(this.options.editable.updateTime=t.editable,this.options.editable.updateGroup=t.editable,this.options.editable.add=t.editable,this.options.editable.remove=t.editable):"object"==typeof t.editable&&n.selectiveExtend(["updateTime","updateGroup","add","remove"],this.options.editable,t.editable));var i=function(e){var i=t[e];if(i){if(!(i instanceof Function))throw new Error("option "+e+" must be a function "+e+"(item, callback)");this.options[e]=i}}.bind(this);["onAdd","onUpdate","onRemove","onMove","onMoving"].forEach(i),this.markDirty()}},o.prototype.markDirty=function(t){this.groupIds=[],this.stackDirty=!0,t&&t.refreshItems&&n.forEach(this.items,function(t){t.dirty=!0,t.displayed&&t.redraw()})},o.prototype.destroy=function(){this.hide(),this.setItems(null),this.setGroups(null),this.hammer=null,this.body=null,this.conversion=null},o.prototype.hide=function(){this.dom.frame.parentNode&&this.dom.frame.parentNode.removeChild(this.dom.frame),this.dom.axis.parentNode&&this.dom.axis.parentNode.removeChild(this.dom.axis),this.dom.labelSet.parentNode&&this.dom.labelSet.parentNode.removeChild(this.dom.labelSet)},o.prototype.show=function(){this.dom.frame.parentNode||this.body.dom.center.appendChild(this.dom.frame),this.dom.axis.parentNode||this.body.dom.backgroundVertical.appendChild(this.dom.axis),this.dom.labelSet.parentNode||this.body.dom.left.appendChild(this.dom.labelSet)},o.prototype.setSelection=function(t){var e,i,o,s;for(void 0==t&&(t=[]),Array.isArray(t)||(t=[t]),e=0,i=this.selection.length;i>e;e++)o=this.selection[e],s=this.items[o],s&&s.unselect();for(this.selection=[],e=0,i=t.length;i>e;e++)o=t[e],s=this.items[o],s&&(this.selection.push(o),s.select())},o.prototype.getSelection=function(){return this.selection.concat([])},o.prototype.getVisibleItems=function(){var t=this.body.range.getRange(),e=this.body.util.toScreen(t.start),i=this.body.util.toScreen(t.end),o=[];for(var s in this.groups)if(this.groups.hasOwnProperty(s))for(var n=this.groups[s],r=n.visibleItems,a=0;ae&&o.push(h.id)}return o},o.prototype._deselect=function(t){for(var e=this.selection,i=0,o=e.length;o>i;i++)if(e[i]==t){e.splice(i,1);break}},o.prototype.redraw=function(){var t=this.options.margin,e=this.body.range,i=n.option.asSize,o=this.options,s=o.orientation,r=!1,a=this.dom.frame,h=o.editable.updateTime||o.editable.updateGroup;this.props.top=this.body.domProps.top.height+this.body.domProps.border.top,this.props.left=this.body.domProps.left.width+this.body.domProps.border.left,a.className="itemset"+(h?" editable":""),r=this._orderGroups()||r;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,u=this._firstGroup(),p={item:t.item,axis:t.axis},f={item:t.item,axis:t.item.vertical/2},m=0,g=t.axis+t.item.vertical;return this.groups[v].redraw(e,f,c),n.forEach(this.groups,function(t){var i=t==u?p:f,o=t.redraw(e,i,c);r=o||r,m+=t.height}),m=Math.max(m,g),this.stackDirty=!1,a.style.height=i(m),this.props.width=a.offsetWidth,this.props.height=m,this.dom.axis.style.top=i("top"==s?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",r=this._isResized()||r},o.prototype._firstGroup=function(){var t="top"==this.options.orientation?0:this.groupIds.length-1,e=this.groupIds[t],i=this.groups[e]||this.groups[g];return i||null},o.prototype._updateUngrouped=function(){{var t,e,i=this.groups[g];this.groups[v]}if(this.groupsData){if(i){i.hide(),delete this.groups[g];for(e in this.items)if(this.items.hasOwnProperty(e)){t=this.items[e],t.parent&&t.parent.remove(t);var o=this._getGroupId(t.data),s=this.groups[o];s&&s.add(t)||t.hide()}}}else if(!i){var n=null,r=null;i=new l(n,r,this),this.groups[g]=i;for(e in this.items)this.items.hasOwnProperty(e)&&(t=this.items[e],i.add(t));i.show()}},o.prototype.getLabelSet=function(){return this.dom.labelSet},o.prototype.setItems=function(t){var e,i=this,o=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(o&&(n.forEach(this.itemListeners,function(t,e){o.off(e,t)}),e=o.getIds(),this._onRemove(e)),this.itemsData){var s=this.id;n.forEach(this.itemListeners,function(t,e){i.itemsData.on(e,t,s)}),e=this.itemsData.getIds(),this._onAdd(e),this._updateUngrouped()}},o.prototype.getItems=function(){return this.itemsData},o.prototype.setGroups=function(t){var e,i=this;if(this.groupsData&&(n.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 o=this.id;n.forEach(this.groupListeners,function(t,e){i.groupsData.on(e,t,o)}),e=this.groupsData.getIds(),this._onAddGroups(e)}this._updateUngrouped(),this._order(),this.body.emitter.emit("change",{queue:!0})},o.prototype.getGroups=function(){return this.groupsData},o.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)})},o.prototype._getType=function(t){return t.type||this.options.type||(t.end?"range":"box")},o.prototype._getGroupId=function(t){var e=this._getType(t);return"background"==e&&void 0==t.group?v:this.groupsData?t.group:g},o.prototype._onUpdate=function(t){var e=this;t.forEach(function(t){var i=e.itemsData.get(t,e.itemOptions),s=e.items[t],n=e._getType(i),r=o.types[n];if(s&&(r&&s instanceof r?e._updateItem(s,i):(e._removeItem(s),s=null)),!s){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+'"');s=new r(i,e.conversion,e.options),s.id=t,e._addItem(s)}}),this._order(),this.stackDirty=!0,this.body.emitter.emit("change",{queue:!0})},o.prototype._onAdd=o.prototype._onUpdate,o.prototype._onRemove=function(t){var e=0,i=this;t.forEach(function(t){var o=i.items[t];o&&(e++,i._removeItem(o))}),e&&(this._order(),this.stackDirty=!0,this.body.emitter.emit("change",{queue:!0}))},o.prototype._order=function(){n.forEach(this.groups,function(t){t.order()})},o.prototype._onUpdateGroups=function(t){this._onAddGroups(t)},o.prototype._onAddGroups=function(t){var e=this;t.forEach(function(t){var i=e.groupsData.get(t),o=e.groups[t];if(o)o.setData(i);else{if(t==g||t==v)throw new Error("Illegal group id. "+t+" is a reserved id.");var s=Object.create(e.options);n.extend(s,{height:null}),o=new l(t,i,e),e.groups[t]=o;for(var r in e.items)if(e.items.hasOwnProperty(r)){var a=e.items[r];a.data.group==t&&o.add(a)}o.order(),o.show()}}),this.body.emitter.emit("change",{queue:!0})},o.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",{queue:!0})},o.prototype._orderGroups=function(){if(this.groupsData){var t=this.groupsData.getIds({order:this.options.groupOrder}),e=!n.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},o.prototype._addItem=function(t){this.items[t.id]=t;var e=this._getGroupId(t.data),i=this.groups[e];i&&i.add(t)},o.prototype._updateItem=function(t,e){var i=t.data.group;if(t.setData(e),i!=t.data.group){var o=this.groups[i];o&&o.remove(t);var s=this._getGroupId(t.data),n=this.groups[s];n&&n.add(t)}},o.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),t.parent&&t.parent.remove(t)},o.prototype._constructByEndArray=function(t){for(var e=[],i=0;i0||s.length>0)&&this.body.emitter.emit("select",{items:a})}},o.prototype._onAddItem=function(t){if(this.options.selectable&&this.options.editable.add){var e=this,i=this.options.snap||null,s=o.itemFromTarget(t);if(s){var r=e.itemsData.get(s.id);this.options.onUpdate(r,function(t){t&&e.itemsData.getDataSet().update(t)})}else{var a=n.getAbsoluteLeft(this.dom.frame),h=t.center.x-a,d=this.body.util.toTime(h),l=this.body.util.getScale(),c=this.body.util.getStep(),u={start:i?i(d,l,c):d,content:"new item"};if("range"===this.options.type){var p=this.body.util.toTime(h+this.props.width/5);u.end=i?i(p,l,c):p}u[this.itemsData._fieldId]=n.randomUUID();var f=this.groupFromTarget(t);f&&(u.group=f.groupId),this.options.onAdd(u,function(t){t&&e.itemsData.getDataSet().add(t)})}}},o.prototype._onMultiSelectItem=function(t){if(this.options.selectable){var e,i=o.itemFromTarget(t);if(i){e=this.getSelection();var s=t.srcEvent&&t.srcEvent.shiftKey||!1;if(s){e.push(i.id);var n=o._getItemRange(this.itemsData.get(e,this.itemOptions));e=[];for(var r in this.items)if(this.items.hasOwnProperty(r)){var a=this.items[r],h=a.data.start,d=void 0!==a.data.end?a.data.end:h;h>=n.min&&d<=n.max&&e.push(a.id)}}else{var l=e.indexOf(i.id);-1==l?e.push(i.id):e.splice(l,1)}this.setSelection(e),this.body.emitter.emit("select",{items:this.getSelection()})}}},o._getItemRange=function(t){var e=null,i=null;return t.forEach(function(t){(null==i||t.starte)&&(e=t.end):(null==e||t.start>e)&&(e=t.start) +}),{min:i,max:e}},o.itemFromTarget=function(t){for(var e=t.target;e;){if(e.hasOwnProperty("timeline-item"))return e["timeline-item"];e=e.parentNode}return null},o.prototype.groupFromTarget=function(t){for(var e=t.gesture.center.clientY,i=0;ia&&ea)return s}else if(0===i&&e"));this.dom.textArea.innerHTML=o,this.dom.textArea.style.lineHeight=.75*this.options.iconSize+this.options.iconSpacing+"px"}},o.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,o=this.options.iconSize,s=.75*this.options.iconSize,r=e+.5*s+3;this.svg.style.width=o+5+e+"px";for(var a in this.groups)this.groups.hasOwnProperty(a)&&(1!=this.groups[a].visible||void 0!==this.linegraphOptions.visibility[a]&&1!=this.linegraphOptions.visibility[a]||(this.groups[a].drawIcon(i,r,this.svgElements,this.svg,o,s),r+=s+this.options.iconSpacing));n.cleanupElements(this.svgElements)}},t.exports=o},function(t,e,i){function o(t,e){this.id=s.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,alignZeros:!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"}},groups:{visibility:{}}},this.options=s.extend({},this.defaultOptions),this.dom={},this.props={},this.hammer=null,this.groups={},this.abortedGraphUpdate=!1,this.updateSVGheight=!1,this.updateSVGheightOnResize=!1;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.COUNTER=0,this.body.emitter.on("rangechanged",function(){i.lastStart=i.body.range.start,i.svg.style.left=s.option.asSize(-i.props.width),i.redraw.call(i,!0)}),this._create(),this.framework={svg:this.svg,svgElements:this.svgElements,options:this.options,groups:this.groups},this.body.emitter.emit("change")}var s=i(1),n=i(2),r=i(3),a=i(4),h=i(25),d=i(28),l=i(29),c=i(33),u=i(50),p="__ungrouped__";o.prototype=new h,o.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.groups),this.options.dataAxis.orientation="right",this.yAxisRight=new d(this.body,this.options.dataAxis,this.svg,this.options.groups),delete this.options.dataAxis.orientation,this.legendLeft=new c(this.body,this.options.legend,"left",this.options.groups),this.legendRight=new c(this.body,this.options.legend,"right",this.options.groups),this.show()},o.prototype.setOptions=function(t){if(t){var e=["sampling","defaultGroup","height","graphHeight","yAxisOrientation","style","barChart","dataAxis","sort","groups"];void 0===t.graphHeight&&void 0!==t.height&&void 0!==this.body.domProps.centerContainer.height?(this.updateSVGheight=!0,this.updateSVGheightOnResize=!0):void 0!==this.body.domProps.centerContainer.height&&void 0!==t.graphHeight&&parseInt((t.graphHeight+"").replace("px",""))0){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),this._applySampling(a,c),e=0;ep&&console.log("WARNING: there may be an infinite loop in the _updateGraph emitter cycle."),this.COUNTER=0,this.abortedGraphUpdate=!1,e=0;e0)for(r=0;ro){d.push(h);break}d.push(h)}}else for(a=0;ai&&h.x0)for(var o=0;o0){var n=1,r=s.length,a=this.body.util.toGlobalScreen(s[s.length-1].x)-this.body.util.toGlobalScreen(s[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(s[l]);e[t[o]]=d}}},o.prototype._getYRanges=function(t,e,i){var o,s,n,r,a=[],h=[];if(t.length>0){for(n=0;n0&&(s=this.groups[t[n]],"stack"==r.barChart.handleOverlap&&"bar"==r.style?"left"==r.yAxisOrientation?a=a.concat(s.getYRange(o)):h=h.concat(s.getYRange(o)):i[t[n]]=s.getYRange(o,t[n]));u.getStackedBarYRange(a,i,t,"__barchartLeft","left"),u.getStackedBarYRange(h,i,t,"__barchartRight","right")}},o.prototype._updateYAxis=function(t,e){var i,o,s=!1,n=!1,r=!1,a=1e9,h=1e9,d=-1e9,l=-1e9;if(t.length>0){for(var c=0;ci?i:a,d=o>d?o:d):(r=!0,h=h>i?i:h,l=o>l?o:l));1==n&&this.yAxisLeft.setRange(a,d),1==r&&this.yAxisRight.setRange(h,l)}return s=this._toggleAxisVisiblity(n,this.yAxisLeft)||s,s=this._toggleAxisVisiblity(r,this.yAxisRight)||s,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,s=this.yAxisLeft.redraw()||s,this.yAxisRight.stepPixelsForced=this.yAxisLeft.stepPixels,this.yAxisRight.zeroCrossing=this.yAxisLeft.zeroCrossing,s=this.yAxisRight.redraw()||s):s=this.yAxisRight.redraw()||s,-1!=t.indexOf("__barchartLeft")&&t.splice(t.indexOf("__barchartLeft"),1),-1!=t.indexOf("__barchartRight")&&t.splice(t.indexOf("__barchartRight"),1),s},o.prototype._toggleAxisVisiblity=function(t,e){var i=!1;return 0==t?e.dom.frame.parentNode&&0==e.hidden&&(e.hide(),i=!0):e.dom.frame.parentNode||1!=e.hidden||(e.show(),i=!0),i},o.prototype._convertXcoordinates=function(t){for(var e,i,o=[],s=this.body.util.toScreen,n=0;ny;)y++,l=h.getCurrent(),c=h.isMajor(),p=h.getClassName(),m=f,f=this.body.util.toScreen(l),g=f-m,u&&(u.style.width=g+"px"),this.options.showMinorLabels&&this._repaintMinorText(f,h.getLabelMinor(),t,p),c&&this.options.showMajorLabels?(f>0&&(void 0==v&&(v=f),this._repaintMajorText(f,h.getLabelMajor(),t,p)),u=this._repaintMajorLine(f,t,p)):u=this._repaintMinorLine(f,t,p),h.next();if(this.options.showMajorLabels){var b=this.body.util.toTime(0),w=h.getLabelMajor(b),x=w.length*(this.props.majorCharWidth||10)+10;(void 0==v||v>x)&&this._repaintMajorText(0,w,t,p)}s.forEach(this.dom.redundant,function(t){for(;t.length;){var e=t.pop();e&&e.parentNode&&e.parentNode.removeChild(e)}})},o.prototype._repaintMinorText=function(t,e,i,o){var s=this.dom.redundant.minorTexts.shift();if(!s){var n=document.createTextNode("");s=document.createElement("div"),s.appendChild(n),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.className="text minor "+o},o.prototype._repaintMajorText=function(t,e,i,o){var s=this.dom.redundant.majorTexts.shift();if(!s){var n=document.createTextNode(e);s=document.createElement("div"),s.appendChild(n),this.dom.foreground.appendChild(s)}this.dom.majorTexts.push(s),s.childNodes[0].nodeValue=e,s.className="text major "+o,s.style.top="top"==i?"0":this.props.minorLabelHeight+"px",s.style.left=t+"px"},o.prototype._repaintMinorLine=function(t,e,i){var o=this.dom.redundant.lines.shift();o||(o=document.createElement("div"),this.dom.background.appendChild(o)),this.dom.lines.push(o);var s=this.props;return o.style.top="top"==e?s.majorLabelHeight+"px":this.body.domProps.top.height+"px",o.style.height=s.minorLineHeight+"px",o.style.left=t-s.minorLineWidth/2+"px",o.className="grid vertical minor "+i,o},o.prototype._repaintMajorLine=function(t,e,i){var o=this.dom.redundant.lines.shift();o||(o=document.createElement("div"),this.dom.background.appendChild(o)),this.dom.lines.push(o);var s=this.props;return o.style.top="top"==e?"0":this.body.domProps.top.height+"px",o.style.left=t-s.majorLineWidth/2+"px",o.style.height=s.majorLineHeight+"px",o.className="grid vertical major "+i,o},o.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 major measure",this.dom.measureCharMajor.style.position="absolute",this.dom.measureCharMajor.appendChild(document.createTextNode("0")),this.dom.foreground.appendChild(this.dom.measureCharMajor)),this.props.majorCharHeight=this.dom.measureCharMajor.clientHeight,this.props.majorCharWidth=this.dom.measureCharMajor.clientWidth},t.exports=o},function(t,e,i){function o(t,e,i){if(!(this instanceof o))throw new SyntaxError("Constructor must be called with the new operator");this._initializeMixinLoaders(),this.initializing=!0,this.triggerFunctions={add:null,edit:null,editEdge:null,connect:null,del:null};var s=function(t,e,i,o){if(e==t)return.5;var s=1/(e-t);return Math.max(0,(o-t)*s)};this.defaultOptions={nodes:{customScalingFunction:s,mass:1,radiusMin:10,radiusMax:30,radius:10,shape:"ellipse",image:void 0,widthMin:16,widthMax:64,fontColor:"black",fontSize:14,fontFace:"verdana",fontFill:void 0,fontStrokeWidth:0,fontStrokeColor:"#ffffff",fontDrawThreshold:3,scaleFontWithValue:!1,fontSizeMin:14,fontSizeMax:30,fontSizeMaxVisible:30,value:1,level:-1,color:{border:"#2B7CE9",background:"#97C2FC",highlight:{border:"#2B7CE9",background:"#D2E5FF"},hover:{border:"#2B7CE9",background:"#D2E5FF"}},group:void 0,borderWidth:1,borderWidthSelected:void 0},edges:{customScalingFunction:s,widthMin:1,widthMax:15,width:1,widthSelectionMultiplier:2,hoverWidth:1.5,value:1,style:"line",color:{color:"#848484",highlight:"#848484",hover:"#848484"},opacity:1,fontColor:"#343434",fontSize:14,fontFace:"arial",fontFill:"white",fontStrokeWidth:0,fontStrokeColor:"white",labelAlignment:"horizontal",arrowScaleFactor:1,dash:{length:10,gap:5,altLength:void 0},inheritColor:"from",useGradients:!1},configurePhysics:!1,navigation:{enabled:!1},keyboard:{enabled:!1,speed:{x:10,y:10,zoom:.02},bindToWindow:!0},dataManipulation:{enabled:!1,initiallyVisible:!1},hierarchicalLayout:{enabled:!1,levelSeparation:150,nodeSpacing:100,direction:"UD",layout:"hubsize"},smoothCurves:{enabled:!0,dynamic:!0,type:"continuous",roundness:.5},locale:"en",locales:v,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,useDefaultGroups:!0},this.constants=n.extend({},this.defaultOptions),this.body={nodes:{},nodeIndices:[],supportNodes:{},supportNodeIndices:[],edges:{},data:{nodes:null,edges:null},functions:{createNode:this._createNode.bind(this),createEdge:this._createEdge.bind(this)},emitter:{on:this.on.bind(this),off:this.off.bind(this),emit:this.emit.bind(this),once:this.once.bind(this)},eventListeners:{onTap:function(){},onTouch:function(){},onDoubleTap:function(){},onHold:function(){},onDragStart:function(){},onDrag:function(){},onDragEnd:function(){},onMouseWheel:function(){},onPinch:function(){},onMouseMove:function(){},onRelease:function(){}},container:t},this.view=new _(this.body),this.renderer=new w(this.body),this.clustering=new b(this.body),this.physics=new y(this.body),this.canvas=new x(this.body),this.touchHandler=new M(this.body),this.renderer.setCanvas(this.canvas),this.view.setCanvas(this.canvas),this.touchHandler.setCanvas(this.canvas),this.hoverObj={nodes:{},edges:{}},this.controlNodesActive=!1,this.navigationHammers=[],this.manipulationHammers=[];var r=this;this.groups=new l,this.images=new c,this.images.setOnloadCallback(function(){r._requestRedraw()}),this.xIncrement=0,this.yIncrement=0,this.zoomIncrement=0,this._loadSelectionSystem(),this.setOptions(i),this.cachedFunctions={},this.startedStabilization=!1,this.stabilized=!1,this.stabilizationIterations=null,this.draggingNodes=!1,this.pointerPosition={x:0,y:0},this.scale=1,this.nodesListeners={add:function(t,e){r._addNodes(e.items),r.start()},update:function(t,e){r._updateNodes(e.items,e.data),r.start()},remove:function(t,e){r._removeNodes(e.items),r.start()}},this.edgesListeners={add:function(t,e){r._addEdges(e.items),r.start()},update:function(t,e){r._updateEdges(e.items),r.start()},remove:function(t,e){r._removeEdges(e.items),r.start()}},this.moving=!0,this.renderTimer=void 0,this.setData(e,this.constants.hierarchicalLayout.enabled),1==this.constants.hierarchicalLayout.enabled?this._setupHierarchicalLayout():0==this.constants.stabilize&&this.zoomExtent({duration:0},!0,this.constants.clustering.enabled),0==this.constants.stabilize&&(this.initializing=!1);var r=this;this.on("_dataChanged",function(){r._updateNodeIndexList(),r.physics._updateCalculationNodes(),r._markAllEdgesAsDirty(),r.initializing!==!0&&(r.moving=!0,r.start())}),this.on("_newEdgesCreated",this._createBezierNodes.bind(this))}var s=i(62),n=(i(45),i(63),i(1)),r=(i(47),i(3)),a=i(4),h=i(42),d=i(43),l=i(38),c=i(39),u=i(40),p=i(37),f=i(41),m=i(52),g=i(53),v=i(54);i(55);var y=i(56).PhysicsEngine,b=i(57).ClusterEngine,w=i(58).CanvasRenderer,x=i(59).Canvas,_=i(60).View,M=i(61).TouchEventHandler;s(o.prototype),o.prototype._createNode=function(t){return new u(t,this.images,this.groups,this.constants)},o.prototype._createEdge=function(t){return new p(t,this.body,this.constants)},o.prototype._updateNodeIndexList=function(){this.body.supportNodeIndices=Object.keys(this.body.supportNodes),this.body.nodeIndices=Object.keys(this.body.nodes)},o.prototype.setData=function(t,e){if(void 0===e&&(e=!1),this._unselectAll(!0),this.initializing=!0,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(1==this.constants.dataManipulation.enabled&&this._createManipulatorBar(),this.setOptions(t&&t.options),t&&t.dot){if(t&&t.dot){var i=h.DOTToGraph(t.dot);return void this.setData(i)}}else if(t&&t.gephi){if(t&&t.gephi){var o=d.parseGephi(t.gephi);return void this.setData(o)}}else this._setNodes(t&&t.nodes),this._setEdges(t&&t.edges);0==e?1==this.constants.hierarchicalLayout.enabled?(this._resetLevels(),this._setupHierarchicalLayout()):this.physics.startSimulation():this.initializing=!1},o.prototype.setOptions=function(t){if(t){var e,i=["nodes","edges","smoothCurves","hierarchicalLayout","navigation","keyboard","dataManipulation","onAdd","onEdit","onEditEdge","onConnect","onDelete","clickToUse"];if(n.selectiveNotDeepExtend(i,this.constants,t),n.selectiveNotDeepExtend(["color"],this.constants.nodes,t.nodes),n.selectiveNotDeepExtend(["color","length"],this.constants.edges,t.edges),this.groups.useDefaultGroups=this.constants.useDefaultGroups,this.physics.setOptions(t.physics),this.canvas.setOptions(this.constants),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),n.mergeOptions(this.constants,t,"smoothCurves"),n.mergeOptions(this.constants,t,"hierarchicalLayout"),n.mergeOptions(this.constants,t,"clustering"),n.mergeOptions(this.constants,t,"navigation"),n.mergeOptions(this.constants,t,"keyboard"),n.mergeOptions(this.constants,t,"dataManipulation"),t.dataManipulation&&(this.editMode=this.constants.dataManipulation.initiallyVisible),t.edges&&(void 0!==t.edges.color&&(n.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)),this.constants.edges.inheritColor=!1),t.edges.fontColor||void 0!==t.edges.color&&(n.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 o=n.parseColor(t.nodes.color); +this.constants.nodes.color.background=o.background,this.constants.nodes.color.border=o.border,this.constants.nodes.color.highlight.background=o.highlight.background,this.constants.nodes.color.highlight.border=o.highlight.border,this.constants.nodes.color.hover.background=o.hover.background,this.constants.nodes.color.hover.border=o.hover.border}if(t.groups)for(var s in t.groups)if(t.groups.hasOwnProperty(s)){var r=t.groups[s];this.groups.add(s,r)}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=n.parseColor(t.tooltip.color))}if("clickToUse"in t&&(t.clickToUse?this.activator||(this.activator=new g(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.canvas._bindHammer(),this._markAllEdgesAsDirty(),this.canvas.setSize(this.constants.width,this.constants.height),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this.initializing!==!0&&(this.moving=!0,this.start())}},o.prototype._createKeyBinds=function(){},o.prototype.destroy=function(){this.start=function(){},this.redraw=function(){},this.renderTimer=!1,this._cleanupPhysicsConfiguration(),this.keycharm.reset(),this.hammer.dispose(),this.off(),this._recursiveDOMDelete(this.containerElement)},o.prototype._recursiveDOMDelete=function(t){for(;1==t.hasChildNodes();)this._recursiveDOMDelete(t.firstChild),t.removeChild(t.firstChild)},o.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)},o=void 0===this.popupObj?"":this.popupObj.id,s=!1,n="node";if(void 0==this.popupObj){var r=this.body.nodes,a=[];for(e in r)if(r.hasOwnProperty(e)){var h=r[e];h.isOverlappingWith(i)&&void 0!==h.getTitle()&&a.push(e)}a.length>0&&(this.popupObj=this.body.nodes[a[a.length-1]],s=!0)}if(void 0===this.popupObj&&0==s){var d=this.body.edges,l=[];for(e in d)if(d.hasOwnProperty(e)){var c=d[e];c.connected===!0&&void 0!==c.getTitle()&&c.isOverlappingWith(i)&&l.push(e)}l.length>0&&(this.popupObj=this.body.edges[l[l.length-1]],n="edge")}this.popupObj?this.popupObj.id!=o&&(void 0===this.popup&&(this.popup=new f(this.frame,this.constants.tooltip)),this.popup.popupTargetType=n,this.popup.popupTargetId=this.popupObj.id,this.popup.setPosition(t.x+3,t.y-5),this.popup.setText(this.popupObj.getTitle()),this.popup.show()):this.popup&&this.popup.hide()},o.prototype._checkHidePopup=function(t){var e={left:this._XconvertDOMtoCanvas(t.x),top:this._YconvertDOMtoCanvas(t.y),right:this._XconvertDOMtoCanvas(t.x),bottom:this._YconvertDOMtoCanvas(t.y)},i=!1;if("node"==this.popup.popupTargetType){if(i=this.body.nodes[this.popup.popupTargetId].isOverlappingWith(e),i===!0){var o=this._getNodeAt(t);i=o.id==this.popup.popupTargetId}}else null===this._getNodeAt(t)&&(i=this.body.edges[this.popup.popupTargetId].isOverlappingWith(e));i===!1&&(this.popupObj=void 0,this.popup.hide())},o.prototype._setNodes=function(t){var e=this.body.data.nodes;if(t instanceof r||t instanceof a)this.body.data.nodes=t;else if(Array.isArray(t))this.body.data.nodes=new r,this.body.data.nodes.add(t);else{if(t)throw new TypeError("Array or DataSet expected");this.body.data.nodes=new r}if(e&&n.forEach(this.nodesListeners,function(t,i){e.off(i,t)}),this.body.nodes={},this.body.data.nodes){var i=this;n.forEach(this.nodesListeners,function(t,e){i.body.data.nodes.on(e,t)});var o=this.body.data.nodes.getIds();this._addNodes(o)}this._updateSelection()},o.prototype._addNodes=function(t){for(var e,i=0,o=t.length;o>i;i++){e=t[i];var s=this.body.data.nodes.get(e),n=new u(s,this.images,this.groups,this.constants);if(this.body.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.physics._updateCalculationNodes(),this._reconnectEdges(),this._updateValueRange(this.body.nodes)},o.prototype._updateNodes=function(t,e){for(var i=this.body.nodes,o=0,s=t.length;s>o;o++){var n=t[o],r=i[n],a=e[o];r?r.setProperties(a,this.constants):(r=new u(properties,this.images,this.groups,this.constants),i[n]=r)}this.moving=!0,1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateNodeIndexList(),this._updateValueRange(i),this._markAllEdgesAsDirty()},o.prototype._markAllEdgesAsDirty=function(){for(var t in this.body.edges)this.body.edges[t].colorDirty=!0},o.prototype._removeNodes=function(t){for(var e=this.body.nodes,i=0,o=t.length;o>i;i++)void 0!==this.selectionObj.nodes[t[i]]&&(this.body.nodes[t[i]].unselect(),this._removeFromSelection(this.body.nodes[t[i]]));for(var i=0,o=t.length;o>i;i++){var s=t[i];delete e[s]}this._updateNodeIndexList(),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this.physics._updateCalculationNodes(),this._reconnectEdges(),this._updateSelection(),this._updateValueRange(e)},o.prototype._setEdges=function(t){var e=this.body.data.edges;if(t instanceof r||t instanceof a)this.body.data.edges=t;else if(Array.isArray(t))this.body.data.edges=new r,this.body.data.edges.add(t);else{if(t)throw new TypeError("Array or DataSet expected");this.body.data.edges=new r}if(e&&n.forEach(this.edgesListeners,function(t,i){e.off(i,t)}),this.body.edges={},this.body.data.edges){var i=this;n.forEach(this.edgesListeners,function(t,e){i.body.data.edges.on(e,t)});var o=this.body.data.edges.getIds();this._addEdges(o)}this._reconnectEdges()},o.prototype._addEdges=function(t){for(var e=this.body.edges,i=this.body.data.edges,o=0,s=t.length;s>o;o++){var n=t[o],r=e[n];r&&r.disconnect();var a=i.get(n,{showInternalIds:!0});e[n]=new p(a,this.body,this.constants)}this.moving=!0,this._updateValueRange(e),this._createBezierNodes(),this.physics._updateCalculationNodes(),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout())},o.prototype._updateEdges=function(t){for(var e=this.body.edges,i=this.body.data.edges,o=0,s=t.length;s>o;o++){var n=t[o],r=i.get(n),a=e[n];a?(a.disconnect(),a.setProperties(r),a.connect()):(a=new p(r,this.body,this.constants),this.body.edges[n]=a)}this._createBezierNodes(),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this.moving=!0,this._updateValueRange(e)},o.prototype._removeEdges=function(t){for(var e=this.body.edges,i=0,o=t.length;o>i;i++)void 0!==this.selectionObj.edges[t[i]]&&(e[t[i]].unselect(),this._removeFromSelection(e[t[i]]));for(var i=0,o=t.length;o>i;i++){var s=t[i],n=e[s];n&&(null!=n.via&&delete this.body.supportNodes[n.via.id],n.disconnect(),delete e[s])}this.moving=!0,this._updateValueRange(e),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this.physics._updateCalculationNodes()},o.prototype._reconnectEdges=function(){var t,e=this.body.nodes,i=this.body.edges;for(t in e)e.hasOwnProperty(t)&&(e[t].edges=[]);for(t in i)if(i.hasOwnProperty(t)){var o=i[t];o.from=null,o.to=null,o.connect()}},o.prototype._updateValueRange=function(t){var e,i=void 0,o=void 0,s=0;for(e in t)if(t.hasOwnProperty(e)){var n=t[e].getValue();void 0!==n&&(i=void 0===i?n:Math.min(n,i),o=void 0===o?n:Math.max(n,o),s+=n)}if(void 0!==i&&void 0!==o)for(e in t)t.hasOwnProperty(e)&&t[e].setValueRange(i,o,s)},o.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")},o.prototype._getTranslation=function(){return{x:this.translation.x,y:this.translation.y}},o.prototype._setScale=function(t){this.scale=t},o.prototype._getScale=function(){return this.scale},o.prototype._handleNavigation=function(){if(0!=this.xIncrement||0!=this.yIncrement){var t=this._getTranslation();this._setTranslation(t.x+this.xIncrement,t.y+this.yIncrement)}if(0!=this.zoomIncrement){var e={x:this.frame.canvas.clientWidth/2,y:this.frame.canvas.clientHeight/2};this._zoom(this.scale*(1+this.zoomIncrement),e)}},o.prototype.freezeSimulation=function(t){1==t?(this.freezeSimulationEnabled=!0,this.moving=!1):(this.freezeSimulationEnabled=!1,this.moving=!0,this.start())},o.prototype._configureSmoothCurves=function(){var t=void 0===arguments[0]?!0:arguments[0];if(1==this.constants.smoothCurves.enabled&&1==this.constants.smoothCurves.dynamic){this._createBezierNodes();for(var e=0;eh}return!1},o.prototype._getColor=function(t){var e=this.options.color;if(1==this.options.useGradients){var i,o,n=t.createLinearGradient(this.from.x,this.from.y,this.to.x,this.to.y);return i=this.from.options.color.highlight.border,o=this.to.options.color.highlight.border,0==this.from.selected&&0==this.to.selected?(i=s.overrideOpacity(this.from.options.color.border,this.options.opacity),o=s.overrideOpacity(this.to.options.color.border,this.options.opacity)):1==this.from.selected&&0==this.to.selected?o=this.to.options.color.border:0==this.from.selected&&1==this.to.selected&&(i=this.from.options.color.border),n.addColorStop(0,i),n.addColorStop(1,o),n}return this.colorDirty===!0&&("to"==this.options.inheritColor?e={highlight:this.to.options.color.highlight.border,hover:this.to.options.color.hover.border,color:s.overrideOpacity(this.from.options.color.border,this.options.opacity)}:("from"==this.options.inheritColor||1==this.options.inheritColor)&&(e={highlight:this.from.options.color.highlight.border,hover:this.from.options.color.hover.border,color:s.overrideOpacity(this.from.options.color.border,this.options.opacity)}),this.options.color=e,this.colorDirty=!1),1==this.selected?e.highlight:1==this.hover?e.hover:e.color},o.prototype._drawLine=function(t){if(t.strokeStyle=this._getColor(t),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 o=.5*(.5*(this.from.x+i.x)+.5*(this.to.x+i.x)),s=.5*(.5*(this.from.y+i.y)+.5*(this.to.y+i.y));e={x:o,y:s}}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)}},o.prototype._getLineWidth=function(){return 1==this.selected?Math.max(Math.min(this.widthSelected,this.options.widthMax),.3*this.networkScaleInv):1==this.hover?Math.max(Math.min(this.options.hoverWidth,this.options.widthMax),.3*this.networkScaleInv):Math.max(this.options.width,.3*this.networkScaleInv)},o.prototype._getViaCoordinates=function(){if(1==this.options.smoothCurves.dynamic&&1==this.options.smoothCurves.enabled)return this.via;if(0==this.options.smoothCurves.enabled)return{x:0,y:0};var t=null,e=null,i=this.options.smoothCurves.roundness,o=this.options.smoothCurves.type,s=Math.abs(this.from.x-this.to.x),n=Math.abs(this.from.y-this.to.y);if("discrete"==o||"diagonalCross"==o)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"==o&&(t=i*n>s?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*s,e=this.from.y-i*s):this.from.ythis.to.x&&(t=this.from.x-i*s,e=this.from.y+i*s)),"discrete"==o&&(e=i*s>n?this.from.y:e));else if("straightCross"==o)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*s,e=this.from.y-i*s,e=this.to.y>e?this.to.y:e):this.from.ythis.to.x&&(t=this.from.x-i*s,e=this.from.y+i*s,e=this.to.yd;d++){var l=t.measureText(n[d]).width;h=l>h?l:h}var c=this.options.fontSize*r,u=i-h/2,p=o-c/2;this.labelDimensions={top:p,left:u,width:h,height:c,yLine:s}}var s=this.labelDimensions.yLine;t.save(),"horizontal"!=this.options.labelAlignment&&(t.translate(i,s),this._rotateForLabelAlignment(t),i=0,s=0),this._drawLabelRect(t),this._drawLabelText(t,i,s,n,r,a),t.restore()}},o.prototype._rotateForLabelAlignment=function(t){var e=this.from.y-this.to.y,i=this.from.x-this.to.x,o=Math.atan2(e,i);(-1>o&&0>i||o>0&&0>i)&&(o+=Math.PI),t.rotate(o)},o.prototype._drawLabelRect=function(t){if(void 0!==this.options.fontFill&&null!==this.options.fontFill&&"none"!==this.options.fontFill){t.fillStyle=this.options.fontFill;var e=2;"line-center"==this.options.labelAlignment?t.fillRect(.5*-this.labelDimensions.width,.5*-this.labelDimensions.height,this.labelDimensions.width,this.labelDimensions.height):"line-above"==this.options.labelAlignment?t.fillRect(.5*-this.labelDimensions.width,-(this.labelDimensions.height+e),this.labelDimensions.width,this.labelDimensions.height):"line-below"==this.options.labelAlignment?t.fillRect(.5*-this.labelDimensions.width,e,this.labelDimensions.width,this.labelDimensions.height):t.fillRect(this.labelDimensions.left,this.labelDimensions.top,this.labelDimensions.width,this.labelDimensions.height)}},o.prototype._drawLabelText=function(t,e,i,o,s,n){if(t.fillStyle=this.options.fontColor||"black",t.textAlign="center","horizontal"!=this.options.labelAlignment){var r=2;"line-above"==this.options.labelAlignment?(t.textBaseline="alphabetic",i-=2*r):"line-below"==this.options.labelAlignment?(t.textBaseline="hanging",i+=2*r):t.textBaseline="middle"}else t.textBaseline="middle";this.options.fontStrokeWidth>0&&(t.lineWidth=this.options.fontStrokeWidth,t.strokeStyle=this.options.fontStrokeColor,t.lineJoin="round");for(var a=0;s>a;a++)this.options.fontStrokeWidth>0&&t.strokeText(o[a],e,i),t.fillText(o[a],e,i),i+=n},o.prototype._drawDashLine=function(t){t.strokeStyle=this._getColor(t),t.lineWidth=this._getLineWidth();var e=null;if(void 0!==t.setLineDash){t.save();var i=[0];i=void 0!==this.options.dash.length&&void 0!==this.options.dash.gap?[this.options.dash.length,this.options.dash.gap]:[5,5],t.setLineDash(i),t.lineDashOffset=0,e=this._line(t),t.setLineDash([0]),t.lineDashOffset=0,t.restore()}else t.beginPath(),t.lineCap="round",void 0!==this.options.dash.altLength?t.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]):void 0!==this.options.dash.length&&void 0!==this.options.dash.gap?t.dashedLine(this.from.x,this.from.y,this.to.x,this.to.y,[this.options.dash.length,this.options.dash.gap]):(t.moveTo(this.from.x,this.from.y),t.lineTo(this.to.x,this.to.y)),t.stroke();if(this.label){var o;if(1==this.options.smoothCurves.enabled&&null!=e){var s=.5*(.5*(this.from.x+e.x)+.5*(this.to.x+e.x)),n=.5*(.5*(this.from.y+e.y)+.5*(this.to.y+e.y));o={x:s,y:n}}else o=this._pointOnLine(.5);this._label(t,this.label,o.x,o.y)}},o.prototype._pointOnLine=function(t){return{x:(1-t)*this.from.x+t*this.to.x,y:(1-t)*this.from.y+t*this.to.y}},o.prototype._pointOnCircle=function(t,e,i,o){var s=2*(o-3/8)*Math.PI;return{x:t+i*Math.cos(s),y:e-i*Math.sin(s)}},o.prototype._drawArrowCenter=function(t){var e;if(t.strokeStyle=this._getColor(t),t.fillStyle=t.strokeStyle,t.lineWidth=this._getLineWidth(),this.from!=this.to){var i=this._line(t),o=Math.atan2(this.to.y-this.from.y,this.to.x-this.from.x),s=(10+5*this.options.width)*this.options.arrowScaleFactor;if(1==this.options.smoothCurves.enabled&&null!=i){var n=.5*(.5*(this.from.x+i.x)+.5*(this.to.x+i.x)),r=.5*(.5*(this.from.y+i.y)+.5*(this.to.y+i.y));e={x:n,y:r}}else e=this._pointOnLine(.5);t.arrow(e.x,e.y,o,s),t.fill(),t.stroke(),this.label&&this._label(t,this.label,e.x,e.y)}else{var a,h,d=.25*Math.max(100,this.physics.springLength),l=this.from;l.width||l.resize(t),l.width>l.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 o=.2*Math.PI,s=(10+5*this.options.width)*this.options.arrowScaleFactor;e=this._pointOnCircle(a,h,d,.5),t.arrow(e.x,e.y,o,s),t.fill(),t.stroke(),this.label&&(e=this._pointOnCircle(a,h,d,.5),this._label(t,this.label,e.x,e.y))}},o.prototype._pointOnBezier=function(t){var e=this._getViaCoordinates(),i=Math.pow(1-t,2)*this.from.x+2*t*(1-t)*e.x+Math.pow(t,2)*this.to.x,o=Math.pow(1-t,2)*this.from.y+2*t*(1-t)*e.y+Math.pow(t,2)*this.to.y;return{x:i,y:o}},o.prototype._findBorderPosition=function(t,e){var i,o,s,n,r,a=10,h=0,d=0,l=1,c=.2,u=this.to;for(1==t&&(u=this.from);l>=d&&a>h;){var p=.5*(d+l);if(i=this._pointOnBezier(p),o=Math.atan2(u.y-i.y,u.x-i.x),s=u.distanceToBorder(e,o),n=Math.sqrt(Math.pow(i.x-u.x,2)+Math.pow(i.y-u.y,2)),r=s-n,Math.abs(r)r?0==t?d=p:l=p:0==t?l=p:d=p,h++}return i.t=p,i},o.prototype._drawArrow=function(t){t.strokeStyle=this._getColor(t),t.fillStyle=t.strokeStyle,t.lineWidth=this._getLineWidth();var e,i,o;if(this.from!=this.to){if(this._line(t),1==this.options.smoothCurves.enabled){var s=this._getViaCoordinates();o=this._findBorderPosition(!1,t);var n=this._pointOnBezier(Math.max(0,o.t-.1));e=Math.atan2(o.y-n.y,o.x-n.x)}else{e=Math.atan2(this.to.y-this.from.y,this.to.x-this.from.x);var r=this.to.x-this.from.x,a=this.to.y-this.from.y,h=Math.sqrt(r*r+a*a),d=this.to.distanceToBorder(t,e),l=(h-d)/h;o={},o.x=(1-l)*this.from.x+l*this.to.x,o.y=(1-l)*this.from.y+l*this.to.y}if(i=(10+5*this.options.width)*this.options.arrowScaleFactor,t.arrow(o.x,o.y,e,i),t.fill(),t.stroke(),this.label){var c;c=1==this.options.smoothCurves.enabled&&null!=s?this._pointOnBezier(.5):this._pointOnLine(.5),this._label(t,this.label,c.x,c.y)}}else{var u,p,f,m=this.from,g=.25*Math.max(100,this.physics.springLength);m.width||m.resize(t),m.width>m.height?(u=m.x+.5*m.width,p=m.y-g,f={x:u,y:m.y,angle:.9*Math.PI}):(u=m.x+g,p=m.y-.5*m.height,f={x:m.x,y:p,angle:.6*Math.PI}),t.beginPath(),t.arc(u,p,g,0,2*Math.PI,!1),t.stroke();var i=(10+5*this.options.width)*this.options.arrowScaleFactor;t.arrow(f.x,f.y,f.angle,i),t.fill(),t.stroke(),this.label&&(c=this._pointOnCircle(u,p,g,.5),this._label(t,this.label,c.x,c.y))}},o.prototype._getDistanceToEdge=function(t,e,i,o,s,n){var r=0;if(this.from!=this.to)if(1==this.options.smoothCurves.enabled){var a,h;if(1==this.options.smoothCurves.enabled&&1==this.options.smoothCurves.dynamic)a=this.via.x,h=this.via.y;else{var d=this._getViaCoordinates();a=d.x,h=d.y}var l,c,u,p,f,m,g,v=1e9;for(c=0;10>c;c++)u=.1*c,p=Math.pow(1-u,2)*t+2*u*(1-u)*a+Math.pow(u,2)*i,f=Math.pow(1-u,2)*e+2*u*(1-u)*h+Math.pow(u,2)*o,c>0&&(l=this._getDistanceToLine(m,g,p,f,s,n),v=v>l?l:v),m=p,g=f;r=v}else r=this._getDistanceToLine(t,e,i,o,s,n);else{var p,f,y,b,w=.25*this.physics.springLength,x=this.from;x.width>x.height?(p=x.x+.5*x.width,f=x.y-w):(p=x.x+w,f=x.y-.5*x.height),y=p-s,b=f-n,r=Math.abs(Math.sqrt(y*y+b*b)-w)}return this.labelDimensions.lefts&&this.labelDimensions.topn?0:r},o.prototype._getDistanceToLine=function(t,e,i,o,s,n){var r=i-t,a=o-e,h=r*r+a*a,d=((s-t)*r+(n-e)*a)/h;d>1?d=1:0>d&&(d=0);var l=t+d*r,c=e+d*a,u=l-s,p=c-n;return Math.sqrt(u*u+p*p)},o.prototype.setScale=function(t){this.networkScaleInv=1/t},o.prototype.select=function(){this.selected=!0},o.prototype.unselect=function(){this.selected=!1},o.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)):null!==this.via&&(this.via.x=0,this.via.y=0)},o.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),o={nodes:{group:"",radius:7,borderWidth:2,borderWidthSelected:2},physics:{damping:0},clustering:{maxNodeSizeIncrements:0,nodeScaling:{width:0,height:0,radius:0}}};this.controlNodes.from=new n({id:e,shape:"dot",color:{background:"#ff0000",border:"#3c3c3c",highlight:{background:"#07f968"}}},{},{},o),this.controlNodes.to=new n({id:i,shape:"dot",color:{background:"#ff0000",border:"#3c3c3c",highlight:{background:"#07f968"}}},{},{},o)}this.controlNodes.positions={},0==this.controlNodes.from.selected&&(this.controlNodes.positions.from=this.getControlNodeFromPosition(t),this.controlNodes.from.x=this.controlNodes.positions.from.x,this.controlNodes.from.y=this.controlNodes.positions.from.y),0==this.controlNodes.to.selected&&(this.controlNodes.positions.to=this.getControlNodeToPosition(t),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:{}}},o.prototype._enableControlNodes=function(){this.fromBackup=this.from,this.toBackup=this.to,this.controlNodesEnabled=!0},o.prototype._disableControlNodes=function(){this.fromId=this.from.id,this.toId=this.to.id,this.fromId!=this.fromBackup.id?this.fromBackup.detachEdge(this):this.toId!=this.toBackup.id&&this.toBackup.detachEdge(this),this.fromBackup=null,this.toBackup=null,this.controlNodesEnabled=!1},o.prototype._getSelectedControlNode=function(t,e){var i=this.controlNodes.positions,o=Math.sqrt(Math.pow(t-i.from.x,2)+Math.pow(e-i.from.y,2)),s=Math.sqrt(Math.pow(t-i.to.x,2)+Math.pow(e-i.to.y,2));return 15>o?(this.connectedNode=this.from,this.from=this.controlNodes.from,this.controlNodes.from):15>s?(this.connectedNode=this.to,this.to=this.controlNodes.to,this.controlNodes.to):null},o.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())},o.prototype.getControlNodeFromPosition=function(t){var e;if(1==this.options.smoothCurves.enabled)e=this._findBorderPosition(!0,t);else{var i=Math.atan2(this.to.y-this.from.y,this.to.x-this.from.x),o=this.to.x-this.from.x,s=this.to.y-this.from.y,n=Math.sqrt(o*o+s*s),r=this.from.distanceToBorder(t,i+Math.PI),a=(n-r)/n;e={},e.x=a*this.from.x+(1-a)*this.to.x,e.y=a*this.from.y+(1-a)*this.to.y +}return e},o.prototype.getControlNodeToPosition=function(t){var e;if(1==this.options.smoothCurves.enabled)e=this._findBorderPosition(!1,t);else{var i=Math.atan2(this.to.y-this.from.y,this.to.x-this.from.x),o=this.to.x-this.from.x,s=this.to.y-this.from.y,n=Math.sqrt(o*o+s*s),r=this.to.distanceToBorder(t,i),a=(n-r)/n;e={},e.x=(1-a)*this.from.x+a*this.to.x,e.y=(1-a)*this.from.y+a*this.to.y}return e},t.exports=o},function(t,e,i){function o(){this.clear(),this.defaultIndex=0,this.groupsArray=[],this.groupIndex=0,this.useDefaultGroups=!0}i(1);o.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"}},{border:"#990000",background:"#EE0000",highlight:{border:"#BB0000",background:"#FF3333"},hover:{border:"#BB0000",background:"#FF3333"}},{border:"#FF6000",background:"#FF6000",highlight:{border:"#FF6000",background:"#FF6000"},hover:{border:"#FF6000",background:"#FF6000"}},{border:"#97C2FC",background:"#2B7CE9",highlight:{border:"#D2E5FF",background:"#2B7CE9"},hover:{border:"#D2E5FF",background:"#2B7CE9"}},{border:"#399605",background:"#255C03",highlight:{border:"#399605",background:"#255C03"},hover:{border:"#399605",background:"#255C03"}},{border:"#B70054",background:"#FF007E",highlight:{border:"#B70054",background:"#FF007E"},hover:{border:"#B70054",background:"#FF007E"}},{border:"#AD85E4",background:"#7C29F0",highlight:{border:"#D3BDF0",background:"#7C29F0"},hover:{border:"#D3BDF0",background:"#7C29F0"}},{border:"#4557FA",background:"#000EA1",highlight:{border:"#6E6EFD",background:"#000EA1"},hover:{border:"#6E6EFD",background:"#000EA1"}},{border:"#FFC0CB",background:"#FD5A77",highlight:{border:"#FFD1D9",background:"#FD5A77"},hover:{border:"#FFD1D9",background:"#FD5A77"}},{border:"#C2FABC",background:"#74D66A",highlight:{border:"#E6FFE3",background:"#74D66A"},hover:{border:"#E6FFE3",background:"#74D66A"}},{border:"#EE0000",background:"#990000",highlight:{border:"#FF3333",background:"#BB0000"},hover:{border:"#FF3333",background:"#BB0000"}}],o.prototype.clear=function(){this.groups={},this.groups.length=function(){var t=0;for(var e in this)this.hasOwnProperty(e)&&t++;return t}},o.prototype.get=function(t){var e=this.groups[t];if(void 0==e)if(this.useDefaultGroups===!1&&this.groupsArray.length>0){var i=this.groupIndex%this.groupsArray.length;this.groupIndex++,e={},e.color=this.groups[this.groupsArray[i]],this.groups[t]=e}else{var i=this.defaultIndex%o.DEFAULT.length;this.defaultIndex++,e={},e.color=o.DEFAULT[i],this.groups[t]=e}return e},o.prototype.add=function(t,e){return this.groups[t]=e,this.groupsArray.push(t),e},t.exports=o},function(t){function e(){this.images={},this.imageBroken={},this.callback=void 0}e.prototype.setOnloadCallback=function(t){this.callback=t},e.prototype.load=function(t,e){var i=this.images[t];if(void 0===i){var o=this;i=new Image,i.onload=function(){0==this.width&&(document.body.appendChild(this),this.width=this.offsetWidth,this.height=this.offsetHeight,document.body.removeChild(this)),o.callback&&(o.images[t]=i,o.callback(this))},i.onerror=function(){void 0===e?(console.error("Could not load image:",t),delete this.src,o.callback&&o.callback(this)):o.imageBroken[t]===!0?this.src==e?(console.error("Could not load brokenImage:",e),delete this.src,o.callback&&o.callback(this)):(console.error("Could not load image:",t),this.src=e):(console.error("Could not load image:",t),this.src=e,o.imageBroken[t]=!0)},i.src=t}return i},t.exports=e},function(t,e,i){function o(t,e,i,o){var n=s.selectiveBridgeObject(["nodes"],o);this.options=n.nodes,this.selected=!1,this.hover=!1,this.edges=[],this.id=void 0,this.allowedToMoveX=!1,this.allowedToMoveY=!1,this.xFixed=!1,this.yFixed=!1,this.horizontalAlignLeft=!0,this.verticalAlignTop=!0,this.baseRadiusValue=o.nodes.radius,this.radiusFixed=!1,this.level=-1,this.preassignedLevel=!1,this.hierarchyEnumerated=!1,this.labelDimensions={top:0,left:0,width:0,height:0,yLine:0},this.boundingBox={top:0,left:0,right:0,bottom:0},this.imagelist=e,this.grouplist=i,this.x=null,this.y=null,this.predefinedPosition=!1,this.previousState={vx:0,vy:0,x:0,y:0},this.fixedData={x:null,y:null},this.setProperties(t,n),this.networkScaleInv=1,this.networkScale=1,this.canvasTopLeft={x:-300,y:-300},this.canvasBottomRight={x:300,y:300},this.parentEdgeId=null}var s=i(1);o.prototype.attachEdge=function(t){-1==this.edges.indexOf(t)&&this.edges.push(t)},o.prototype.detachEdge=function(t){var e=this.edges.indexOf(t);-1!=e&&this.edges.splice(e,1)},o.prototype.setProperties=function(t,e){if(t){this.properties=t;var i=["borderWidth","borderWidthSelected","shape","image","brokenImage","radius","fontColor","fontSize","fontFace","fontFill","fontStrokeWidth","fontStrokeColor","group","mass","fontDrawThreshold","scaleFontWithValue","fontSizeMaxVisible","customScalingFunction","iconFontFace","icon","iconColor","iconSize","value"];if(s.selectiveDeepExtend(i,this.options,t),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,this.predefinedPosition=!0),void 0!==t.y&&(this.y=t.y,this.predefinedPosition=!0),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 t.group||"string"==typeof t.group&&""!=t.group){var o=this.grouplist.get(t.group);s.deepExtend(this.options,o),this.options.color=s.parseColor(this.options.color)}if(void 0!==t.radius&&(this.baseRadiusValue=this.options.radius),void 0!==t.color&&(this.options.color=s.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,this.options.brokenImage)}switch(void 0!==t.allowedToMoveX?(this.xFixed=!t.allowedToMoveX,this.allowedToMoveX=t.allowedToMoveX):void 0!==t.x&&0==this.allowedToMoveX&&(this.xFixed=!0),void 0!==t.allowedToMoveY?(this.yFixed=!t.allowedToMoveY,this.allowedToMoveY=t.allowedToMoveY):void 0!==t.y&&0==this.allowedToMoveY&&(this.yFixed=!0),this.radiusFixed=this.radiusFixed||void 0!==t.radius,("image"===this.options.shape||"circularImage"===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"circularImage":this.draw=this._drawCircularImage,this.resize=this._resizeCircularImage;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;case"icon":this.draw=this._drawIcon,this.resize=this._resizeIcon;break;default:this.draw=this._drawEllipse,this.resize=this._resizeEllipse}this._reset()}},o.prototype.select=function(){this.selected=!0,this._reset()},o.prototype.unselect=function(){this.selected=!1,this._reset()},o.prototype.clearSizeCache=function(){this._reset()},o.prototype._reset=function(){this.width=void 0,this.height=void 0},o.prototype.getTitle=function(){return"function"==typeof this.title?this.title():this.title},o.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 o=this.width/2,s=this.height/2,n=Math.sin(e)*o,r=Math.cos(e)*s;return o*s/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}},o.prototype.isFixed=function(){return this.xFixed&&this.yFixed},o.prototype.isSelected=function(){return this.selected},o.prototype.getValue=function(){return this.value},o.prototype.getDistance=function(t,e){var i=this.x-t,o=this.y-e;return Math.sqrt(i*i+o*o)},o.prototype.setValueRange=function(t,e,i){if(!this.radiusFixed&&void 0!==this.value){var o=this.options.customScalingFunction(t,e,i,this.value),s=this.options.radiusMax-this.options.radiusMin;if(1==this.options.scaleFontWithValue){var n=this.options.fontSizeMax-this.options.fontSizeMin;this.options.fontSize=this.options.fontSizeMin+o*n}this.options.radius=this.options.radiusMin+o*s}this.baseRadiusValue=this.options.radius},o.prototype.draw=function(){throw"Draw method not initialized for node"},o.prototype.resize=function(){throw"Resize method not initialized for node"},o.prototype.isOverlappingWith=function(t){return this.leftt.left&&this.topt.top},o.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}},o.prototype._drawImageAtPosition=function(t){0!=this.imageObj.width&&(t.globalAlpha=1,t.drawImage(this.imageObj,this.left,this.top,this.width,this.height))},o.prototype._drawImageLabel=function(t){var e,i=0;if(this.height){i=this.height/2;var o=this.getTextSize(t);o.lineCount>=1&&(i+=o.height/2,i+=3)}e=this.y+i,this._label(t,this.label,this.x,e,void 0)},o.prototype._drawImage=function(t){this._resizeImage(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2,this._drawImageAtPosition(t),this.boundingBox.top=this.top,this.boundingBox.left=this.left,this.boundingBox.right=this.left+this.width,this.boundingBox.bottom=this.top+this.height,this._drawImageLabel(t),this.boundingBox.left=Math.min(this.boundingBox.left,this.labelDimensions.left),this.boundingBox.right=Math.max(this.boundingBox.right,this.labelDimensions.left+this.labelDimensions.width),this.boundingBox.bottom=Math.max(this.boundingBox.bottom,this.boundingBox.bottom+this.labelDimensions.height)},o.prototype._resizeCircularImage=function(t){if(this.imageObj.src&&this.imageObj.width&&this.imageObj.height)this._swapToImageResizeWhenImageLoaded&&(this.width=0,this.height=0,delete this._swapToImageResizeWhenImageLoaded),this._resizeImage(t);else if(!this.width){var e=2*this.options.radius;this.width=e,this.height=e,this._swapToImageResizeWhenImageLoaded=!0}},o.prototype._drawCircularImage=function(t){this._resizeCircularImage(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var e=this.left+this.width/2,i=this.top+this.height/2,o=Math.abs(this.height/2);this._drawRawCircle(t,e,i,o),t.save(),t.circle(this.x,this.y,o),t.stroke(),t.clip(),this._drawImageAtPosition(t),t.restore(),this.boundingBox.top=this.y-this.options.radius,this.boundingBox.left=this.x-this.options.radius,this.boundingBox.right=this.x+this.options.radius,this.boundingBox.bottom=this.y+this.options.radius,this._drawImageLabel(t),this.boundingBox.left=Math.min(this.boundingBox.left,this.labelDimensions.left),this.boundingBox.right=Math.max(this.boundingBox.right,this.labelDimensions.left+this.labelDimensions.width),this.boundingBox.bottom=Math.max(this.boundingBox.bottom,this.boundingBox.bottom+this.labelDimensions.height)},o.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}},o.prototype._drawBox=function(t){this._resizeBox(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var e=this.options.borderWidth,i=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,t.lineWidth=this.selected?i:e,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.roundRect(this.left,this.top,this.width,this.height,this.options.radius),t.fill(),t.stroke(),this.boundingBox.top=this.top,this.boundingBox.left=this.left,this.boundingBox.right=this.left+this.width,this.boundingBox.bottom=this.top+this.height,this._label(t,this.label,this.x,this.y)},o.prototype._resizeDatabase=function(t){if(!this.width){var e=5,i=this.getTextSize(t),o=i.width+2*e;this.width=o,this.height=o}},o.prototype._drawDatabase=function(t){this._resizeDatabase(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var e=this.options.borderWidth,i=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,t.lineWidth=this.selected?i:e,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.boundingBox.top=this.top,this.boundingBox.left=this.left,this.boundingBox.right=this.left+this.width,this.boundingBox.bottom=this.top+this.height,this._label(t,this.label,this.x,this.y)},o.prototype._resizeCircle=function(t){if(!this.width){var e=5,i=this.getTextSize(t),o=Math.max(i.width,i.height)+2*e;this.options.radius=o/2,this.width=o,this.height=o}},o.prototype._drawRawCircle=function(t,e,i,o){var s=this.options.borderWidth,n=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,t.lineWidth=this.selected?n:s,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,o),t.fill(),t.stroke()},o.prototype._drawCircle=function(t){this._resizeCircle(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2,this._drawRawCircle(t,this.x,this.y,this.options.radius),this.boundingBox.top=this.y-this.options.radius,this.boundingBox.left=this.x-this.options.radius,this.boundingBox.right=this.x+this.options.radius,this.boundingBox.bottom=this.y+this.options.radius,this._label(t,this.label,this.x,this.y)},o.prototype._resizeEllipse=function(t){if(!this.width){var e=this.getTextSize(t);this.width=1.5*e.width,this.height=2*e.height,this.widththis.options.fontDrawThreshold-1){var i=Number(this.options.iconSize);t.font=(this.selected?"bold ":"")+i+"px "+this.options.iconFontFace,t.fillStyle=this.options.iconColor||"black",t.textAlign="center",t.textBaseline="middle",t.fillText(this.options.icon,this.x,this.y)}},o.prototype._label=function(t,e,i,o,n,r,a){var h=Number(this.options.fontSize)*this.networkScale;if(e&&h>=this.options.fontDrawThreshold-1){var d=Number(this.options.fontSize);h>=this.options.fontSizeMaxVisible&&(d=Number(this.options.fontSizeMaxVisible)*this.networkScaleInv);var l=this.options.fontColor||"#000000",c=this.options.fontStrokeColor;if(h<=this.options.fontDrawThreshold){var u=Math.max(0,Math.min(1,1-(this.options.fontDrawThreshold-h)));l=s.overrideOpacity(l,u),c=s.overrideOpacity(c,u)}t.font=(this.selected?"bold ":"")+d+"px "+this.options.fontFace;var p=e.split("\n"),f=p.length,m=o+(1-f)/2*d;1==a&&(m=o+(1-f)/(2*d));for(var g=t.measureText(p[0]).width,v=1;f>v;v++){var y=t.measureText(p[v]).width;g=y>g?y:g}var b=d*f,w=i-g/2,x=o-b/2;"hanging"==r&&(x+=.5*d,x+=4,m+=4),this.labelDimensions={top:x,left:w,width:g,height:b,yLine:m},void 0!==this.options.fontFill&&null!==this.options.fontFill&&"none"!==this.options.fontFill&&(t.fillStyle=this.options.fontFill,t.fillRect(w,x,g,b)),t.fillStyle=l,t.textAlign=n||"center",t.textBaseline=r||"middle",this.options.fontStrokeWidth>0&&(t.lineWidth=this.options.fontStrokeWidth,t.strokeStyle=c,t.lineJoin="round");for(var v=0;f>v;v++)this.options.fontStrokeWidth&&t.strokeText(p[v],i,m),t.fillText(p[v],i,m),m+=d}},o.prototype.getTextSize=function(t){if(void 0!==this.label){var e=Number(this.options.fontSize);e*this.networkScale>this.options.fontSizeMaxVisible&&(e=Number(this.options.fontSizeMaxVisible)*this.networkScaleInv),t.font=(this.selected?"bold ":"")+e+"px "+this.options.fontFace;for(var i=this.label.split("\n"),o=(e+4)*i.length,s=0,n=0,r=i.length;r>n;n++)s=Math.max(s,t.measureText(i[n]).width);return{width:s,height:o,lineCount:i.length}}return{width:0,height:0,lineCount:0}},o.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.networkScaleInvo&&(n=o-e-this.padding),ns&&(r=s-i-this.padding),ri;i++)if(e.id===r.nodes[i].id){s=r.nodes[i];break}for(s||(s={id:e.id},t.node&&(s.attr=a(s.attr,t.node))),i=n.length-1;i>=0;i--){var h=n[i];h.nodes||(h.nodes=[]),-1==h.nodes.indexOf(s)&&h.nodes.push(s)}e.attr&&(s.attr=a(s.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,o,s){var n={from:e,to:i,type:o};return t.edge&&(n.attr=a({},t.edge)),n.attr=a(n.attr||{},s),n}function u(){for(N=O.NULL,k="";" "==E||" "==E||"\n"==E||"\r"==E;)s();do{var t=!1;if("#"==E){for(var e=T-1;" "==C.charAt(e)||" "==C.charAt(e);)e--;if("\n"==C.charAt(e)||""==C.charAt(e)){for(;""!=E&&"\n"!=E;)s();t=!0}}if("/"==E&&"/"==n()){for(;""!=E&&"\n"!=E;)s();t=!0}if("/"==E&&"*"==n()){for(;""!=E;){if("*"==E&&"/"==n()){s(),s();break}s()}t=!0}for(;" "==E||" "==E||"\n"==E||"\r"==E;)s()}while(t);if(""==E)return void(N=O.DELIMITER);var i=E+n();if(S[i])return N=O.DELIMITER,k=i,s(),void s();if(S[E])return N=O.DELIMITER,k=E,void s();if(r(E)||"-"==E){for(k+=E,s();r(E);)k+=E,s();return"false"==k?k=!1:"true"==k?k=!0:isNaN(Number(k))||(k=Number(k)),void(N=O.IDENTIFIER)}if('"'==E){for(s();""!=E&&('"'!=E||'"'==E&&'"'==n());)k+=E,'"'==E&&s(),s();if('"'!=E)throw x('End of string " expected');return s(),void(N=O.IDENTIFIER)}for(N=O.UNKNOWN;""!=E;)k+=E,s();throw new SyntaxError('Syntax error in part "'+_(k,30)+'"')}function p(){var t={};if(o(),u(),"strict"==k&&(t.strict=!0,u()),("graph"==k||"digraph"==k)&&(t.type=k,u()),N==O.IDENTIFIER&&(t.id=k,u()),"{"!=k)throw x("Angle bracket { expected");if(u(),f(t),"}"!=k)throw x("Angle bracket } expected");if(u(),""!==k)throw x("End of file expected");return u(),delete t.node,delete t.edge,delete t.graph,t}function f(t){for(;""!==k&&"}"!=k;)m(t),";"==k&&u()}function m(t){var e=g(t);if(e)return void b(t,e);var i=v(t);if(!i){if(N!=O.IDENTIFIER)throw x("Identifier expected");var o=k;if(u(),"="==k){if(u(),N!=O.IDENTIFIER)throw x("Identifier expected");t[o]=k,u()}else y(t,o)}}function g(t){var e=null;if("subgraph"==k&&(e={},e.type="subgraph",u(),N==O.IDENTIFIER&&(e.id=k,u())),"{"==k){if(u(),e||(e={}),e.parent=t,e.node=t.node,e.edge=t.edge,e.graph=t.graph,f(e),"}"!=k)throw x("Angle bracket } expected");u(),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"==k?(u(),t.node=w(),"node"):"edge"==k?(u(),t.edge=w(),"edge"):"graph"==k?(u(),t.graph=w(),"graph"):null}function y(t,e){var i={id:e},o=w();o&&(i.attr=o),d(t,i),b(t,e)}function b(t,e){for(;"->"==k||"--"==k;){var i,o=k;u();var s=g(t);if(s)i=s;else{if(N!=O.IDENTIFIER)throw x("Identifier or subgraph expected");i=k,d(t,{id:i}),u()}var n=w(),r=c(t,e,i,o,n);l(t,r),e=i}}function w(){for(var t=null;"["==k;){for(u(),t={};""!==k&&"]"!=k;){if(N!=O.IDENTIFIER)throw x("Attribute name expected");var e=k;if(u(),"="!=k)throw x("Equal sign = expected");if(u(),N!=O.IDENTIFIER)throw x("Attribute value expected");var i=k;h(t,e,i),u(),","==k&&u()}if("]"!=k)throw x("Bracket ] expected");u()}return t}function x(t){return new SyntaxError(t+', got "'+_(k,30)+'" (char '+T+")")}function _(t,e){return t.length<=e?t:t.substr(0,27)+"..."}function M(t,e,i){Array.isArray(t)?t.forEach(function(t){Array.isArray(e)?e.forEach(function(e){i(t,e)}):i(t,e)}):Array.isArray(e)?e.forEach(function(e){i(t,e)}):i(t,e)}function D(t){var e=i(t),o={nodes:[],edges:[],options:{}};if(e.nodes&&e.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)}),e.edges){var s=function(t){var e={from:t.from,to:t.to};return a(e,t.attr),e.style="->"==t.type?"arrow":"line",e};e.edges.forEach(function(t){var e,i;e=t.from instanceof Object?t.from.nodes:{id:t.from},i=t.to instanceof Object?t.to.nodes:{id:t.to},t.from instanceof Object&&t.from.edges&&t.from.edges.forEach(function(t){var e=s(t);o.edges.push(e)}),M(e,i,function(e,i){var n=c(o,e.id,i.id,t.type,t.attr),r=s(n);o.edges.push(r)}),t.to instanceof Object&&t.to.edges&&t.to.edges.forEach(function(t){var e=s(t);o.edges.push(e)})})}return e.attr&&(o.options=e.attr),o}var O={NULL:0,DELIMITER:1,IDENTIFIER:2,UNKNOWN:3},S={"{":!0,"}":!0,"[":!0,"]":!0,";":!0,"=":!0,",":!0,"->":!0,"--":!0},C="",T=0,E="",k="",N=O.NULL,L=/[a-zA-Z_0-9.:#]/;e.parseDOT=i,e.DOTToGraph=D},function(t,e){function i(t,e){var i=[],o=[];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 s=t.edges,n=t.nodes,r=0;r0?Math.max.apply(null,i)+1:1):(this.customBarIds.forEach(function(t){if(t===e)throw new Error("Custom time ID already exists")}),s=e),this.customBarIds.push(s),o=new d(this.body,{showCustomTime:!0,time:n,id:s}),this.components.push(o),this.redraw(),s},o.prototype.removeCustomTime=function(t){var e=this;this.components.forEach(function(i,o,s){i instanceof d&&i.options.id===t&&0!==i.options.id&&(e.customBarIds.splice(e.customBarIds.indexOf(t),1),s.splice(o,1),i.destroy())})},o.prototype.getVisibleItems=function(){return this.itemSet&&this.itemSet.getVisibleItems()||[]},o.prototype.clear=function(t){(!t||t.items)&&this.setItems(null),(!t||t.groups)&&this.setGroups(null),(!t||t.options)&&(this.components.forEach(function(t){return t.setOptions(t.defaultOptions)}),this.setOptions(this.defaultOptions))},o.prototype.fit=function(t){var e=this._getDataRange();if(null!==e.start||null!==e.end){var i=t&&void 0!==t.animate?t.animate:!0;this.range.setRange(e.start,e.end,i)}},o.prototype._getDataRange=function(){var t=this.getItemRange(),e=t.min,i=t.max;if(null!=e&&null!=i){var o=i.valueOf()-e.valueOf();0>=o&&(o=864e5),e=new Date(e.valueOf()-.05*o),i=new Date(i.valueOf()+.05*o)}return{start:e,end:i}},o.prototype.setWindow=function(t,e,i){var o;if(1==arguments.length){var s=arguments[0];o=void 0!==s.animate?s.animate:!0,this.range.setRange(s.start,s.end,o)}else o=i&&void 0!==i.animate?i.animate:!0,this.range.setRange(t,e,o)},o.prototype.moveTo=function(t,e){var i=this.range.end-this.range.start,o=r.convert(t,"Date").valueOf(),s=o-i/2,n=o+i/2,a=e&&void 0!==e.animate?e.animate:!0;this.range.setRange(s,n,a)},o.prototype.getWindow=function(){var t=this.range.getRange();return{start:new Date(t.start),end:new Date(t.end)}},o.prototype.redraw=function(){this._redraw()},o.prototype._redraw=function(){var t=!1,e=this.options,i=this.props,o=this.dom;if(o){h.updateHiddenDates(this.body,this.options.hiddenDates),"top"==e.orientation?(r.addClassName(o.root,"top"),r.removeClassName(o.root,"bottom")):(r.removeClassName(o.root,"top"),r.addClassName(o.root,"bottom")),o.root.style.maxHeight=r.option.asSize(e.maxHeight,""),o.root.style.minHeight=r.option.asSize(e.minHeight,""),o.root.style.width=r.option.asSize(e.width,""),i.border.left=(o.centerContainer.offsetWidth-o.centerContainer.clientWidth)/2,i.border.right=i.border.left,i.border.top=(o.centerContainer.offsetHeight-o.centerContainer.clientHeight)/2,i.border.bottom=i.border.top;var s=o.root.offsetHeight-o.root.clientHeight,n=o.root.offsetWidth-o.root.clientWidth;0===o.centerContainer.clientHeight&&(i.border.left=i.border.top,i.border.right=i.border.left),0===o.root.clientHeight&&(n=s),i.center.height=o.center.offsetHeight,i.left.height=o.left.offsetHeight,i.right.height=o.right.offsetHeight,i.top.height=o.top.clientHeight||-i.border.top,i.bottom.height=o.bottom.clientHeight||-i.border.bottom;var a=Math.max(i.left.height,i.center.height,i.right.height),d=i.top.height+a+i.bottom.height+s+i.border.top+i.border.bottom;o.root.style.height=r.option.asSize(e.height,d+"px"),i.root.height=o.root.offsetHeight,i.background.height=i.root.height-s;var l=i.root.height-i.top.height-i.bottom.height-s;i.centerContainer.height=l,i.leftContainer.height=l,i.rightContainer.height=i.leftContainer.height,i.root.width=o.root.offsetWidth,i.background.width=i.root.width-n,i.left.width=o.leftContainer.clientWidth||-i.border.left,i.leftContainer.width=i.left.width,i.right.width=o.rightContainer.clientWidth||-i.border.right,i.rightContainer.width=i.right.width;var c=i.root.width-i.left.width-i.right.width-n;i.center.width=c,i.centerContainer.width=c,i.top.width=c,i.bottom.width=c,o.background.style.height=i.background.height+"px",o.backgroundVertical.style.height=i.background.height+"px",o.backgroundHorizontal.style.height=i.centerContainer.height+"px",o.centerContainer.style.height=i.centerContainer.height+"px",o.leftContainer.style.height=i.leftContainer.height+"px",o.rightContainer.style.height=i.rightContainer.height+"px",o.background.style.width=i.background.width+"px",o.backgroundVertical.style.width=i.centerContainer.width+"px",o.backgroundHorizontal.style.width=i.background.width+"px",o.centerContainer.style.width=i.center.width+"px",o.top.style.width=i.top.width+"px",o.bottom.style.width=i.bottom.width+"px",o.background.style.left="0",o.background.style.top="0",o.backgroundVertical.style.left=i.left.width+i.border.left+"px",o.backgroundVertical.style.top="0",o.backgroundHorizontal.style.left="0",o.backgroundHorizontal.style.top=i.top.height+"px",o.centerContainer.style.left=i.left.width+"px",o.centerContainer.style.top=i.top.height+"px",o.leftContainer.style.left="0",o.leftContainer.style.top=i.top.height+"px",o.rightContainer.style.left=i.left.width+i.center.width+"px",o.rightContainer.style.top=i.top.height+"px",o.top.style.left=i.left.width+"px",o.top.style.top="0",o.bottom.style.left=i.left.width+"px",o.bottom.style.top=i.top.height+i.centerContainer.height+"px",this._updateScrollTop();var u=this.props.scrollTop;"bottom"==e.orientation&&(u+=Math.max(this.props.centerContainer.height-this.props.center.height-this.props.border.top-this.props.border.bottom,0)),o.center.style.left="0",o.center.style.top=u+"px",o.left.style.left="0",o.left.style.top=u+"px",o.right.style.left="0",o.right.style.top=u+"px";var p=0==this.props.scrollTop?"hidden":"",f=this.props.scrollTop==this.props.scrollTopMin?"hidden":"";if(o.shadowTop.style.visibility=p,o.shadowBottom.style.visibility=f,o.shadowTopLeft.style.visibility=p,o.shadowBottomLeft.style.visibility=f,o.shadowTopRight.style.visibility=p,o.shadowBottomRight.style.visibility=f,this.components.forEach(function(e){t=e.redraw()||t}),t){var m=3;this.redrawCount0&&(this.props.scrollTop=0),this.props.scrollTopt[o].y?t[o].y:e,i=i0){var r,a,h=Number(i.svg.style.height.replace("px",""));if(r=s.getSVGElement("path",i.svgElements,i.svg),r.setAttributeNS(null,"class",e.className),void 0!==e.style&&r.setAttributeNS(null,"style",e.style),a=1==e.options.catmullRom.enabled?o._catmullRom(t,e):o._linear(t),1==e.options.shaded.enabled){var d,l=s.getSVGElement("path",i.svgElements,i.svg);d="top"==e.options.shaded.orientation?"M"+t[0].x+",0 "+a+"L"+t[t.length-1].x+",0":"M"+t[0].x+","+h+" "+a+"L"+t[t.length-1].x+","+h,l.setAttributeNS(null,"class",e.className+" fill"),void 0!==e.options.shaded.style&&l.setAttributeNS(null,"style",e.options.shaded.style),l.setAttributeNS(null,"d",d)}r.setAttributeNS(null,"d","M"+a),1==e.options.drawPoints.enabled&&n.draw(t,e,i)}},o._catmullRomUniform=function(t){for(var e,i,o,s,n,r,a=Math.round(t[0].x)+","+Math.round(t[0].y)+" ",h=1/6,d=t.length,l=0;d-1>l;l++)e=0==l?t[0]:t[l-1],i=t[l],o=t[l+1],s=d>l+2?t[l+2]:o,n={x:(-e.x+6*i.x+o.x)*h,y:(-e.y+6*i.y+o.y)*h},r={x:(i.x+6*o.x-s.x)*h,y:(i.y+6*o.y-s.y)*h},a+="C"+n.x+","+n.y+" "+r.x+","+r.y+" "+o.x+","+o.y+" ";return a},o._catmullRom=function(t,e){var i=e.options.catmullRom.alpha;if(0==i||void 0===i)return this._catmullRomUniform(t);for(var o,s,n,r,a,h,d,l,c,u,p,f,m,g,v,y,b,w,x,_=Math.round(t[0].x)+","+Math.round(t[0].y)+" ",M=t.length,D=0;M-1>D;D++)o=0==D?t[0]:t[D-1],s=t[D],n=t[D+1],r=M>D+2?t[D+2]:n,d=Math.sqrt(Math.pow(o.x-s.x,2)+Math.pow(o.y-s.y,2)),l=Math.sqrt(Math.pow(s.x-n.x,2)+Math.pow(s.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),w=Math.pow(d,2*i),u=2*w+3*x*v+b,p=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*o.x+u*s.x+w*n.x)*f,y:(-b*o.y+u*s.y+w*n.y)*f},h={x:(y*s.x+p*n.x-b*r.x)*m,y:(y*s.y+p*n.y-b*r.y)*m},0==a.x&&0==a.y&&(a=s),0==h.x&&0==h.y&&(h=n),_+="C"+a.x+","+a.y+" "+h.x+","+h.y+" "+n.x+","+n.y+" ";return _},o._linear=function(t){for(var e="",i=0;it[o].y?t[o].y:e,i=i0&&(r=Math.min(r,Math.abs(u[l-1].x-a))),h=o._getSafeDrawData(r,d,m);else{var v=l+(p[a].amount-p[a].resolved),y=l-(p[a].resolved+1);v0&&(r=Math.min(r,Math.abs(u[y].x-a))),h=o._getSafeDrawData(r,d,m),p[a].resolved+=1,"stack"==d.options.barChart.handleOverlap?(g=p[a].accumulated,p[a].accumulated+=d.zeroPosition-u[l].y):"sideBySide"==d.options.barChart.handleOverlap&&(h.width=h.width/p[a].amount,h.offset+=p[a].resolved*h.width-.5*h.width*(p[a].amount+1),"left"==d.options.barChart.align?h.offset-=.5*h.width:"right"==d.options.barChart.align&&(h.offset+=.5*h.width))}s.drawBar(u[l].x+h.offset,u[l].y-g,h.width,d.zeroPosition-u[l].y,d.className+" bar",i.svgElements,i.svg),1==d.options.drawPoints.enabled&&n.draw([u[l]],d,i,h.offset)}},o._getDataIntersections=function(t,e){for(var i,o=0;o0&&(i=Math.min(i,Math.abs(e[o-1].x-e[o].x))),0==i&&(void 0===t[e[o].x]&&(t[e[o].x]={amount:0,resolved:0,accumulated:0}),t[e[o].x].amount+=1)},o._getSafeDrawData=function(t,e,i){var o,s;return t0?(o=i>t?i:t,s=0,"left"==e.options.barChart.align?s-=.5*t:"right"==e.options.barChart.align&&(s+=.5*t)):(o=e.options.barChart.width,s=0,"left"==e.options.barChart.align?s-=.5*e.options.barChart.width:"right"==e.options.barChart.align&&(s+=.5*e.options.barChart.width)),{width:o,offset:s}},o.getStackedBarYRange=function(t,e,i,s,n){if(t.length>0){t.sort(function(t,e){return t.x==e.x?t.groupId-e.groupId:t.x-e.x});var r={};o._getDataIntersections(r,t),e[s]=o._getStackedBarYRange(r,t),e[s].yAxisOrientation=n,i.push(s)}},o._getStackedBarYRange=function(t,e){for(var i,o=e[0].y,s=e[0].y,n=0;ne[n].y?e[n].y:o,s=st[r].accumulated?t[r].accumulated:o,s=st[o].y?t[o].y:e,i=io;o++){var s=o%2===0?1.3*i:.5*i;this.lineTo(t+s*Math.sin(2*o*Math.PI/10),e-s*Math.cos(2*o*Math.PI/10))}this.closePath()},CanvasRenderingContext2D.prototype.roundRect=function(t,e,i,o,s){var n=Math.PI/180;0>i-2*s&&(s=i/2),0>o-2*s&&(s=o/2),this.beginPath(),this.moveTo(t+s,e),this.lineTo(t+i-s,e),this.arc(t+i-s,e+s,s,270*n,360*n,!1),this.lineTo(t+i,e+o-s),this.arc(t+i-s,e+o-s,s,0,90*n,!1),this.lineTo(t+s,e+o),this.arc(t+s,e+o-s,s,90*n,180*n,!1),this.lineTo(t,e+s),this.arc(t+s,e+s,s,180*n,270*n,!1)},CanvasRenderingContext2D.prototype.ellipse=function(t,e,i,o){var s=.5522848,n=i/2*s,r=o/2*s,a=t+i,h=e+o,d=t+i/2,l=e+o/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,o){var s=1/3,n=i,r=o*s,a=.5522848,h=n/2*a,d=r/2*a,l=t+n,c=e+r,u=t+n/2,p=e+r/2,f=e+(o-r/2),m=e+o;this.beginPath(),this.moveTo(l,p),this.bezierCurveTo(l,p+d,u+h,c,u,c),this.bezierCurveTo(u-h,c,t,p+d,t,p),this.bezierCurveTo(t,p-d,u-h,e,u,e),this.bezierCurveTo(u+h,e,l,p-d,l,p),this.lineTo(l,f),this.bezierCurveTo(l,f+d,u+h,m,u,m),this.bezierCurveTo(u-h,m,t,f+d,t,f),this.lineTo(t,p)},CanvasRenderingContext2D.prototype.arrow=function(t,e,i,o){var s=t-o*Math.cos(i),n=e-o*Math.sin(i),r=t-.9*o*Math.cos(i),a=e-.9*o*Math.sin(i),h=s+o/3*Math.cos(i+.5*Math.PI),d=n+o/3*Math.sin(i+.5*Math.PI),l=s+o/3*Math.cos(i-.5*Math.PI),c=n+o/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,o,s){s||(s=[10,5]),0==u&&(u=.001);var n=s.length;this.moveTo(t,e);for(var r=i-t,a=o-e,h=a/r,d=Math.sqrt(r*r+a*a),l=0,c=!0;d>=.1;){var u=s[l++%n];u>d&&(u=d);var p=Math.sqrt(u*u/(1+h*h));0>r&&(p=-p),t+=p,e+=h*p,this[c?"lineTo":"moveTo"](t,e),d-=u,c=!c}})},function(t,e,i){var o=function(t,e,i){e&&Object.defineProperties(t,e),i&&Object.defineProperties(t.prototype,i)},s=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},n=i(67).BarnesHutSolver,r=i(68).Repulsion,a=i(69).HierarchicalRepulsion,h=i(70).SpringSolver,d=i(71).HierarchicalSpringSolver,l=i(72).CentralGravitySolver,c=i(1),u=function(){function t(e,i){var o=this;s(this,t),this.body=e,this.physicsBody={calculationNodes:{},calculationNodeIndices:[],forces:{},velocities:{}},this.scale=1,this.viewFunction=void 0,this.body.emitter.on("_setScale",function(t){return o.scale=t}),this.simulationInterval=1e3/60,this.requiresTimeout=!0,this.previousStates={},void 0==this.renderTimer,this.stabilized=!1,this.stabilizationIterations=0,this.options={barnesHut:{thetaInverted:2,gravitationalConstant:-2e3,centralGravity:.3,springLength:95,springConstant:.04,damping:.09},repulsion:{centralGravity:0,springLength:200,springConstant:.05,nodeDistance:100,damping:.09},hierarchicalRepulsion:{centralGravity:0,springLength:100,springConstant:.01,nodeDistance:150,damping:.09},model:"BarnesHut",timestep:.5,maxVelocity:50,minVelocity:.1,stabilization:{enabled:!0,iterations:1e3,updateInterval:100,onlyDynamicEdges:!1,zoomExtent:!0}},this.setOptions(i)}return o(t,null,{setOptions:{value:function(t){void 0!==t&&("boolean"==typeof t.stabilization&&(t.stabilization={enabled:t.stabilization}),c.deepExtend(this.options,t)),this.init()},writable:!0,configurable:!0},init:{value:function(){var t;"repulsion"==this.options.model?(t=this.options.repulsion,this.nodesSolver=new r(this.body,this.physicsBody,t),this.edgesSolver=new h(this.body,this.physicsBody,t)):"hierarchicalRepulsion"==this.options.model?(t=this.options.hierarchicalRepulsion,this.nodesSolver=new a(this.body,this.physicsBody,t),this.edgesSolver=new d(this.body,this.physicsBody,t)):(t=this.options.barnesHut,this.nodesSolver=new n(this.body,this.physicsBody,t),this.edgesSolver=new h(this.body,this.physicsBody,t)),this.gravitySolver=new l(this.body,this.physicsBody,t),this.modelOptions=t},writable:!0,configurable:!0},startSimulation:{value:function(){this.stabilized=!1,this.options.stabilization.enabled===!0?this.stabilize():this.runSimulation()},writable:!0,configurable:!0},runSimulation:{value:function(){void 0===this.viewFunction&&(this.viewFunction=this.simulationStep.bind(this),this.body.emitter.on("_beforeRender",this.viewFunction),this.body.emitter.emit("_startRendering"))},writable:!0,configurable:!0},simulationStep:{value:function(){var t=Date.now();this.physicsTick();var e=Date.now()-t;if((e<.4*this.simulationInterval||1==this.runDoubleSpeed)&&this.stabilized===!1&&(this.physicsTick(),this.runDoubleSpeed=!0),this.stabilized===!0){if(this.stabilizationIterations>1){var i=this,o={iterations:this.stabilizationIterations};this.stabilizationIterations=0,this.startedStabilization=!1,setTimeout(function(){i.body.emitter.emit("stabilized",o)},0)}else this.stabilizationIterations=0;this.body.emitter.emit("_stopRendering")}},writable:!0,configurable:!0},physicsTick:{value:function(){this.stabilized===!1&&(this.calculateForces(),this.stabilized=this.moveNodes(),this.stabilized===!0?this.revert():0==this.startedStabilization&&(this.body.emitter.emit("startStabilizing"),this.startedStabilization=!0),this.stabilizationIterations++)},writable:!0,configurable:!0},_updateCalculationNodes:{value:function(){this.physicsBody.calculationNodes={},this.physicsBody.forces={},this.physicsBody.calculationNodeIndices=[];for(var t=0;ta&&o===!0,t=!0}return 1==t?s>.5*this.options.maxVelocity?!1:o:!0},writable:!0,configurable:!0},_performStep:{value:function(t,e){var i=this.physicsBody.calculationNodes[t],o=this.options.timestep,s=this.physicsBody.forces,n=this.physicsBody.velocities;if(this.previousStates[t]={x:i.x,y:i.y,vx:n[t].x,vy:n[t].y},i.xFixed)s[t].x=0,n[t].x=0;else{var r=this.modelOptions.damping*n[t].x,a=(s[t].x-r)/i.options.mass;n[t].x+=a*o,n[t].x=Math.abs(n[t].x)>e?n[t].x>0?e:-e:n[t].x,i.x+=n[t].x*o}if(i.yFixed)s[t].y=0,n[t].y=0;else{var h=this.modelOptions.damping*n[t].y,d=(s[t].y-h)/i.options.mass;n[t].y+=d*o,n[t].y=Math.abs(n[t].y)>e?n[t].y>0?e:-e:n[t].y,i.y+=n[t].y*o}var l=Math.sqrt(Math.pow(n[t].x,2)+Math.pow(n[t].y,2));return l},writable:!0,configurable:!0},calculateForces:{value:function(){this.gravitySolver.solve(),this.nodesSolver.solve(),this.edgesSolver.solve()},writable:!0,configurable:!0},_freezeNodes:{value:function(){var t=this.body.nodes;for(var e in t)t.hasOwnProperty(e)&&null!=t[e].x&&null!=t[e].y&&(t[e].fixedData.x=t[e].xFixed,t[e].fixedData.y=t[e].yFixed,t[e].xFixed=!0,t[e].yFixed=!0)},writable:!0,configurable:!0},_restoreFrozenNodes:{value:function(){var t=this.body.nodes;for(var e in t)t.hasOwnProperty(e)&&null!=t[e].fixedData.x&&(t[e].xFixed=t[e].fixedData.x,t[e].yFixed=t[e].fixedData.y)},writable:!0,configurable:!0},stabilize:{value:function(){1==this.options.stabilization.onlyDynamicEdges&&this._freezeNodes(),this.stabilizationSteps=0,setTimeout(this._stabilizationBatch.bind(this),0)},writable:!0,configurable:!0},_stabilizationBatch:{value:function(){for(var t=0;0==this.stabilized&&t=t&&i.push(s.id)}for(var o=0;os?e.x:s,n=e.yr?e.y:r;return{x:.5*(o+s),y:.5*(n+r)}},writable:!0,configurable:!0},openCluster:{value:function(t,e){if(void 0===t)throw new Error("No clusterNodeId supplied to openCluster.");if(void 0===this.body.nodes[t])throw new Error("The clusterNodeId supplied to openCluster does not exist.");if(void 0===this.body.nodes[t].containedNodes)return void console.log("The node:"+t+" is not a cluster.");var i=this.body.nodes[t],o=i.containedNodes,s=i.containedEdges;for(var n in o)o.hasOwnProperty(n)&&(this.body.nodes[n]=o[n],this.body.nodes[n].x=i.x,this.body.nodes[n].y=i.y,this.body.nodes[n].vx=i.vx,this.body.nodes[n].vy=i.vy,delete this.clusteredNodes[n]);for(var r in s)if(s.hasOwnProperty(r)){this.body.edges[r]=s[r],this.body.edges[r].connect();var a=this.body.edges[r];a.connected===!1&&(void 0!==this.clusteredNodes[a.fromId]&&this._connectEdge(a,a.fromId,!0),void 0!==this.clusteredNodes[a.toId]&&this._connectEdge(a,a.toId,!1))}this.body.emitter.emit("_newEdgesCreated",s);for(var h=[],d=0;d0&&a.fromId==t)void 0!==this.body.nodes[a.fromArray[0].id]&&this._connectEdge(a,a.fromArray[0].id,!0);else if(a.toArray.length>0&&a.toId==t)void 0!==this.body.nodes[a.toArray[0].id]&&this._connectEdge(a,a.toArray[0].id,!1);else{var r=h[d],l=this.body.edges[r].via.id;l&&(this.body.edges[r].via=null,delete this.body.supportNodes[l]),this.body.edges[r].disconnect(),delete this.body.edges[r]}}delete this.body.nodes[t],e!==!0&&this.body.emitter.emit("_dataChanged")},writable:!0,configurable:!0},_connectEdge:{value:function(t,e,i){var o=this._getClusterStack(e);1==i?(t.from=o[o.length-1],t.fromId=o[o.length-1].id,o.pop(),t.fromArray=o):(t.to=o[o.length-1],t.toId=o[o.length-1].id,o.pop(),t.toArray=o),t.connect()},writable:!0,configurable:!0},_getClusterStack:{value:function(t){for(var e=[],i=100,o=0;void 0!==this.clusteredNodes[t]&&i>o;)e.push(this.clusteredNodes[t].node),t=this.clusteredNodes[t].clusterId,o++;return e.push(this.body.nodes[t]),e},writable:!0,configurable:!0},_getConnectedId:{value:function(t,e){return t.toId!=e?t.toId:t.fromId!=e?t.fromId:t.fromId},writable:!0,configurable:!0},_getHubSize:{value:function(){for(var t=0,e=0,i=0,o=0,s=0;so&&(o=n.edges.length),t+=n.edges.length,e+=Math.pow(n.edges.length,2),i+=1}t/=i,e/=i;var r=e-Math.pow(t,2),a=Math.sqrt(r),h=Math.floor(t+2*a);return h>o&&(h=o),h},writable:!0,configurable:!0}}),t}();e.ClusterEngine=r,Object.defineProperty(e,"__esModule",{value:!0})},function(t,e){var i=function(t,e,i){e&&Object.defineProperties(t,e),i&&Object.defineProperties(t.prototype,i)},o=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")};"undefined"!=typeof window&&(window.requestAnimationFrame=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||window.msRequestAnimationFrame);var s=function(){function t(e){var i=this;o(this,t),this.body=e,this.redrawRequested=!1,this.renderTimer=!1,this.requiresTimeout=!0,this.continueRendering=!0,this.renderRequests=0,this.translation={x:0,y:0},this.scale=1,this.canvasTopLeft={x:0,y:0},this.canvasBottomRight={x:0,y:0},this.body.emitter.on("_setScale",function(t){return i.scale=t}),this.body.emitter.on("_setTranslation",function(t){i.translation.x=t.x,i.translation.y=t.y}),this.body.emitter.on("_redraw",this._redraw.bind(this)),this.body.emitter.on("_redrawHidden",this._redraw.bind(this,!0)),this.body.emitter.on("_requestRedraw",this._requestRedraw.bind(this)),this.body.emitter.on("_startRendering",function(){i.renderRequests+=1,i.continueRendering=!0,i.startRendering()}),this.body.emitter.on("_stopRendering",function(){i.renderRequests-=1,i.continueRendering=i.renderRequests>0}),this._determineBrowserMethod()}return i(t,null,{startRendering:{value:function(){this.continueRendering===!0&&(this.renderTimer||(this.renderTimer=1==this.requiresTimeout?window.setTimeout(this.renderStep.bind(this),this.simulationInterval):window.requestAnimationFrame(this.renderStep.bind(this))))},writable:!0,configurable:!0},renderStep:{value:function(){this.renderTimer=void 0,1==this.requiresTimeout&&this.startRendering(),this._redraw(),0==this.requiresTimeout&&this.startRendering()},writable:!0,configurable:!0},setCanvas:{value:function(t){this.canvas=t},writable:!0,configurable:!0},redraw:{value:function(){this.setSize(this.constants.width,this.constants.height),this._redraw()},writable:!0,configurable:!0},_requestRedraw:{value:function(t){this.redrawRequested!==!0&&(this.redrawRequested=!0,this.requiresTimeout===!0?window.setTimeout(this._redraw.bind(this,t),0):window.requestAnimationFrame(this._redraw.bind(this,t,!0)))},writable:!0,configurable:!0},_redraw:{value:function(){var t=void 0===arguments[0]?!1:arguments[0];this.body.emitter.emit("_beforeRender"),this.redrawRequested=!1;var e=this.canvas.frame.canvas.getContext("2d");e.setTransform(this.pixelRatio,0,0,this.pixelRatio,0,0);var i=this.canvas.frame.canvas.clientWidth,o=this.canvas.frame.canvas.clientHeight;e.clearRect(0,0,i,o),e.save(),e.translate(this.translation.x,this.translation.y),e.scale(this.scale,this.scale),this.canvasTopLeft=this.canvas.DOMtoCanvas({x:0,y:0}),this.canvasBottomRight=this.canvas.DOMtoCanvas({x:this.canvas.frame.canvas.clientWidth,y:this.canvas.frame.canvas.clientHeight}),t===!1&&this._drawEdges(e),this._drawNodes(e,this.body.nodes,t),t===!1&&1==this.controlNodesActive&&this._drawControlNodes(e),e.restore(),t===!0&&e.clearRect(0,0,i,o)},writable:!0,configurable:!0},_drawNodes:{value:function(t,e){var i=void 0===arguments[2]?!1:arguments[2],o=[];for(var s in e)e.hasOwnProperty(s)&&(e[s].setScaleAndPos(this.scale,this.canvasTopLeft,this.canvasBottomRight),e[s].isSelected()?o.push(s):i===!0?e[s].draw(t):e[s].inArea()===!0&&e[s].draw(t));for(var n=0,r=o.length;r>n;n++)(e[o[n]].inArea()||i)&&e[o[n]].draw(t)},writable:!0,configurable:!0},_drawEdges:{value:function(t){var e=this.body.edges;for(var i in e)if(e.hasOwnProperty(i)){var o=e[i];o.setScale(this.scale),o.connected===!0&&e[i].draw(t)}},writable:!0,configurable:!0},_drawControlNodes:{value:function(t){var e=this.body.edges;for(var i in e)e.hasOwnProperty(i)&&e[i]._drawControlNodes(t)},writable:!0,configurable:!0},_determineBrowserMethod:{value:function(){if("undefined"!=typeof window){var t=navigator.userAgent.toLowerCase();this.requiresTimeout=!1,-1!=t.indexOf("msie 9.0")?this.requiresTimeout=!0:-1!=t.indexOf("safari")&&t.indexOf("chrome")<=-1&&(this.requiresTimeout=!0)}else this.requiresTimeout=!0},writable:!0,configurable:!0}}),t}();e.CanvasRenderer=s,Object.defineProperty(e,"__esModule",{value:!0})},function(t,e,i){var o=function(t,e,i){e&&Object.defineProperties(t,e),i&&Object.defineProperties(t.prototype,i)},s=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},n=i(45),r=function(){function t(e,i){var o=this;for(s(this,t),this.body=e,this.setOptions(i),this.translation={x:0,y:0},this.scale=1,this.body.emitter.on("_setScale",function(t){o.scale=t}),this.body.emitter.on("_setTranslation",function(t){o.translation.x=t.x,o.translation.y=t.y}),this.body.emitter.once("resize",function(t){o.translation.x=.5*t.width,o.translation.y=.5*t.height,o.body.emitter.emit("_setTranslation",o.translation)}),this.pixelRatio=1;this.body.container.hasChildNodes();)this.body.container.removeChild(this.body.container.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.tabIndex=900,this.frame.canvas=document.createElement("canvas"),this.frame.canvas.style.position="relative",this.frame.appendChild(this.frame.canvas),this.frame.canvas.getContext){var n=this.frame.canvas.getContext("2d");this.pixelRatio=(window.devicePixelRatio||1)/(n.webkitBackingStorePixelRatio||n.mozBackingStorePixelRatio||n.msBackingStorePixelRatio||n.oBackingStorePixelRatio||n.backingStorePixelRatio||1),this.frame.canvas.getContext("2d").setTransform(this.pixelRatio,0,0,this.pixelRatio,0,0)}else{var r=document.createElement("DIV");r.style.color="red",r.style.fontWeight="bold",r.style.padding="10px",r.innerHTML="Error: your browser does not support HTML canvas",this.frame.canvas.appendChild(r)}this.body.container.appendChild(this.frame),this.body.emitter.emit("_setScale",1),this.body.emitter.emit("_setTranslation",{x:.5*this.frame.canvas.clientWidth,y:.5*this.frame.canvas.clientHeight}),this._bindHammer()}return o(t,null,{_bindHammer:{value:function(){var t=this;void 0!==this.hammer&&this.hammer.dispose(),this.drag={},this.pinch={},this.hammer=n(this.frame.canvas,{prevent_default:!0}),this.hammer.on("tap",t.body.eventListeners.onTap),this.hammer.on("doubletap",t.body.eventListeners.onDoubleTap),this.hammer.on("hold",t.body.eventListeners.onHold),this.hammer.on("touch",t.body.eventListeners.onTouch),this.hammer.on("dragstart",t.body.eventListeners.onDragStart),this.hammer.on("drag",t.body.eventListeners.onDrag),this.hammer.on("dragend",t.body.eventListeners.onDragEnd),1==this.options.zoomable&&(this.hammer.on("mousewheel",t.body.eventListeners.onMouseWheel.bind(t)),this.hammer.on("DOMMouseScroll",t.body.eventListeners.onMouseWheel.bind(t)),this.hammer.on("pinch",t.body.eventListeners.onPinch.bind(t))),this.hammer.on("mousemove",t.body.eventListeners.onMouseMove.bind(t)),this.hammerFrame=n(this.frame,{prevent_default:!0}),this.hammerFrame.on("release",t.body.eventListeners.onRelease.bind(t))},writable:!0,configurable:!0},setOptions:{value:function(){var t=void 0===arguments[0]?{}:arguments[0];this.options=t},writable:!0,configurable:!0},setSize:{value:function(t,e){var i=!1,o=this.frame.canvas.width,s=this.frame.canvas.height;t!=this.options.width||e!=this.options.height||this.frame.style.width!=t||this.frame.style.height!=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.pixelRatio,this.frame.canvas.height=this.frame.canvas.clientHeight*this.pixelRatio,this.options.width=t,this.options.height=e,i=!0):(this.frame.canvas.width!=this.frame.canvas.clientWidth*this.pixelRatio&&(this.frame.canvas.width=this.frame.canvas.clientWidth*this.pixelRatio,i=!0),this.frame.canvas.height!=this.frame.canvas.clientHeight*this.pixelRatio&&(this.frame.canvas.height=this.frame.canvas.clientHeight*this.pixelRatio,i=!0)),i===!0&&this.body.emitter.emit("resize",{width:this.frame.canvas.width*this.pixelRatio,height:this.frame.canvas.height*this.pixelRatio,oldWidth:o*this.pixelRatio,oldHeight:s*this.pixelRatio})},writable:!0,configurable:!0},_XconvertDOMtoCanvas:{value:function(t){return(t-this.translation.x)/this.scale},writable:!0,configurable:!0},_XconvertCanvasToDOM:{value:function(t){return t*this.scale+this.translation.x},writable:!0,configurable:!0},_YconvertDOMtoCanvas:{value:function(t){return(t-this.translation.y)/this.scale},writable:!0,configurable:!0},_YconvertCanvasToDOM:{value:function(t){return t*this.scale+this.translation.y},writable:!0,configurable:!0},canvasToDOM:{value:function(t){return{x:this._XconvertCanvasToDOM(t.x),y:this._YconvertCanvasToDOM(t.y)}},writable:!0,configurable:!0},DOMtoCanvas:{value:function(t){return{x:this._XconvertDOMtoCanvas(t.x),y:this._YconvertDOMtoCanvas(t.y)}},writable:!0,configurable:!0}}),t}();e.Canvas=r,Object.defineProperty(e,"__esModule",{value:!0})},function(t,e,i){var o=function(t,e,i){e&&Object.defineProperties(t,e),i&&Object.defineProperties(t.prototype,i)},s=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},n=i(1),r=function(){function t(e,i){var o=this;s(this,t),this.body=e,this.setOptions(i),this.animationSpeed=1/this.renderRefreshRate,this.animationEasingFunction="easeInOutQuint",this.easingTime=0,this.sourceScale=0,this.targetScale=0,this.sourceTranslation=0,this.targetTranslation=0,this.lockedOnNodeId=null,this.lockedOnNodeOffset=null,this.touchTime=0,this.translation={x:0,y:0},this.scale=1,this.viewFunction=void 0,this.body.emitter.on("zoomExtent",this.zoomExtent.bind(this)),this.body.emitter.on("_setScale",function(t){return o.scale=t}),this.body.emitter.on("_setTranslation",function(t){o.translation.x=t.x,o.translation.y=t.y}),this.body.emitter.on("animationFinished",function(){o.body.emitter.emit("_stopRendering")}),this.body.emitter.on("unlockNode",this.releaseNode.bind(this))}return o(t,null,{setOptions:{value:function(){var t=void 0===arguments[0]?{}:arguments[0];this.options=t},writable:!0,configurable:!0},setCanvas:{value:function(t){this.canvas=t},writable:!0,configurable:!0},_getRange:{value:function(){var t,e=void 0===arguments[0]?[]:arguments[0],i=1e9,o=-1e9,s=1e9,n=-1e9;if(e.length>0)for(var r=0;rt.boundingBox.left&&(s=t.boundingBox.left),nt.boundingBox.bottom&&(i=t.boundingBox.top),ot.boundingBox.left&&(s=t.boundingBox.left),nt.boundingBox.bottom&&(i=t.boundingBox.top),o.5*this.body.nodeIndices.length)return void this.zoomExtent(i,!1);t=this._getRange(i.nodes);var a=this.body.nodeIndices.length;e=1==this.options.smoothCurves?12.662/(a+7.4147)+.0964822:30.5062972/(a+19.93597763)+.08413486;var h=Math.min(this.canvas.frame.canvas.clientWidth/600,this.canvas.frame.canvas.clientHeight/600);e*=h}else{this.body.emitter.emit("_redrawHidden"),t=this._getRange(i.nodes);var d=1.1*Math.abs(t.maxX-t.minX),l=1.1*Math.abs(t.maxY-t.minY),c=this.canvas.frame.canvas.clientWidth/d,u=this.canvas.frame.canvas.clientHeight/l;e=u>=c?c:u}e>1&&(e=1);var p=this._findCenter(t),f={position:p,scale:e,animation:i};this.moveTo(f)},writable:!0,configurable:!0},focusOnNode:{value:function(t){var e=void 0===arguments[1]?{}:arguments[1];if(void 0!==this.body.nodes[t]){var i={x:this.body.nodes[t].x,y:this.body.nodes[t].y};e.position=i,e.lockedOnNode=t,this.moveTo(e)}else console.log("Node: "+t+" cannot be found.")},writable:!0,configurable:!0},moveTo:{value:function(t){return void 0===t?void(t={}):(void 0===t.offset&&(t.offset={x:0,y:0}),void 0===t.offset.x&&(t.offset.x=0),void 0===t.offset.y&&(t.offset.y=0),void 0===t.scale&&(t.scale=this.scale),void 0===t.position&&(t.position=this.translation),void 0===t.animation&&(t.animation={duration:0}),t.animation===!1&&(t.animation={duration:0}),t.animation===!0&&(t.animation={}),void 0===t.animation.duration&&(t.animation.duration=1e3),void 0===t.animation.easingFunction&&(t.animation.easingFunction="easeInOutQuad"),void this.animateView(t))},writable:!0,configurable:!0},animateView:{value:function(t){if(void 0!==t){this.animationEasingFunction=t.animation.easingFunction,this.releaseNode(),1==t.locked&&(this.lockedOnNodeId=t.lockedOnNode,this.lockedOnNodeOffset=t.offset),0!=this.easingTime&&this._transitionRedraw(!0),this.sourceScale=this.scale,this.sourceTranslation=this.translation,this.targetScale=t.scale,this.body.emitter.emit("_setScale",this.targetScale);var e=this.canvas.DOMtoCanvas({x:.5*this.canvas.frame.canvas.clientWidth,y:.5*this.canvas.frame.canvas.clientHeight}),i={x:e.x-t.position.x,y:e.y-t.position.y};this.targetTranslation={x:this.sourceTranslation.x+i.x*this.targetScale+t.offset.x,y:this.sourceTranslation.y+i.y*this.targetScale+t.offset.y},0==t.animation.duration?null!=this.lockedOnNodeId?(this.viewFunction=this._lockedRedraw.bind(this),this.body.emitter.on("_beforeRender",this.viewFunction)):(this.body.emitter.emit("_setScale",this.targetScale),this.body.emitter.emit("_setTranslation",this.targetTranslation),this.body.emitter.emit("_requestRedraw")):(this.animationSpeed=1/(60*t.animation.duration*.001)||1/60,this.animationEasingFunction=t.animation.easingFunction,this.viewFunction=this._transitionRedraw.bind(this),this.body.emitter.on("_beforeRender",this.viewFunction),this.body.emitter.emit("_startRendering"))}},writable:!0,configurable:!0},_lockedRedraw:{value:function(){var t={x:this.body.nodes[this.lockedOnNodeId].x,y:this.body.nodes[this.lockedOnNodeId].y},e=this.DOMtoCanvas({x:.5*this.frame.canvas.clientWidth,y:.5*this.frame.canvas.clientHeight}),i={x:e.x-t.x,y:e.y-t.y},o=this.translation,s={x:o.x+i.x*this.scale+this.lockedOnNodeOffset.x,y:o.y+i.y*this.scale+this.lockedOnNodeOffset.y};this.body.emitter.emit("_setTranslation",s)},writable:!0,configurable:!0},releaseNode:{value:function(){void 0!==this.lockedOnNodeId&&(this.body.emitter.off("_beforeRender",this.viewFunction),this.lockedOnNodeId=void 0,this.lockedOnNodeOffset=void 0)},writable:!0,configurable:!0},_transitionRedraw:{value:function(){var t=void 0===arguments[0]?!1:arguments[0];this.easingTime+=this.animationSpeed,this.easingTime=t===!0?1:this.easingTime;var e=n.easingFunctions[this.animationEasingFunction](this.easingTime);this.body.emitter.emit("_setScale",this.sourceScale+(this.targetScale-this.sourceScale)*e),this.body.emitter.emit("_setTranslation",{x:this.sourceTranslation.x+(this.targetTranslation.x-this.sourceTranslation.x)*e,y:this.sourceTranslation.y+(this.targetTranslation.y-this.sourceTranslation.y)*e}),this.easingTime>=1&&(this.body.emitter.off("_beforeRender",this.viewFunction),this.easingTime=0,null!=this.lockedOnNodeId&&(this.viewFunction=this._lockedRedraw.bind(this),this.body.emitter.on("_beforeRender",this.viewFunction)),this.body.emitter.emit("animationFinished"))},writable:!0,configurable:!0}}),t}();e.View=r,Object.defineProperty(e,"__esModule",{value:!0})},function(t,e,i){var o=function(t,e,i){e&&Object.defineProperties(t,e),i&&Object.defineProperties(t.prototype,i)},s=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},n=i(73).SelectionHandler,r=i(1),a=function(){function t(e){var i=this;s(this,t),this.body=e,this.body.eventListeners.onTap=this.onTap.bind(this),this.body.eventListeners.onTouch=this.onTouch.bind(this),this.body.eventListeners.onDoubleTap=this.onDoubleTap.bind(this),this.body.eventListeners.onHold=this.onHold.bind(this),this.body.eventListeners.onDragStart=this.onDragStart.bind(this),this.body.eventListeners.onDrag=this.onDrag.bind(this),this.body.eventListeners.onDragEnd=this.onDragEnd.bind(this),this.body.eventListeners.onMouseWheel=this.onMouseWheel.bind(this),this.body.eventListeners.onPinch=this.onPinch.bind(this),this.body.eventListeners.onMouseMove=this.onMouseMove.bind(this),this.body.eventListeners.onRelease=this.onRelease.bind(this),this.touchTime=0,this.drag={},this.pinch={},this.pointerPosition={x:0,y:0},this.scale=1,this.body.emitter.on("_setScale",function(t){return i.scale=t}),this.selectionHandler=new n(e)}return o(t,null,{setCanvas:{value:function(t){this.canvas=t,this.selectionHandler.setCanvas(t)},writable:!0,configurable:!0},getPointer:{value:function(t){return{x:t.pageX-r.getAbsoluteLeft(this.canvas.frame.canvas),y:t.pageY-r.getAbsoluteTop(this.canvas.frame.canvas)}},writable:!0,configurable:!0},onTouch:{value:function(t){(new Date).valueOf()-this.touchTime>100&&(this.drag.pointer=this.getPointer(t.gesture.center),this.drag.pinched=!1,this.pinch.scale=this.scale,this.touchTime=(new Date).valueOf())},writable:!0,configurable:!0},onTap:{value:function(t){console.log("tap",t);var e=this.getPointer(t.gesture.center);this.pointerPosition=e,this.selectionHandler.selectOnPoint(e)},writable:!0,configurable:!0},onDragStart:{value:function(){},writable:!0,configurable:!0},onDrag:{value:function(){},writable:!0,configurable:!0},onDragEnd:{value:function(){},writable:!0,configurable:!0},onDoubleTap:{value:function(){},writable:!0,configurable:!0},onHold:{value:function(){},writable:!0,configurable:!0},onRelease:{value:function(){},writable:!0,configurable:!0},onPinch:{value:function(){},writable:!0,configurable:!0},_zoom:{value:function(){},writable:!0,configurable:!0},onMouseWheel:{value:function(){},writable:!0,configurable:!0},onMouseMove:{value:function(){},writable:!0,configurable:!0}}),t}();e.TouchEventHandler=a,Object.defineProperty(e,"__esModule",{value:!0})},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(){o.off(t,i),e.apply(this,arguments)}var o=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 o,s=0;so;++o)i[o].apply(this,e)}return this},e.prototype.listeners=function(t){return this._callbacks=this._callbacks||{},this._callbacks[t]||[]},e.prototype.hasListeners=function(t){return!!this.listeners(t).length}},function(t,e){var i,o,s;!function(n,r){o=[],i=r,s="function"==typeof i?i.apply(e,o):i,!(void 0!==s&&(t.exports=s))}(this,function(){function t(t){var e,i=t&&t.preventDefault||!1,o=t&&t.container||window,s={},n={keydown:{},keyup:{}},r={};for(e=97;122>=e;e++)r[String.fromCharCode(e)]={code:65+(e-97),shift:!1};for(e=65;90>=e;e++)r[String.fromCharCode(e)]={code:e,shift:!0};for(e=0;9>=e;e++)r[""+e]={code:48+e,shift:!1};for(e=1;12>=e;e++)r["F"+e]={code:111+e,shift:!1};for(e=0;9>=e;e++)r["num"+e]={code:96+e,shift:!1};r["num*"]={code:106,shift:!1},r["num+"]={code:107,shift:!1},r["num-"]={code:109,shift:!1},r["num/"]={code:111,shift:!1},r["num."]={code:110,shift:!1},r.left={code:37,shift:!1},r.up={code:38,shift:!1},r.right={code:39,shift:!1},r.down={code:40,shift:!1},r.space={code:32,shift:!1},r.enter={code:13,shift:!1},r.shift={code:16,shift:void 0},r.esc={code:27,shift:!1},r.backspace={code:8,shift:!1},r.tab={code:9,shift:!1},r.ctrl={code:17,shift:!1},r.alt={code:18,shift:!1},r["delete"]={code:46,shift:!1},r.pageup={code:33,shift:!1},r.pagedown={code:34,shift:!1},r["="]={code:187,shift:!1},r["-"]={code:189,shift:!1},r["]"]={code:221,shift:!1},r["["]={code:219,shift:!1};var a=function(t){d(t,"keydown")},h=function(t){d(t,"keyup")},d=function(t,e){if(void 0!==n[e][t.keyCode]){for(var o=n[e][t.keyCode],s=0;se-n?(i=t.clone().add(s-1,"months"),o=(e-n)/(n-i)):(i=t.clone().add(s+1,"months"),o=(e-n)/(i-n)),-(s+o)}function m(t,e,i){var o;return null==i?e:null!=t.meridiemHour?t.meridiemHour(e,i):null!=t.isPM?(o=t.isPM(i),o&&12>e&&(e+=12),o||12!==e||(e=0),e):e}function g(){}function v(t,e){e!==!1&&R(t),w(this,t),this._d=new Date(+t._d),Oi===!1&&(Oi=!0,Se.updateOffset(this),Oi=!1)}function y(t){var e=N(t),i=e.year||0,o=e.quarter||0,s=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=+s+3*o+12*i,this._data={},this._locale=Se.localeData(),this._bubble() +}function b(t,e){for(var i in e)a(e,i)&&(t[i]=e[i]);return a(e,"toString")&&(t.toString=e.toString),a(e,"valueOf")&&(t.valueOf=e.valueOf),t}function w(t,e){var i,o,s;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),He.length>0)for(i in He)o=He[i],s=e[o],"undefined"!=typeof s&&(t[o]=s);return t}function x(t){return 0>t?Math.ceil(t):Math.floor(t)}function _(t,e,i){for(var o=""+Math.abs(t),s=t>=0;o.lengtho;o++)(i&&t[o]!==e[o]||!i&&I(t[o])!==I(e[o]))&&r++;return r+n}function k(t){if(t){var e=t.toLowerCase().replace(/(.)s$/,"$1");t=gi[t]||vi[e]||e}return t}function N(t){var e,i,o={};for(i in t)a(t,i)&&(e=k(i),e&&(o[e]=t[i]));return o}function L(t){var e,i;if(0===t.indexOf("week"))e=7,i="day";else{if(0!==t.indexOf("month"))return;e=12,i="month"}Se[t]=function(o,s){var r,a,h=Se._locale[t],d=[];if("number"==typeof o&&(s=o,o=n),a=function(t){var e=Se().utc().set(i,t);return h.call(Se._locale,e,o||"")},null!=s)return a(s);for(r=0;e>r;r++)d.push(a(r));return d}}function I(t){var e=+t,i=0;return 0!==e&&isFinite(e)&&(i=e>=0?Math.floor(e):Math.ceil(e)),i}function P(t,e){return new Date(Date.UTC(t,e+1,0)).getUTCDate()}function A(t,e,i){return fe(Se([t,11,31+e-i]),e,i).week}function z(t){return F(t)?366:365}function F(t){return t%4===0&&t%100!==0||t%400===0}function R(t){var e;t._a&&-2===t._pf.overflow&&(e=t._a[Pe]<0||t._a[Pe]>11?Pe:t._a[Ae]<1||t._a[Ae]>P(t._a[Ie],t._a[Pe])?Ae:t._a[ze]<0||t._a[ze]>24||24===t._a[ze]&&(0!==t._a[Fe]||0!==t._a[Re]||0!==t._a[Be])?ze:t._a[Fe]<0||t._a[Fe]>59?Fe:t._a[Re]<0||t._a[Re]>59?Re:t._a[Be]<0||t._a[Be]>999?Be:-1,t._pf._overflowDayOfYear&&(Ie>e||e>Ae)&&(e=Ae),t._pf.overflow=e)}function B(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._pf.bigHour===n)),t._isValid}function Y(t){return t?t.toLowerCase().replace("_","-"):t}function H(t){for(var e,i,o,s,n=0;n0;){if(o=j(s.slice(0,e).join("-")))return o;if(i&&i.length>=e&&E(s,i,!0)>=e-1)break;e--}n++}return null}function j(t){var e=null;if(!Ye[t]&&je)try{e=Se.locale(),!function(){var t=new Error('Cannot find module "./locale"');throw t.code="MODULE_NOT_FOUND",t}(),Se.locale(e)}catch(i){}return Ye[t]}function W(t,e){var i,o;return e._isUTC?(i=e.clone(),o=(Se.isMoment(t)||T(t)?+t:+Se(t))-+i,i._d.setTime(+i._d+o),Se.updateOffset(i,!1),i):Se(t).local()}function G(t){return t.match(/\[[\s\S]/)?t.replace(/^\[|\]$/g,""):t.replace(/\\/g,"")}function U(t){var e,i,o=t.match(Ve);for(e=0,i=o.length;i>e;e++)o[e]=_i[o[e]]?_i[o[e]]:G(o[e]);return function(s){var n="";for(e=0;i>e;e++)n+=o[e]instanceof Function?o[e].call(s,t):o[e];return n}}function V(t,e){return t.isValid()?(e=X(e,t.localeData()),yi[e]||(yi[e]=U(e)),yi[e](t)):t.localeData().invalidDate()}function X(t,e){function i(t){return e.longDateFormat(t)||t}var o=5;for(Xe.lastIndex=0;o>=0&&Xe.test(t);)t=t.replace(Xe,i),Xe.lastIndex=0,o-=1;return t}function q(t,e){var i,o=e._strict;switch(t){case"Q":return si;case"DDDD":return ri;case"YYYY":case"GGGG":case"gggg":return o?ai:Qe;case"Y":case"G":case"g":return di;case"YYYYYY":case"YYYYY":case"GGGGG":case"ggggg":return o?hi:Ke;case"S":if(o)return si;case"SS":if(o)return ni;case"SSS":if(o)return ri;case"DDD":return Ze;case"MMM":case"MMMM":case"dd":case"ddd":case"dddd":return Je;case"a":case"A":return e._locale._meridiemParse;case"x":return ii;case"X":return oi;case"Z":case"ZZ":return ti;case"T":return ei;case"SSSS":return $e;case"MM":case"DD":case"YY":case"GG":case"gg":case"HH":case"hh":case"mm":case"ss":case"ww":case"WW":return o?ni:qe;case"M":case"D":case"d":case"H":case"h":case"m":case"s":case"w":case"W":case"e":case"E":return qe;case"Do":return o?e._locale._ordinalParse:e._locale._ordinalParseLenient;default:return i=new RegExp(oe(ie(t.replace("\\","")),"i"))}}function Z(t){t=t||"";var e=t.match(ti)||[],i=e[e.length-1]||[],o=(i+"").match(fi)||["-",0,0],s=+(60*o[1])+I(o[2]);return"+"===o[0]?s:-s}function Q(t,e,i){var o,s=i._a;switch(t){case"Q":null!=e&&(s[Pe]=3*(I(e)-1));break;case"M":case"MM":null!=e&&(s[Pe]=I(e)-1);break;case"MMM":case"MMMM":o=i._locale.monthsParse(e,t,i._strict),null!=o?s[Pe]=o:i._pf.invalidMonth=e;break;case"D":case"DD":null!=e&&(s[Ae]=I(e));break;case"Do":null!=e&&(s[Ae]=I(parseInt(e.match(/\d{1,2}/)[0],10)));break;case"DDD":case"DDDD":null!=e&&(i._dayOfYear=I(e));break;case"YY":s[Ie]=Se.parseTwoDigitYear(e);break;case"YYYY":case"YYYYY":case"YYYYYY":s[Ie]=I(e);break;case"a":case"A":i._meridiem=e;break;case"h":case"hh":i._pf.bigHour=!0;case"H":case"HH":s[ze]=I(e);break;case"m":case"mm":s[Fe]=I(e);break;case"s":case"ss":s[Re]=I(e);break;case"S":case"SS":case"SSS":case"SSSS":s[Be]=I(1e3*("0."+e));break;case"x":i._d=new Date(I(e));break;case"X":i._d=new Date(1e3*parseFloat(e));break;case"Z":case"ZZ":i._useUTC=!0,i._tzm=Z(e);break;case"dd":case"ddd":case"dddd":o=i._locale.weekdaysParse(e),null!=o?(i._w=i._w||{},i._w.d=o):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]=I(e));break;case"gg":case"GG":i._w=i._w||{},i._w[t]=Se.parseTwoDigitYear(e)}}function K(t){var e,i,o,s,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[Ie],fe(Se(),1,4).year),o=r(e.W,1),s=r(e.E,1)):(n=t._locale._week.dow,a=t._locale._week.doy,i=r(e.gg,t._a[Ie],fe(Se(),n,a).year),o=r(e.w,1),null!=e.d?(s=e.d,n>s&&++o):s=null!=e.e?e.e+n:n),h=me(i,o,s,a,n),t._a[Ie]=h.year,t._dayOfYear=h.dayOfYear}function $(t){var e,i,o,s,n=[];if(!t._d){for(o=te(t),t._w&&null==t._a[Ae]&&null==t._a[Pe]&&K(t),t._dayOfYear&&(s=r(t._a[Ie],o[Ie]),t._dayOfYear>z(s)&&(t._pf._overflowDayOfYear=!0),i=le(s,0,t._dayOfYear),t._a[Pe]=i.getUTCMonth(),t._a[Ae]=i.getUTCDate()),e=0;3>e&&null==t._a[e];++e)t._a[e]=n[e]=o[e];for(;7>e;e++)t._a[e]=n[e]=null==t._a[e]?2===e?1:0:t._a[e];24===t._a[ze]&&0===t._a[Fe]&&0===t._a[Re]&&0===t._a[Be]&&(t._nextDay=!0,t._a[ze]=0),t._d=(t._useUTC?le:de).apply(null,n),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()-t._tzm),t._nextDay&&(t._a[ze]=24)}}function J(t){var e;t._d||(e=N(t._i),t._a=[e.year,e.month,e.day||e.date,e.hour,e.minute,e.second,e.millisecond],$(t))}function te(t){var e=new Date;return t._useUTC?[e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()]:[e.getFullYear(),e.getMonth(),e.getDate()]}function ee(t){if(t._f===Se.ISO_8601)return void ne(t);t._a=[],t._pf.empty=!0;var e,i,o,s,r,a=""+t._i,h=a.length,d=0;for(o=X(t._f,t._locale).match(Ve)||[],e=0;e0&&t._pf.unusedInput.push(r),a=a.slice(a.indexOf(i)+i.length),d+=i.length),_i[s]?(i?t._pf.empty=!1:t._pf.unusedTokens.push(s),Q(s,i,t)):t._strict&&!i&&t._pf.unusedTokens.push(s);t._pf.charsLeftOver=h-d,a.length>0&&t._pf.unusedInput.push(a),t._pf.bigHour===!0&&t._a[ze]<=12&&(t._pf.bigHour=n),t._a[ze]=m(t._locale,t._a[ze],t._meridiem),$(t),R(t)}function ie(t){return t.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(t,e,i,o,s){return e||i||o||s})}function oe(t){return t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function se(t){var e,i,o,s,n;if(0===t._f.length)return t._pf.invalidFormat=!0,void(t._d=new Date(0/0));for(s=0;sn)&&(o=n,i=e));b(t,i||e)}function ne(t){var e,i,o=t._i,s=li.exec(o);if(s){for(t._pf.iso=!0,e=0,i=ui.length;i>e;e++)if(ui[e][1].exec(o)){t._f=ui[e][0]+(s[6]||" ");break}for(e=0,i=pi.length;i>e;e++)if(pi[e][1].exec(o)){t._f+=pi[e][0];break}o.match(ti)&&(t._f+="Z"),ee(t)}else t._isValid=!1}function re(t){ne(t),t._isValid===!1&&(delete t._isValid,Se.createFromInputFallback(t))}function ae(t,e){var i,o=[];for(i=0;it&&a.setFullYear(t),a}function le(t){var e=new Date(Date.UTC.apply(null,arguments));return 1970>t&&e.setUTCFullYear(t),e}function ce(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 ue(t,e,i,o,s){return s.relativeTime(e||1,!!i,t,o)}function pe(t,e,i){var o=Se.duration(t).abs(),s=Ne(o.as("s")),n=Ne(o.as("m")),r=Ne(o.as("h")),a=Ne(o.as("d")),h=Ne(o.as("M")),d=Ne(o.as("y")),l=s0,l[4]=i,ue.apply({},l)}function fe(t,e,i){var o,s=i-e,n=i-t.day();return n>s&&(n-=7),s-7>n&&(n+=7),o=Se(t).add(n,"d"),{week:Math.ceil(o.dayOfYear()/7),year:o.year()}}function me(t,e,i,o,s){var n,r,a=le(t,0,1).getUTCDay();return a=0===a?7:a,i=null!=i?i:s,n=s-a+(a>o?7:0)-(s>a?7:0),r=7*(e-1)+(i-s)+n+1,{year:r>0?t:t-1,dayOfYear:r>0?r:z(t-1)+r}}function ge(t){var e,i=t._i,o=t._f;return t._locale=t._locale||Se.localeData(t._l),null===i||o===n&&""===i?Se.invalid({nullInput:!0}):("string"==typeof i&&(t._i=i=t._locale.preparse(i)),Se.isMoment(i)?new v(i,!0):(o?C(o)?se(t):ee(t):he(t),e=new v(t),e._nextDay&&(e.add(1,"d"),e._nextDay=n),e))}function ve(t,e){var i,o;if(1===e.length&&C(e[0])&&(e=e[0]),!e.length)return Se();for(i=e[0],o=1;o=0?"+":"-";return e+_(Math.abs(t),6)},gg:function(){return _(this.weekYear()%100,2)},gggg:function(){return _(this.weekYear(),4)},ggggg:function(){return _(this.weekYear(),5)},GG:function(){return _(this.isoWeekYear()%100,2)},GGGG:function(){return _(this.isoWeekYear(),4)},GGGGG:function(){return _(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 I(this.milliseconds()/100)},SS:function(){return _(I(this.milliseconds()/10),2)},SSS:function(){return _(this.milliseconds(),3)},SSSS:function(){return _(this.milliseconds(),3)},Z:function(){var t=this.utcOffset(),e="+";return 0>t&&(t=-t,e="-"),e+_(I(t/60),2)+":"+_(I(t)%60,2)},ZZ:function(){var t=this.utcOffset(),e="+";return 0>t&&(t=-t,e="-"),e+_(I(t/60),2)+_(I(t)%60,2)},z:function(){return this.zoneAbbr()},zz:function(){return this.zoneName()},x:function(){return this.valueOf()},X:function(){return this.unix()},Q:function(){return this.quarter()}},Mi={},Di=["months","monthsShort","weekdays","weekdaysShort","weekdaysMin"],Oi=!1;wi.length;)Te=wi.pop(),_i[Te+"o"]=p(_i[Te],Te);for(;xi.length;)Te=xi.pop(),_i[Te+Te]=u(_i[Te],2);_i.DDDD=u(_i.DDD,3),b(g.prototype,{set:function(t){var e,i;for(i in t)e=t[i],"function"==typeof e?this[i]=e:this["_"+i]=e;this._ordinalParseLenient=new RegExp(this._ordinalParse.source+"|"+/\d{1,2}/.source)},_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,e,i){var o,s,n;for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),o=0;12>o;o++){if(s=Se.utc([2e3,o]),i&&!this._longMonthsParse[o]&&(this._longMonthsParse[o]=new RegExp("^"+this.months(s,"").replace(".","")+"$","i"),this._shortMonthsParse[o]=new RegExp("^"+this.monthsShort(s,"").replace(".","")+"$","i")),i||this._monthsParse[o]||(n="^"+this.months(s,"")+"|^"+this.monthsShort(s,""),this._monthsParse[o]=new RegExp(n.replace(".",""),"i")),i&&"MMMM"===e&&this._longMonthsParse[o].test(t))return o;if(i&&"MMM"===e&&this._shortMonthsParse[o].test(t))return o;if(!i&&this._monthsParse[o].test(t))return o}},_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,o;for(this._weekdaysParse||(this._weekdaysParse=[]),e=0;7>e;e++)if(this._weekdaysParse[e]||(i=Se([2e3,1]).day(e),o="^"+this.weekdays(i,"")+"|^"+this.weekdaysShort(i,"")+"|^"+this.weekdaysMin(i,""),this._weekdaysParse[e]=new RegExp(o.replace(".",""),"i")),this._weekdaysParse[e].test(t))return e},_longDateFormat:{LTS:"h:mm:ss A",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,i){var o=this._calendar[t];return"function"==typeof o?o.apply(e,[i]):o},_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,o){var s=this._relativeTime[i];return"function"==typeof s?s(t,e,i,o):s.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",_ordinalParse:/\d{1,2}/,preparse:function(t){return t},postformat:function(t){return t},week:function(t){return fe(t,this._week.dow,this._week.doy).week},_week:{dow:0,doy:6},firstDayOfWeek:function(){return this._week.dow},firstDayOfYear:function(){return this._week.doy},_invalidDate:"Invalid date",invalidDate:function(){return this._invalidDate}}),Se=function(t,e,i,o){var s;return"boolean"==typeof i&&(o=i,i=n),s={},s._isAMomentObject=!0,s._i=t,s._f=e,s._l=i,s._strict=o,s._isUTC=!1,s._pf=h(),ge(s)},Se.suppressDeprecationWarnings=!1,Se.createFromInputFallback=l("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+(t._useUTC?" UTC":""))}),Se.min=function(){var t=[].slice.call(arguments,0);return ve("isBefore",t)},Se.max=function(){var t=[].slice.call(arguments,0);return ve("isAfter",t)},Se.utc=function(t,e,i,o){var s;return"boolean"==typeof i&&(o=i,i=n),s={},s._isAMomentObject=!0,s._useUTC=!0,s._isUTC=!0,s._l=i,s._i=t,s._f=e,s._strict=o,s._pf=h(),ge(s).utc()},Se.unix=function(t){return Se(1e3*t)},Se.duration=function(t,e){var i,o,s,n,r=t,h=null;return Se.isDuration(t)?r={ms:t._milliseconds,d:t._days,M:t._months}:"number"==typeof t?(r={},e?r[e]=t:r.milliseconds=t):(h=Ge.exec(t))?(i="-"===h[1]?-1:1,r={y:0,d:I(h[Ae])*i,h:I(h[ze])*i,m:I(h[Fe])*i,s:I(h[Re])*i,ms:I(h[Be])*i}):(h=Ue.exec(t))?(i="-"===h[1]?-1:1,s=function(t){var e=t&&parseFloat(t.replace(",","."));return(isNaN(e)?0:e)*i},r={y:s(h[2]),M:s(h[3]),d:s(h[4]),h:s(h[5]),m:s(h[6]),s:s(h[7]),w:s(h[8])}):null==r?r={}:"object"==typeof r&&("from"in r||"to"in r)&&(n=D(Se(r.from),Se(r.to)),r={},r.ms=n.milliseconds,r.M=n.months),o=new y(r),Se.isDuration(t)&&a(t,"_locale")&&(o._locale=t._locale),o},Se.version=Ee,Se.defaultFormat=ci,Se.ISO_8601=function(){},Se.momentProperties=He,Se.updateOffset=function(){},Se.relativeTimeThreshold=function(t,e){return bi[t]===n?!1:e===n?bi[t]:(bi[t]=e,!0)},Se.lang=l("moment.lang is deprecated. Use moment.locale instead.",function(t,e){return Se.locale(t,e)}),Se.locale=function(t,e){var i;return t&&(i="undefined"!=typeof e?Se.defineLocale(t,e):Se.localeData(t),i&&(Se.duration._locale=Se._locale=i)),Se._locale._abbr},Se.defineLocale=function(t,e){return null!==e?(e.abbr=t,Ye[t]||(Ye[t]=new g),Ye[t].set(e),Se.locale(t),Ye[t]):(delete Ye[t],null)},Se.langData=l("moment.langData is deprecated. Use moment.localeData instead.",function(t){return Se.localeData(t)}),Se.localeData=function(t){var e;if(t&&t._locale&&t._locale._abbr&&(t=t._locale._abbr),!t)return Se._locale;if(!C(t)){if(e=j(t))return e;t=[t]}return H(t)},Se.isMoment=function(t){return t instanceof v||null!=t&&a(t,"_isAMomentObject")},Se.isDuration=function(t){return t instanceof y};for(Te=Di.length-1;Te>=0;--Te)L(Di[Te]);Se.normalizeUnits=function(t){return k(t)},Se.invalid=function(t){var e=Se.utc(0/0);return null!=t?b(e._pf,t):e._pf.userInvalidated=!0,e},Se.parseZone=function(){return Se.apply(null,arguments).parseZone()},Se.parseTwoDigitYear=function(t){return I(t)+(I(t)>68?1900:2e3)},Se.isDate=T,b(Se.fn=v.prototype,{clone:function(){return Se(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=Se(this).utc();return 00:!1},parsingFlags:function(){return b({},this._pf)},invalidAt:function(){return this._pf.overflow},utc:function(t){return this.utcOffset(0,t)},local:function(t){return this._isUTC&&(this.utcOffset(0,t),this._isUTC=!1,t&&this.subtract(this._dateUtcOffset(),"m")),this},format:function(t){var e=V(this,t||Se.defaultFormat);return this.localeData().postformat(e)},add:O(1,"add"),subtract:O(-1,"subtract"),diff:function(t,e,i){var o,s,n=W(t,this),r=6e4*(n.utcOffset()-this.utcOffset());return e=k(e),"year"===e||"month"===e||"quarter"===e?(s=f(this,n),"quarter"===e?s/=3:"year"===e&&(s/=12)):(o=this-n,s="second"===e?o/1e3:"minute"===e?o/6e4:"hour"===e?o/36e5:"day"===e?(o-r)/864e5:"week"===e?(o-r)/6048e5:o),i?s:x(s)},from:function(t,e){return Se.duration({to:this,from:t}).locale(this.locale()).humanize(!e)},fromNow:function(t){return this.from(Se(),t)},calendar:function(t){var e=t||Se(),i=W(e,this).startOf("day"),o=this.diff(i,"days",!0),s=-6>o?"sameElse":-1>o?"lastWeek":0>o?"lastDay":1>o?"sameDay":2>o?"nextDay":7>o?"nextWeek":"sameElse";return this.format(this.localeData().calendar(s,this,Se(e)))},isLeapYear:function(){return F(this.year())},isDST:function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},day:function(t){var e=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=t?(t=ce(t,this.localeData()),this.add(t-e,"d")):e},month:xe("Month",!0),startOf:function(t){switch(t=k(t)){case"year":this.month(0);case"quarter":case"month":this.date(1);case"week":case"isoWeek":case"day":this.hours(0);case"hour":this.minutes(0);case"minute":this.seconds(0);case"second":this.milliseconds(0)}return"week"===t?this.weekday(0):"isoWeek"===t&&this.isoWeekday(1),"quarter"===t&&this.month(3*Math.floor(this.month()/3)),this},endOf:function(t){return t=k(t),t===n||"millisecond"===t?this:this.startOf(t).add(1,"isoWeek"===t?"week":t).subtract(1,"ms")},isAfter:function(t,e){var i;return e=k("undefined"!=typeof e?e:"millisecond"),"millisecond"===e?(t=Se.isMoment(t)?t:Se(t),+this>+t):(i=Se.isMoment(t)?+t:+Se(t),i<+this.clone().startOf(e))},isBefore:function(t,e){var i;return e=k("undefined"!=typeof e?e:"millisecond"),"millisecond"===e?(t=Se.isMoment(t)?t:Se(t),+t>+this):(i=Se.isMoment(t)?+t:+Se(t),+this.clone().endOf(e)t?this:t}),max:l("moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548",function(t){return t=Se.apply(null,arguments),t>this?this:t}),zone:l("moment().zone is deprecated, use moment().utcOffset instead. https://github.com/moment/moment/issues/1779",function(t,e){return null!=t?("string"!=typeof t&&(t=-t),this.utcOffset(t,e),this):-this.utcOffset()}),utcOffset:function(t,e){var i,o=this._offset||0;return null!=t?("string"==typeof t&&(t=Z(t)),Math.abs(t)<16&&(t=60*t),!this._isUTC&&e&&(i=this._dateUtcOffset()),this._offset=t,this._isUTC=!0,null!=i&&this.add(i,"m"),o!==t&&(!e||this._changeInProgress?S(this,Se.duration(t-o,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,Se.updateOffset(this,!0),this._changeInProgress=null)),this):this._isUTC?o:this._dateUtcOffset()},isLocal:function(){return!this._isUTC},isUtcOffset:function(){return this._isUTC},isUtc:function(){return this._isUTC&&0===this._offset},zoneAbbr:function(){return this._isUTC?"UTC":""},zoneName:function(){return this._isUTC?"Coordinated Universal Time":""},parseZone:function(){return this._tzm?this.utcOffset(this._tzm):"string"==typeof this._i&&this.utcOffset(Z(this._i)),this},hasAlignedHourOffset:function(t){return t=t?Se(t).utcOffset():0,(this.utcOffset()-t)%60===0},daysInMonth:function(){return P(this.year(),this.month())},dayOfYear:function(t){var e=Ne((Se(this).startOf("day")-Se(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=fe(this,this.localeData()._week.dow,this.localeData()._week.doy).year;return null==t?e:this.add(t-e,"y")},isoWeekYear:function(t){var e=fe(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=fe(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 A(this.year(),1,4)},weeksInYear:function(){var t=this.localeData()._week;return A(this.year(),t.dow,t.doy)},get:function(t){return t=k(t),this[t]()},set:function(t,e){var i;if("object"==typeof t)for(i in t)this.set(i,t[i]);else t=k(t),"function"==typeof this[t]&&this[t](e);return this},locale:function(t){var e;return t===n?this._locale._abbr:(e=Se.localeData(t),null!=e&&(this._locale=e),this)},lang:l("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(t){return t===n?this.localeData():this.locale(t)}),localeData:function(){return this._locale},_dateUtcOffset:function(){return 15*-Math.round(this._d.getTimezoneOffset()/15)}}),Se.fn.millisecond=Se.fn.milliseconds=xe("Milliseconds",!1),Se.fn.second=Se.fn.seconds=xe("Seconds",!1),Se.fn.minute=Se.fn.minutes=xe("Minutes",!1),Se.fn.hour=Se.fn.hours=xe("Hours",!0),Se.fn.date=xe("Date",!0),Se.fn.dates=l("dates accessor is deprecated. Use date instead.",xe("Date",!0)),Se.fn.year=xe("FullYear",!0),Se.fn.years=l("years accessor is deprecated. Use year instead.",xe("FullYear",!0)),Se.fn.days=Se.fn.day,Se.fn.months=Se.fn.month,Se.fn.weeks=Se.fn.week,Se.fn.isoWeeks=Se.fn.isoWeek,Se.fn.quarters=Se.fn.quarter,Se.fn.toJSON=Se.fn.toISOString,Se.fn.isUTC=Se.fn.isUtc,b(Se.duration.fn=y.prototype,{_bubble:function(){var t,e,i,o=this._milliseconds,s=this._days,n=this._months,r=this._data,a=0;r.milliseconds=o%1e3,t=x(o/1e3),r.seconds=t%60,e=x(t/60),r.minutes=e%60,i=x(e/60),r.hours=i%24,s+=x(i/24),a=x(_e(s)),s-=x(Me(a)),n+=x(s/30),s%=30,a+=x(n/12),n%=12,r.days=s,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 x(this.days()/7)},valueOf:function(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*I(this._months/12)},humanize:function(t){var e=pe(this,!t,this.localeData());return t&&(e=this.localeData().pastFuture(+this,e)),this.localeData().postformat(e)},add:function(t,e){var i=Se.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=Se.duration(t,e);return this._milliseconds-=i._milliseconds,this._days-=i._days,this._months-=i._months,this._bubble(),this},get:function(t){return t=k(t),this[t.toLowerCase()+"s"]()},as:function(t){var e,i;if(t=k(t),"month"===t||"year"===t)return e=this._days+this._milliseconds/864e5,i=this._months+12*_e(e),"month"===t?i:i/12;switch(e=this._days+Math.round(Me(this._months/12)),t){case"week":return e/7+this._milliseconds/6048e5;case"day":return e+this._milliseconds/864e5;case"hour":return 24*e+this._milliseconds/36e5;case"minute":return 24*e*60+this._milliseconds/6e4;case"second":return 24*e*60*60+this._milliseconds/1e3;case"millisecond":return Math.floor(24*e*60*60*1e3)+this._milliseconds;default:throw new Error("Unknown unit "+t)}},lang:Se.fn.lang,locale:Se.fn.locale,toIsoString:l("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()),o=Math.abs(this.hours()),s=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":"")+(o||s||n?"T":"")+(o?o+"H":"")+(s?s+"M":"")+(n?n+"S":""):"P0D" +},localeData:function(){return this._locale},toJSON:function(){return this.toISOString()}}),Se.duration.fn.toString=Se.duration.fn.toISOString;for(Te in mi)a(mi,Te)&&De(Te.toLowerCase());Se.duration.fn.asMilliseconds=function(){return this.as("ms")},Se.duration.fn.asSeconds=function(){return this.as("s")},Se.duration.fn.asMinutes=function(){return this.as("m")},Se.duration.fn.asHours=function(){return this.as("h")},Se.duration.fn.asDays=function(){return this.as("d")},Se.duration.fn.asWeeks=function(){return this.as("weeks")},Se.duration.fn.asMonths=function(){return this.as("M")},Se.duration.fn.asYears=function(){return this.as("y")},Se.locale("en",{ordinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(t){var e=t%10,i=1===I(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th";return t+i}}),je?s.exports=Se:(o=function(t,e,i){return i.config&&i.config()&&i.config().noGlobal===!0&&(ke.moment=Ce),Se}.call(e,i,e,s),!(o!==n&&(s.exports=o)),Oe(!0))}).call(this)}).call(e,function(){return this}(),i(79)(t))},function(t,e){var i,o,s;!function(n){o=[],i=n,s="function"==typeof i?i.apply(e,o):i,!(void 0!==s&&(t.exports=s))}(function(){var t=null;return function e(i){function o(t){return t.match(/[^ ]+/g)}function s(e){if("hammer.input"!==e.type){if(e.srcEvent._handled&&e.srcEvent._handled[e.type])return;e.srcEvent._handled={},e.srcEvent._handled[e.type]=!0}var i=!1;e.stopPropagation=function(){i=!0},e.firstTarget=t;for(var o=t;o&&!i;){var s=o.hammer&&o.hammer._handlers[e.type];if(s)for(var n=0;n0?i._handlers[t]=o:(i._off(t,s),delete i._handlers[t]))}),i},i.emit=function(e,o){t=o.target,i._emit(e,o)},i.destroy=function(){var t=i.element;delete t.hammer,i._handlers={},i._destroy()},i}})},function(t,e,i){var o;!function(s,n,r,a){function h(t,e,i){return setTimeout(f(t,i),e)}function d(t,e,i){return Array.isArray(t)?(l(t,i[e],i),!0):!1}function l(t,e,i){var o;if(t)if(t.forEach)t.forEach(e,i);else if(t.length!==a)for(o=0;o-1}function x(t){return t.trim().split(/\s+/g)}function _(t,e,i){if(t.indexOf&&!i)return t.indexOf(e);for(var o=0;oi[e]}):o.sort()),o}function O(t,e){for(var i,o,s=e[0].toUpperCase()+e.slice(1),n=0;n1&&!i.firstMultiple?i.firstMultiple=P(e):1===s&&(i.firstMultiple=!1);var n=i.firstInput,r=i.firstMultiple,a=r?r.center:n.center,h=e.center=A(o);e.timeStamp=ve(),e.deltaTime=e.timeStamp-n.timeStamp,e.angle=B(a,h),e.distance=R(a,h),L(i,e),e.offsetDirection=F(e.deltaX,e.deltaY),e.scale=r?H(r.pointers,o):1,e.rotation=r?Y(r.pointers,o):0,I(i,e);var d=t.element;b(e.srcEvent.target,d)&&(d=e.srcEvent.target),e.target=d}function L(t,e){var i=e.center,o=t.offsetDelta||{},s=t.prevDelta||{},n=t.prevInput||{};(e.eventType===Te||n.eventType===ke)&&(s=t.prevDelta={x:n.deltaX||0,y:n.deltaY||0},o=t.offsetDelta={x:i.x,y:i.y}),e.deltaX=s.x+(i.x-o.x),e.deltaY=s.y+(i.y-o.y)}function I(t,e){var i,o,s,n,r=t.lastInterval||e,h=e.timeStamp-r.timeStamp;if(e.eventType!=Ne&&(h>Ce||r.velocity===a)){var d=r.deltaX-e.deltaX,l=r.deltaY-e.deltaY,c=z(h,d,l);o=c.x,s=c.y,i=ge(c.x)>ge(c.y)?c.x:c.y,n=F(d,l),t.lastInterval=e}else i=r.velocity,o=r.velocityX,s=r.velocityY,n=r.direction;e.velocity=i,e.velocityX=o,e.velocityY=s,e.direction=n}function P(t){for(var e=[],i=0;is;)i+=t[s].clientX,o+=t[s].clientY,s++;return{x:me(i/e),y:me(o/e)}}function z(t,e,i){return{x:e/t||0,y:i/t||0}}function F(t,e){return t===e?Le:ge(t)>=ge(e)?t>0?Ie:Pe:e>0?Ae:ze}function R(t,e,i){i||(i=Ye);var o=e[i[0]]-t[i[0]],s=e[i[1]]-t[i[1]];return Math.sqrt(o*o+s*s)}function B(t,e,i){i||(i=Ye);var o=e[i[0]]-t[i[0]],s=e[i[1]]-t[i[1]];return 180*Math.atan2(s,o)/Math.PI}function Y(t,e){return B(e[1],e[0],He)-B(t[1],t[0],He)}function H(t,e){return R(e[0],e[1],He)/R(t[0],t[1],He)}function j(){this.evEl=We,this.evWin=Ge,this.allow=!0,this.pressed=!1,T.apply(this,arguments)}function W(){this.evEl=Xe,this.evWin=qe,T.apply(this,arguments),this.store=this.manager.session.pointerEvents=[]}function G(){this.evTarget=Qe,this.evWin=Ke,this.started=!1,T.apply(this,arguments)}function U(t,e){var i=M(t.touches),o=M(t.changedTouches);return e&(ke|Ne)&&(i=D(i.concat(o),"identifier",!0)),[i,o]}function V(){this.evTarget=Je,this.targetIds={},T.apply(this,arguments)}function X(t,e){var i=M(t.touches),o=this.targetIds;if(e&(Te|Ee)&&1===i.length)return o[i[0].identifier]=!0,[i,i];var s,n,r=M(t.changedTouches),a=[],h=this.target;if(n=i.filter(function(t){return b(t.target,h)}),e===Te)for(s=0;sa&&(e.push(t),a=e.length-1):s&(ke|Ne)&&(i=!0),0>a||(e[a]=t,this.callback(this.manager,s,{pointers:e,changedPointers:[t],pointerType:n,srcEvent:t}),i&&e.splice(a,1))}});var Ze={touchstart:Te,touchmove:Ee,touchend:ke,touchcancel:Ne},Qe="touchstart",Ke="touchstart touchmove touchend touchcancel";p(G,T,{handler:function(t){var e=Ze[t.type];if(e===Te&&(this.started=!0),this.started){var i=U.call(this,t,e);e&(ke|Ne)&&i[0].length-i[1].length===0&&(this.started=!1),this.callback(this.manager,e,{pointers:i[0],changedPointers:i[1],pointerType:Me,srcEvent:t})}}});var $e={touchstart:Te,touchmove:Ee,touchend:ke,touchcancel:Ne},Je="touchstart touchmove touchend touchcancel";p(V,T,{handler:function(t){var e=$e[t.type],i=X.call(this,t,e);i&&this.callback(this.manager,e,{pointers:i[0],changedPointers:i[1],pointerType:Me,srcEvent:t})}}),p(q,T,{handler:function(t,e,i){var o=i.pointerType==Me,s=i.pointerType==Oe;if(o)this.mouse.allow=!1;else if(s&&!this.mouse.allow)return;e&(ke|Ne)&&(this.mouse.allow=!0),this.callback(t,e,i)},destroy:function(){this.touch.destroy(),this.mouse.destroy()}});var ti=O(pe.style,"touchAction"),ei=ti!==a,ii="compute",oi="auto",si="manipulation",ni="none",ri="pan-x",ai="pan-y";Z.prototype={set:function(t){t==ii&&(t=this.compute()),ei&&(this.manager.element.style[ti]=t),this.actions=t.toLowerCase().trim()},update:function(){this.set(this.manager.options.touchAction)},compute:function(){var t=[];return l(this.manager.recognizers,function(e){m(e.options.enable,[e])&&(t=t.concat(e.getTouchAction()))}),Q(t.join(" "))},preventDefaults:function(t){if(!ei){var e=t.srcEvent,i=t.offsetDirection;if(this.manager.session.prevented)return void e.preventDefault();var o=this.actions,s=w(o,ni),n=w(o,ai),r=w(o,ri);return s||n&&i&Fe||r&&i&Re?this.preventSrc(e):void 0}},preventSrc:function(t){this.manager.session.prevented=!0,t.preventDefault()}};var hi=1,di=2,li=4,ci=8,ui=ci,pi=16,fi=32;K.prototype={defaults:{},set:function(t){return c(this.options,t),this.manager&&this.manager.touchAction.update(),this},recognizeWith:function(t){if(d(t,"recognizeWith",this))return this;var e=this.simultaneous;return t=te(t,this),e[t.id]||(e[t.id]=t,t.recognizeWith(this)),this},dropRecognizeWith:function(t){return d(t,"dropRecognizeWith",this)?this:(t=te(t,this),delete this.simultaneous[t.id],this)},requireFailure:function(t){if(d(t,"requireFailure",this))return this;var e=this.requireFail;return t=te(t,this),-1===_(e,t)&&(e.push(t),t.requireFailure(this)),this},dropRequireFailure:function(t){if(d(t,"dropRequireFailure",this))return this;t=te(t,this);var e=_(this.requireFail,t);return e>-1&&this.requireFail.splice(e,1),this},hasRequireFailures:function(){return this.requireFail.length>0},canRecognizeWith:function(t){return!!this.simultaneous[t.id]},emit:function(t){function e(e){i.manager.emit(i.options.event+(e?$(o):""),t)}var i=this,o=this.state;ci>o&&e(!0),e(),o>=ci&&e(!0)},tryEmit:function(t){return this.canEmit()?this.emit(t):void(this.state=fi)},canEmit:function(){for(var t=0;tn?Ie:Pe,i=n!=this.pX,o=Math.abs(t.deltaX)):(s=0===r?Le:0>r?Ae:ze,i=r!=this.pY,o=Math.abs(t.deltaY))),t.direction=s,i&&o>e.threshold&&s&e.direction},attrTest:function(t){return ee.prototype.attrTest.call(this,t)&&(this.state&di||!(this.state&di)&&this.directionTest(t))},emit:function(t){this.pX=t.deltaX,this.pY=t.deltaY;var e=J(t.direction);e&&this.manager.emit(this.options.event+e,t),this._super.emit.call(this,t)}}),p(oe,ee,{defaults:{event:"pinch",threshold:0,pointers:2},getTouchAction:function(){return[ni]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.scale-1)>this.options.threshold||this.state&di)},emit:function(t){if(this._super.emit.call(this,t),1!==t.scale){var e=t.scale<1?"in":"out";this.manager.emit(this.options.event+e,t)}}}),p(se,K,{defaults:{event:"press",pointers:1,time:500,threshold:5},getTouchAction:function(){return[oi]},process:function(t){var e=this.options,i=t.pointers.length===e.pointers,o=t.distancee.time;if(this._input=t,!o||!i||t.eventType&(ke|Ne)&&!s)this.reset();else if(t.eventType&Te)this.reset(),this._timer=h(function(){this.state=ui,this.tryEmit()},e.time,this);else if(t.eventType&ke)return ui;return fi},reset:function(){clearTimeout(this._timer)},emit:function(t){this.state===ui&&(t&&t.eventType&ke?this.manager.emit(this.options.event+"up",t):(this._input.timeStamp=ve(),this.manager.emit(this.options.event,this._input)))}}),p(ne,ee,{defaults:{event:"rotate",threshold:0,pointers:2},getTouchAction:function(){return[ni]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.rotation)>this.options.threshold||this.state&di)}}),p(re,ee,{defaults:{event:"swipe",threshold:10,velocity:.65,direction:Fe|Re,pointers:1},getTouchAction:function(){return ie.prototype.getTouchAction.call(this)},attrTest:function(t){var e,i=this.options.direction;return i&(Fe|Re)?e=t.velocity:i&Fe?e=t.velocityX:i&Re&&(e=t.velocityY),this._super.attrTest.call(this,t)&&i&t.direction&&t.distance>this.options.threshold&&ge(e)>this.options.velocity&&t.eventType&ke},emit:function(t){var e=J(t.direction);e&&this.manager.emit(this.options.event+e,t),this.manager.emit(this.options.event,t)}}),p(ae,K,{defaults:{event:"tap",pointers:1,taps:1,interval:300,time:250,threshold:2,posThreshold:10},getTouchAction:function(){return[si]},process:function(t){var e=this.options,i=t.pointers.length===e.pointers,o=t.distancen;n++)t=e[i[n]],t.options.mass>0&&(this._getForceContribution(s.root.children.NW,t),this._getForceContribution(s.root.children.NE,t),this._getForceContribution(s.root.children.SW,t),this._getForceContribution(s.root.children.SE,t))}},writable:!0,configurable:!0},_getForceContribution:{value:function(t,e){if(t.childrenCount>0){var i,o,s;if(i=t.centerOfMass.x-e.x,o=t.centerOfMass.y-e.y,s=Math.sqrt(i*i+o*o),s*t.calcSize>this.options.thetaInverted){0==s&&(s=.1*Math.random(),i=s);var n=this.options.gravitationalConstant*t.mass*e.options.mass/(s*s*s),r=i*n,a=o*n;this.physicsBody.forces[e.id].x+=r,this.physicsBody.forces[e.id].y+=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==s&&(s=.5*Math.random(),i=s);var n=this.options.gravitationalConstant*t.mass*e.options.mass/(s*s*s),r=i*n,a=o*n;this.physicsBody.forces[e.id].x+=r,this.physicsBody.forces[e.id].y+=a}}},writable:!0,configurable:!0},_formBarnesHutTree:{value:function(t,e){for(var i,o=e.length,s=Number.MAX_VALUE,n=Number.MAX_VALUE,r=-Number.MAX_VALUE,a=-Number.MAX_VALUE,h=0;o>h;h++){var d=t[e[h]].x,l=t[e[h]].y;t[e[h]].options.mass>0&&(s>d&&(s=d),d>r&&(r=d),n>l&&(n=l),l>a&&(a=l))}var c=Math.abs(r-s)-Math.abs(a-n);c>0?(n-=.5*c,a+=.5*c):(s+=.5*c,r-=.5*c);var u=1e-5,p=Math.max(u,Math.abs(r-s)),f=.5*p,m=.5*(s+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:p,calcSize:1/p,children:{data:null},maxWidth:0,level:0,childrenCount:4}};for(this._splitBranch(v.root),h=0;o>h;h++)i=t[e[h]],i.options.mass>0&&this._placeInTree(v.root,i);return v},writable:!0,configurable:!0},_updateBranchMass:{value:function(t,e){var i=t.mass+e.options.mass,o=1/i;t.centerOfMass.x=t.centerOfMass.x*t.mass+e.x*e.options.mass,t.centerOfMass.x*=o,t.centerOfMass.y=t.centerOfMass.y*t.mass+e.y*e.options.mass,t.centerOfMass.y*=o,t.mass=i;var s=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")},writable:!0,configurable:!0},_placeInRegion:{value: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)}},writable:!0,configurable:!0},_splitBranch:{value: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)},writable:!0,configurable:!0},_insertRegion:{value:function(t,e){var i,o,s,n,r=.5*t.size;switch(e){case"NW":i=t.range.minX,o=t.range.minX+r,s=t.range.minY,n=t.range.minY+r;break;case"NE":i=t.range.minX+r,o=t.range.maxX,s=t.range.minY,n=t.range.minY+r;break;case"SW":i=t.range.minX,o=t.range.minX+r,s=t.range.minY+r,n=t.range.maxY;break;case"SE":i=t.range.minX+r,o=t.range.maxX,s=t.range.minY+r,n=t.range.maxY}t.children[e]={centerOfMass:{x:0,y:0},mass:0,range:{minX:i,maxX:o,minY:s,maxY:n},size:.5*t.size,calcSize:2*t.calcSize,children:{data:null},maxWidth:0,level:t.level+1,childrenCount:0}},writable:!0,configurable:!0},_debug:{value:function(t,e){void 0!==this.barnesHutTree&&(t.lineWidth=1,this._drawBranch(this.barnesHutTree.root,t,e))},writable:!0,configurable:!0},_drawBranch:{value: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()},writable:!0,configurable:!0}}),t}();e.BarnesHutSolver=s,Object.defineProperty(e,"__esModule",{value:!0})},function(t,e){var i=function(t,e,i){e&&Object.defineProperties(t,e),i&&Object.defineProperties(t.prototype,i)},o=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},s=function(){function t(e,i,s){o(this,t),this.body=e,this.physicsBody=i,this.setOptions(s)}return i(t,null,{setOptions:{value:function(t){this.options=t},writable:!0,configurable:!0},solve:{value:function(){for(var t,e,i,o,s,n,r,a,h=this.physicsBody.calculationNodes,d=this.physicsBody.calculationNodeIndices,l=this.physicsBody.forces,c=this.options.nodeDistance,u=-2/3/c,p=4/3,f=0;fi&&(n=.5*c>i?1:u*i+p,n/=i,o=t*n,s=e*n,l[r.id].x-=o,l[r.id].y-=s,l[a.id].x+=o,l[a.id].y+=s)}},writable:!0,configurable:!0}}),t}();e.RepulsionSolver=s,Object.defineProperty(e,"__esModule",{value:!0})},function(t,e){var i=function(t,e,i){e&&Object.defineProperties(t,e),i&&Object.defineProperties(t.prototype,i)},o=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},s=function(){function t(e,i,s){o(this,t),this.body=e,this.physicsBody=i,this.setOptions(s)}return i(t,null,{setOptions:{value:function(t){this.options=t},writable:!0,configurable:!0},solve:{value:function(){var t,e,i,o,s,n,r,a,h,d,l=this.physicsBody.calculationNodes,c=this.physicsBody.calculationNodeIndices,u=this.physicsBody.forces,p=this.options.nodeDistance;for(h=0;hi?-Math.pow(f*i,2)+Math.pow(f*p,2):0,0==i?i=.01:n/=i,o=t*n,s=e*n,u[r.id].x-=o,u[r.id].y-=s,u[a.id].x+=o,u[a.id].y+=s}},writable:!0,configurable:!0}}),t}();e.HierarchicalRepulsionSolver=s,Object.defineProperty(e,"__esModule",{value:!0})},function(t,e){var i=function(t,e,i){e&&Object.defineProperties(t,e),i&&Object.defineProperties(t.prototype,i)},o=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},s=function(){function t(e,i,s){o(this,t),this.body=e,this.physicsBody=i,this.setOptions(s)}return i(t,null,{setOptions:{value:function(t){this.options=t},writable:!0,configurable:!0},solve:{value:function(){var t,e,i,o=this.body.edges;for(i in o)if(o.hasOwnProperty(i)&&(e=o[i],e.connected===!0&&void 0!==this.body.nodes[e.toId]&&void 0!==this.body.nodes[e.fromId]))if(t=void 0===e.properties.length?this.options.springLength:e.properties.length,null!=e.via){var s=e.to,n=e.via,r=e.from;this._calculateSpringForce(s,n,.5*t),this._calculateSpringForce(n,r,.5*t)}else this._calculateSpringForce(e.from,e.to,t)},writable:!0,configurable:!0},_calculateSpringForce:{value:function(t,e,i){var o,s,n,r,a,h;o=t.x-e.x,s=t.y-e.y,h=Math.sqrt(o*o+s*s),h=0==h?.01:h,a=this.options.springConstant*(i-h)/h,n=o*a,r=s*a,this.physicsBody.forces[t.id].x+=n,this.physicsBody.forces[t.id].y+=r,this.physicsBody.forces[e.id].x-=n,this.physicsBody.forces[e.id].y-=r},writable:!0,configurable:!0}}),t}();e.SpringSolver=s,Object.defineProperty(e,"__esModule",{value:!0})},function(t,e){var i=function(t,e,i){e&&Object.defineProperties(t,e),i&&Object.defineProperties(t.prototype,i)},o=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},s=function(){function t(e,i,s){o(this,t),this.body=e,this.physicsBody=i,this.setOptions(s)}return i(t,null,{setOptions:{value:function(t){this.options=t},writable:!0,configurable:!0},solve:{value:function(){for(var t,e,i,o,s,n,r,a,h,d=this.body.edges,l=this.physicsBody.calculationNodeIndices,c=this.physicsBody.forces,u=0;u0&&this._unselectAll(),this.selectObject(t),this._generateClickEvent(t),this.body.emitter.emit("_requestRedraw"))},writable:!0,configurable:!0},_generateClickEvent:{value:function(t){var e=this.getSelection(); +e.pointer={DOM:{x:t.x,y:t.y},canvas:this.canvas.DOMtoCanvas(t)},this.body.emitter.emit("click",e)},writable:!0,configurable:!0},selectObject:{value:function(t){var e=this._getNodeAt(t);return null!=e?this.options.selectConnectedEdges===!0&&this._selectConnectedEdges(e):e=this._getEdgeAt(t),null!==e&&(e.select(),this._addToSelection(e),this.body.emitter.emit("selected",this.getSelection())),e},writable:!0,configurable:!0},_getNodesOverlappingWith:{value:function(t,e){var i=this.body.nodes;for(var o in i)i.hasOwnProperty(o)&&i[o].isOverlappingWith(t)&&e.push(o)},writable:!0,configurable:!0},_getAllNodesOverlappingWith:{value:function(t){var e=[];return this._getNodesOverlappingWith(t,e),e},writable:!0,configurable:!0},_pointerToPositionObject:{value:function(t){var e=this.canvas.DOMtoCanvas(t);return{left:e.x,top:e.y,right:e.x,bottom:e.y}},writable:!0,configurable:!0},_getNodeAt:{value:function(t){var e=this._pointerToPositionObject(t),i=this._getAllNodesOverlappingWith(e);return i.length>0?this.body.nodes[i[i.length-1]]:null},writable:!0,configurable:!0},_getEdgesOverlappingWith:{value:function(t,e){var i=this.body.edges;for(var o in i)i.hasOwnProperty(o)&&i[o].isOverlappingWith(t)&&e.push(o)},writable:!0,configurable:!0},_getAllEdgesOverlappingWith:{value:function(t){var e=[];return this._getEdgesOverlappingWith(t,e),e},writable:!0,configurable:!0},_getEdgeAt:{value:function(t){var e=this._pointerToPositionObject(t),i=this._getAllEdgesOverlappingWith(e);return i.length>0?this.body.edges[i[i.length-1]]:null},writable:!0,configurable:!0},_addToSelection:{value:function(t){t instanceof n?this.selectionObj.nodes[t.id]=t:this.selectionObj.edges[t.id]=t},writable:!0,configurable:!0},_addToHover:{value:function(t){t instanceof n?this.hoverObj.nodes[t.id]=t:this.hoverObj.edges[t.id]=t},writable:!0,configurable:!0},_removeFromSelection:{value:function(t){t instanceof n?delete this.selectionObj.nodes[t.id]:delete this.selectionObj.edges[t.id]},writable:!0,configurable:!0},_unselectAll:{value:function(){var t=void 0===arguments[0]?!1:arguments[0];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.body.emitter.emit("select",this.getSelection())},writable:!0,configurable:!0},_getSelectedNodeCount:{value:function(){var t=0;for(var e in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(e)&&(t+=1);return t},writable:!0,configurable:!0},_getSelectedNode:{value:function(){for(var t in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(t))return this.selectionObj.nodes[t];return null},writable:!0,configurable:!0},_getSelectedEdge:{value:function(){for(var t in this.selectionObj.edges)if(this.selectionObj.edges.hasOwnProperty(t))return this.selectionObj.edges[t];return null},writable:!0,configurable:!0},_getSelectedEdgeCount:{value:function(){var t=0;for(var e in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(e)&&(t+=1);return t},writable:!0,configurable:!0},_getSelectedObjectCount:{value: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},writable:!0,configurable:!0},_selectionIsEmpty:{value: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},writable:!0,configurable:!0},_clusterInSelection:{value:function(){for(var t in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(t)&&this.selectionObj.nodes[t].clusterSize>1)return!0;return!1},writable:!0,configurable:!0},_selectConnectedEdges:{value:function(t){for(var e=0;ei;i++){s=t[i];var n=this.body.nodes[s];if(!n)throw new RangeError('Node with id "'+s+'" not found');this._selectObject(n,!0,!0,e,!0)}this.redraw()},writable:!0,configurable:!0},selectEdges:{value:function(t){var e,i,o;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++){o=t[e];var s=this.body.edges[o];if(!s)throw new RangeError('Edge with id "'+o+'" not found');this._selectObject(s,!0,!0,!1,!0)}this.redraw()},writable:!0,configurable:!0},_updateSelection:{value:function(){for(var t in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(t)&&(this.body.nodes.hasOwnProperty(t)||delete this.selectionObj.nodes[t]);for(var e in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(e)&&(this.body.edges.hasOwnProperty(e)||delete this.selectionObj.edges[e])},writable:!0,configurable:!0}}),t}();e.SelectionHandler=r,Object.defineProperty(e,"__esModule",{value:!0})},function(t,e,i){var o=i(40);e._getNodesOverlappingWith=function(t,e){var i=this.body.nodes;for(var o in i)i.hasOwnProperty(o)&&i[o].isOverlappingWith(t)&&e.push(o)},e._getAllNodesOverlappingWith=function(t){var e=[];return this._getNodesOverlappingWith(t,e),e},e._pointerToPositionObject=function(t){var e=this._XconvertDOMtoCanvas(t.x),i=this._YconvertDOMtoCanvas(t.y);return{left:e,top:i,right:e,bottom:i}},e._getNodeAt=function(t){var e=this._pointerToPositionObject(t),i=this._getAllNodesOverlappingWith(e);return i.length>0?this.body.nodes[i[i.length-1]]:null},e._getEdgesOverlappingWith=function(t,e){var i=this.body.edges;for(var o in i)i.hasOwnProperty(o)&&i[o].isOverlappingWith(t)&&e.push(o)},e._getAllEdgesOverlappingWith=function(t){var e=[];return this._getEdgesOverlappingWith(t,e),e},e._getEdgeAt=function(t){var e=this._pointerToPositionObject(t),i=this._getAllEdgesOverlappingWith(e);return i.length>0?this.body.edges[i[i.length-1]]:null},e._addToSelection=function(t){t instanceof o?this.selectionObj.nodes[t.id]=t:this.selectionObj.edges[t.id]=t},e._addToHover=function(t){t instanceof o?this.hoverObj.nodes[t.id]=t:this.hoverObj.edges[t.id]=t},e._removeFromSelection=function(t){t instanceof o?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;ei;i++){s=t[i];var n=this.body.nodes[s];if(!n)throw new RangeError('Node with id "'+s+'" not found');this._selectObject(n,!0,!0,e,!0)}this.redraw()},e.selectEdges=function(t){var e,i,o;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++){o=t[e];var s=this.body.edges[o];if(!s)throw new RangeError('Edge with id "'+o+'" not found');this._selectObject(s,!0,!0,!1,!0)}this.redraw()},e._updateSelection=function(){for(var t in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(t)&&(this.body.nodes.hasOwnProperty(t)||delete this.selectionObj.nodes[t]);for(var e in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(e)&&(this.body.edges.hasOwnProperty(e)||delete this.selectionObj.edges[e])}},function(t,e,i){var o=i(1),s=(i(40),i(37),i(45));e._clearManipulatorBar=function(){this._recursiveDOMDelete(this.manipulationDiv),this.manipulationDOM={},this._cleanManipulatorHammers(),this._manipulationReleaseOverload=function(){},delete this.body.sectors.support.nodes.targetNode,delete this.body.sectors.support.nodes.targetViaNode,this.controlNodesActive=!1,this.freezeSimulationEnabled=!1},e._cleanManipulatorHammers=function(){if(0!=this.manipulationHammers.length){for(var t=0;t0){var t,e,i=0,o=!1,s=!1;for(e in this.body.nodes)this.body.nodes.hasOwnProperty(e)&&(t=this.body.nodes[e],-1!=t.level?o=!0:s=!0,io&&(n.xFixed=!1,n.x=i[n.level].minPos,r=!0):n.yFixed&&n.level>o&&(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 o=0;ot)&&(s.level=t,s.edges.length>1&&this._setLevel(t+1,s.edges,s.id))}},e._setLevelDirected=function(t,e,i){this.body.nodes[i].hierarchyEnumerated=!0;for(var o,s,n=0;n1&&o.hierarchyEnumerated===!1&&this._setLevelDirected(o.level,o.edges,o.id)},e._restoreNodes=function(){for(var t in this.body.nodes)this.body.nodes.hasOwnProperty(t)&&(this.body.nodes[t].xFixed=!1,this.body.nodes[t].yFixed=!1)}},function(t){function e(t){throw new Error("Cannot find module '"+t+"'.")}e.keys=function(){return[]},e.resolve=e,t.exports=e,e.id=78},function(t){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children=[],t.webpackPolyfill=1),t}},function(t,e){(function(e){t.exports=e}).call(e,{})}])}); //# sourceMappingURL=vis.map diff --git a/test/timeline.html b/test/timeline.html index 7edbc968..179f5197 100644 --- a/test/timeline.html +++ b/test/timeline.html @@ -125,7 +125,6 @@ 'hour': 'dddd D MMMM' } }, - } // timeAxis: { // scale: 'hour', // step: 2