diff --git a/HISTORY.md b/HISTORY.md index 5294f2f6..fdc6adfe 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -2,6 +2,19 @@ http://visjs.org +## not yet released, version 3.2.1 + +### Timeline + +- Fixed the `change` event sometimes being fired twice on IE10. +- Fixed canceling moving an item to another group did not move the item + back to the original group. + +### Network + +- A fix in reading group properties for a node. + + ## 2014-08-14, version 3.2.0 ### General diff --git a/dist/vis.js b/dist/vis.js index d4140e97..9a12fb23 100644 --- a/dist/vis.js +++ b/dist/vis.js @@ -80,64 +80,64 @@ return /******/ (function(modules) { // webpackBootstrap /***/ function(module, exports, __webpack_require__) { // utils - exports.util = __webpack_require__(1); - exports.DOMutil = __webpack_require__(6); + exports.util = __webpack_require__(2); + exports.DOMutil = __webpack_require__(1); // data - exports.DataSet = __webpack_require__(7); - exports.DataView = __webpack_require__(8); + exports.DataSet = __webpack_require__(3); + exports.DataView = __webpack_require__(4); // Graph3d - exports.Graph3d = __webpack_require__(9); + exports.Graph3d = __webpack_require__(5); exports.graph3d = { - Camera: __webpack_require__(13), - Filter: __webpack_require__(14), - Point2d: __webpack_require__(12), - Point3d: __webpack_require__(11), - Slider: __webpack_require__(15), - StepNumber: __webpack_require__(16) + Camera: __webpack_require__(6), + Filter: __webpack_require__(7), + Point2d: __webpack_require__(8), + Point3d: __webpack_require__(9), + Slider: __webpack_require__(10), + StepNumber: __webpack_require__(11) }; // Timeline - exports.Timeline = __webpack_require__(17); - exports.Graph2d = __webpack_require__(35); + exports.Timeline = __webpack_require__(12); + exports.Graph2d = __webpack_require__(13); exports.timeline = { - DataStep: __webpack_require__(37), - Range: __webpack_require__(20), - stack: __webpack_require__(30), - TimeStep: __webpack_require__(25), + DataStep: __webpack_require__(14), + Range: __webpack_require__(15), + stack: __webpack_require__(16), + TimeStep: __webpack_require__(17), components: { items: { - Item: __webpack_require__(32), - ItemBox: __webpack_require__(33), - ItemPoint: __webpack_require__(34), + Item: __webpack_require__(28), + ItemBox: __webpack_require__(29), + ItemPoint: __webpack_require__(30), ItemRange: __webpack_require__(31) }, - Component: __webpack_require__(22), - CurrentTime: __webpack_require__(26), - CustomTime: __webpack_require__(27), - DataAxis: __webpack_require__(38), - GraphGroup: __webpack_require__(39), - Group: __webpack_require__(29), - ItemSet: __webpack_require__(28), - Legend: __webpack_require__(40), - LineGraph: __webpack_require__(36), - TimeAxis: __webpack_require__(24) + Component: __webpack_require__(19), + CurrentTime: __webpack_require__(18), + CustomTime: __webpack_require__(20), + DataAxis: __webpack_require__(21), + GraphGroup: __webpack_require__(22), + Group: __webpack_require__(23), + ItemSet: __webpack_require__(24), + Legend: __webpack_require__(25), + LineGraph: __webpack_require__(26), + TimeAxis: __webpack_require__(27) } }; // Network - exports.Network = __webpack_require__(41); + exports.Network = __webpack_require__(32); exports.network = { - Edge: __webpack_require__(48), - Groups: __webpack_require__(45), - Images: __webpack_require__(46), - Node: __webpack_require__(47), - Popup: __webpack_require__(49), - dotparser: __webpack_require__(43), - gephiParser: __webpack_require__(44) + Edge: __webpack_require__(33), + Groups: __webpack_require__(34), + Images: __webpack_require__(35), + Node: __webpack_require__(36), + Popup: __webpack_require__(37), + dotparser: __webpack_require__(38), + gephiParser: __webpack_require__(39) }; // Deprecated since v3.0.0 @@ -146,19 +146,185 @@ return /******/ (function(modules) { // webpackBootstrap }; // bundled external libraries - exports.moment = __webpack_require__(2); - exports.hammer = __webpack_require__(18); + exports.moment = __webpack_require__(41); + exports.hammer = __webpack_require__(40); /***/ }, /* 1 */ +/***/ function(module, exports, __webpack_require__) { + + // 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) { + var element; + // allocate DOM element, if it doesnt yet exist, create one. + if (JSONcontainer.hasOwnProperty(elementType)) { // this element has been created before + // check if there is an redundant element + if (JSONcontainer[elementType].redundant.length > 0) { + element = JSONcontainer[elementType].redundant[0]; + JSONcontainer[elementType].redundant.shift(); + } + else { + // create a new element and add it to the SVG + element = document.createElement(elementType); + DOMContainer.appendChild(element); + } + } + else { + // create a new element and add it to the SVG, also create a new object in the svgElements to keep track of it. + element = document.createElement(elementType); + JSONcontainer[elementType] = {used: [], redundant: []}; + DOMContainer.appendChild(element); + } + JSONcontainer[elementType].used.push(element); + return element; + }; + + + + + /** + * draw a point object. this is a seperate function because it can also be called by the legend. + * The reason the JSONcontainer and the target SVG svgContainer have to be supplied is so the legend can use these functions + * as well. + * + * @param x + * @param y + * @param group + * @param JSONcontainer + * @param svgContainer + * @returns {*} + */ + exports.drawPoint = function(x, y, group, JSONcontainer, svgContainer) { + var point; + if (group.options.drawPoints.style == 'circle') { + point = exports.getSVGElement('circle',JSONcontainer,svgContainer); + point.setAttributeNS(null, "cx", x); + point.setAttributeNS(null, "cy", y); + point.setAttributeNS(null, "r", 0.5 * group.options.drawPoints.size); + point.setAttributeNS(null, "class", group.className + " point"); + } + else { + point = exports.getSVGElement('rect',JSONcontainer,svgContainer); + point.setAttributeNS(null, "x", x - 0.5*group.options.drawPoints.size); + point.setAttributeNS(null, "y", y - 0.5*group.options.drawPoints.size); + point.setAttributeNS(null, "width", group.options.drawPoints.size); + point.setAttributeNS(null, "height", group.options.drawPoints.size); + point.setAttributeNS(null, "class", group.className + " point"); + } + return point; + }; + + /** + * draw a bar SVG element centered on the X coordinate + * + * @param x + * @param y + * @param className + */ + exports.drawBar = function (x, y, width, height, className, JSONcontainer, svgContainer) { + // if (height != 0) { + var rect = exports.getSVGElement('rect',JSONcontainer, svgContainer); + rect.setAttributeNS(null, "x", x - 0.5 * width); + rect.setAttributeNS(null, "y", y); + rect.setAttributeNS(null, "width", width); + rect.setAttributeNS(null, "height", height); + rect.setAttributeNS(null, "class", className); + // } + }; + +/***/ }, +/* 2 */ /***/ function(module, exports, __webpack_require__) { // utility functions // 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__(41); /** * Test whether given object is a number @@ -1402,28702 +1568,28685 @@ return /******/ (function(modules) { // webpackBootstrap }; /***/ }, -/* 2 */ +/* 3 */ /***/ function(module, exports, __webpack_require__) { - // first check if moment.js is already loaded in the browser window, if so, - // use this instance. Else, load via commonjs. - module.exports = (typeof window !== 'undefined') && window['moment'] || __webpack_require__(3); + var util = __webpack_require__(2); + /** + * DataSet + * + * Usage: + * var dataSet = new DataSet({ + * fieldId: '_id', + * type: { + * // ... + * } + * }); + * + * dataSet.add(item); + * dataSet.add(data); + * dataSet.update(item); + * dataSet.update(data); + * dataSet.remove(id); + * dataSet.remove(ids); + * var data = dataSet.get(); + * var data = dataSet.get(id); + * var data = dataSet.get(ids); + * var data = dataSet.get(ids, options, data); + * dataSet.clear(); + * + * A data set can: + * - add/remove/update data + * - gives triggers upon changes in the data + * - can import/export data in various data formats + * + * @param {Array | DataTable} [data] Optional array with initial data + * @param {Object} [options] Available options: + * {String} fieldId Field name of the id in the + * items, 'id' by default. + * {Object. ["10", "00"] or "-1530" > ["-15", "30"] - parseTimezoneChunker = /([\+\-]|\d\d)/gi, + /** + * Update existing items. When an item does not exist, it will be created + * @param {Object | Array | DataTable} data + * @param {String} [senderId] Optional sender id + * @return {Array} updatedIds The ids of the added or updated items + */ + DataSet.prototype.update = function (data, senderId) { + var addedIds = [], + updatedIds = [], + me = this, + fieldId = me._fieldId; - // 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 addOrUpdate = function (item) { + var id = item[fieldId]; + if (me._data[id]) { + // update item + id = me._updateItem(item); + updatedIds.push(id); + } + else { + // add new item + id = me._addItem(item); + addedIds.push(id); + } + }; - unitAliases = { - ms : 'millisecond', - s : 'second', - m : 'minute', - h : 'hour', - d : 'day', - D : 'date', - w : 'week', - W : 'isoWeek', - M : 'month', - Q : 'quarter', - y : 'year', - DDD : 'dayOfYear', - e : 'weekday', - E : 'isoWeekday', - gg: 'weekYear', - GG: 'isoWeekYear' - }, + if (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); + } - camelFunctions = { - dayofyear : 'dayOfYear', - isoweekday : 'isoWeekday', - isoweek : 'isoWeek', - weekyear : 'weekYear', - isoweekyear : 'isoWeekYear' - }, + addOrUpdate(item); + } + } + else if (data instanceof Object) { + // Single item + addOrUpdate(data); + } + else { + throw new Error('Unknown dataType'); + } - // format function strings - formatFunctions = {}, + if (addedIds.length) { + this._trigger('add', {items: addedIds}, senderId); + } + if (updatedIds.length) { + this._trigger('update', {items: updatedIds}, senderId); + } - // default relative time thresholds - relativeTimeThresholds = { - s: 45, //seconds to minutes - m: 45, //minutes to hours - h: 22, //hours to days - dd: 25, //days to month (month == 1) - dm: 45, //days to months (months > 1) - dy: 345 //days to year - }, + return addedIds.concat(updatedIds); + }; - // tokens to ordinalize and pad - ordinalizeTokens = 'DDD w W M D d'.split(' '), - paddedTokens = 'M D H h m s w W'.split(' '), + /** + * 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; - formatTokenFunctions = { - M : function () { - return this.month() + 1; - }, - MMM : function (format) { - return this.lang().monthsShort(this, format); - }, - MMMM : function (format) { - return this.lang().months(this, format); - }, - D : function () { - return this.date(); - }, - DDD : function () { - return this.dayOfYear(); - }, - d : function () { - return this.day(); - }, - dd : function (format) { - return this.lang().weekdaysMin(this, format); - }, - ddd : function (format) { - return this.lang().weekdaysShort(this, format); - }, - dddd : function (format) { - return this.lang().weekdays(this, format); - }, - w : function () { - return this.week(); - }, - W : function () { - return this.isoWeek(); - }, - YY : function () { - return leftZeroFill(this.year() % 100, 2); - }, - YYYY : function () { - return leftZeroFill(this.year(), 4); - }, - YYYYY : function () { - return leftZeroFill(this.year(), 5); - }, - YYYYYY : function () { - var y = this.year(), sign = y >= 0 ? '+' : '-'; - return sign + leftZeroFill(Math.abs(y), 6); - }, - gg : function () { - return leftZeroFill(this.weekYear() % 100, 2); - }, - gggg : function () { - return leftZeroFill(this.weekYear(), 4); - }, - ggggg : function () { - return leftZeroFill(this.weekYear(), 5); - }, - GG : function () { - return leftZeroFill(this.isoWeekYear() % 100, 2); - }, - GGGG : function () { - return leftZeroFill(this.isoWeekYear(), 4); - }, - GGGGG : function () { - return leftZeroFill(this.isoWeekYear(), 5); - }, - e : function () { - return this.weekday(); - }, - E : function () { - return this.isoWeekday(); - }, - a : function () { - return this.lang().meridiem(this.hours(), this.minutes(), true); - }, - A : function () { - return this.lang().meridiem(this.hours(), this.minutes(), false); - }, - H : function () { - return this.hours(); - }, - h : function () { - return this.hours() % 12 || 12; - }, - m : function () { - return this.minutes(); - }, - s : function () { - return this.seconds(); - }, - S : function () { - return toInt(this.milliseconds() / 100); - }, - SS : function () { - return leftZeroFill(toInt(this.milliseconds() / 10), 2); - }, - SSS : function () { - return leftZeroFill(this.milliseconds(), 3); - }, - SSSS : function () { - return leftZeroFill(this.milliseconds(), 3); - }, - Z : function () { - var a = -this.zone(), - b = "+"; - if (a < 0) { - a = -a; - b = "-"; - } - return b + leftZeroFill(toInt(a / 60), 2) + ":" + leftZeroFill(toInt(a) % 60, 2); - }, - ZZ : function () { - var a = -this.zone(), - b = "+"; - if (a < 0) { - a = -a; - b = "-"; - } - return b + leftZeroFill(toInt(a / 60), 2) + leftZeroFill(toInt(a) % 60, 2); - }, - z : function () { - return this.zoneAbbr(); - }, - zz : function () { - return this.zoneName(); - }, - X : function () { - return this.unix(); - }, - Q : function () { - return this.quarter(); - } - }, + // 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]; + } - lists = ['months', 'monthsShort', 'weekdays', 'weekdaysShort', 'weekdaysMin']; + // determine the return type + var returnType; + if (options && options.returnType) { + var allowedValues = ["DataTable", "Array", "Object"]; + returnType = allowedValues.indexOf(options.returnType) == -1 ? "Array" : options.returnType; - // 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"); - } + 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'; + } - 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 - }; - } + // build options + var type = options && options.type || this._options.type; + var filter = options && options.filter; + var items = [], item, itemId, i, len; - function deprecate(msg, fn) { - var firstTime = true; - function printMsg() { - if (moment.suppressDeprecationWarnings === false && - typeof console !== 'undefined' && console.warn) { - console.warn("Deprecation warning: " + msg); - } + // 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); } - return extend(function () { - if (firstTime) { - printMsg(); - firstTime = false; - } - return fn.apply(this, arguments); - }, fn); + } } + } - function padToken(func, count) { - return function (a) { - return leftZeroFill(func.call(this, a), count); - }; + // order the results + if (options && options.order && id == undefined) { + this._sort(items, options.order); + } + + // filter fields of the items + if (options && options.fields) { + var fields = options.fields; + if (id != undefined) { + item = this._filterFields(item, fields); } - function ordinalizeToken(func, period) { - return function (a) { - return this.lang().ordinal(func.call(this, a), period); - }; + else { + for (i = 0, len = items.length; i < len; i++) { + items[i] = this._filterFields(items[i], fields); + } } + } - while (ordinalizeTokens.length) { - i = ordinalizeTokens.pop(); - formatTokenFunctions[i + 'o'] = ordinalizeToken(formatTokenFunctions[i], i); + // 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); } - while (paddedTokens.length) { - i = paddedTokens.pop(); - formatTokenFunctions[i + i] = padToken(formatTokenFunctions[i], 2); + else { + // copy the items to the provided data table + for (i = 0; i < items.length; i++) { + me._appendRow(data, columns, items[i]); + } } - formatTokenFunctions.DDDD = padToken(formatTokenFunctions.DDD, 3); - - - /************************************ - Constructors - ************************************/ - - function Language() { - + return data; + } + else if (returnType == "Object") { + var result = {}; + for (i = 0; i < items.length; i++) { + result[items[i].id] = items[i]; } - - // Moment prototype object - function Moment(config) { - checkOverflow(config); - extend(this, config); + return result; + } + else { + // return an array + if (id != undefined) { + // a single item + return item; } - - // Duration Constructor - function Duration(duration) { - var normalizedInput = normalizeObjectUnits(duration), - years = normalizedInput.year || 0, - quarters = normalizedInput.quarter || 0, - months = normalizedInput.month || 0, - weeks = normalizedInput.week || 0, - days = normalizedInput.day || 0, - hours = normalizedInput.hour || 0, - minutes = normalizedInput.minute || 0, - seconds = normalizedInput.second || 0, - milliseconds = normalizedInput.millisecond || 0; - - // representation for dateAddRemove - this._milliseconds = +milliseconds + - seconds * 1e3 + // 1000 - minutes * 6e4 + // 1000 * 60 - hours * 36e5; // 1000 * 60 * 60 - // Because of dateAddRemove treats 24 hours as different from a - // day when working around DST, we need to store them separately - this._days = +days + - weeks * 7; - // It is impossible translate months into days without knowing - // which months you are are talking about, so we have to store - // it separately. - this._months = +months + - quarters * 3 + - years * 12; - - this._data = {}; - - this._bubble(); + 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; + } } + } + }; - /************************************ - Helpers - ************************************/ - - - function extend(a, b) { - for (var i in b) { - if (b.hasOwnProperty(i)) { - a[i] = b[i]; - } - } + /** + * Get ids of all items or from a filtered set of items. + * @param {Object} [options] An Object with options. Available options: + * {function} [filter] filter items + * {String | function} [order] Order the items by + * a field name or custom sort function. + * @return {Array} ids + */ + DataSet.prototype.getIds = function (options) { + var data = this._data, + filter = options && options.filter, + order = options && options.order, + type = options && options.type || this._options.type, + i, + len, + id, + item, + items, + ids = []; - if (b.hasOwnProperty("toString")) { - a.toString = b.toString; + if (filter) { + // get filtered items + if (order) { + // create ordered list + items = []; + for (id in data) { + if (data.hasOwnProperty(id)) { + item = this._getItem(id, type); + if (filter(item)) { + items.push(item); + } } + } - if (b.hasOwnProperty("valueOf")) { - a.valueOf = b.valueOf; - } + this._sort(items, order); - return a; + for (i = 0, len = items.length; i < len; i++) { + ids[i] = items[i][this._fieldId]; + } } - - function cloneMoment(m) { - var result = {}, i; - for (i in m) { - if (m.hasOwnProperty(i) && momentProperties.hasOwnProperty(i)) { - result[i] = m[i]; - } + else { + // create unordered list + for (id in data) { + if (data.hasOwnProperty(id)) { + item = this._getItem(id, type); + if (filter(item)) { + ids.push(item[this._fieldId]); + } } - - return result; + } } - - function absRound(number) { - if (number < 0) { - return Math.ceil(number); - } else { - return Math.floor(number); + } + else { + // get all items + if (order) { + // create an ordered list + items = []; + for (id in data) { + if (data.hasOwnProperty(id)) { + items.push(data[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; + this._sort(items, order); - while (output.length < targetLength) { - output = '0' + output; + 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 (sign ? (forceSign ? '+' : '') : '-') + output; + } } + } - // helper function for _.addTime and _.subtractTime - function addOrSubtractDurationFromMoment(mom, duration, isAdding, updateOffset) { - var milliseconds = duration._milliseconds, - days = duration._days, - months = duration._months; - updateOffset = updateOffset == null ? true : updateOffset; + return ids; + }; - 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); - } - } + /** + * 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; + }; - // check if is an array - function isArray(input) { - return Object.prototype.toString.call(input) === '[object Array]'; - } + /** + * Execute a callback function for every item in the dataset. + * @param {function} callback + * @param {Object} [options] Available options: + * {Object.} [type] + * {String[]} [fields] filter fields + * {function} [filter] filter items + * {String | function} [order] Order the items by + * a field name or custom sort function. + */ + DataSet.prototype.forEach = function (callback, options) { + var filter = options && options.filter, + type = options && options.type || this._options.type, + data = this._data, + item, + id; - function isDate(input) { - return Object.prototype.toString.call(input) === '[object Date]' || - input instanceof Date; - } + if (options && options.order) { + // execute forEach on ordered list + var items = this.get(options); - // 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; + for (var i = 0, len = items.length; i < len; i++) { + item = items[i]; + id = item[this._fieldId]; + callback(item, id); } - - function normalizeUnits(units) { - if (units) { - var lowered = units.toLowerCase().replace(/(.)s$/, '$1'); - units = unitAliases[units] || camelFunctions[lowered] || lowered; + } + else { + // unordered + for (id in data) { + if (data.hasOwnProperty(id)) { + item = this._getItem(id, type); + if (!filter || filter(item)) { + callback(item, id); } - return units; + } } + } + }; - function normalizeObjectUnits(inputObject) { - var normalizedInput = {}, - normalizedProp, - prop; - - for (prop in inputObject) { - if (inputObject.hasOwnProperty(prop)) { - normalizedProp = normalizeUnits(prop); - if (normalizedProp) { - normalizedInput[normalizedProp] = inputObject[prop]; - } - } - } + /** + * 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; - return normalizedInput; + // 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 makeList(field) { - var count, setter; - - if (field.indexOf('week') === 0) { - count = 7; - setter = 'day'; - } - else if (field.indexOf('month') === 0) { - count = 12; - setter = 'month'; - } - else { - return; - } - - moment[field] = function (format, index) { - var i, getter, - method = moment.fn._lang[field], - results = []; + // order items + if (options && options.order) { + this._sort(mappedItems, options.order); + } - if (typeof format === 'number') { - index = format; - format = undefined; - } + return mappedItems; + }; - getter = function (i) { - var m = moment().utc().set(setter, i); - return method.call(moment.fn._lang, m, format || ''); - }; + /** + * Filter the fields of an item + * @param {Object} item + * @param {String[]} fields Field names + * @return {Object} filteredItem + * @private + */ + DataSet.prototype._filterFields = function (item, fields) { + var filteredItem = {}; - if (index != null) { - return getter(index); - } - else { - for (i = 0; i < count; i++) { - results.push(getter(i)); - } - return results; - } - }; + for (var field in item) { + if (item.hasOwnProperty(field) && (fields.indexOf(field) != -1)) { + filteredItem[field] = item[field]; } + } - function toInt(argumentForCoercion) { - var coercedNumber = +argumentForCoercion, - value = 0; + return filteredItem; + }; - if (coercedNumber !== 0 && isFinite(coercedNumber)) { - if (coercedNumber >= 0) { - value = Math.floor(coercedNumber); - } else { - value = Math.ceil(coercedNumber); - } - } + /** + * 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'); + } + }; - return value; - } + /** + * 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; - function daysInMonth(year, month) { - return new Date(Date.UTC(year, month + 1, 0)).getUTCDate(); + if (Array.isArray(id)) { + for (i = 0, len = id.length; i < len; i++) { + removedId = this._remove(id[i]); + if (removedId != null) { + removedIds.push(removedId); + } } - - function weeksInYear(year, dow, doy) { - return weekOfYear(moment([year, 11, 31 + dow - doy]), dow, doy).week; + } + else { + removedId = this._remove(id); + if (removedId != null) { + removedIds.push(removedId); } + } - function daysInYear(year) { - return isLeapYear(year) ? 366 : 365; - } + if (removedIds.length) { + this._trigger('remove', {items: removedIds}, senderId); + } - function isLeapYear(year) { - return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0; - } + return removedIds; + }; - function checkOverflow(m) { - var overflow; - if (m._a && m._pf.overflow === -2) { - overflow = - m._a[MONTH] < 0 || m._a[MONTH] > 11 ? MONTH : - m._a[DATE] < 1 || m._a[DATE] > daysInMonth(m._a[YEAR], m._a[MONTH]) ? DATE : - m._a[HOUR] < 0 || m._a[HOUR] > 23 ? HOUR : - m._a[MINUTE] < 0 || m._a[MINUTE] > 59 ? MINUTE : - m._a[SECOND] < 0 || m._a[SECOND] > 59 ? SECOND : - m._a[MILLISECOND] < 0 || m._a[MILLISECOND] > 999 ? MILLISECOND : - -1; + /** + * Remove an item by its id + * @param {Number | String | Object} id id or item + * @returns {Number | String | null} id + * @private + */ + DataSet.prototype._remove = function (id) { + if (util.isNumber(id) || util.isString(id)) { + if (this._data[id]) { + delete this._data[id]; + return id; + } + } + else if (id instanceof Object) { + var itemId = id[this._fieldId]; + if (itemId && this._data[itemId]) { + delete this._data[itemId]; + return itemId; + } + } + return null; + }; - if (m._pf._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) { - overflow = DATE; - } + /** + * 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); - m._pf.overflow = overflow; - } - } + this._data = {}; - 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; + this._trigger('remove', {items: ids}, senderId); - if (m._strict) { - m._isValid = m._isValid && - m._pf.charsLeftOver === 0 && - m._pf.unusedTokens.length === 0; - } - } - return m._isValid; - } + return ids; + }; - function normalizeLanguage(key) { - return key ? key.toLowerCase().replace('_', '-') : key; - } + /** + * 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; - // Return a moment from input, that is local/utc/zone equivalent to model. - function makeAs(input, model) { - return model._isUTC ? moment(input).zone(model._offset || 0) : - moment(input).local(); + 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; + } } + } - /************************************ - Languages - ************************************/ + return max; + }; + /** + * 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; - extend(Language.prototype, { + 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; + } + } + } - set : function (config) { - var prop, i; - for (i in config) { - prop = config[i]; - if (typeof prop === 'function') { - this[i] = prop; - } else { - this['_' + i] = prop; - } - } - }, + return min; + }; - _months : "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), - months : function (m) { - return this._months[m.month()]; - }, + /** + * 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; - _monthsShort : "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"), - monthsShort : function (m) { - return this._monthsShort[m.month()]; - }, + 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++; + } + } + } - monthsParse : function (monthName) { - var i, mom, regex; + if (fieldType) { + for (i = 0; i < values.length; i++) { + values[i] = util.convert(values[i], fieldType); + } + } - if (!this._monthsParse) { - this._monthsParse = []; - } + return values; + }; - for (i = 0; i < 12; i++) { - // make the regex if we don't have it already - if (!this._monthsParse[i]) { - mom = moment.utc([2000, i]); - regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, ''); - this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i'); - } - // test the regex - if (this._monthsParse[i].test(monthName)) { - return i; - } - } - }, + /** + * 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]; - _weekdays : "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), - weekdays : function (m) { - return this._weekdays[m.day()]; - }, + 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; + } - _weekdaysShort : "Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"), - weekdaysShort : function (m) { - return this._weekdaysShort[m.day()]; - }, + 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; - _weekdaysMin : "Su_Mo_Tu_We_Th_Fr_Sa".split("_"), - weekdaysMin : function (m) { - return this._weekdaysMin[m.day()]; - }, + return id; + }; - weekdaysParse : function (weekdayName) { - var i, mom, regex; + /** + * 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; - if (!this._weekdaysParse) { - this._weekdaysParse = []; - } + // get the item from the dataset + var raw = this._data[id]; + if (!raw) { + return null; + } - 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; - } - } - }, + // 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; + }; - _longDateFormat : { - LT : "h:mm A", - L : "MM/DD/YYYY", - LL : "MMMM D YYYY", - LLL : "MMMM D YYYY LT", - LLLL : "dddd, MMMM D YYYY LT" - }, - longDateFormat : function (key) { - var output = this._longDateFormat[key]; - if (!output && this._longDateFormat[key.toUpperCase()]) { - output = this._longDateFormat[key.toUpperCase()].replace(/MMMM|MM|DD|dddd/g, function (val) { - return val.slice(1); - }); - this._longDateFormat[key] = output; - } - return output; - }, + /** + * 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'); + } - 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'); - }, + // 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); + } + } - _meridiemParse : /[ap]\.?m?\.?/i, - meridiem : function (hours, minutes, isLower) { - if (hours > 11) { - return isLower ? 'pm' : 'PM'; - } else { - return isLower ? 'am' : 'AM'; - } - }, + return 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) { - var output = this._calendar[key]; - return typeof output === 'function' ? output.apply(mom) : output; - }, + /** + * 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; + }; - _relativeTime : { - future : "in %s", - past : "%s ago", - s : "a few seconds", - m : "a minute", - mm : "%d minutes", - h : "an hour", - hh : "%d hours", - d : "a day", - dd : "%d days", - M : "a month", - MM : "%d months", - y : "a year", - yy : "%d years" - }, - relativeTime : function (number, withoutSuffix, string, isFuture) { - var output = this._relativeTime[string]; - return (typeof output === 'function') ? - output(number, withoutSuffix, string, isFuture) : - output.replace(/%d/i, number); - }, - pastFuture : function (diff, output) { - var format = this._relativeTime[diff > 0 ? 'future' : 'past']; - return typeof format === 'function' ? format(output) : format.replace(/%s/i, output); - }, + /** + * 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(); - ordinal : function (number) { - return this._ordinal.replace("%d", number); - }, - _ordinal : "%d", + for (var col = 0, cols = columns.length; col < cols; col++) { + var field = columns[col]; + dataTable.setValue(row, col, item[field]); + } + }; - preparse : function (string) { - return string; - }, + module.exports = DataSet; - postformat : function (string) { - return string; - }, - week : function (mom) { - return weekOfYear(mom, this._week.dow, this._week.doy).week; - }, +/***/ }, +/* 4 */ +/***/ function(module, exports, __webpack_require__) { - _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. - }, + var util = __webpack_require__(2); + var DataSet = __webpack_require__(3); - _invalidDate: 'Invalid date', - invalidDate: function () { - return this._invalidDate; - } - }); + /** + * DataView + * + * a dataview offers a filtered view on a dataset or an other dataview. + * + * @param {DataSet | DataView} data + * @param {Object} [options] Available options: see method get + * + * @constructor DataView + */ + function DataView (data, options) { + this._data = null; + this._ids = {}; // ids of the items currently in memory (just contains a boolean true) + this._options = options || {}; + this._fieldId = 'id'; // name of the field containing id + this._subscribers = {}; // event subscribers - // Loads a language definition into the `languages` cache. The function - // takes a key and optionally values. If not in the browser and no values - // are provided, it will load the language file module. As a convenience, - // this function also returns the language values. - function loadLang(key, values) { - values.abbr = key; - if (!languages[key]) { - languages[key] = new Language(); - } - languages[key].set(values); - return languages[key]; - } + var me = this; + this.listener = function () { + me._onEvent.apply(me, arguments); + }; - // Remove a language from the `languages` cache. Mostly useful in tests. - function unloadLang(key) { - delete languages[key]; - } + this.setData(data); + } - // Determines which language definition to use and returns it. - // - // With no parameters, it will return the global language. If you - // pass in a language key, such as 'en', it will return the - // definition for 'en', so long as 'en' has already been loaded using - // moment.lang. - function getLangDefinition(key) { - var i = 0, j, lang, next, split, - get = function (k) { - if (!languages[k] && hasModule) { - try { - __webpack_require__(4)("./" + k); - } catch (e) { } - } - return languages[k]; - }; - - if (!key) { - return moment.fn._lang; - } + // TODO: implement a function .config() to dynamically update things like configured filter + // and trigger changes accordingly - if (!isArray(key)) { - //short-circuit everything else - lang = get(key); - if (lang) { - return lang; - } - key = [key]; - } + /** + * Set a data source for the view + * @param {DataSet | DataView} data + */ + DataView.prototype.setData = function (data) { + var ids, i, len; - //pick the language from the array - //try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each - //substring from most specific to least, but move to the next array item if it's a more specific variant than the current root - while (i < key.length) { - split = normalizeLanguage(key[i]).split('-'); - j = split.length; - next = normalizeLanguage(key[i + 1]); - next = next ? next.split('-') : null; - while (j > 0) { - lang = get(split.slice(0, j).join('-')); - if (lang) { - return lang; - } - if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) { - //the next array item is better than a shallower substring of this one - break; - } - j--; - } - i++; - } - return moment.fn._lang; + if (this._data) { + // unsubscribe from current dataset + if (this._data.unsubscribe) { + this._data.unsubscribe('*', this.listener); } - /************************************ - Formatting - ************************************/ - - - function removeFormattingTokens(input) { - if (input.match(/\[[\s\S]/)) { - return input.replace(/^\[|\]$/g, ""); - } - return input.replace(/\\/g, ""); + // trigger a remove of all items in memory + ids = []; + for (var id in this._ids) { + if (this._ids.hasOwnProperty(id)) { + ids.push(id); + } } + this._ids = {}; + this._trigger('remove', {items: ids}); + } - function makeFormatFunction(format) { - var array = format.match(formattingTokens), i, length; + this._data = data; - for (i = 0, length = array.length; i < length; i++) { - if (formatTokenFunctions[array[i]]) { - array[i] = formatTokenFunctions[array[i]]; - } else { - array[i] = removeFormattingTokens(array[i]); - } - } + if (this._data) { + // update fieldId + this._fieldId = this._options.fieldId || + (this._data && this._data.options && this._data.options.fieldId) || + 'id'; - 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; - }; + // trigger an add of all added items + ids = this._data.getIds({filter: this._options && this._options.filter}); + for (i = 0, len = ids.length; i < len; i++) { + id = ids[i]; + this._ids[id] = true; } + this._trigger('add', {items: ids}); - // format date using native date object - function formatMoment(m, format) { + // subscribe to new dataset + if (this._data.on) { + this._data.on('*', this.listener); + } + } + }; - if (!m.isValid()) { - return m.lang().invalidDate(); - } + /** + * 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; - format = expandFormat(format, m.lang()); + // 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]; + } - if (!formatFunctions[format]) { - formatFunctions[format] = makeFormatFunction(format); - } + // extend the options with the default options and provided options + var viewOptions = util.extend({}, this._options, options); - return formatFunctions[format](m); + // create a combined filter method when needed + if (this._options.filter && options && options.filter) { + viewOptions.filter = function (item) { + return me._options.filter(item) && options.filter(item); } + } - function expandFormat(format, lang) { - var i = 5; + // build up the call to the linked data set + var getArguments = []; + if (ids != undefined) { + getArguments.push(ids); + } + getArguments.push(viewOptions); + getArguments.push(data); - function replaceLongDateFormatTokens(input) { - return lang.longDateFormat(input) || input; - } + return this._data && this._data.get.apply(this._data, getArguments); + }; - localFormattingTokens.lastIndex = 0; - while (i >= 0 && localFormattingTokens.test(format)) { - format = format.replace(localFormattingTokens, replaceLongDateFormatTokens); - localFormattingTokens.lastIndex = 0; - i -= 1; - } + /** + * 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; - return format; + 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 = []; + } - /************************************ - Parsing - ************************************/ + 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; + }; - // get the regex to find the next token - function getParseRegexForToken(token, config) { - var a, strict = config._strict; - switch (token) { - case 'Q': - return parseTokenOneDigit; - case 'DDDD': - return parseTokenThreeDigits; - case 'YYYY': - case 'GGGG': - case 'gggg': - return strict ? parseTokenFourDigits : parseTokenOneToFourDigits; - case 'Y': - case 'G': - case 'g': - return parseTokenSignedNumber; - case 'YYYYYY': - case 'YYYYY': - case 'GGGGG': - case 'ggggg': - return strict ? parseTokenSixDigits : parseTokenOneToSixDigits; - case 'S': - if (strict) { return parseTokenOneDigit; } - /* falls through */ - case 'SS': - if (strict) { return parseTokenTwoDigits; } - /* falls through */ - case 'SSS': - if (strict) { return parseTokenThreeDigits; } - /* falls through */ - case 'DDD': - return parseTokenOneToThreeDigits; - case 'MMM': - case 'MMMM': - case 'dd': - case 'ddd': - case 'dddd': - return parseTokenWord; - case 'a': - case 'A': - return getLangDefinition(config._l)._meridiemParse; - case 'X': - return parseTokenTimestampMs; - case 'Z': - case 'ZZ': - return parseTokenTimezone; - case 'T': - return parseTokenT; - case 'SSSS': - return parseTokenDigits; - case 'MM': - case 'DD': - case 'YY': - case 'GG': - case 'gg': - case 'HH': - case 'hh': - case 'mm': - case 'ss': - case 'ww': - case 'WW': - return strict ? parseTokenTwoDigits : parseTokenOneOrTwoDigits; - case 'M': - case 'D': - case 'd': - case 'H': - case 'h': - case 'm': - case 's': - case 'w': - case 'W': - case 'e': - case 'E': - return parseTokenOneOrTwoDigits; - case 'Do': - return parseTokenOrdinal; - default : - a = new RegExp(regexpEscape(unescapeFormat(token.replace('\\', '')), "i")); - return a; - } - } + /** + * 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 = []; - function timezoneMinutesFromString(string) { - string = string || ""; - var possibleTzMatches = (string.match(parseTokenTimezone) || []), - tzChunk = possibleTzMatches[possibleTzMatches.length - 1] || [], - parts = (tzChunk + '').match(parseTimezoneChunker) || ['-', 0, 0], - minutes = +(parts[1] * 60) + toInt(parts[2]); + 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 parts[0] === '+' ? -minutes : minutes; - } + break; - // function to convert string input to date - function addTimeToArrayFromToken(token, input, config) { - var a, datePartArray = config._a; + 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); - switch (token) { - // QUARTER - case 'Q': - if (input != null) { - datePartArray[MONTH] = (toInt(input) - 1) * 3; - } - break; - // MONTH - case 'M' : // fall through to MM - case 'MM' : - if (input != null) { - datePartArray[MONTH] = toInt(input) - 1; - } - break; - case 'MMM' : // fall through to MMMM - case 'MMMM' : - a = getLangDefinition(config._l).monthsParse(input); - // if we didn't find a month name, mark the date as invalid. - if (a != null) { - datePartArray[MONTH] = a; - } else { - config._pf.invalidMonth = input; - } - break; - // DAY OF MONTH - case 'D' : // fall through to DD - case 'DD' : - if (input != null) { - datePartArray[DATE] = toInt(input); - } - break; - case 'Do' : - if (input != null) { - datePartArray[DATE] = toInt(parseInt(input, 10)); + if (item) { + if (this._ids[id]) { + updated.push(id); } - break; - // DAY OF YEAR - case 'DDD' : // fall through to DDDD - case 'DDDD' : - if (input != null) { - config._dayOfYear = toInt(input); + else { + this._ids[id] = true; + added.push(id); } - - break; - // YEAR - case 'YY' : - datePartArray[YEAR] = moment.parseTwoDigitYear(input); - break; - case 'YYYY' : - case 'YYYYY' : - case 'YYYYYY' : - datePartArray[YEAR] = toInt(input); - break; - // AM / PM - case 'a' : // fall through to A - case 'A' : - config._isPm = getLangDefinition(config._l).isPM(input); - break; - // 24 HOUR - case 'H' : // fall through to hh - case 'HH' : // fall through to hh - case 'h' : // fall through to hh - case 'hh' : - datePartArray[HOUR] = toInt(input); - break; - // MINUTE - case 'm' : // fall through to mm - case 'mm' : - datePartArray[MINUTE] = toInt(input); - break; - // SECOND - case 's' : // fall through to ss - case 'ss' : - datePartArray[SECOND] = toInt(input); - break; - // MILLISECOND - case 'S' : - case 'SS' : - case 'SSS' : - case 'SSSS' : - datePartArray[MILLISECOND] = toInt(('0.' + input) * 1000); - break; - // UNIX TIMESTAMP WITH MS - case 'X': - config._d = new Date(parseFloat(input) * 1000); - break; - // TIMEZONE - case 'Z' : // fall through to ZZ - case 'ZZ' : - config._useUTC = true; - config._tzm = timezoneMinutesFromString(input); - break; - // WEEKDAY - human - case 'dd': - case 'ddd': - case 'dddd': - a = getLangDefinition(config._l).weekdaysParse(input); - // if we didn't get a weekday name, mark the date as invalid - if (a != null) { - config._w = config._w || {}; - config._w['d'] = a; - } else { - config._pf.invalidWeekday = input; + } + else { + if (this._ids[id]) { + delete this._ids[id]; + removed.push(id); } - 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); + else { + // nothing interesting for me :-( } - break; - case 'gg': - case 'GG': - config._w = config._w || {}; - config._w[token] = moment.parseTwoDigitYear(input); + } } - } - function dayOfYearFromWeekInfo(config) { - var w, weekYear, week, weekday, dow, doy, temp, lang; + break; - w = config._w; - if (w.GG != null || w.W != null || w.E != null) { - dow = 1; - doy = 4; + 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); + } + } - // TODO: We need to take the current isoWeekYear, but that depends on - // how we interpret now (local, utc, fixed offset). So create - // a now version of current config (take local/utc/offset flags, and - // create now). - weekYear = dfl(w.GG, config._a[YEAR], weekOfYear(moment(), 1, 4).year); - week = dfl(w.W, 1); - weekday = dfl(w.E, 1); - } else { - lang = getLangDefinition(config._l); - dow = lang._week.dow; - doy = lang._week.doy; + break; + } - weekYear = dfl(w.gg, config._a[YEAR], weekOfYear(moment(), dow, doy).year); - week = dfl(w.w, 1); + 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); + } + } + }; - 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); + // copy subscription functionality from DataSet + DataView.prototype.on = DataSet.prototype.on; + DataView.prototype.off = DataSet.prototype.off; + DataView.prototype._trigger = DataSet.prototype._trigger; - config._a[YEAR] = temp.year; - config._dayOfYear = temp.dayOfYear; - } + // 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; - // 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; + module.exports = DataView; - if (config._d) { - return; - } +/***/ }, +/* 5 */ +/***/ function(module, exports, __webpack_require__) { - currentDate = currentDateArray(config); + var Emitter = __webpack_require__(46); + var DataSet = __webpack_require__(3); + var DataView = __webpack_require__(4); + var util = __webpack_require__(2); + var Point3d = __webpack_require__(9); + var Point2d = __webpack_require__(8); + var Camera = __webpack_require__(6); + var Filter = __webpack_require__(7); + var Slider = __webpack_require__(10); + var StepNumber = __webpack_require__(11); - //compute day of the year from weeks and weekdays - if (config._w && config._a[DATE] == null && config._a[MONTH] == null) { - dayOfYearFromWeekInfo(config); - } + /** + * @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'); + } - //if the day of the year is set, figure out what it is - if (config._dayOfYear) { - yearToUse = dfl(config._a[YEAR], currentDate[YEAR]); + // 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%'; - if (config._dayOfYear > daysInYear(yearToUse)) { - config._pf._overflowDayOfYear = true; - } + this.xLabel = 'x'; + this.yLabel = 'y'; + this.zLabel = 'z'; + this.filterLabel = 'time'; + this.legendLabel = 'value'; - date = makeUTCDate(yearToUse, 0, config._dayOfYear); - config._a[MONTH] = date.getUTCMonth(); - config._a[DATE] = date.getUTCDate(); - } + 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' - // 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]; - } + this.animationInterval = 1000; // milliseconds + this.animationPreload = false; - // 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]; - } + this.camera = new Camera(); + this.eye = new Point3d(0, 0, -1); // TODO: set eye.z about 3/4 of the width of the window? - config._d = (config._useUTC ? makeUTCDate : makeDate).apply(null, input); - // Apply timezone offset from input. The actual zone can be changed - // with parseZone. - if (config._tzm != null) { - config._d.setUTCMinutes(config._d.getUTCMinutes() + config._tzm); - } - } + this.dataTable = null; // The original data table + this.dataPoints = null; // The table with point objects - function dateFromObject(config) { - var normalizedInput; + // the column indexes + this.colX = undefined; + this.colY = undefined; + this.colZ = undefined; + this.colValue = undefined; + this.colFilter = undefined; - if (config._d) { - 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 - normalizedInput = normalizeObjectUnits(config._i); - config._a = [ - normalizedInput.year, - normalizedInput.month, - normalizedInput.day, - normalizedInput.hour, - normalizedInput.minute, - normalizedInput.second, - normalizedInput.millisecond - ]; + // constants + this.colorAxis = '#4D4D4D'; + this.colorGrid = '#D3D3D3'; + this.colorDot = '#7DC1FF'; + this.colorDotBorder = '#3267D2'; - dateFromConfig(config); - } + // create a frame and canvas + this.create(); - 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()]; - } - } + // apply options (also when undefined) + this.setOptions(options); - // date from string and format string - function makeDateFromStringAndFormat(config) { + // apply data + if (data) { + this.setData(data); + } + } - if (config._f === moment.ISO_8601) { - parseISO(config); - return; - } + // Extend Graph3d with an Emitter mixin + Emitter(Graph3d.prototype); - config._a = []; - config._pf.empty = true; + /** + * Calculate the scaling values, dependent on the range in x, y, and z direction + */ + Graph3d.prototype._setScale = function() { + this.scale = new Point3d(1 / (this.xMax - this.xMin), + 1 / (this.yMax - this.yMin), + 1 / (this.zMax - this.zMin)); - // This array is used to make a Date, either with `new Date` or `Date.UTC` - var lang = getLangDefinition(config._l), - string = '' + config._i, - i, parsedInput, tokens, token, skipped, - stringLength = string.length, - totalParsedInputLength = 0; + // 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; + } + } - tokens = expandFormat(config._f, lang).match(formattingTokens) || []; + // scale the vertical axis + this.scale.z *= this.verticalRatio; + // TODO: can this be automated? verticalRatio? - 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); - } - } + // determine scale for (optional) value + this.scale.value = 1 / (this.valueMax - this.valueMin); - // add remaining unparsed input length to the string - config._pf.charsLeftOver = stringLength - totalParsedInputLength; - if (string.length > 0) { - config._pf.unusedInput.push(string); - } + // 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); + }; - // handle am pm - if (config._isPm && config._a[HOUR] < 12) { - config._a[HOUR] += 12; - } - // if is 12 am, change hours to 0 - if (config._isPm === false && config._a[HOUR] === 12) { - config._a[HOUR] = 0; - } - dateFromConfig(config); - checkOverflow(config); - } + /** + * 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); + }; - function unescapeFormat(s) { - return s.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) { - return p1 || p2 || p3 || p4; - }); - } + /** + * 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, - // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript - function regexpEscape(s) { - return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); - } + cx = this.camera.getCameraLocation().x, + cy = this.camera.getCameraLocation().y, + cz = this.camera.getCameraLocation().z, - // date from string and array of format strings - function makeDateFromStringAndArray(config) { - var tempConfig, - bestMoment, + // 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), - scoreToBeat, - i, - currentScore; + // calculate translation + dx = cosTy * (sinTz * (ay - cy) + cosTz * (ax - cx)) - sinTy * (az - cz), + dy = sinTx * (cosTy * (az - cz) + sinTy * (sinTz * (ay - cy) + cosTz * (ax - cx))) + cosTx * (cosTz * (ay - cy) - sinTz * (ax-cx)), + dz = cosTx * (cosTy * (az - cz) + sinTy * (sinTz * (ay - cy) + cosTz * (ax - cx))) - sinTx * (cosTz * (ay - cy) - sinTz * (ax-cx)); - if (config._f.length === 0) { - config._pf.invalidFormat = true; - config._d = new Date(NaN); - return; - } + return new Point3d(dx, dy, dz); + }; - for (i = 0; i < config._f.length; i++) { - currentScore = 0; - tempConfig = extend({}, config); - tempConfig._pf = defaultParsingFlags(); - tempConfig._f = config._f[i]; - makeDateFromStringAndFormat(tempConfig); + /** + * 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 (!isValid(tempConfig)) { - continue; - } + // 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()); + } - // if there is any input that was not parsed add a penalty for that format - currentScore += tempConfig._pf.charsLeftOver; + // 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); + }; - //or tokens - currentScore += tempConfig._pf.unusedTokens.length * 10; + /** + * 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; - tempConfig._pf.score = currentScore; + if (typeof(backgroundColor) === 'string') { + fill = backgroundColor; + stroke = 'none'; + strokeWidth = 0; + } + else if (typeof(backgroundColor) === 'object') { + if (backgroundColor.fill !== undefined) fill = backgroundColor.fill; + if (backgroundColor.stroke !== undefined) stroke = backgroundColor.stroke; + if (backgroundColor.strokeWidth !== undefined) strokeWidth = backgroundColor.strokeWidth; + } + else if (backgroundColor === undefined) { + // use use defaults + } + else { + throw 'Unsupported type of backgroundColor'; + } - if (scoreToBeat == null || currentScore < scoreToBeat) { - scoreToBeat = currentScore; - bestMoment = tempConfig; - } - } + this.frame.style.backgroundColor = fill; + this.frame.style.borderColor = stroke; + this.frame.style.borderWidth = strokeWidth + 'px'; + this.frame.style.borderStyle = 'solid'; + }; - extend(config, bestMoment || tempConfig); - } - // date from iso format - function parseISO(config) { - var i, l, - string = config._i, - match = isoRegex.exec(string); + /// 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 + }; - 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; - } - } + /** + * 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; + } - // date from iso format or fallback - function makeDateFromString(config) { - parseISO(config); - if (config._isValid === false) { - delete config._isValid; - moment.createFromInputFallback(config); - } - } + return -1; + }; - function makeDateFromInput(config) { - var input = config._i, - matched = aspNetJsonRegex.exec(input); + /** + * 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 (input === undefined) { - config._d = new Date(); - } else if (matched) { - config._d = new Date(+matched[1]); - } else if (typeof input === 'string') { - makeDateFromString(config); - } else if (isArray(input)) { - config._a = input.slice(0); - dateFromConfig(config); - } else if (isDate(input)) { - config._d = new Date(+input); - } else if (typeof(input) === 'object') { - dateFromObject(config); - } else if (typeof(input) === 'number') { - // from milliseconds - config._d = new Date(input); - } else { - moment.createFromInputFallback(config); - } + 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 makeDate(y, m, d, h, M, s, ms) { - //can't just apply() to create a date: - //http://stackoverflow.com/questions/181348/instantiating-a-javascript-object-by-calling-prototype-constructor-apply - var date = new Date(y, m, d, h, M, s, ms); - - //the date constructor doesn't accept years < 1970 - if (y < 1970) { - date.setFullYear(y); - } - return date; + if (data.getNumberOfColumns() > 4) { + this.colFilter = 4; } + } + else { + throw 'Unknown style "' + this.style + '"'; + } + }; - function makeUTCDate(y) { - var date = new Date(Date.UTC.apply(null, arguments)); - if (y < 1970) { - date.setUTCFullYear(y); - } - return date; - } + Graph3d.prototype.getNumberOfRows = function(data) { + return data.length; + } - function parseWeekday(input, language) { - if (typeof input === 'string') { - if (!isNaN(input)) { - input = parseInt(input, 10); - } - else { - input = language.weekdaysParse(input); - if (typeof input !== 'number') { - return null; - } - } - } - return input; - } - /************************************ - Relative Time - ************************************/ + Graph3d.prototype.getNumberOfColumns = function(data) { + var counter = 0; + for (var column in data[0]) { + if (data[0].hasOwnProperty(column)) { + counter++; + } + } + return counter; + } - // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize - function substituteTimeAgo(string, number, withoutSuffix, isFuture, lang) { - return lang.relativeTime(number || 1, !!withoutSuffix, string, isFuture); + 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; + } - function relativeTime(milliseconds, withoutSuffix, lang) { - var seconds = round(Math.abs(milliseconds) / 1000), - minutes = round(seconds / 60), - hours = round(minutes / 60), - days = round(hours / 24), - years = round(days / 365), - args = seconds < relativeTimeThresholds.s && ['s', seconds] || - minutes === 1 && ['m'] || - minutes < relativeTimeThresholds.m && ['mm', minutes] || - hours === 1 && ['h'] || - hours < relativeTimeThresholds.h && ['hh', hours] || - days === 1 && ['d'] || - days <= relativeTimeThresholds.dd && ['dd', days] || - days <= relativeTimeThresholds.dm && ['M'] || - days < relativeTimeThresholds.dy && ['MM', round(days / 30)] || - years === 1 && ['y'] || ['yy', years]; - args[2] = withoutSuffix; - args[3] = milliseconds > 0; - args[4] = lang; - return substituteTimeAgo.apply({}, args); - } + 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; + }; - /************************************ - Week of Year - ************************************/ + /** + * 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; + // unsubscribe from the dataTable + if (this.dataSet) { + this.dataSet.off('*', this._onChange); + } - // firstDayOfWeek 0 = sun, 6 = sat - // the day of the week that starts the week - // (usually sunday or monday) - // firstDayOfWeekOfYear 0 = sun, 6 = sat - // the first week is the week that contains the first - // of this day of the week - // (eg. ISO weeks use thursday (4)) - function weekOfYear(mom, firstDayOfWeek, firstDayOfWeekOfYear) { - var end = firstDayOfWeekOfYear - firstDayOfWeek, - daysToDayOfWeek = firstDayOfWeekOfYear - mom.day(), - adjustedMoment; + if (rawData === undefined) + return; + if (Array.isArray(rawData)) { + rawData = new DataSet(rawData); + } - if (daysToDayOfWeek > end) { - daysToDayOfWeek -= 7; - } + var data; + if (rawData instanceof DataSet || rawData instanceof DataView) { + data = rawData.get(); + } + else { + throw new Error('Array, DataSet, or DataView expected'); + } - if (daysToDayOfWeek < end - 7) { - daysToDayOfWeek += 7; - } + if (data.length == 0) + return; - adjustedMoment = moment(mom).add('d', daysToDayOfWeek); - return { - week: Math.ceil(adjustedMoment.dayOfYear() / 7), - year: adjustedMoment.year() - }; - } + this.dataSet = rawData; + this.dataTable = data; - //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; + // subscribe to changes in the dataset + this._onChange = function () { + me.setData(me.dataSet); + }; + this.dataSet.on('*', this._onChange); - 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; + // _determineColumnIndexes + // getNumberOfRows (points) + // getNumberOfColumns (x,y,z,v,t,t1,t2...) + // getDistinctValues (unique values?) + // getColumnRange - return { - year: dayOfYear > 0 ? year : year - 1, - dayOfYear: dayOfYear > 0 ? dayOfYear : daysInYear(year - 1) + dayOfYear - }; - } + // 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'; - /************************************ - Top Level Functions - ************************************/ - function makeMoment(config) { - var input = config._i, - format = config._f; - 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 = getLangDefinition().preparse(input); - } - if (moment.isMoment(input)) { - config = cloneMoment(input); + var withBars = this.style == Graph3d.STYLE.BAR || + this.style == Graph3d.STYLE.BARCOLOR || + this.style == Graph3d.STYLE.BARSIZE; - config._d = new Date(+input._d); - } else if (format) { - if (isArray(format)) { - makeDateFromStringAndArray(config); - } else { - makeDateFromStringAndFormat(config); - } - } else { - makeDateFromInput(config); - } - - return new Moment(config); + // 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; } - moment = function (input, format, lang, strict) { - var c; - - if (typeof(lang) === "boolean") { - strict = lang; - lang = undefined; - } - // object construction must be done this way. - // https://github.com/moment/moment/issues/1423 - c = {}; - c._isAMomentObject = true; - c._i = input; - c._f = format; - c._l = lang; - c._strict = strict; - c._isUTC = false; - c._pf = defaultParsingFlags(); - - return makeMoment(c); - }; + if (this.defaultYBarWidth !== undefined) { + this.yBarWidth = this.defaultYBarWidth; + } + else { + var dataY = this.getDistinctValues(data,this.colY); + this.yBarWidth = (dataY[1] - dataY[0]) || 1; + } + } - moment.suppressDeprecationWarnings = false; + // 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; - 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); - }); + 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; - // 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; - } + 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.min = function () { - var args = [].slice.call(arguments, 0); + 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; + } - return pickBy('isBefore', args); - }; + // set the scale dependent on the ranges. + this._setScale(); + }; - moment.max = function () { - var args = [].slice.call(arguments, 0); - return pickBy('isAfter', args); - }; - // creating with utc - moment.utc = function (input, format, lang, strict) { - var c; + /** + * Filter the data based on the current filter + * @param {Array} data + * @return {Array} dataPoints Array with point objects which can be drawn on screen + */ + Graph3d.prototype._getDataPoints = function (data) { + // TODO: store the created matrix dataPoints in the filters instead of reloading each time + var x, y, i, z, obj, point; - if (typeof(lang) === "boolean") { - strict = lang; - lang = undefined; - } - // object construction must be done this way. - // https://github.com/moment/moment/issues/1423 - c = {}; - c._isAMomentObject = true; - c._useUTC = true; - c._isUTC = true; - c._l = lang; - c._i = input; - c._f = format; - c._strict = strict; - c._pf = defaultParsingFlags(); + var dataPoints = []; - return makeMoment(c).utc(); - }; + 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 - // creating with unix timestamp (in seconds) - moment.unix = function (input) { - return moment(input * 1000); - }; + // 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; - // duration - moment.duration = function (input, key) { - var duration = input, - // matching against regexp is expensive, do it on demand - match = null, - sign, - ret, - parseIso; + if (dataX.indexOf(x) === -1) { + dataX.push(x); + } + if (dataY.indexOf(y) === -1) { + dataY.push(y); + } + } - 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]) - }; - } + function sortNumber(a, b) { + return a - b; + } + dataX.sort(sortNumber); + dataY.sort(sortNumber); - ret = new Duration(duration); + // 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) && input.hasOwnProperty('_lang')) { - ret._lang = input._lang; - } + var xIndex = dataX.indexOf(x); // TODO: implement Array().indexOf() for Internet Explorer + var yIndex = dataY.indexOf(y); - return ret; - }; + if (dataMatrix[xIndex] === undefined) { + dataMatrix[xIndex] = []; + } - // version number - moment.version = VERSION; + var point3d = new Point3d(); + point3d.x = x; + point3d.y = y; + point3d.z = z; - // default format - moment.defaultFormat = isoFormat; + obj = {}; + obj.point = point3d; + obj.trans = undefined; + obj.screen = undefined; + obj.bottom = new Point3d(x, y, this.zMin); - // constant that refers to the ISO standard - moment.ISO_8601 = function () {}; + dataMatrix[xIndex][yIndex] = obj; - // Plugins that add properties should also add the key here (null value), - // so we can properly clone ourselves. - moment.momentProperties = momentProperties; + dataPoints.push(obj); + } - // This function will be called whenever a moment is mutated. - // It is intended to keep the offset in sync with the timezone. - moment.updateOffset = function () {}; - - // This function allows you to set a threshold for relative time strings - moment.relativeTimeThreshold = function(threshold, limit) { - if (relativeTimeThresholds[threshold] === undefined) { - return false; - } - relativeTimeThresholds[threshold] = limit; - return true; - }; - - // This function will load languages and then set the global language. If - // no arguments are passed in, it will simply return the current global - // language key. - moment.lang = function (key, values) { - var r; - if (!key) { - return moment.fn._lang._abbr; - } - if (values) { - loadLang(normalizeLanguage(key), values); - } else if (values === null) { - unloadLang(key); - key = 'en'; - } else if (!languages[key]) { - getLangDefinition(key); - } - r = moment.duration.fn._lang = moment.fn._lang = getLangDefinition(key); - return r._abbr; - }; - - // returns language data - moment.langData = function (key) { - if (key && key._lang && key._lang._abbr) { - key = key._lang._abbr; + // 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; } - return getLangDefinition(key); - }; + } + } + } + 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; - // compare moment object - moment.isMoment = function (obj) { - return obj instanceof Moment || - (obj != null && obj.hasOwnProperty('_isAMomentObject')); - }; + if (this.colValue !== undefined) { + point.value = data[i][this.colValue] || 0; + } - // for typechecking Duration objects - moment.isDuration = function (obj) { - return obj instanceof Duration; - }; + obj = {}; + obj.point = point; + obj.bottom = new Point3d(point.x, point.y, this.zMin); + obj.trans = undefined; + obj.screen = undefined; - for (i = lists.length - 1; i >= 0; --i) { - makeList(lists[i]); + dataPoints.push(obj); } + } - moment.normalizeUnits = function (units) { - return normalizeUnits(units); - }; + return dataPoints; + }; - moment.invalid = function (flags) { - var m = moment.utc(NaN); - if (flags != null) { - extend(m._pf, flags); - } - else { - m._pf.userInvalidated = true; - } + /** + * Create the main frame for the Graph3d. + * This function is executed once when a Graph3d object is created. The frame + * contains a canvas, and this canvas contains all objects like the axis and + * nodes. + */ + Graph3d.prototype.create = function () { + // remove all elements from the container element. + while (this.containerElement.hasChildNodes()) { + this.containerElement.removeChild(this.containerElement.firstChild); + } - return m; - }; + this.frame = document.createElement('div'); + this.frame.style.position = 'relative'; + this.frame.style.overflow = 'hidden'; - moment.parseZone = function () { - return moment.apply(null, arguments).parseZone(); - }; + // 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); + } - moment.parseTwoDigitYear = function (input) { - return toInt(input) + (toInt(input) > 68 ? 1900 : 2000); - }; + 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 Prototype - ************************************/ + // 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); - extend(moment.fn = Moment.prototype, { + // add the new graph to the container element + this.containerElement.appendChild(this.frame); + }; - clone : function () { - return moment(this); - }, - valueOf : function () { - return +this._d + ((this._offset || 0) * 60000); - }, + /** + * 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; - unix : function () { - return Math.floor(+this / 1000); - }, + this._resizeCanvas(); + }; - toString : function () { - return this.clone().lang('en').format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ"); - }, + /** + * 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%'; - toDate : function () { - return this._offset ? new Date(+this) : this._d; - }, + this.frame.canvas.width = this.frame.canvas.clientWidth; + this.frame.canvas.height = this.frame.canvas.clientHeight; - toISOString : function () { - var m = moment(this).utc(); - if (0 < m.year() && m.year() <= 9999) { - return formatMoment(m, 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]'); - } else { - return formatMoment(m, 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]'); - } - }, + // adjust with for margin + this.frame.filter.style.width = (this.frame.canvas.clientWidth - 2 * 10) + 'px'; + }; - toArray : function () { - var m = this; - return [ - m.year(), - m.month(), - m.date(), - m.hours(), - m.minutes(), - m.seconds(), - m.milliseconds() - ]; - }, + /** + * Start animation + */ + Graph3d.prototype.animationStart = function() { + if (!this.frame.filter || !this.frame.filter.slider) + throw 'No animation available'; - isValid : function () { - return isValid(this); - }, + this.frame.filter.slider.play(); + }; - isDSTShifted : function () { - if (this._a) { - return this.isValid() && compareArrays(this._a, (this._isUTC ? moment.utc(this._a) : moment(this._a)).toArray()) > 0; - } + /** + * Stop animation + */ + Graph3d.prototype.animationStop = function() { + if (!this.frame.filter || !this.frame.filter.slider) return; - return false; - }, + this.frame.filter.slider.stop(); + }; - parsingFlags : function () { - return extend({}, this._pf); - }, - invalidAt: function () { - return this._pf.overflow; - }, + /** + * 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 + } - utc : function () { - return this.zone(0); - }, + // 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 + } + }; - local : function () { - this.zone(0); - this._isUTC = false; - return this; - }, + /** + * 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; + } - format : function (inputString) { - var output = formatMoment(this, inputString || moment.defaultFormat); - return this.lang().postformat(output); - }, + if (pos.horizontal !== undefined && pos.vertical !== undefined) { + this.camera.setArmRotation(pos.horizontal, pos.vertical); + } - add : function (input, val) { - var dur; - // switch args to support add('s', 1) and add(1, 's') - if (typeof input === 'string' && typeof val === 'string') { - dur = moment.duration(isNaN(+val) ? +input : +val, isNaN(+val) ? val : input); - } else if (typeof input === 'string') { - dur = moment.duration(+val, input); - } else { - dur = moment.duration(input, val); - } - addOrSubtractDurationFromMoment(this, dur, 1); - return this; - }, + if (pos.distance !== undefined) { + this.camera.setArmLength(pos.distance); + } - subtract : function (input, val) { - var dur; - // switch args to support subtract('s', 1) and subtract(1, 's') - if (typeof input === 'string' && typeof val === 'string') { - dur = moment.duration(isNaN(+val) ? +input : +val, isNaN(+val) ? val : input); - } else if (typeof input === 'string') { - dur = moment.duration(+val, input); - } else { - dur = moment.duration(input, val); - } - addOrSubtractDurationFromMoment(this, dur, -1); - return this; - }, + this.redraw(); + }; - diff : function (input, units, asFloat) { - var that = makeAs(input, this), - zoneDiff = (this.zone() - that.zone()) * 6e4, - diff, output; - units = normalizeUnits(units); + /** + * 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; + }; - if (units === 'year' || units === 'month') { - // average number of days in the months in the given dates - diff = (this.daysInMonth() + that.daysInMonth()) * 432e5; // 24 * 60 * 60 * 1000 / 2 - // difference in months - output = ((this.year() - that.year()) * 12) + (this.month() - that.month()); - // adjust by taking difference in days, average number of days - // and dst in the given months. - output += ((this - moment(this).startOf('month')) - - (that - moment(that).startOf('month'))) / diff; - // same as above but with zones, to negate all dst - output -= ((this.zone() - moment(this).startOf('month').zone()) - - (that.zone() - moment(that).startOf('month').zone())) * 6e4 / diff; - if (units === 'year') { - output = output / 12; - } - } else { - diff = (this - that); - output = units === 'second' ? diff / 1e3 : // 1000 - units === 'minute' ? diff / 6e4 : // 1000 * 60 - units === 'hour' ? diff / 36e5 : // 1000 * 60 * 60 - units === 'day' ? (diff - zoneDiff) / 864e5 : // 1000 * 60 * 60 * 24, negate dst - units === 'week' ? (diff - zoneDiff) / 6048e5 : // 1000 * 60 * 60 * 24 * 7, negate dst - diff; - } - return asFloat ? output : absRound(output); - }, + /** + * Load data into the 3D Graph + */ + Graph3d.prototype._readData = function(data) { + // read the data + this._dataInitialize(data, this.style); - from : function (time, withoutSuffix) { - return moment.duration(this.diff(time)).lang(this.lang()._abbr).humanize(!withoutSuffix); - }, - fromNow : function (withoutSuffix) { - return this.from(moment(), withoutSuffix); - }, + if (this.dataFilter) { + // apply filtering + this.dataPoints = this.dataFilter._getDataPoints(); + } + else { + // no filtering. load all data + this.dataPoints = this._getDataPoints(this.dataTable); + } - calendar : function (time) { - // We want to compare the start of today, vs this. - // Getting start-of-today depends on whether we're zone'd or not. - var now = time || moment(), - sod = makeAs(now, this).startOf('day'), - diff = this.diff(sod, 'days', true), - format = diff < -6 ? 'sameElse' : - diff < -1 ? 'lastWeek' : - diff < 0 ? 'lastDay' : - diff < 1 ? 'sameDay' : - diff < 2 ? 'nextDay' : - diff < 7 ? 'nextWeek' : 'sameElse'; - return this.format(this.lang().calendar(format, this)); - }, + // draw the filter + this._redrawFilter(); + }; - isLeapYear : function () { - return isLeapYear(this.year()); - }, + /** + * Replace the dataset of the Graph3d + * @param {Array | DataSet | DataView} data + */ + Graph3d.prototype.setData = function (data) { + this._readData(data); + this.redraw(); - isDST : function () { - return (this.zone() < this.clone().month(0).zone() || - this.zone() < this.clone().month(5).zone()); - }, + // start animation when option is true + if (this.animationAutoStart && this.dataFilter) { + this.animationStart(); + } + }; - day : function (input) { - var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay(); - if (input != null) { - input = parseWeekday(input, this.lang()); - return this.add({ d : input - day }); - } else { - return day; - } - }, + /** + * Update the options. Options will be merged with current options + * @param {Object} options + */ + Graph3d.prototype.setOptions = function (options) { + var cameraPosition = undefined; - month : makeAccessor('Month', true), + this.animationStop(); - startOf: function (units) { - units = normalizeUnits(units); - // the following switch intentionally omits break keywords - // to utilize falling through the cases. - switch (units) { - case 'year': - this.month(0); - /* falls through */ - case 'quarter': - case 'month': - this.date(1); - /* falls through */ - case 'week': - case 'isoWeek': - case 'day': - this.hours(0); - /* falls through */ - case 'hour': - this.minutes(0); - /* falls through */ - case 'minute': - this.seconds(0); - /* falls through */ - case 'second': - this.milliseconds(0); - /* falls through */ - } + if (options !== undefined) { + // retrieve parameter values + if (options.width !== undefined) this.width = options.width; + if (options.height !== undefined) this.height = options.height; - // weeks are a special case - if (units === 'week') { - this.weekday(0); - } else if (units === 'isoWeek') { - this.isoWeekday(1); - } + if (options.xCenter !== undefined) this.defaultXCenter = options.xCenter; + if (options.yCenter !== undefined) this.defaultYCenter = options.yCenter; - // quarters are also special - if (units === 'quarter') { - this.month(Math.floor(this.month() / 3) * 3); - } + if (options.filterLabel !== undefined) this.filterLabel = options.filterLabel; + if (options.legendLabel !== undefined) this.legendLabel = options.legendLabel; + if (options.xLabel !== undefined) this.xLabel = options.xLabel; + if (options.yLabel !== undefined) this.yLabel = options.yLabel; + if (options.zLabel !== undefined) this.zLabel = options.zLabel; - return 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; - endOf: function (units) { - units = normalizeUnits(units); - return this.startOf(units).add((units === 'isoWeek' ? 'week' : units), 1).subtract('ms', 1); - }, - - isAfter: function (input, units) { - units = typeof units !== 'undefined' ? units : 'millisecond'; - return +this.clone().startOf(units) > +moment(input).startOf(units); - }, + if (options.animationInterval !== undefined) this.animationInterval = options.animationInterval; + if (options.animationPreload !== undefined) this.animationPreload = options.animationPreload; + if (options.animationAutoStart !== undefined)this.animationAutoStart = options.animationAutoStart; - isBefore: function (input, units) { - units = typeof units !== 'undefined' ? units : 'millisecond'; - return +this.clone().startOf(units) < +moment(input).startOf(units); - }, + if (options.xBarWidth !== undefined) this.defaultXBarWidth = options.xBarWidth; + if (options.yBarWidth !== undefined) this.defaultYBarWidth = options.yBarWidth; - isSame: function (input, units) { - units = units || 'ms'; - return +this.clone().startOf(units) === +makeAs(input, this).startOf(units); - }, + 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; - 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; - } - ), + if (options.cameraPosition !== undefined) cameraPosition = options.cameraPosition; - 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; - } - ), + if (cameraPosition !== undefined) { + this.camera.setArmRotation(cameraPosition.horizontal, cameraPosition.vertical); + this.camera.setArmLength(cameraPosition.distance); + } + else { + this.camera.setArmRotation(1.0, 0.5); + this.camera.setArmLength(1.7); + } + } - // keepTime = true means only change the timezone, without affecting - // the local hour. So 5:31:26 +0300 --[zone(2, true)]--> 5:31:26 +0200 - // It is possible that 5:31:26 doesn't exist int zone +0200, so we - // adjust the time as needed, to be valid. - // - // Keeping the time actually adds/subtracts (one hour) - // from the actual represented time. That is why we call updateOffset - // a second time. In case it wants us to change the offset again - // _changeInProgress == true case, then we have to adjust, because - // there is no such time in the given timezone. - zone : function (input, keepTime) { - var offset = this._offset || 0; - if (input != null) { - if (typeof input === "string") { - input = timezoneMinutesFromString(input); - } - if (Math.abs(input) < 16) { - input = input * 60; - } - this._offset = input; - this._isUTC = true; - if (offset !== input) { - if (!keepTime || this._changeInProgress) { - addOrSubtractDurationFromMoment(this, - moment.duration(offset - input, 'm'), 1, false); - } else if (!this._changeInProgress) { - this._changeInProgress = true; - moment.updateOffset(this, true); - this._changeInProgress = null; - } - } - } else { - return this._isUTC ? offset : this._d.getTimezoneOffset(); - } - return this; - }, + this._setBackgroundColor(options && options.backgroundColor); - zoneAbbr : function () { - return this._isUTC ? "UTC" : ""; - }, + this.setSize(this.width, this.height); - zoneName : function () { - return this._isUTC ? "Coordinated Universal Time" : ""; - }, + // re-load the data + if (this.dataTable) { + this.setData(this.dataTable); + } - parseZone : function () { - if (this._tzm) { - this.zone(this._tzm); - } else if (typeof this._i === 'string') { - this.zone(this._i); - } - return this; - }, + // start animation when option is true + if (this.animationAutoStart && this.dataFilter) { + this.animationStart(); + } + }; - hasAlignedHourOffset : function (input) { - if (!input) { - input = 0; - } - else { - input = moment(input).zone(); - } + /** + * Redraw the Graph. + */ + Graph3d.prototype.redraw = function() { + if (this.dataPoints === undefined) { + throw 'Error: graph data not initialized'; + } - return (this.zone() - input) % 60 === 0; - }, + this._resizeCanvas(); + this._resizeCenter(); + this._redrawSlider(); + this._redrawClear(); + this._redrawAxis(); - daysInMonth : function () { - return daysInMonth(this.year(), this.month()); - }, + 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(); + } - dayOfYear : function (input) { - var dayOfYear = round((moment(this).startOf('day') - moment(this).startOf('year')) / 864e5) + 1; - return input == null ? dayOfYear : this.add("d", (input - dayOfYear)); - }, + this._redrawInfo(); + this._redrawLegend(); + }; - quarter : function (input) { - return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3); - }, + /** + * Clear the canvas before redrawing + */ + Graph3d.prototype._redrawClear = function() { + var canvas = this.frame.canvas; + var ctx = canvas.getContext('2d'); - weekYear : function (input) { - var year = weekOfYear(this, this.lang()._week.dow, this.lang()._week.doy).year; - return input == null ? year : this.add("y", (input - year)); - }, + ctx.clearRect(0, 0, canvas.width, canvas.height); + }; - isoWeekYear : function (input) { - var year = weekOfYear(this, 1, 4).year; - return input == null ? year : this.add("y", (input - year)); - }, - week : function (input) { - var week = this.lang().week(this); - return input == null ? week : this.add("d", (input - week) * 7); - }, + /** + * Redraw the legend showing the colors + */ + Graph3d.prototype._redrawLegend = function() { + var y; - isoWeek : function (input) { - var week = weekOfYear(this, 1, 4).week; - return input == null ? week : this.add("d", (input - week) * 7); - }, + if (this.style === Graph3d.STYLE.DOTCOLOR || + this.style === Graph3d.STYLE.DOTSIZE) { - weekday : function (input) { - var weekday = (this.day() + 7 - this.lang()._week.dow) % 7; - return input == null ? weekday : this.add("d", input - weekday); - }, + var dotSize = this.frame.clientWidth * 0.02; - 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); - }, + 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 + } - isoWeeksInYear : function () { - return weeksInYear(this.year(), 1, 4); - }, + 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; + } - weeksInYear : function () { - var weekInfo = this._lang._week; - return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy); - }, + var canvas = this.frame.canvas; + var ctx = canvas.getContext('2d'); + ctx.lineWidth = 1; + ctx.font = '14px arial'; // TODO: put in options - get : function (units) { - units = normalizeUnits(units); - return this[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); - set : function (units, value) { - units = normalizeUnits(units); - if (typeof this[units] === 'function') { - this[units](value); - } - return this; - }, + //var width = (dotSize / 2 + (1-f) * dotSize * 2); // Todo: put this in one function + var hue = f * 240; + var color = this._hsv2rgb(hue, 1, 1); - // If passed a language key, it will set the language for this - // instance. Otherwise, it will return the language configuration - // variables for this instance. - lang : function (key) { - if (key === undefined) { - return this._lang; - } else { - this._lang = getLangDefinition(key); - return this; - } - } - }); + ctx.strokeStyle = color; + ctx.beginPath(); + ctx.moveTo(left, top + y); + ctx.lineTo(right, top + y); + ctx.stroke(); + } - function rawMonthSetter(mom, value) { - var dayOfMonth; + ctx.strokeStyle = this.colorAxis; + ctx.strokeRect(left, top, widthMax, height); + } - // TODO: Move this out of here! - if (typeof value === 'string') { - value = mom.lang().monthsParse(value); - // TODO: Another silent failure? - if (typeof value !== 'number') { - return mom; - } - } + 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(); + } - dayOfMonth = Math.min(mom.date(), - daysInMonth(mom.year(), value)); - mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth); - return mom; + 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; - function rawGetter(mom, unit) { - return mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit](); - } + ctx.beginPath(); + ctx.moveTo(left - gridLineLen, y); + ctx.lineTo(left, y); + ctx.stroke(); - function rawSetter(mom, unit, value) { - if (unit === 'Month') { - return rawMonthSetter(mom, value); - } else { - return mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value); - } - } + ctx.textAlign = 'right'; + ctx.textBaseline = 'middle'; + ctx.fillStyle = this.colorAxis; + ctx.fillText(step.getCurrent(), left - 2 * gridLineLen, y); - 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); - } - }; + step.next(); } - 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)); + ctx.textAlign = 'right'; + ctx.textBaseline = 'top'; + var label = this.legendLabel; + ctx.fillText(label, right, bottom + this.margin); + } + }; - // 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; + /** + * Redraw the filter + */ + Graph3d.prototype._redrawFilter = function() { + this.frame.filter.innerHTML = ''; - // add aliased format methods - moment.fn.toJSON = moment.fn.toISOString; + if (this.dataFilter) { + var options = { + 'visible': this.showAnimationControls + }; + var slider = new Slider(this.frame.filter, options); + this.frame.filter.slider = slider; - /************************************ - Duration Prototype - ************************************/ + // TODO: css here is not nice here... + this.frame.filter.style.padding = '10px'; + //this.frame.filter.style.backgroundColor = '#EFEFEF'; + slider.setValues(this.dataFilter.values); + slider.setPlayInterval(this.animationInterval); - extend(moment.duration.fn = Duration.prototype, { + // create an event handler + var me = this; + var onchange = function () { + var index = slider.getIndex(); - _bubble : function () { - var milliseconds = this._milliseconds, - days = this._days, - months = this._months, - data = this._data, - seconds, minutes, hours, years; + me.dataFilter.selectValue(index); + me.dataPoints = me.dataFilter._getDataPoints(); - // The following code bubbles up values, see the tests for - // examples of what that means. - data.milliseconds = milliseconds % 1000; + me.redraw(); + }; + slider.setOnChangeCallback(onchange); + } + else { + this.frame.filter.slider = undefined; + } + }; - seconds = absRound(milliseconds / 1000); - data.seconds = seconds % 60; + /** + * Redraw the slider + */ + Graph3d.prototype._redrawSlider = function() { + if ( this.frame.filter.slider !== undefined) { + this.frame.filter.slider.redraw(); + } + }; - minutes = absRound(seconds / 60); - data.minutes = minutes % 60; - hours = absRound(minutes / 60); - data.hours = hours % 24; + /** + * Redraw common information + */ + Graph3d.prototype._redrawInfo = function() { + if (this.dataFilter) { + var canvas = this.frame.canvas; + var ctx = canvas.getContext('2d'); - days += absRound(hours / 24); - data.days = days % 30; + ctx.font = '14px arial'; // TODO: put in options + ctx.lineStyle = 'gray'; + ctx.fillStyle = 'gray'; + ctx.textAlign = 'left'; + ctx.textBaseline = 'top'; - months += absRound(days / 30); - data.months = months % 12; + var x = this.margin; + var y = this.margin; + ctx.fillText(this.dataFilter.getLabel() + ': ' + this.dataFilter.getSelectedValue(), x, y); + } + }; - years = absRound(months / 12); - data.years = years; - }, - weeks : function () { - return absRound(this.days() / 7); - }, + /** + * 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; - valueOf : function () { - return this._milliseconds + - this._days * 864e5 + - (this._months % 12) * 2592e6 + - toInt(this._months / 12) * 31536e6; - }, + // TODO: get the actual rendered style of the containerElement + //ctx.font = this.containerElement.style.font; + ctx.font = 24 / this.camera.getArmLength() + 'px arial'; - humanize : function (withSuffix) { - var difference = +this, - output = relativeTime(difference, !withSuffix, this.lang()); + // 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; - if (withSuffix) { - output = this.lang().pastFuture(difference, output); - } + // 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(); - return this.lang().postformat(output); - }, + 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(); - add : function (input, val) { - // supports only 2.0-style add(1, 's') or add(moment) - var dur = moment.duration(input, val); - - this._milliseconds += dur._milliseconds; - this._days += dur._days; - this._months += dur._months; - - this._bubble(); + 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(); + } - return this; - }, + yText = (Math.cos(armAngle) > 0) ? this.yMin : this.yMax; + text = this._convert3Dto2D(new Point3d(x, yText, this.zMin)); + if (Math.cos(armAngle * 2) > 0) { + ctx.textAlign = 'center'; + ctx.textBaseline = 'top'; + text.y += textMargin; + } + else if (Math.sin(armAngle * 2) < 0){ + ctx.textAlign = 'right'; + ctx.textBaseline = 'middle'; + } + else { + ctx.textAlign = 'left'; + ctx.textBaseline = 'middle'; + } + ctx.fillStyle = this.colorAxis; + ctx.fillText(' ' + step.getCurrent() + ' ', text.x, text.y); - subtract : function (input, val) { - var dur = moment.duration(input, val); + step.next(); + } - this._milliseconds -= dur._milliseconds; - this._days -= dur._days; - this._months -= dur._months; + // draw y-grid lines + ctx.lineWidth = 1; + prettyStep = (this.defaultYStep === undefined); + step = new StepNumber(this.yMin, this.yMax, this.yStep, prettyStep); + step.start(); + if (step.getCurrent() < this.yMin) { + step.next(); + } + while (!step.end()) { + if (this.showGrid) { + from = this._convert3Dto2D(new Point3d(this.xMin, step.getCurrent(), this.zMin)); + to = this._convert3Dto2D(new Point3d(this.xMax, step.getCurrent(), this.zMin)); + ctx.strokeStyle = this.colorGrid; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); + } + else { + from = this._convert3Dto2D(new Point3d(this.xMin, step.getCurrent(), this.zMin)); + to = this._convert3Dto2D(new Point3d(this.xMin+gridLenY, step.getCurrent(), this.zMin)); + ctx.strokeStyle = this.colorAxis; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); - this._bubble(); + 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(); + } - return this; - }, + xText = (Math.sin(armAngle ) > 0) ? this.xMin : this.xMax; + text = this._convert3Dto2D(new Point3d(xText, step.getCurrent(), this.zMin)); + if (Math.cos(armAngle * 2) < 0) { + ctx.textAlign = 'center'; + ctx.textBaseline = 'top'; + text.y += textMargin; + } + else if (Math.sin(armAngle * 2) > 0){ + ctx.textAlign = 'right'; + ctx.textBaseline = 'middle'; + } + else { + ctx.textAlign = 'left'; + ctx.textBaseline = 'middle'; + } + ctx.fillStyle = this.colorAxis; + ctx.fillText(' ' + step.getCurrent() + ' ', text.x, text.y); - get : function (units) { - units = normalizeUnits(units); - return this[units.toLowerCase() + 's'](); - }, + step.next(); + } - as : function (units) { - units = normalizeUnits(units); - return this['as' + units.charAt(0).toUpperCase() + units.slice(1) + 's'](); - }, + // 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(); - lang : moment.fn.lang, + ctx.textAlign = 'right'; + ctx.textBaseline = 'middle'; + ctx.fillStyle = this.colorAxis; + ctx.fillText(step.getCurrent() + ' ', from.x - 5, from.y); - 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); + 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(); - if (!this.asSeconds()) { - // this is the same as C#'s (Noda) and python (isodate)... - // but not other JS (goog.date) - return 'P0D'; - } + // 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 (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' : ''); - } - }); + // 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 makeDurationGetter(name) { - moment.duration.fn[name] = function () { - return this._data[name]; - }; + // 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'; } - - function makeDurationAsGetter(name, factor) { - moment.duration.fn['as' + name] = function () { - return +this / factor; - }; + 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); + } - for (i in unitMillisecondFactors) { - if (unitMillisecondFactors.hasOwnProperty(i)) { - makeDurationAsGetter(i, unitMillisecondFactors[i]); - makeDurationGetter(i.toLowerCase()); - } + // 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); + } - makeDurationAsGetter('Weeks', 6048e5); - moment.duration.fn.asMonths = function () { - return (+this - this.years() * 31536e6) / 2592e6 + this.years() * 12; - }; + // 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); + } + }; + /** + * 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; - /************************************ - Default Lang - ************************************/ + C = V * S; + Hi = Math.floor(H/60); // hi = 0,1,2,3,4,5 + X = C * (1 - Math.abs(((H/60) % 2) - 1)); + switch (Hi) { + case 0: R = C; G = X; B = 0; break; + case 1: R = X; G = C; B = 0; break; + case 2: R = 0; G = C; B = X; break; + case 3: R = 0; G = X; B = C; break; + case 4: R = X; G = 0; B = C; break; + case 5: R = C; G = 0; B = X; break; - // Set default language, other languages will inherit from English. - moment.lang('en', { - ordinal : function (number) { - var b = number % 10, - output = (toInt(number % 100 / 10) === 1) ? 'th' : - (b === 1) ? 'st' : - (b === 2) ? 'nd' : - (b === 3) ? 'rd' : 'th'; - return number + output; - } - }); + default: R = 0; G = 0; B = 0; break; + } - /* EMBED_LANGUAGES */ + return 'RGB(' + parseInt(R*255) + ',' + parseInt(G*255) + ',' + parseInt(B*255) + ')'; + }; - /************************************ - Exposing Moment - ************************************/ - function makeGlobal(shouldDeprecate) { - /*global ender:false */ - if (typeof ender !== 'undefined') { - return; - } - oldGlobalMoment = globalScope.moment; - if (shouldDeprecate) { - globalScope.moment = deprecate( - "Accessing Moment through the global scope is " + - "deprecated, and will be removed in an upcoming " + - "release.", - moment); - } else { - globalScope.moment = moment; - } - } + /** + * 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; - // CommonJS module is defined - if (hasModule) { - module.exports = moment; - } else if (true) { - !(__WEBPACK_AMD_DEFINE_RESULT__ = (function (require, exports, module) { - if (module.config && module.config() && module.config().noGlobal === true) { - // release the global variable - globalScope.moment = oldGlobalMoment; - } - return moment; - }.call(exports, __webpack_require__, exports, module)), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); - makeGlobal(true); - } else { - makeGlobal(); - } - }).call(this); - - /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }()), __webpack_require__(5)(module))) + if (this.dataPoints === undefined || this.dataPoints.length <= 0) + return; // TODO: throw exception? -/***/ }, -/* 4 */ -/***/ function(module, exports, __webpack_require__) { + // 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); - var map = {}; - function webpackContext(req) { - return __webpack_require__(webpackContextResolve(req)); - }; - function webpackContextResolve(req) { - return map[req] || (function() { throw new Error("Cannot find module '" + req + "'.") }()); - }; - webpackContext.keys = function webpackContextKeys() { - return Object.keys(map); - }; - webpackContext.resolve = webpackContextResolve; - module.exports = webpackContext; + this.dataPoints[i].trans = trans; + this.dataPoints[i].screen = screen; + // 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; + } -/***/ }, -/* 5 */ -/***/ function(module, exports, __webpack_require__) { + // 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); - module.exports = function(module) { - if(!module.webpackPolyfill) { - module.deprecate = function() {}; - module.paths = []; - // module.parent = undefined by default - module.children = []; - module.webpackPolyfill = 1; - } - return module; - } + if (this.style === Graph3d.STYLE.SURFACE) { + for (i = 0; i < this.dataPoints.length; i++) { + point = this.dataPoints[i]; + right = this.dataPoints[i].pointRight; + top = this.dataPoints[i].pointTop; + cross = this.dataPoints[i].pointCross; + if (point !== undefined && right !== undefined && top !== undefined && cross !== undefined) { -/***/ }, -/* 6 */ -/***/ function(module, exports, __webpack_require__) { + 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) - // DOM utility methods + topSideVisible = (crossproduct.z > 0); + } + else { + topSideVisible = true; + } - /** - * 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 = []; - } - } - }; + 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 - /** - * 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]); + 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; + } } - JSONcontainer[elementType].redundant = []; + else { + fillStyle = 'gray'; + strokeStyle = this.colorAxis; + } + lineWidth = 0.5; + + ctx.lineWidth = lineWidth; + ctx.fillStyle = fillStyle; + ctx.strokeStyle = strokeStyle; + ctx.beginPath(); + ctx.moveTo(point.screen.x, point.screen.y); + ctx.lineTo(right.screen.x, right.screen.y); + ctx.lineTo(cross.screen.x, cross.screen.y); + ctx.lineTo(top.screen.x, top.screen.y); + ctx.closePath(); + ctx.fill(); + ctx.stroke(); } } } - }; + else { // grid style + for (i = 0; i < this.dataPoints.length; i++) { + point = this.dataPoints[i]; + right = this.dataPoints[i].pointRight; + top = this.dataPoints[i].pointTop; - /** - * 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); + if (point !== undefined) { + if (this.showPerspective) { + lineWidth = 2 / -point.trans.z; + } + else { + lineWidth = 2 * -(this.eye.z / this.camera.getArmLength()); + } + } + + if (point !== undefined && right !== undefined) { + // calculate Hue from the current value. At zMin the hue is 240, at zMax the hue is 0 + zAvg = (point.point.z + right.point.z) / 2; + h = (1 - (zAvg - this.zMin) * this.scale.z / this.verticalRatio) * 240; + + ctx.lineWidth = lineWidth; + ctx.strokeStyle = this._hsv2rgb(h, 1, 1); + ctx.beginPath(); + ctx.moveTo(point.screen.x, point.screen.y); + ctx.lineTo(right.screen.x, right.screen.y); + ctx.stroke(); + } + + if (point !== undefined && top !== undefined) { + // calculate Hue from the current value. At zMin the hue is 240, at zMax the hue is 0 + zAvg = (point.point.z + top.point.z) / 2; + h = (1 - (zAvg - this.zMin) * this.scale.z / this.verticalRatio) * 240; + + ctx.lineWidth = lineWidth; + ctx.strokeStyle = this._hsv2rgb(h, 1, 1); + ctx.beginPath(); + ctx.moveTo(point.screen.x, point.screen.y); + ctx.lineTo(top.screen.x, top.screen.y); + ctx.stroke(); + } } } - else { - // 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 + * Draw all datapoints as dots. + * This function can be used when the style is 'dot' or 'dot-line' */ - exports.getDOMElement = function (elementType, JSONcontainer, DOMContainer) { - var element; - // allocate DOM element, if it doesnt yet exist, create one. - if (JSONcontainer.hasOwnProperty(elementType)) { // this element has been created before - // check if there is an redundant element - if (JSONcontainer[elementType].redundant.length > 0) { - element = JSONcontainer[elementType].redundant[0]; - JSONcontainer[elementType].redundant.shift(); + 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? + + // calculate the translations of all points + for (i = 0; i < this.dataPoints.length; i++) { + var trans = this._convertPointToTranslation(this.dataPoints[i].point); + var screen = this._convertTranslationToScreen(trans); + this.dataPoints[i].trans = trans; + this.dataPoints[i].screen = screen; + + // calculate the distance from the point at the bottom to the camera + var transBottom = this._convertPointToTranslation(this.dataPoints[i].bottom); + this.dataPoints[i].dist = this.showPerspective ? transBottom.length() : -transBottom.z; + } + + // order the translated points by depth + var sortDepth = function (a, b) { + return b.dist - a.dist; + }; + this.dataPoints.sort(sortDepth); + + // draw the datapoints as colored circles + var dotSize = this.frame.clientWidth * 0.02; // px + for (i = 0; i < this.dataPoints.length; i++) { + var point = this.dataPoints[i]; + + 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 { - // create a new element and add it to the SVG - element = document.createElement(elementType); - DOMContainer.appendChild(element); + size = dotSize; } - } - else { - // create a new element and add it to the SVG, also create a new object in the svgElements to keep track of it. - element = document.createElement(elementType); - JSONcontainer[elementType] = {used: [], redundant: []}; - DOMContainer.appendChild(element); - } - JSONcontainer[elementType].used.push(element); - return element; - }; - + var radius; + if (this.showPerspective) { + radius = size / -point.trans.z; + } + else { + radius = size * -(this.eye.z / this.camera.getArmLength()); + } + if (radius < 0) { + radius = 0; + } + 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); + } - /** - * draw a point object. this is a seperate function because it can also be called by the legend. - * The reason the JSONcontainer and the target SVG svgContainer have to be supplied is so the legend can use these functions - * as well. - * - * @param x - * @param y - * @param group - * @param JSONcontainer - * @param svgContainer - * @returns {*} - */ - exports.drawPoint = function(x, y, group, JSONcontainer, svgContainer) { - var point; - if (group.options.drawPoints.style == 'circle') { - point = exports.getSVGElement('circle',JSONcontainer,svgContainer); - point.setAttributeNS(null, "cx", x); - point.setAttributeNS(null, "cy", y); - point.setAttributeNS(null, "r", 0.5 * group.options.drawPoints.size); - point.setAttributeNS(null, "class", group.className + " point"); - } - else { - point = exports.getSVGElement('rect',JSONcontainer,svgContainer); - point.setAttributeNS(null, "x", x - 0.5*group.options.drawPoints.size); - point.setAttributeNS(null, "y", y - 0.5*group.options.drawPoints.size); - point.setAttributeNS(null, "width", group.options.drawPoints.size); - point.setAttributeNS(null, "height", group.options.drawPoints.size); - point.setAttributeNS(null, "class", group.className + " point"); + // draw the circle + ctx.lineWidth = 1.0; + ctx.strokeStyle = borderColor; + ctx.fillStyle = color; + ctx.beginPath(); + ctx.arc(point.screen.x, point.screen.y, radius, 0, Math.PI*2, true); + ctx.fill(); + ctx.stroke(); } - return point; }; /** - * draw a bar SVG element centered on the X coordinate - * - * @param x - * @param y - * @param className + * Draw all datapoints as bars. + * This function can be used when the style is 'bar', 'bar-color', or 'bar-size' */ - exports.drawBar = function (x, y, width, height, className, JSONcontainer, svgContainer) { - // if (height != 0) { - var rect = exports.getSVGElement('rect',JSONcontainer, svgContainer); - rect.setAttributeNS(null, "x", x - 0.5 * width); - rect.setAttributeNS(null, "y", y); - rect.setAttributeNS(null, "width", width); - rect.setAttributeNS(null, "height", height); - rect.setAttributeNS(null, "class", className); - // } - }; + Graph3d.prototype._redrawDataBar = function() { + var canvas = this.frame.canvas; + var ctx = canvas.getContext('2d'); + var i, j, surface, corners; -/***/ }, -/* 7 */ -/***/ function(module, exports, __webpack_require__) { + if (this.dataPoints === undefined || this.dataPoints.length <= 0) + return; // TODO: throw exception? - var util = __webpack_require__(1); + // 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; - /** - * 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) { + 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); } - if ('*' in this._subscribers) { - subscribers = subscribers.concat(this._subscribers['*']); + + // 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); } - for (var i = 0; i < subscribers.length; i++) { - var subscriber = subscribers[i]; - if (subscriber.callback) { - subscriber.callback(event, params, senderId || null); - } + // finish the line + if (this.dataPoints.length > 0) { + ctx.stroke(); } }; /** - * 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 + * Start a moving operation inside the provided parent element + * @param {Event} event The event that occurred (required for + * retrieving the mouse position) */ - DataSet.prototype.add = function (data, senderId) { - var addedIds = [], - id, - me = this; + Graph3d.prototype._onMouseDown = function(event) { + event = event || window.event; - if (Array.isArray(data)) { - // Array - for (var i = 0, len = data.length; i < len; i++) { - id = me._addItem(data[i]); - addedIds.push(id); - } + // check if mouse is still down (may be up when focus is lost for example + // in an iframe) + if (this.leftButtonDown) { + this._onMouseUp(event); } - 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); - } - 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'); - } + // only react on left mouse button down + this.leftButtonDown = event.which ? (event.which === 1) : (event.button === 1); + if (!this.leftButtonDown && !this.touchDown) return; - if (addedIds.length) { - this._trigger('add', {items: addedIds}, senderId); - } + // get mouse position (different code for IE and all other browsers) + this.startMouseX = getMouseX(event); + this.startMouseY = getMouseY(event); - return addedIds; + 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); }; + /** - * 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 + * Perform moving operating. + * This function activated from within the funcion Graph.mouseDown(). + * @param {Event} event Well, eehh, the event */ - DataSet.prototype.update = function (data, senderId) { - var addedIds = [], - updatedIds = [], - me = this, - fieldId = me._fieldId; + Graph3d.prototype._onMouseMove = function (event) { + event = event || window.event; - var addOrUpdate = function (item) { - var id = item[fieldId]; - if (me._data[id]) { - // update item - id = me._updateItem(item); - updatedIds.push(id); - } - else { - // add new item - id = me._addItem(item); - addedIds.push(id); - } - }; + // calculate change in mouse position + var diffX = parseFloat(getMouseX(event)) - this.startMouseX; + var diffY = parseFloat(getMouseY(event)) - this.startMouseY; - 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); - } + var horizontalNew = this.startArmRotation.horizontal + diffX / 200; + var verticalNew = this.startArmRotation.vertical + diffY / 200; - addOrUpdate(item); - } - } - else if (data instanceof Object) { - // Single item - addOrUpdate(data); + var snapAngle = 4; // degrees + var snapValue = Math.sin(snapAngle / 360 * 2 * Math.PI); + + // snap horizontally to nice angles at 0pi, 0.5pi, 1pi, 1.5pi, etc... + // the -0.001 is to take care that the vertical axis is always drawn at the left front corner + if (Math.abs(Math.sin(horizontalNew)) < snapValue) { + horizontalNew = Math.round((horizontalNew / Math.PI)) * Math.PI - 0.001; } - else { - throw new Error('Unknown dataType'); + if (Math.abs(Math.cos(horizontalNew)) < snapValue) { + horizontalNew = (Math.round((horizontalNew/ Math.PI - 0.5)) + 0.5) * Math.PI - 0.001; } - if (addedIds.length) { - this._trigger('add', {items: addedIds}, senderId); + // snap vertically to nice angles + if (Math.abs(Math.sin(verticalNew)) < snapValue) { + verticalNew = Math.round((verticalNew / Math.PI)) * Math.PI; } - if (updatedIds.length) { - this._trigger('update', {items: updatedIds}, senderId); + if (Math.abs(Math.cos(verticalNew)) < snapValue) { + verticalNew = (Math.round((verticalNew/ Math.PI - 0.5)) + 0.5) * Math.PI; } - return addedIds.concat(updatedIds); + this.camera.setArmRotation(horizontalNew, verticalNew); + this.redraw(); + + // fire a cameraPositionChange event + var parameters = this.getCameraPosition(); + this.emit('cameraPositionChange', parameters); + + util.preventDefault(event); }; + /** - * 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 + * Stop moving operating. + * This function activated from within the funcion Graph.mouseDown(). + * @param {event} event The event */ - DataSet.prototype.get = function (args) { - var me = this; + Graph3d.prototype._onMouseUp = function (event) { + this.frame.style.cursor = 'auto'; + this.leftButtonDown = false; - // 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]; - } + // remove event listeners here + util.removeEventListener(document, 'mousemove', this.onmousemove); + util.removeEventListener(document, 'mouseup', this.onmouseup); + util.preventDefault(event); + }; - // determine the return type - var returnType; - if (options && options.returnType) { - var allowedValues = ["DataTable", "Array", "Object"]; - returnType = allowedValues.indexOf(options.returnType) == -1 ? "Array" : options.returnType; + /** + * 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 + */ + Graph3d.prototype._onTooltip = function (event) { + var delay = 300; // ms + var mouseX = getMouseX(event) - util.getAbsoluteLeft(this.frame); + var mouseY = getMouseY(event) - util.getAbsoluteTop(this.frame); - if (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'; + if (!this.showTooltip) { + return; } - // build options - var type = options && options.type || this._options.type; - var filter = options && options.filter; - var items = [], item, itemId, i, len; + if (this.tooltipTimeout) { + clearTimeout(this.tooltipTimeout); + } - // convert items - if (id != undefined) { - // return a single item - item = me._getItem(id, type); - if (filter && !filter(item)) { - item = null; - } + // (delayed) display of a tooltip only if no mouse button is down + if (this.leftButtonDown) { + this._hideTooltip(); + return; } - 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); + + if (this.tooltip && this.tooltip.dataPoint) { + // tooltip is currently visible + var dataPoint = this._dataPointFromXY(mouseX, mouseY); + if (dataPoint !== this.tooltip.dataPoint) { + // datapoint changed + if (dataPoint) { + this._showTooltip(dataPoint); + } + else { + this._hideTooltip(); } } } else { - // 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); - } - - // 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); - } - } - } + // tooltip is currently not visible + var me = this; + this.tooltipTimeout = setTimeout(function () { + me.tooltipTimeout = null; - // 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; + // show a tooltip if we have a data point + var dataPoint = me._dataPointFromXY(mouseX, mouseY); + if (dataPoint) { + me._showTooltip(dataPoint); } - } + }, delay); } }; /** - * 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 + * Event handler for touchstart event on mobile devices */ - DataSet.prototype.getIds = function (options) { - var data = this._data, - filter = options && options.filter, - order = options && options.order, - type = options && options.type || this._options.type, - i, - len, - id, - item, - items, - ids = []; - - if (filter) { - // get filtered items - if (order) { - // create ordered list - items = []; - for (id in data) { - if (data.hasOwnProperty(id)) { - item = this._getItem(id, type); - if (filter(item)) { - items.push(item); - } - } - } - - this._sort(items, order); - - 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]); - } - } - - this._sort(items, order); + Graph3d.prototype._onTouchStart = function(event) { + this.touchDown = true; - 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]); - } - } - } - } + var me = this; + this.ontouchmove = function (event) {me._onTouchMove(event);}; + this.ontouchend = function (event) {me._onTouchEnd(event);}; + util.addEventListener(document, 'touchmove', me.ontouchmove); + util.addEventListener(document, 'touchend', me.ontouchend); - return ids; + this._onMouseDown(event); }; /** - * Returns the DataSet itself. Is overwritten for example by the DataView, - * which returns the DataSet it is connected to instead. + * Event handler for touchmove event on mobile devices */ - DataSet.prototype.getDataSet = function () { - return this; + Graph3d.prototype._onTouchMove = function(event) { + this._onMouseMove(event); }; /** - * 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. + * Event handler for touchend event on mobile devices */ - DataSet.prototype.forEach = function (callback, options) { - var filter = options && options.filter, - type = options && options.type || this._options.type, - data = this._data, - item, - id; + Graph3d.prototype._onTouchEnd = function(event) { + this.touchDown = false; - if (options && options.order) { - // execute forEach on ordered list - var items = this.get(options); + util.removeEventListener(document, 'touchmove', this.ontouchmove); + util.removeEventListener(document, 'touchend', this.ontouchend); - 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); - } - } - } - } + this._onMouseUp(event); }; + /** - * 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 + * Event handler for mouse wheel event, used to zoom the graph + * Code from http://adomas.org/javascript-mouse-wheel/ + * @param {event} event The event */ - DataSet.prototype.map = function (callback, options) { - var filter = options && options.filter, - type = options && options.type || this._options.type, - mappedItems = [], - data = this._data, - item; + Graph3d.prototype._onWheel = function(event) { + if (!event) /* For IE. */ + event = window.event; - // 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)); - } - } + // 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; } - // order items - if (options && options.order) { - this._sort(mappedItems, options.order); - } + // If delta is nonzero, handle it. + // Basically, delta is now positive if wheel was scrolled up, + // and negative, if wheel was scrolled down. + if (delta) { + var oldLength = this.camera.getArmLength(); + var newLength = oldLength * (1 - delta / 10); - return mappedItems; + this.camera.setArmLength(newLength); + this.redraw(); + + this._hideTooltip(); + } + + // fire a cameraPositionChange event + var parameters = this.getCameraPosition(); + this.emit('cameraPositionChange', parameters); + + // Prevent default actions caused by mouse wheel. + // That might be ugly, but we handle scrolls somehow + // anyway, so don't bother here.. + util.preventDefault(event); }; /** - * Filter the fields of an item - * @param {Object} item - * @param {String[]} fields Field names - * @return {Object} filteredItem + * Test whether a point lies inside given 2D triangle + * @param {Point2d} point + * @param {Point2d[]} triangle + * @return {boolean} Returns true if given point lies inside or on the edge of the triangle * @private */ - DataSet.prototype._filterFields = function (item, fields) { - var filteredItem = {}; + Graph3d.prototype._insideTriangle = function (point, triangle) { + var a = triangle[0], + b = triangle[1], + c = triangle[2]; - for (var field in item) { - if (item.hasOwnProperty(field) && (fields.indexOf(field) != -1)) { - filteredItem[field] = item[field]; - } + function sign (x) { + return x > 0 ? 1 : x < 0 ? -1 : 0; } - return filteredItem; + 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); }; /** - * Sort the provided array with items - * @param {Object[]} items - * @param {String | function} order A field name or custom sort function. + * 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._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); + 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; + } + } + } + } } - // 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'); + // 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; }; /** - * 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 + * Display a tooltip for given data point + * @param {Object} dataPoint + * @private */ - DataSet.prototype.remove = function (id, senderId) { - var removedIds = [], - i, len, removedId; + Graph3d.prototype._showTooltip = function (dataPoint) { + var content, line, dot; - if (Array.isArray(id)) { - for (i = 0, len = id.length; i < len; i++) { - removedId = this._remove(id[i]); - if (removedId != null) { - removedIds.push(removedId); + if (!this.tooltip) { + content = document.createElement('div'); + content.style.position = 'absolute'; + content.style.padding = '10px'; + content.style.border = '1px solid #4d4d4d'; + content.style.color = '#1a1a1a'; + content.style.background = 'rgba(255,255,255,0.7)'; + content.style.borderRadius = '2px'; + content.style.boxShadow = '5px 5px 10px rgba(128,128,128,0.5)'; + + line = document.createElement('div'); + line.style.position = 'absolute'; + line.style.height = '40px'; + line.style.width = '0'; + line.style.borderLeft = '1px solid #4d4d4d'; + + dot = document.createElement('div'); + dot.style.position = 'absolute'; + dot.style.height = '0'; + dot.style.width = '0'; + dot.style.border = '5px solid #4d4d4d'; + dot.style.borderRadius = '5px'; + + this.tooltip = { + dataPoint: null, + dom: { + content: content, + line: line, + dot: dot } - } + }; } else { - removedId = this._remove(id); - if (removedId != null) { - removedIds.push(removedId); - } + content = this.tooltip.dom.content; + line = this.tooltip.dom.line; + dot = this.tooltip.dom.dot; } - if (removedIds.length) { - this._trigger('remove', {items: removedIds}, senderId); + this._hideTooltip(); + + this.tooltip.dataPoint = dataPoint; + if (typeof this.showTooltip === 'function') { + content.innerHTML = this.showTooltip(dataPoint.point); + } + else { + content.innerHTML = '' + + '' + + '' + + '' + + '
x:' + dataPoint.point.x + '
y:' + dataPoint.point.y + '
z:' + dataPoint.point.z + '
'; } - return removedIds; + content.style.left = '0'; + content.style.top = '0'; + this.frame.appendChild(content); + this.frame.appendChild(line); + this.frame.appendChild(dot); + + // calculate sizes + var contentWidth = content.offsetWidth; + var contentHeight = content.offsetHeight; + var lineHeight = line.offsetHeight; + var dotWidth = dot.offsetWidth; + var dotHeight = dot.offsetHeight; + + var left = dataPoint.screen.x - contentWidth / 2; + left = Math.min(Math.max(left, 10), this.frame.clientWidth - 10 - contentWidth); + + line.style.left = dataPoint.screen.x + 'px'; + line.style.top = (dataPoint.screen.y - lineHeight) + 'px'; + content.style.left = left + 'px'; + content.style.top = (dataPoint.screen.y - lineHeight - contentHeight) + 'px'; + dot.style.left = (dataPoint.screen.x - dotWidth / 2) + 'px'; + dot.style.top = (dataPoint.screen.y - dotHeight / 2) + 'px'; }; /** - * Remove an item by its id - * @param {Number | String | Object} id id or item - * @returns {Number | String | null} id + * Hide the tooltip when displayed * @private */ - DataSet.prototype._remove = function (id) { - if (util.isNumber(id) || util.isString(id)) { - if (this._data[id]) { - delete this._data[id]; - return id; - } - } - else if (id instanceof Object) { - var itemId = id[this._fieldId]; - if (itemId && this._data[itemId]) { - delete this._data[itemId]; - return itemId; + Graph3d.prototype._hideTooltip = function () { + if (this.tooltip) { + this.tooltip.dataPoint = null; + + 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 null; }; - /** - * Clear the data - * @param {String} [senderId] Optional sender id - * @return {Array} removedIds The ids of all removed items - */ - DataSet.prototype.clear = function (senderId) { - var ids = Object.keys(this._data); - - this._data = {}; + /**--------------------------------------------------------------------------**/ - this._trigger('remove', {items: ids}, senderId); - return ids; + /** + * Get the horizontal mouse position from a mouse event + * @param {Event} event + * @return {Number} mouse x + */ + getMouseX = function(event) { + if ('clientX' in event) return event.clientX; + return event.targetTouches[0] && event.targetTouches[0].clientX || 0; }; /** - * 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 + * Get the vertical mouse position from a mouse event + * @param {Event} event + * @return {Number} mouse y */ - DataSet.prototype.max = function (field) { - var data = this._data, - max = null, - maxField = null; + getMouseY = function(event) { + if ('clientY' in event) return event.clientY; + return event.targetTouches[0] && event.targetTouches[0].clientY || 0; + }; - 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; - } - } - } + module.exports = Graph3d; - return max; - }; + +/***/ }, +/* 6 */ +/***/ function(module, exports, __webpack_require__) { + + var Point3d = __webpack_require__(9); /** - * 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 + * @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.min = function (field) { - var data = this._data, - min = null, - minField = null; + Camera = function () { + this.armLocation = new Point3d(); + this.armRotation = {}; + this.armRotation.horizontal = 0; + this.armRotation.vertical = 0; + this.armLength = 1.7; - 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; - } - } - } + this.cameraLocation = new Point3d(); + this.cameraRotation = new Point3d(0.5*Math.PI, 0, 0); - return min; + this.calculateCameraOrientation(); }; /** - * 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. + * 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 */ - 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; - - for (var prop in data) { - if (data.hasOwnProperty(prop)) { - var item = data[prop]; - var value = item[field]; - var exists = false; - for (i = 0; i < count; i++) { - if (values[i] == value) { - exists = true; - break; - } - } - if (!exists && (value !== undefined)) { - values[count] = value; - count++; - } - } - } - - if (fieldType) { - for (i = 0; i < values.length; i++) { - values[i] = util.convert(values[i], fieldType); - } - } + Camera.prototype.setArmLocation = function(x, y, z) { + this.armLocation.x = x; + this.armLocation.y = y; + this.armLocation.z = z; - return values; + this.calculateCameraOrientation(); }; /** - * Add a single item. Will fail when an item with the same id already exists. - * @param {Object} item - * @return {String} id - * @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._addItem = function (item) { - var id = item[this._fieldId]; - - if (id != undefined) { - // check whether this id is already taken - if (this._data[id]) { - // item already exists - throw new Error('Cannot add item: item with id ' + id + ' already exists'); - } - } - else { - // generate an id - id = util.randomUUID(); - item[this._fieldId] = id; + Camera.prototype.setArmRotation = function(horizontal, vertical) { + if (horizontal !== undefined) { + this.armRotation.horizontal = horizontal; } - var d = {}; - for (var field in item) { - if (item.hasOwnProperty(field)) { - var fieldType = this._type[field]; // type may be undefined - d[field] = util.convert(item[field], fieldType); - } + if (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._data[id] = d; - return id; + if (horizontal !== undefined || vertical !== undefined) { + this.calculateCameraOrientation(); + } }; /** - * 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 + * Retrieve the current arm rotation + * @return {object} An object with parameters horizontal and vertical */ - DataSet.prototype._getItem = function (id, types) { - var field, value; - - // get the item from the dataset - var raw = this._data[id]; - if (!raw) { - return null; - } + Camera.prototype.getArmRotation = function() { + var rot = {}; + rot.horizontal = this.armRotation.horizontal; + rot.vertical = this.armRotation.vertical; - // 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 rot; }; /** - * 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 + * Set the (normalized) length of the camera arm. + * @param {Number} length A length between 0.71 and 5.0 */ - 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'); - } + Camera.prototype.setArmLength = function(length) { + if (length === undefined) + return; - // 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); - } - } + this.armLength = length; - return id; + // Radius must be larger than the corner of the graph, + // which has a distance of sqrt(0.5^2+0.5^2) = 0.71 from the center of the + // graph + if (this.armLength < 0.71) this.armLength = 0.71; + if (this.armLength > 5.0) this.armLength = 5.0; + + this.calculateCameraOrientation(); }; /** - * Get an array with the column names of a Google DataTable - * @param {DataTable} dataTable - * @return {String[]} columnNames - * @private + * Retrieve the arm length + * @return {Number} length */ - 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; + Camera.prototype.getArmLength = function() { + return this.armLength; }; /** - * Append an item as a row to the dataTable - * @param dataTable - * @param columns - * @param item - * @private + * Retrieve the camera location + * @return {Point3d} cameraLocation */ - 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]); - } + Camera.prototype.getCameraLocation = function() { + return this.cameraLocation; }; - module.exports = DataSet; + /** + * Retrieve the camera rotation + * @return {Point3d} cameraRotation + */ + Camera.prototype.getCameraRotation = function() { + return this.cameraRotation; + }; + + /** + * Calculate the location and rotation of the camera based on the + * position and orientation of the camera arm + */ + Camera.prototype.calculateCameraOrientation = function() { + // calculate location of the camera + this.cameraLocation.x = this.armLocation.x - this.armLength * Math.sin(this.armRotation.horizontal) * Math.cos(this.armRotation.vertical); + this.cameraLocation.y = this.armLocation.y - this.armLength * Math.cos(this.armRotation.horizontal) * Math.cos(this.armRotation.vertical); + this.cameraLocation.z = this.armLocation.z + this.armLength * Math.sin(this.armRotation.vertical); + + // 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 */ +/* 7 */ /***/ function(module, exports, __webpack_require__) { - var util = __webpack_require__(1); - var DataSet = __webpack_require__(7); + var DataView = __webpack_require__(4); /** - * DataView - * - * a dataview offers a filtered view on a dataset or an other dataview. - * - * @param {DataSet | DataView} data - * @param {Object} [options] Available options: see method get + * @class Filter * - * @constructor DataView + * @param {DataSet} data The google data table + * @param {Number} column The index of the column to be filtered + * @param {Graph} graph The graph */ - function DataView (data, options) { - this._data = null; - this._ids = {}; // ids of the items currently in memory (just contains a boolean true) - this._options = options || {}; - this._fieldId = 'id'; // name of the field containing id - this._subscribers = {}; // event subscribers - - var me = this; - this.listener = function () { - me._onEvent.apply(me, arguments); - }; - - this.setData(data); - } + function Filter (data, column, graph) { + this.data = data; + this.column = column; + this.graph = graph; // the parent graph - // TODO: implement a function .config() to dynamically update things like configured filter - // and trigger changes accordingly + this.index = undefined; + this.value = undefined; - /** - * Set a data source for the view - * @param {DataSet | DataView} data - */ - DataView.prototype.setData = function (data) { - var ids, i, len; + // read all distinct values and select the first one + this.values = graph.getDistinctValues(data.get(), this.column); - if (this._data) { - // unsubscribe from current dataset - if (this._data.unsubscribe) { - this._data.unsubscribe('*', this.listener); - } + // sort both numeric and string values correctly + this.values.sort(function (a, b) { + return a > b ? 1 : a < b ? -1 : 0; + }); - // trigger a remove of all items in memory - ids = []; - for (var id in this._ids) { - if (this._ids.hasOwnProperty(id)) { - ids.push(id); - } - } - this._ids = {}; - this._trigger('remove', {items: ids}); + if (this.values.length > 0) { + this.selectValue(0); } - this._data = data; - - if (this._data) { - // update fieldId - this._fieldId = this._options.fieldId || - (this._data && this._data.options && this._data.options.fieldId) || - 'id'; + // create an array with the filtered datapoints. this will be loaded afterwards + this.dataPoints = []; - // trigger an add of all added items - ids = this._data.getIds({filter: this._options && this._options.filter}); - for (i = 0, len = ids.length; i < len; i++) { - id = ids[i]; - this._ids[id] = true; - } - this._trigger('add', {items: ids}); + this.loaded = false; + this.onLoadCallback = undefined; - // subscribe to new dataset - if (this._data.on) { - this._data.on('*', this.listener); - } + if (graph.animationPreload) { + this.loaded = false; + this.loadInBackground(); + } + else { + this.loaded = true; } }; + /** - * 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 + * Return the label + * @return {string} label */ - DataView.prototype.get = function (args) { - var me = this; - - // parse the arguments - var ids, options, data; - var firstType = util.getType(arguments[0]); - if (firstType == 'String' || firstType == 'Number' || firstType == 'Array') { - // get(id(s) [, options] [, data]) - ids = arguments[0]; // can be a single id or an array with ids - options = arguments[1]; - data = arguments[2]; - } - else { - // get([, options] [, data]) - options = arguments[0]; - data = arguments[1]; - } + Filter.prototype.isLoaded = function() { + return this.loaded; + }; - // 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); - } - } + /** + * Return the loaded progress + * @return {Number} percentage between 0 and 100 + */ + Filter.prototype.getLoadedProgress = function() { + var len = this.values.length; - // build up the call to the linked data set - var getArguments = []; - if (ids != undefined) { - getArguments.push(ids); + var i = 0; + while (this.dataPoints[i]) { + i++; } - getArguments.push(viewOptions); - getArguments.push(data); - return this._data && this._data.get.apply(this._data, getArguments); + return Math.round(i / len * 100); }; + /** - * 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 + * Return the label + * @return {string} label */ - DataView.prototype.getIds = function (options) { - var ids; + Filter.prototype.getLabel = function() { + return this.graph.filterLabel; + }; - 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; - } + /** + * Return the columnIndex of the filter + * @return {Number} columnIndex + */ + Filter.prototype.getColumn = function() { + return this.column; + }; - ids = this._data.getIds({ - filter: filter, - order: options && options.order - }); - } - else { - ids = []; - } + /** + * Return the currently selected value. Returns undefined if there is no selection + * @return {*} value + */ + Filter.prototype.getSelectedValue = function() { + if (this.index === undefined) + return undefined; - return ids; + return this.values[this.index]; }; /** - * Get the DataSet to which this DataView is connected. In case there is a chain - * of multiple DataViews, the root DataSet of this chain is returned. - * @return {DataSet} dataSet + * Retrieve all values of the filter + * @return {Array} values */ - DataView.prototype.getDataSet = function () { - var dataSet = this; - while (dataSet instanceof DataView) { - dataSet = dataSet._data; - } - return dataSet || null; + Filter.prototype.getValues = function() { + return this.values; }; /** - * 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 + * Retrieve one value of the filter + * @param {Number} index + * @return {*} value */ - 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); - } - } + Filter.prototype.getValue = function(index) { + if (index >= this.values.length) + throw 'Error: index out of range'; - break; + return this.values[index]; + }; - case 'update': - // determine the event from the views viewpoint: an updated - // item can be added, updated, or removed from this view. - for (i = 0, len = ids.length; i < len; i++) { - id = ids[i]; - item = this.get(id); - if (item) { - if (this._ids[id]) { - updated.push(id); - } - else { - this._ids[id] = true; - added.push(id); - } - } - else { - if (this._ids[id]) { - delete this._ids[id]; - removed.push(id); - } - else { - // nothing interesting for me :-( - } - } - } + /** + * 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; - break; + if (index === undefined) + return []; - 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); - } - } + var dataPoints; + if (this.dataPoints[index]) { + dataPoints = this.dataPoints[index]; + } + else { + var f = {}; + f.column = this.column; + f.value = this.values[index]; - break; - } + var dataView = new DataView(this.data,{filter: function (item) {return (item[f.column] == f.value);}}).get(); + dataPoints = this.graph._getDataPoints(dataView); - 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); - } + this.dataPoints[index] = dataPoints; } - }; - // copy subscription functionality from DataSet - DataView.prototype.on = DataSet.prototype.on; - DataView.prototype.off = DataSet.prototype.off; - DataView.prototype._trigger = DataSet.prototype._trigger; + return dataPoints; + }; - // 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; -/***/ }, -/* 9 */ -/***/ function(module, exports, __webpack_require__) { + /** + * Set a callback function when the filter is fully loaded. + */ + Filter.prototype.setOnLoadCallback = function(callback) { + this.onLoadCallback = callback; + }; - var Emitter = __webpack_require__(10); - var DataSet = __webpack_require__(7); - var DataView = __webpack_require__(8); - var util = __webpack_require__(1); - var Point3d = __webpack_require__(11); - var Point2d = __webpack_require__(12); - var Camera = __webpack_require__(13); - var Filter = __webpack_require__(14); - var Slider = __webpack_require__(15); - var StepNumber = __webpack_require__(16); /** - * @constructor Graph3d - * Graph3d displays data in 3d. - * - * Graph3d is developed in javascript as a Google Visualization Chart. - * - * @param {Element} container The DOM element in which the Graph3d will - * be created. Normally a div element. - * @param {DataSet | DataView | Array} [data] - * @param {Object} [options] + * Add a value to the list with available values for this filter + * No double entries will be created. + * @param {Number} index */ - function Graph3d(container, data, options) { - if (!(this instanceof Graph3d)) { - throw new SyntaxError('Constructor must be called with the new operator'); - } + Filter.prototype.selectValue = function(index) { + if (index >= this.values.length) + throw 'Error: index out of range'; - // 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.index = index; + this.value = this.values[index]; + }; - this.xLabel = 'x'; - this.yLabel = 'y'; - this.zLabel = 'z'; - this.filterLabel = 'time'; - this.legendLabel = 'value'; + /** + * Load all filtered rows in the background one by one + * Start this method without providing an index! + */ + Filter.prototype.loadInBackground = function(index) { + if (index === undefined) + index = 0; - 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' + var frame = this.graph.frame; - this.animationInterval = 1000; // milliseconds - this.animationPreload = false; + if (index < this.values.length) { + var dataPointsTemp = this._getDataPoints(index); + //this.graph.redrawInfo(); // TODO: not neat - this.camera = new Camera(); - this.eye = new Point3d(0, 0, -1); // TODO: set eye.z about 3/4 of the width of the window? + // 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'; - this.dataTable = null; // The original data table - this.dataPoints = null; // The table with point objects + var me = this; + setTimeout(function() {me.loadInBackground(index+1);}, 10); + this.loaded = false; + } + else { + this.loaded = true; - // the column indexes - this.colX = undefined; - this.colY = undefined; - this.colZ = undefined; - this.colValue = undefined; - this.colFilter = undefined; + // remove the progress box + if (frame.progress !== undefined) { + frame.removeChild(frame.progress); + frame.progress = undefined; + } - 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 + if (this.onLoadCallback) + this.onLoadCallback(); + } + }; - // constants - this.colorAxis = '#4D4D4D'; - this.colorGrid = '#D3D3D3'; - this.colorDot = '#7DC1FF'; - this.colorDotBorder = '#3267D2'; + module.exports = Filter; - // create a frame and canvas - this.create(); - // apply options (also when undefined) - this.setOptions(options); - - // apply data - if (data) { - this.setData(data); - } - } - - // Extend Graph3d with an Emitter mixin - Emitter(Graph3d.prototype); +/***/ }, +/* 8 */ +/***/ function(module, exports, __webpack_require__) { /** - * Calculate the scaling values, dependent on the range in x, y, and z direction + * @prototype Point2d + * @param {Number} [x] + * @param {Number} [y] */ - Graph3d.prototype._setScale = function() { - this.scale = new Point3d(1 / (this.xMax - this.xMin), - 1 / (this.yMax - this.yMin), - 1 / (this.zMax - this.zMin)); + Point2d = function (x, y) { + this.x = x !== undefined ? x : 0; + this.y = y !== undefined ? y : 0; + }; - // keep aspect ration between x and y scale if desired - if (this.keepAspectRatio) { - if (this.scale.x < this.scale.y) { - //noinspection JSSuspiciousNameCombination - this.scale.y = this.scale.x; - } - else { - //noinspection JSSuspiciousNameCombination - this.scale.x = this.scale.y; - } - } + module.exports = Point2d; - // scale the vertical axis - this.scale.z *= this.verticalRatio; - // TODO: can this be automated? verticalRatio? - // determine scale for (optional) value - this.scale.value = 1 / (this.valueMax - this.valueMin); +/***/ }, +/* 9 */ +/***/ function(module, exports, __webpack_require__) { - // 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); + /** + * @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; }; - /** - * 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 + * Subtract the two provided points, returns a-b + * @param {Point3d} a + * @param {Point3d} b + * @return {Point3d} a-b */ - Graph3d.prototype._convert3Dto2D = function(point3d) { - var translation = this._convertPointToTranslation(point3d); - return this._convertTranslationToScreen(translation); + 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; }; /** - * 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 + * Add the two provided points, returns a+b + * @param {Point3d} a + * @param {Point3d} b + * @return {Point3d} a+b */ - Graph3d.prototype._convertPointToTranslation = function(point3d) { - var ax = point3d.x * this.scale.x, - ay = point3d.y * this.scale.y, - az = point3d.z * this.scale.z, - - cx = this.camera.getCameraLocation().x, - cy = this.camera.getCameraLocation().y, - cz = this.camera.getCameraLocation().z, - - // calculate angles - sinTx = Math.sin(this.camera.getCameraRotation().x), - cosTx = Math.cos(this.camera.getCameraRotation().x), - sinTy = Math.sin(this.camera.getCameraRotation().y), - cosTy = Math.cos(this.camera.getCameraRotation().y), - sinTz = Math.sin(this.camera.getCameraRotation().z), - cosTz = Math.cos(this.camera.getCameraRotation().z), - - // 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)); + 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; + }; - return new Point3d(dx, dy, dz); + /** + * 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 + ); }; /** - * 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 + * Calculate the cross product of the two provided points, returns axb + * Documentation: http://en.wikipedia.org/wiki/Cross_product + * @param {Point3d} a + * @param {Point3d} b + * @return {Point3d} cross product axb */ - Graph3d.prototype._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; + Point3d.crossProduct = function(a, b) { + var crossproduct = new Point3d(); - // 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()); - } + 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; - // 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); + return crossproduct; }; + /** - * Set the background styling for the graph - * @param {string | {fill: string, stroke: string, strokeWidth: string}} backgroundColor + * Rtrieve the length of the vector (or the distance from this point to the origin + * @return {Number} length */ - Graph3d.prototype._setBackgroundColor = function(backgroundColor) { - var fill = 'white'; - var stroke = 'gray'; - var strokeWidth = 1; + Point3d.prototype.length = function() { + return Math.sqrt( + this.x * this.x + + this.y * this.y + + this.z * this.z + ); + }; - if (typeof(backgroundColor) === 'string') { - fill = backgroundColor; - stroke = 'none'; - strokeWidth = 0; - } - else if (typeof(backgroundColor) === 'object') { - if (backgroundColor.fill !== undefined) fill = backgroundColor.fill; - if (backgroundColor.stroke !== undefined) stroke = backgroundColor.stroke; - if (backgroundColor.strokeWidth !== undefined) strokeWidth = backgroundColor.strokeWidth; - } - else if (backgroundColor === undefined) { - // use use defaults - } - else { - throw 'Unsupported type of backgroundColor'; - } + module.exports = Point3d; - this.frame.style.backgroundColor = fill; - this.frame.style.borderColor = stroke; - this.frame.style.borderWidth = strokeWidth + 'px'; - this.frame.style.borderStyle = 'solid'; - }; +/***/ }, +/* 10 */ +/***/ function(module, exports, __webpack_require__) { - /// 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 - }; + var util = __webpack_require__(2); /** - * 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 + * @constructor Slider + * + * An html slider control with start/stop/prev/next buttons + * @param {Element} container The element where the slider will be created + * @param {Object} options Available options: + * {boolean} visible If true (default) the + * slider is visible. */ - Graph3d.prototype._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; + 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; - return -1; - }; + 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); - /** - * 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; + this.frame.prev = document.createElement('INPUT'); + this.frame.prev.type = 'BUTTON'; + this.frame.prev.value = 'Prev'; + this.frame.appendChild(this.frame.prev); - 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; + this.frame.play = document.createElement('INPUT'); + this.frame.play.type = 'BUTTON'; + this.frame.play.value = 'Play'; + this.frame.appendChild(this.frame.play); - if (data.getNumberOfColumns() > 4) { - this.colFilter = 4; - } - } - else { - throw 'Unknown style "' + this.style + '"'; - } - }; + this.frame.next = document.createElement('INPUT'); + this.frame.next.type = 'BUTTON'; + this.frame.next.value = 'Next'; + this.frame.appendChild(this.frame.next); - Graph3d.prototype.getNumberOfRows = function(data) { - return data.length; - } + this.frame.bar = document.createElement('INPUT'); + this.frame.bar.type = 'BUTTON'; + this.frame.bar.style.position = 'absolute'; + this.frame.bar.style.border = '1px solid red'; + this.frame.bar.style.width = '100px'; + this.frame.bar.style.height = '6px'; + this.frame.bar.style.borderRadius = '2px'; + this.frame.bar.style.MozBorderRadius = '2px'; + this.frame.bar.style.border = '1px solid #7F7F7F'; + this.frame.bar.style.backgroundColor = '#E5E5E5'; + this.frame.appendChild(this.frame.bar); + this.frame.slide = document.createElement('INPUT'); + this.frame.slide.type = 'BUTTON'; + this.frame.slide.style.margin = '0px'; + this.frame.slide.value = ' '; + this.frame.slide.style.position = 'relative'; + this.frame.slide.style.left = '-100px'; + this.frame.appendChild(this.frame.slide); - Graph3d.prototype.getNumberOfColumns = function(data) { - var counter = 0; - for (var column in data[0]) { - if (data[0].hasOwnProperty(column)) { - counter++; - } + // 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);}; } - return counter; - } + this.onChangeCallback = undefined; - Graph3d.prototype.getDistinctValues = function(data, column) { - var distinctValues = []; - for (var i = 0; i < data.length; i++) { - if (distinctValues.indexOf(data[i][column]) == -1) { - distinctValues.push(data[i][column]); - } - } - return distinctValues; - } + this.values = []; + this.index = undefined; + this.playTimeout = undefined; + this.playInterval = 1000; // milliseconds + this.playLoop = true; + } - 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]; } + /** + * Select the previous index + */ + Slider.prototype.prev = function() { + var index = this.getIndex(); + if (index > 0) { + index--; + this.setIndex(index); } - 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 + * Select the next index */ - Graph3d.prototype._dataInitialize = function (rawData, style) { - var me = this; - - // unsubscribe from the dataTable - if (this.dataSet) { - this.dataSet.off('*', this._onChange); + Slider.prototype.next = function() { + var index = this.getIndex(); + if (index < this.values.length - 1) { + index++; + this.setIndex(index); } + }; - if (rawData === undefined) - return; - - if (Array.isArray(rawData)) { - rawData = new DataSet(rawData); - } + /** + * Select the next index + */ + Slider.prototype.playNext = function() { + var start = new Date(); - var data; - if (rawData instanceof DataSet || rawData instanceof DataView) { - data = rawData.get(); + var index = this.getIndex(); + if (index < this.values.length - 1) { + index++; + this.setIndex(index); } - else { - throw new Error('Array, DataSet, or DataView expected'); + else if (this.playLoop) { + // jump to the start + index = 0; + this.setIndex(index); } - if (data.length == 0) - return; - - this.dataSet = rawData; - this.dataTable = data; + var end = new Date(); + var diff = (end - start); - // subscribe to changes in the dataset - this._onChange = function () { - me.setData(me.dataSet); - }; - this.dataSet.on('*', this._onChange); + // 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 - // _determineColumnIndexes - // getNumberOfRows (points) - // getNumberOfColumns (x,y,z,v,t,t1,t2...) - // getDistinctValues (unique values?) - // getColumnRange + var me = this; + this.playTimeout = setTimeout(function() {me.playNext();}, interval); + }; - // 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'; + /** + * Toggle start or stop playing + */ + Slider.prototype.togglePlay = function() { + if (this.playTimeout === undefined) { + this.play(); + } else { + this.stop(); + } + }; + /** + * Start playing + */ + Slider.prototype.play = function() { + // Test whether already playing + if (this.playTimeout) return; + this.playNext(); - // 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 (this.frame) { + this.frame.play.value = 'Stop'; } + }; + /** + * Stop playing + */ + Slider.prototype.stop = function() { + clearInterval(this.playTimeout); + this.playTimeout = undefined; - var withBars = this.style == Graph3d.STYLE.BAR || - this.style == Graph3d.STYLE.BARCOLOR || - this.style == Graph3d.STYLE.BARSIZE; - - // determine barWidth from data - if (withBars) { - if (this.defaultXBarWidth !== undefined) { - this.xBarWidth = this.defaultXBarWidth; - } - else { - var dataX = this.getDistinctValues(data,this.colX); - this.xBarWidth = (dataX[1] - dataX[0]) || 1; - } - - if (this.defaultYBarWidth !== undefined) { - this.yBarWidth = this.defaultYBarWidth; - } - else { - var dataY = this.getDistinctValues(data,this.colY); - this.yBarWidth = (dataY[1] - dataY[0]) || 1; - } + if (this.frame) { + this.frame.play.value = 'Play'; } + }; - // 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; + /** + * 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; + }; - var yRange = this.getColumnRange(data,this.colY); - if (withBars) { - yRange.min -= this.yBarWidth / 2; - yRange.max += this.yBarWidth / 2; + /** + * Set the interval for playing the list + * @param {Number} interval The interval in milliseconds + */ + Slider.prototype.setPlayInterval = function(interval) { + this.playInterval = interval; + }; + + /** + * Retrieve the current play interval + * @return {Number} interval The interval in milliseconds + */ + Slider.prototype.getPlayInterval = function(interval) { + return this.playInterval; + }; + + /** + * 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; + }; + + + /** + * Execute the onchange callback function + */ + Slider.prototype.onChange = function() { + if (this.onChangeCallback !== undefined) { + this.onChangeCallback(); } - this.yMin = (this.defaultYMin !== undefined) ? this.defaultYMin : yRange.min; - this.yMax = (this.defaultYMax !== undefined) ? this.defaultYMax : yRange.max; - if (this.yMax <= this.yMin) this.yMax = this.yMin + 1; - this.yStep = (this.defaultYStep !== undefined) ? this.defaultYStep : (this.yMax-this.yMin)/5; + }; - var 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; + /** + * 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 (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; + // position the slider button + var left = this.indexToLeft(this.index); + this.frame.slide.style.left = (left) + 'px'; } + }; - // set the scale dependent on the ranges. - this._setScale(); + + /** + * Set the list with values for the slider + * @param {Array} values A javascript array with values (any type) + */ + Slider.prototype.setValues = function(values) { + this.values = values; + + if (this.values.length > 0) + this.setIndex(0); + else + this.index = undefined; }; + /** + * Select a value by its index + * @param {Number} index + */ + Slider.prototype.setIndex = function(index) { + if (index < this.values.length) { + this.index = index; + this.redraw(); + this.onChange(); + } + else { + throw 'Error: index out of range'; + } + }; /** - * Filter the data based on the current filter - * @param {Array} data - * @return {Array} dataPoints Array with point objects which can be drawn on screen + * retrieve the index of the currently selected vaue + * @return {Number} index */ - Graph3d.prototype._getDataPoints = function (data) { - // TODO: store the created matrix dataPoints in the filters instead of reloading each time - var x, y, i, z, obj, point; + Slider.prototype.getIndex = function() { + return this.index; + }; - var dataPoints = []; - 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 + /** + * retrieve the currently selected value + * @return {*} value + */ + Slider.prototype.get = function() { + return this.values[this.index]; + }; - // create two lists with all present x and y values - var dataX = []; - var dataY = []; - for (i = 0; i < this.getNumberOfRows(data); i++) { - x = data[i][this.colX] || 0; - y = data[i][this.colY] || 0; - if (dataX.indexOf(x) === -1) { - dataX.push(x); - } - if (dataY.indexOf(y) === -1) { - dataY.push(y); - } - } + 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; - function sortNumber(a, b) { - return a - b; - } - dataX.sort(sortNumber); - dataY.sort(sortNumber); + this.startClientX = event.clientX; + this.startSlideX = parseFloat(this.frame.slide.style.left); - // 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; + this.frame.style.cursor = 'move'; - var xIndex = dataX.indexOf(x); // TODO: implement Array().indexOf() for Internet Explorer - var yIndex = dataY.indexOf(y); + // 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); + }; - if (dataMatrix[xIndex] === undefined) { - dataMatrix[xIndex] = []; - } - var point3d = new Point3d(); - point3d.x = x; - point3d.y = y; - point3d.z = z; + Slider.prototype.leftToIndex = function (left) { + var width = parseFloat(this.frame.bar.style.width) - + this.frame.slide.clientWidth - 10; + var x = left - 3; - obj = {}; - obj.point = point3d; - obj.trans = undefined; - obj.screen = undefined; - obj.bottom = new Point3d(x, y, this.zMin); + 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; - dataMatrix[xIndex][yIndex] = obj; + return index; + }; - dataPoints.push(obj); - } + Slider.prototype.indexToLeft = function (index) { + var width = parseFloat(this.frame.bar.style.width) - + this.frame.slide.clientWidth - 10; - // 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; + var x = index / (this.values.length-1) * width; + var left = x + 3; - if (this.colValue !== undefined) { - point.value = data[i][this.colValue] || 0; - } + return left; + }; - obj = {}; - obj.point = point; - obj.bottom = new Point3d(point.x, point.y, this.zMin); - obj.trans = undefined; - obj.screen = undefined; - dataPoints.push(obj); - } - } - return dataPoints; + 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(); }; - /** - * 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.frame = document.createElement('div'); - this.frame.style.position = 'relative'; - this.frame.style.overflow = 'hidden'; + Slider.prototype._onMouseUp = function (event) { + this.frame.style.cursor = 'auto'; - // create the graph canvas (HTML canvas element) - this.frame.canvas = document.createElement( 'canvas' ); - this.frame.canvas.style.position = 'relative'; - this.frame.appendChild(this.frame.canvas); - //if (!this.frame.canvas.getContext) { - { - var noCanvas = document.createElement( 'DIV' ); - noCanvas.style.color = 'red'; - noCanvas.style.fontWeight = 'bold' ; - noCanvas.style.padding = '10px'; - noCanvas.innerHTML = 'Error: your browser does not support HTML canvas'; - this.frame.canvas.appendChild(noCanvas); - } - - this.frame.filter = document.createElement( 'div' ); - this.frame.filter.style.position = 'absolute'; - this.frame.filter.style.bottom = '0px'; - this.frame.filter.style.left = '0px'; - this.frame.filter.style.width = '100%'; - this.frame.appendChild(this.frame.filter); + // remove event listeners + util.removeEventListener(document, 'mousemove', this.onmousemove); + util.removeEventListener(document, 'mouseup', this.onmouseup); - // 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.preventDefault(); + }; - 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); + module.exports = Slider; - // add the new graph to the container element - this.containerElement.appendChild(this.frame); - }; +/***/ }, +/* 11 */ +/***/ function(module, exports, __webpack_require__) { /** - * 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%') + * @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.setSize = function(width, height) { - this.frame.style.width = width; - this.frame.style.height = height; + 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._resizeCanvas(); + this._current = 0; + this.setRange(start, end, step, prettyStep); }; /** - * Resize the canvas to the current size of the frame + * 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._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; + StepNumber.prototype.setRange = function(start, end, step, prettyStep) { + this._start = start ? start : 0; + this._end = end ? end : 0; - // adjust with for margin - this.frame.filter.style.width = (this.frame.canvas.clientWidth - 2 * 10) + 'px'; + this.setStep(step, prettyStep); }; /** - * Start animation + * 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.animationStart = function() { - if (!this.frame.filter || !this.frame.filter.slider) - throw 'No animation available'; + StepNumber.prototype.setStep = function(step, prettyStep) { + if (step === undefined || step <= 0) + return; - this.frame.filter.slider.play(); - }; + if (prettyStep !== undefined) + this.prettyStep = prettyStep; + if (this.prettyStep === true) + this._step = StepNumber.calculatePrettyStep(step); + else + this._step = step; + }; /** - * Stop animation + * 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.animationStop = function() { - if (!this.frame.filter || !this.frame.filter.slider) return; + StepNumber.calculatePrettyStep = function (step) { + var log10 = function (x) {return Math.log(x) / Math.LN10;}; - this.frame.filter.slider.stop(); - }; + // 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))); + // 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; - /** - * 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 + // for safety + if (prettyStep <= 0) { + prettyStep = 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 - } + return prettyStep; }; /** - * 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. + * returns the current value of the step + * @return {Number} current value */ - Graph3d.prototype.setCameraPosition = function(pos) { - if (pos === undefined) { - return; - } - - if (pos.horizontal !== undefined && pos.vertical !== undefined) { - this.camera.setArmRotation(pos.horizontal, pos.vertical); - } - - if (pos.distance !== undefined) { - this.camera.setArmLength(pos.distance); - } - - this.redraw(); + StepNumber.prototype.getCurrent = function () { + return parseFloat(this._current.toPrecision(this.precision)); }; - /** - * Retrieve the current camera rotation - * @return {object} An object with parameters horizontal, vertical, and - * distance + * returns the current step size + * @return {Number} current step size */ - Graph3d.prototype.getCameraPosition = function() { - var pos = this.camera.getArmRotation(); - pos.distance = this.camera.getArmLength(); - return pos; + StepNumber.prototype.getStep = function () { + return this._step; }; /** - * Load data into the 3D Graph + * Set the current value to the largest value smaller than start, which + * is a multiple of the step size */ - Graph3d.prototype._readData = function(data) { - // read the data - this._dataInitialize(data, this.style); - - - if (this.dataFilter) { - // apply filtering - this.dataPoints = this.dataFilter._getDataPoints(); - } - else { - // no filtering. load all data - this.dataPoints = this._getDataPoints(this.dataTable); - } - - // draw the filter - this._redrawFilter(); + StepNumber.prototype.start = function() { + this._current = this._start - this._start % this._step; }; /** - * Replace the dataset of the Graph3d - * @param {Array | DataSet | DataView} data + * Do a step, add the step size to the current value */ - Graph3d.prototype.setData = function (data) { - this._readData(data); - this.redraw(); - - // start animation when option is true - if (this.animationAutoStart && this.dataFilter) { - this.animationStart(); - } + StepNumber.prototype.next = function () { + this._current += this._step; }; /** - * Update the options. Options will be merged with current options - * @param {Object} options + * Returns true whether the end is reached + * @return {boolean} True if the current value has passed the end value. */ - Graph3d.prototype.setOptions = function (options) { - var cameraPosition = undefined; + StepNumber.prototype.end = function () { + return (this._current > this._end); + }; - this.animationStop(); + module.exports = StepNumber; - if (options !== undefined) { - // retrieve parameter values - if (options.width !== undefined) this.width = options.width; - if (options.height !== undefined) this.height = options.height; - if (options.xCenter !== undefined) this.defaultXCenter = options.xCenter; - if (options.yCenter !== undefined) this.defaultYCenter = options.yCenter; +/***/ }, +/* 12 */ +/***/ function(module, exports, __webpack_require__) { - 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; + var Emitter = __webpack_require__(46); + var Hammer = __webpack_require__(40); + var util = __webpack_require__(2); + var DataSet = __webpack_require__(3); + var DataView = __webpack_require__(4); + var Range = __webpack_require__(15); + var Core = __webpack_require__(42); + var TimeAxis = __webpack_require__(27); + var CurrentTime = __webpack_require__(18); + var CustomTime = __webpack_require__(20); + var ItemSet = __webpack_require__(24); - if (options.style !== undefined) { - var styleNumber = this._getStyleNumber(options.style); - if (styleNumber !== -1) { - this.style = styleNumber; - } + /** + * Create a timeline visualization + * @param {HTMLElement} container + * @param {vis.DataSet | Array | google.visualization.DataTable} [items] + * @param {Object} [options] See Timeline.setOptions for the available options. + * @constructor + */ + function Timeline (container, items, options) { + // mix the core properties in here + for (var coreProp in Core.prototype) { + if (Core.prototype.hasOwnProperty(coreProp) && !Timeline.prototype.hasOwnProperty(coreProp)) { + Timeline.prototype[coreProp] = Core.prototype[coreProp]; } - if (options.showGrid !== undefined) this.showGrid = options.showGrid; - if (options.showPerspective !== undefined) this.showPerspective = options.showPerspective; - if (options.showShadow !== undefined) this.showShadow = options.showShadow; - if (options.tooltip !== undefined) this.showTooltip = options.tooltip; - if (options.showAnimationControls !== undefined) this.showAnimationControls = options.showAnimationControls; - if (options.keepAspectRatio !== undefined) this.keepAspectRatio = options.keepAspectRatio; - if (options.verticalRatio !== undefined) this.verticalRatio = options.verticalRatio; + } - if (options.animationInterval !== undefined) this.animationInterval = options.animationInterval; - if (options.animationPreload !== undefined) this.animationPreload = options.animationPreload; - if (options.animationAutoStart !== undefined)this.animationAutoStart = options.animationAutoStart; + if (!(this instanceof Timeline)) { + throw new SyntaxError('Constructor must be called with the new operator'); + } - if (options.xBarWidth !== undefined) this.defaultXBarWidth = options.xBarWidth; - if (options.yBarWidth !== undefined) this.defaultYBarWidth = options.yBarWidth; + var me = this; + this.defaultOptions = { + start: null, + end: null, - 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; + autoResize: true, - if (options.cameraPosition !== undefined) cameraPosition = options.cameraPosition; + orientation: 'bottom', + width: null, + height: null, + maxHeight: null, + minHeight: null + }; + this.options = util.deepExtend({}, this.defaultOptions); - if (cameraPosition !== undefined) { - this.camera.setArmRotation(cameraPosition.horizontal, cameraPosition.vertical); - this.camera.setArmLength(cameraPosition.distance); - } - else { - this.camera.setArmRotation(1.0, 0.5); - this.camera.setArmLength(1.7); + // Create the DOM, props, and emitter + this._create(container); + + // all components listed here will be repainted automatically + this.components = []; + + this.body = { + dom: this.dom, + domProps: this.props, + emitter: { + on: this.on.bind(this), + off: this.off.bind(this), + emit: this.emit.bind(this) + }, + util: { + snap: null, // will be specified after TimeAxis is created + toScreen: me._toScreen.bind(me), + toGlobalScreen: me._toGlobalScreen.bind(me), // this refers to the root.width + toTime: me._toTime.bind(me), + toGlobalTime : me._toGlobalTime.bind(me) } - } + }; - this._setBackgroundColor(options && options.backgroundColor); + // range + this.range = new Range(this.body); + this.components.push(this.range); + this.body.range = this.range; - this.setSize(this.width, this.height); + // time axis + this.timeAxis = new TimeAxis(this.body); + this.components.push(this.timeAxis); + this.body.util.snap = this.timeAxis.snap.bind(this.timeAxis); - // re-load the data - if (this.dataTable) { - this.setData(this.dataTable); + // 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); } - // start animation when option is true - if (this.animationAutoStart && this.dataFilter) { - this.animationStart(); + // create itemset + if (items) { + this.setItems(items); } - }; + else { + this.redraw(); + } + } /** - * Redraw the Graph. + * 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 */ - Graph3d.prototype.redraw = function() { - if (this.dataPoints === undefined) { - throw 'Error: graph data not initialized'; + Timeline.prototype.setOptions = function (options) { + if (options) { + // copy the known options + var fields = ['width', 'height', 'minHeight', 'maxHeight', 'autoResize', 'start', 'end', 'orientation']; + util.selectiveExtend(fields, this.options, options); + + // enable/disable autoResize + this._initAutoResize(); } - this._resizeCanvas(); - this._resizeCenter(); - this._redrawSlider(); - this._redrawClear(); - this._redrawAxis(); + // propagate options to all components + this.components.forEach(function (component) { + component.setOptions(options); + }); - 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(); + // TODO: remove deprecation error one day (deprecated since version 0.8.0) + if (options && options.order) { + throw new Error('Option order is deprecated. There is no replacement for this feature.'); } - this._redrawInfo(); - this._redrawLegend(); + // redraw everything + this.redraw(); }; /** - * Clear the canvas before redrawing + * Set items + * @param {vis.DataSet | Array | google.visualization.DataTable | null} items */ - Graph3d.prototype._redrawClear = function() { - var canvas = this.frame.canvas; - var ctx = canvas.getContext('2d'); + Timeline.prototype.setItems = function(items) { + var initialLoad = (this.itemsData == null); - ctx.clearRect(0, 0, canvas.width, canvas.height); - }; + // 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' + } + }); + } + // set items + this.itemsData = newDataSet; + this.itemSet && this.itemSet.setItems(newDataSet); - /** - * Redraw the legend showing the colors - */ - Graph3d.prototype._redrawLegend = function() { - var y; + if (initialLoad && ('start' in this.options || 'end' in this.options)) { + this.fit(); - if (this.style === Graph3d.STYLE.DOTCOLOR || - this.style === Graph3d.STYLE.DOTSIZE) { + var start = ('start' in this.options) ? util.convert(this.options.start, 'Date') : null; + var end = ('end' in this.options) ? util.convert(this.options.end, 'Date') : null; - var dotSize = this.frame.clientWidth * 0.02; + this.setWindow(start, end); + } + }; - var widthMin, widthMax; - if (this.style === Graph3d.STYLE.DOTSIZE) { - widthMin = dotSize / 2; // px - widthMax = dotSize / 2 + dotSize * 2; // Todo: put this in one function - } - else { - widthMin = 20; // px - widthMax = 20; // px - } - - var height = Math.max(this.frame.clientHeight * 0.25, 100); - var top = this.margin; - var right = this.frame.clientWidth - this.margin; - var left = right - widthMax; - var bottom = top + height; + /** + * 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; } - - var canvas = this.frame.canvas; - var ctx = canvas.getContext('2d'); - ctx.lineWidth = 1; - ctx.font = '14px arial'; // TODO: put in options - - if (this.style === Graph3d.STYLE.DOTCOLOR) { - // draw the color bar - var ymin = 0; - var ymax = height; // Todo: make height customizable - for (y = ymin; y < ymax; y++) { - var f = (y - ymin) / (ymax - ymin); - - //var width = (dotSize / 2 + (1-f) * dotSize * 2); // Todo: put this in one function - var hue = f * 240; - var color = this._hsv2rgb(hue, 1, 1); - - 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); + else if (groups instanceof DataSet || groups instanceof DataView) { + newDataSet = groups; } - - 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(); + else { + // turn an array into a dataset + newDataSet = new DataSet(groups); } - if (this.style === Graph3d.STYLE.DOTCOLOR || - this.style === Graph3d.STYLE.DOTSIZE) { - // print values along the color bar - var gridLineLen = 5; // px - var step = new StepNumber(this.valueMin, this.valueMax, (this.valueMax-this.valueMin)/5, true); - step.start(); - if (step.getCurrent() < this.valueMin) { - step.next(); - } - while (!step.end()) { - y = bottom - (step.getCurrent() - this.valueMin) / (this.valueMax - this.valueMin) * height; - - ctx.beginPath(); - ctx.moveTo(left - gridLineLen, y); - ctx.lineTo(left, y); - ctx.stroke(); - - ctx.textAlign = 'right'; - ctx.textBaseline = 'middle'; - ctx.fillStyle = this.colorAxis; - ctx.fillText(step.getCurrent(), left - 2 * gridLineLen, y); - - step.next(); - } - - ctx.textAlign = 'right'; - ctx.textBaseline = 'top'; - var label = this.legendLabel; - ctx.fillText(label, right, bottom + this.margin); - } + this.groupsData = newDataSet; + this.itemSet.setGroups(newDataSet); }; /** - * Redraw the filter + * Set selected items by their id. Replaces the current selection + * Unknown id's are silently ignored. + * @param {Array} [ids] An array with zero or more id's of the items to be + * selected. If ids is an empty array, all items will be + * unselected. */ - Graph3d.prototype._redrawFilter = function() { - this.frame.filter.innerHTML = ''; - - if (this.dataFilter) { - var options = { - 'visible': this.showAnimationControls - }; - var slider = new Slider(this.frame.filter, options); - this.frame.filter.slider = slider; - - // TODO: css here is not nice here... - this.frame.filter.style.padding = '10px'; - //this.frame.filter.style.backgroundColor = '#EFEFEF'; - - slider.setValues(this.dataFilter.values); - slider.setPlayInterval(this.animationInterval); - - // create an event handler - var me = this; - var onchange = function () { - var index = slider.getIndex(); - - me.dataFilter.selectValue(index); - me.dataPoints = me.dataFilter._getDataPoints(); - - me.redraw(); - }; - slider.setOnChangeCallback(onchange); - } - else { - this.frame.filter.slider = undefined; - } + Timeline.prototype.setSelection = function(ids) { + this.itemSet && this.itemSet.setSelection(ids); }; /** - * Redraw the slider + * Get the selected items by their id + * @return {Array} ids The ids of the selected items */ - Graph3d.prototype._redrawSlider = function() { - if ( this.frame.filter.slider !== undefined) { - this.frame.filter.slider.redraw(); - } + Timeline.prototype.getSelection = function() { + return this.itemSet && this.itemSet.getSelection() || []; }; /** - * Redraw common information + * 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._redrawInfo = function() { - if (this.dataFilter) { - var canvas = this.frame.canvas; - var ctx = canvas.getContext('2d'); + Timeline.prototype.getItemRange = function() { + // calculate min from start filed + var dataset = this.itemsData.getDataSet(), + min = null, + max = null; - ctx.font = '14px arial'; // TODO: put in options - ctx.lineStyle = 'gray'; - ctx.fillStyle = 'gray'; - ctx.textAlign = 'left'; - ctx.textBaseline = 'top'; + if (dataset) { + // calculate the minimum value of the field 'start' + var minItem = dataset.min('start'); + min = minItem ? util.convert(minItem.start, 'Date').valueOf() : null; + // Note: we convert first to Date and then to number because else + // a conversion from ISODate to Number will fail - var x = this.margin; - var y = this.margin; - ctx.fillText(this.dataFilter.getLabel() + ': ' + this.dataFilter.getSelectedValue(), x, y); + // 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()); + } + } } + + return { + min: (min != null) ? new Date(min) : null, + max: (max != null) ? new Date(max) : null + }; }; - /** - * 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; + module.exports = Timeline; - // 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; +/***/ }, +/* 13 */ +/***/ function(module, exports, __webpack_require__) { - // 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 Emitter = __webpack_require__(46); + var Hammer = __webpack_require__(40); + var util = __webpack_require__(2); + var DataSet = __webpack_require__(3); + var DataView = __webpack_require__(4); + var Range = __webpack_require__(15); + var Core = __webpack_require__(42); + var TimeAxis = __webpack_require__(27); + var CurrentTime = __webpack_require__(18); + var CustomTime = __webpack_require__(20); + var LineGraph = __webpack_require__(26); - 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(); + /** + * Create a timeline visualization + * @param {HTMLElement} container + * @param {vis.DataSet | Array | google.visualization.DataTable} [items] + * @param {Object} [options] See Graph2d.setOptions for the available options. + * @constructor + */ + function Graph2d (container, items, options, groups) { + for (var coreProp in Core.prototype) { + if (Core.prototype.hasOwnProperty(coreProp) && !Graph2d.prototype.hasOwnProperty(coreProp)) { + Graph2d.prototype[coreProp] = Core.prototype[coreProp]; } - else { - 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(); + } - 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(); - } + var me = this; + this.defaultOptions = { + start: null, + end: null, - yText = (Math.cos(armAngle) > 0) ? this.yMin : this.yMax; - text = this._convert3Dto2D(new Point3d(x, yText, this.zMin)); - if (Math.cos(armAngle * 2) > 0) { - ctx.textAlign = 'center'; - ctx.textBaseline = 'top'; - text.y += textMargin; - } - else if (Math.sin(armAngle * 2) < 0){ - ctx.textAlign = 'right'; - ctx.textBaseline = 'middle'; - } - else { - ctx.textAlign = 'left'; - ctx.textBaseline = 'middle'; - } - ctx.fillStyle = this.colorAxis; - ctx.fillText(' ' + step.getCurrent() + ' ', text.x, text.y); + autoResize: true, - step.next(); - } + orientation: 'bottom', + width: null, + height: null, + maxHeight: null, + minHeight: null + }; + this.options = util.deepExtend({}, this.defaultOptions); - // 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(); + // Create the DOM, props, and emitter + this._create(container); - 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(); - } + // all components listed here will be repainted automatically + this.components = []; - 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'; + this.body = { + dom: this.dom, + domProps: this.props, + emitter: { + on: this.on.bind(this), + off: this.off.bind(this), + emit: this.emit.bind(this) + }, + util: { + snap: null, // will be specified after TimeAxis is created + toScreen: me._toScreen.bind(me), + toGlobalScreen: me._toGlobalScreen.bind(me), // this refers to the root.width + toTime: me._toTime.bind(me), + toGlobalTime : me._toGlobalTime.bind(me) } - ctx.fillStyle = this.colorAxis; - ctx.fillText(' ' + step.getCurrent() + ' ', text.x, text.y); + }; - step.next(); - } + // range + this.range = new Range(this.body); + this.components.push(this.range); + this.body.range = this.range; - // draw 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(); + // time axis + this.timeAxis = new TimeAxis(this.body); + this.components.push(this.timeAxis); + this.body.util.snap = this.timeAxis.snap.bind(this.timeAxis); - ctx.textAlign = 'right'; - ctx.textBaseline = 'middle'; - ctx.fillStyle = this.colorAxis; - ctx.fillText(step.getCurrent() + ' ', from.x - 5, from.y); + // current time bar + this.currentTime = new CurrentTime(this.body); + this.components.push(this.currentTime); - 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(); + // 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); - // 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(); + // item set + this.linegraph = new LineGraph(this.body); + this.components.push(this.linegraph); - // 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(); + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet - // 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); + // apply options + if (options) { + this.setOptions(options); } - // 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); + // IMPORTANT: THIS HAPPENS BEFORE SET ITEMS! + if (groups) { + this.setGroups(groups); } - // 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); + // create itemset + if (items) { + this.setItems(items); } - }; + else { + this.redraw(); + } + } /** - * Calculate the color based on the given value. - * @param {Number} H Hue, a value be between 0 and 360 - * @param {Number} S Saturation, a value between 0 and 1 - * @param {Number} V Value, a value between 0 and 1 + * Set options. Options will be passed to all components loaded in the Graph2d. + * @param {Object} [options] + * {String} orientation + * Vertical orientation for the Graph2d, + * can be 'bottom' (default) or 'top'. + * {String | Number} width + * Width for the timeline, a number in pixels or + * a css string like '1000px' or '75%'. '100%' by default. + * {String | Number} height + * Fixed height for the Graph2d, a number in pixels or + * a css string like '400px' or '75%'. If undefined, + * The Graph2d will automatically size such that + * its contents fit. + * {String | Number} minHeight + * Minimum height for the Graph2d, a number in pixels or + * a css string like '400px' or '75%'. + * {String | Number} maxHeight + * Maximum height for the Graph2d, a number in pixels or + * a css string like '400px' or '75%'. + * {Number | Date | String} start + * Start date for the visible window + * {Number | Date | String} end + * End date for the visible window */ - Graph3d.prototype._hsv2rgb = function(H, S, V) { - var R, G, B, C, Hi, X; + Graph2d.prototype.setOptions = function (options) { + if (options) { + // copy the known options + var fields = ['width', 'height', 'minHeight', 'maxHeight', 'autoResize', 'start', 'end', 'orientation']; + util.selectiveExtend(fields, this.options, options); - C = V * S; - Hi = Math.floor(H/60); // hi = 0,1,2,3,4,5 - X = C * (1 - Math.abs(((H/60) % 2) - 1)); + // enable/disable autoResize + this._initAutoResize(); + } - 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; + // propagate options to all components + this.components.forEach(function (component) { + component.setOptions(options); + }); - default: R = 0; G = 0; B = 0; break; + // 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.'); } - return 'RGB(' + parseInt(R*255) + ',' + parseInt(G*255) + ',' + parseInt(B*255) + ')'; + // redraw everything + this.redraw(); }; /** - * Draw all datapoints as a grid - * This function can be used when the style is 'grid' + * Set items + * @param {vis.DataSet | Array | google.visualization.DataTable | null} items */ - 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; + Graph2d.prototype.setItems = function(items) { + var initialLoad = (this.itemsData == null); + // convert to type DataSet when needed + var newDataSet; + if (!items) { + newDataSet = null; + } + else if (items instanceof DataSet || items instanceof DataView) { + newDataSet = items; + } + else { + // turn an array into a dataset + newDataSet = new DataSet(items, { + type: { + start: 'Date', + end: 'Date' + } + }); + } - if (this.dataPoints === undefined || this.dataPoints.length <= 0) - return; // TODO: throw exception? + // set items + this.itemsData = newDataSet; + this.linegraph && this.linegraph.setItems(newDataSet); - // 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); + if (initialLoad && ('start' in this.options || 'end' in this.options)) { + this.fit(); - this.dataPoints[i].trans = trans; - this.dataPoints[i].screen = screen; + var start = ('start' in this.options) ? util.convert(this.options.start, 'Date') : null; + var end = ('end' in this.options) ? util.convert(this.options.end, 'Date') : null; - // 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; + this.setWindow(start, end); } + }; - // 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); + /** + * 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); + } - 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.groupsData = newDataSet; + this.linegraph.setGroups(newDataSet); + }; - if (point !== undefined && right !== undefined && top !== undefined && cross !== undefined) { + /** + * 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; + } + } - 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 checks if the visible option of the supplied group (by ID) is true or false. + * @param groupId + * @returns {*} + */ + Graph2d.prototype.isGroupVisible = function(groupId) { + if (this.linegraph.groups[groupId] !== undefined) { + return this.linegraph.groups[groupId].visible; + } + else { + return false; + } + } - 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 + /** + * 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; - 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; + // 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; } - lineWidth = 0.5; - - ctx.lineWidth = lineWidth; - ctx.fillStyle = fillStyle; - ctx.strokeStyle = strokeStyle; - ctx.beginPath(); - ctx.moveTo(point.screen.x, point.screen.y); - ctx.lineTo(right.screen.x, right.screen.y); - ctx.lineTo(cross.screen.x, cross.screen.y); - ctx.lineTo(top.screen.x, top.screen.y); - ctx.closePath(); - ctx.fill(); - ctx.stroke(); } } } - else { // grid style - for (i = 0; i < this.dataPoints.length; i++) { - point = this.dataPoints[i]; - right = this.dataPoints[i].pointRight; - top = this.dataPoints[i].pointTop; - - if (point !== undefined) { - if (this.showPerspective) { - lineWidth = 2 / -point.trans.z; - } - else { - lineWidth = 2 * -(this.eye.z / this.camera.getArmLength()); - } - } - if (point !== undefined && right !== undefined) { - // calculate Hue from the current value. At zMin the hue is 240, at zMax the hue is 0 - zAvg = (point.point.z + right.point.z) / 2; - h = (1 - (zAvg - this.zMin) * this.scale.z / this.verticalRatio) * 240; + return { + min: (min != null) ? new Date(min) : null, + max: (max != null) ? new Date(max) : null + }; + }; - 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; - 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(); - } - } - } - }; + module.exports = Graph2d; + +/***/ }, +/* 14 */ +/***/ function(module, exports, __webpack_require__) { /** - * Draw all datapoints as dots. - * This function can be used when the style is 'dot' or 'dot-line' + * @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._redrawDataDot = function() { - var canvas = this.frame.canvas; - var ctx = canvas.getContext('2d'); - var i; + function DataStep(start, end, minimumStep, containerHeight, forcedStepSize) { + // variables + this.current = 0; - if (this.dataPoints === undefined || this.dataPoints.length <= 0) - return; // TODO: throw exception? + this.autoScale = true; + this.stepIndex = 0; + this.step = 1; + this.scale = 1; - // calculate the translations of all points - for (i = 0; i < this.dataPoints.length; i++) { - var trans = this._convertPointToTranslation(this.dataPoints[i].point); - var screen = this._convertTranslationToScreen(trans); - this.dataPoints[i].trans = trans; - this.dataPoints[i].screen = screen; + this.marginStart; + this.marginEnd; - // 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; + this.majorSteps = [1, 2, 5, 10]; + this.minorSteps = [0.25, 0.5, 1, 2]; + + this.setRange(start, end, minimumStep, containerHeight, forcedStepSize); + } + + + + /** + * Set a new range + * If minimumStep is provided, the step size is chosen as close as possible + * to the minimumStep but larger than minimumStep. If minimumStep is not + * provided, the scale is set to 1 DAY. + * The minimumStep should correspond with the onscreen size of about 6 characters + * @param {Number} [start] The start date and time. + * @param {Number} [end] The end date and time. + * @param {Number} [minimumStep] Optional. Minimum step size in milliseconds + */ + DataStep.prototype.setRange = function(start, end, minimumStep, containerHeight, forcedStepSize) { + this._start = start; + this._end = end; + + if (start == end) { + this._start = start - 0.75; + this._end = end + 1; } - // order the translated points by depth - var sortDepth = function (a, b) { - return b.dist - a.dist; - }; - this.dataPoints.sort(sortDepth); + if (this.autoScale) { + this.setMinimumStep(minimumStep, containerHeight, forcedStepSize); + } + this.setFirst(); + }; - // 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]; + /** + * Automatically determine the scale that bests fits the provided minimum step + * @param {Number} [minimumStep] The minimum step size in milliseconds + */ + DataStep.prototype.setMinimumStep = function(minimumStep, containerHeight) { + // round to floor + var size = this._end - this._start; + var safeSize = size * 1.1; + var minimumStepValue = minimumStep * (safeSize / containerHeight); + var orderOfMagnitude = Math.round(Math.log(safeSize)/Math.LN10); - if (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(); - } + var minorStepIdx = -1; + var magnitudefactor = Math.pow(10,orderOfMagnitude); - // 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; - } + var start = 0; + if (orderOfMagnitude < 0) { + start = orderOfMagnitude; + } - var radius; - if (this.showPerspective) { - radius = size / -point.trans.z; - } - else { - radius = size * -(this.eye.z / this.camera.getArmLength()); + 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 (radius < 0) { - radius = 0; + if (solutionFound == true) { + break; } + } + this.stepIndex = minorStepIdx; + this.scale = magnitudefactor; + this.step = magnitudefactor * this.minorSteps[minorStepIdx]; + }; - 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); - } - // draw the circle - ctx.lineWidth = 1.0; - ctx.strokeStyle = borderColor; - ctx.fillStyle = color; - ctx.beginPath(); - ctx.arc(point.screen.x, point.screen.y, radius, 0, Math.PI*2, true); - ctx.fill(); - ctx.stroke(); - } + /** + * Set the range iterator to the start date. + */ + DataStep.prototype.first = function() { + this.setFirst(); }; /** - * Draw all datapoints as bars. - * This function can be used when the style is 'bar', 'bar-color', or 'bar-size' + * Round the current date to the first minor date value + * This must be executed once when the current date is set to start Date */ - Graph3d.prototype._redrawDataBar = function() { - var canvas = this.frame.canvas; - var ctx = canvas.getContext('2d'); - var i, j, surface, corners; + DataStep.prototype.setFirst = function() { + var niceStart = this._start - (this.scale * this.minorSteps[this.stepIndex]); + var niceEnd = this._end + (this.scale * this.minorSteps[this.stepIndex]); - if (this.dataPoints === undefined || this.dataPoints.length <= 0) - return; // TODO: throw exception? + this.marginEnd = this.roundToMinor(niceEnd); + this.marginStart = this.roundToMinor(niceStart); + this.marginRange = this.marginEnd - 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; + this.current = this.marginEnd; - // 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; + }; + + 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; } + } - // order the translated points by depth - var sortDepth = function (a, b) { - return b.dist - a.dist; - }; - this.dataPoints.sort(sortDepth); - // draw the datapoints as bars - var xWidth = this.xBarWidth / 2; - var yWidth = this.yBarWidth / 2; - for (i = 0; i < this.dataPoints.length; i++) { - var point = this.dataPoints[i]; + /** + * 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); + }; - // 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); - } + /** + * Do the next step + */ + DataStep.prototype.next = function() { + var prev = this.current; + this.current -= this.step; - // 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); - } + // safety mechanism: if current time is still unchanged, move to the end + if (this.current == prev) { + this.current = this._end; + } + }; - // 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)} - ]; + /** + * Do the next step + */ + DataStep.prototype.previous = function() { + this.current += this.step; + this.marginEnd += this.step; + this.marginRange = this.marginEnd - this.marginStart; + }; - // calculate screen location of the points - top.forEach(function (obj) { - obj.screen = me._convert3Dto2D(obj.point); - }); - bottom.forEach(function (obj) { - obj.screen = me._convert3Dto2D(obj.point); - }); - // create five sides, calculate both corner points and center points - var surfaces = [ - {corners: top, center: Point3d.avg(bottom[0].point, bottom[2].point)}, - {corners: [top[0], top[1], bottom[1], bottom[0]], center: Point3d.avg(bottom[1].point, bottom[0].point)}, - {corners: [top[1], top[2], bottom[2], bottom[1]], center: Point3d.avg(bottom[2].point, bottom[1].point)}, - {corners: [top[2], top[3], bottom[3], bottom[2]], center: Point3d.avg(bottom[3].point, bottom[2].point)}, - {corners: [top[3], top[0], bottom[0], bottom[3]], center: Point3d.avg(bottom[0].point, bottom[3].point)} - ]; - point.surfaces = surfaces; - // calculate the distance of each of the surface centers to the camera - for (j = 0; j < surfaces.length; j++) { - surface = surfaces[j]; - var transCenter = this._convertPointToTranslation(surface.center); - surface.dist = this.showPerspective ? transCenter.length() : -transCenter.z; - // TODO: this dept calculation doesn't work 100% of the cases due to perspective, - // but the current solution is fast/simple and works in 99.9% of all cases - // the issue is visible in example 14, with graph.setCameraPosition({horizontal: 2.97, vertical: 0.5, distance: 0.9}) + /** + * Get the current datetime + * @return {String} current The current date + */ + DataStep.prototype.getCurrent = function() { + var toPrecision = '' + Number(this.current).toPrecision(5); + for (var i = toPrecision.length-1; i > 0; i--) { + if (toPrecision[i] == "0") { + toPrecision = toPrecision.slice(0,i); } - - // order the surfaces by their (translated) depth - surfaces.sort(function (a, b) { - var diff = b.dist - a.dist; - if (diff) return diff; - - // if equal depth, sort the top surface last - if (a.corners === top) return 1; - if (b.corners === top) return -1; - - // both are equal - return 0; - }); - - // draw the ordered surfaces - ctx.lineWidth = 1; - ctx.strokeStyle = borderColor; - ctx.fillStyle = color; - // NOTE: we start at j=2 instead of j=0 as we don't need to draw the two surfaces at the backside - for (j = 2; j < surfaces.length; j++) { - surface = surfaces[j]; - corners = surface.corners; - ctx.beginPath(); - ctx.moveTo(corners[3].screen.x, corners[3].screen.y); - ctx.lineTo(corners[0].screen.x, corners[0].screen.y); - ctx.lineTo(corners[1].screen.x, corners[1].screen.y); - ctx.lineTo(corners[2].screen.x, corners[2].screen.y); - ctx.lineTo(corners[3].screen.x, corners[3].screen.y); - ctx.fill(); - ctx.stroke(); + else if (toPrecision[i] == "." || toPrecision[i] == ",") { + toPrecision = toPrecision.slice(0,i); + break; + } + else{ + break; } } + + return toPrecision; }; + /** - * Draw a line through all datapoints. - * This function can be used when the style is 'line' + * Snap a date to a rounded value. + * The snap intervals are dependent on the current scale and step. + * @param {Date} date the date to be snapped. + * @return {Date} snappedDate */ - 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? + DataStep.prototype.snap = function(date) { - // 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; - } + /** + * Check if the current value is a major value (for example when the step + * is DAY, a major value is each first day of the MONTH) + * @return {boolean} true if current date is major, else false. + */ + DataStep.prototype.isMajor = function() { + return (this.current % (this.scale * this.majorSteps[this.stepIndex]) == 0); + }; - // start the line - if (this.dataPoints.length > 0) { - point = this.dataPoints[0]; + module.exports = DataStep; - 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); - } +/***/ }, +/* 15 */ +/***/ function(module, exports, __webpack_require__) { - // finish the line - if (this.dataPoints.length > 0) { - ctx.stroke(); - } - }; + var util = __webpack_require__(2); + var hammerUtil = __webpack_require__(43); + var moment = __webpack_require__(41); + var Component = __webpack_require__(19); /** - * Start a moving operation inside the provided parent element - * @param {Event} event The event that occurred (required for - * retrieving the mouse position) + * @constructor Range + * A Range controls a numeric range with a start and end value. + * The Range adjusts the range based on mouse events or programmatic changes, + * and triggers events when the range is changing or has been changed. + * @param {{dom: Object, domProps: Object, emitter: Emitter}} body + * @param {Object} [options] See description at Range.setOptions */ - Graph3d.prototype._onMouseDown = function(event) { - event = event || window.event; + function Range(body, options) { + var now = moment().hours(0).minutes(0).seconds(0).milliseconds(0); + this.start = now.clone().add('days', -3).valueOf(); // Number + this.end = now.clone().add('days', 4).valueOf(); // Number - // check if mouse is still down (may be up when focus is lost for example - // in an iframe) - if (this.leftButtonDown) { - this._onMouseUp(event); - } + this.body = body; - // only react on left mouse button down - this.leftButtonDown = event.which ? (event.which === 1) : (event.button === 1); - if (!this.leftButtonDown && !this.touchDown) return; + // 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); - // get mouse position (different code for IE and all other browsers) - this.startMouseX = getMouseX(event); - this.startMouseY = getMouseY(event); + this.props = { + touch: {} + }; - this.startStart = new Date(this.start); - this.startEnd = new Date(this.end); - this.startArmRotation = this.camera.getArmRotation(); + // drag listeners for dragging + this.body.emitter.on('dragstart', this._onDragStart.bind(this)); + this.body.emitter.on('drag', this._onDrag.bind(this)); + this.body.emitter.on('dragend', this._onDragEnd.bind(this)); - this.frame.style.cursor = 'move'; + // ignore dragging when holding + this.body.emitter.on('hold', this._onHold.bind(this)); - // 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 - */ - Graph3d.prototype._onMouseMove = function (event) { - event = event || window.event; + // mouse wheel for zooming + this.body.emitter.on('mousewheel', this._onMouseWheel.bind(this)); + this.body.emitter.on('DOMMouseScroll', this._onMouseWheel.bind(this)); // For FF - // calculate change in mouse position - var diffX = parseFloat(getMouseX(event)) - this.startMouseX; - var diffY = parseFloat(getMouseY(event)) - this.startMouseY; + // pinch to zoom + this.body.emitter.on('touch', this._onTouch.bind(this)); + this.body.emitter.on('pinch', this._onPinch.bind(this)); - var horizontalNew = this.startArmRotation.horizontal + diffX / 200; - var verticalNew = this.startArmRotation.vertical + diffY / 200; + this.setOptions(options); + } - var snapAngle = 4; // degrees - var snapValue = Math.sin(snapAngle / 360 * 2 * Math.PI); + Range.prototype = new Component(); - // 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; - } + /** + * Set options for the range controller + * @param {Object} options Available options: + * {Number | Date | String} start Start date for the range + * {Number | Date | String} end End date for the range + * {Number} min Minimum value for start + * {Number} max Maximum value for end + * {Number} zoomMin Set a minimum value for + * (end - start). + * {Number} zoomMax Set a maximum value for + * (end - start). + * {Boolean} moveable Enable moving of the range + * by dragging. True by default + * {Boolean} zoomable Enable zooming of the range + * by pinching/scrolling. True by default + */ + Range.prototype.setOptions = function (options) { + if (options) { + // copy the options that we know + var fields = ['direction', 'min', 'max', 'zoomMin', 'zoomMax', 'moveable', 'zoomable']; + util.selectiveExtend(fields, this.options, options); - // 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; + if ('start' in options || 'end' in options) { + // apply a new range. both start and end are optional + this.setRange(options.start, options.end); + } } - - this.camera.setArmRotation(horizontalNew, verticalNew); - this.redraw(); - - // fire a cameraPositionChange event - var parameters = this.getCameraPosition(); - this.emit('cameraPositionChange', parameters); - - util.preventDefault(event); }; - /** - * Stop moving operating. - * This function activated from within the funcion Graph.mouseDown(). - * @param {event} event The event + * Test whether direction has a valid value + * @param {String} direction 'horizontal' or 'vertical' */ - Graph3d.prototype._onMouseUp = function (event) { - this.frame.style.cursor = 'auto'; - this.leftButtonDown = false; + function validateDirection (direction) { + if (direction != 'horizontal' && direction != 'vertical') { + throw new TypeError('Unknown direction "' + direction + '". ' + + 'Choose "horizontal" or "vertical".'); + } + } - // remove event listeners here - util.removeEventListener(document, 'mousemove', this.onmousemove); - util.removeEventListener(document, 'mouseup', this.onmouseup); - util.preventDefault(event); + /** + * Set a new start and end range + * @param {Number} [start] + * @param {Number} [end] + */ + Range.prototype.setRange = function(start, end) { + var changed = this._applyRange(start, end); + if (changed) { + var params = { + start: new Date(this.start), + end: new Date(this.end) + }; + this.body.emitter.emit('rangechange', params); + this.body.emitter.emit('rangechanged', params); + } }; /** - * 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 + * 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._onTooltip = function (event) { - var delay = 300; // ms - var mouseX = getMouseX(event) - util.getAbsoluteLeft(this.frame); - var mouseY = getMouseY(event) - util.getAbsoluteTop(this.frame); + 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; - if (!this.showTooltip) { - return; + // 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 + '"'); } - if (this.tooltipTimeout) { - clearTimeout(this.tooltipTimeout); + // prevent start < end + if (newEnd < newStart) { + newEnd = newStart; } - // (delayed) display of a tooltip only if no mouse button is down - if (this.leftButtonDown) { - this._hideTooltip(); - return; + // 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; + } + } + } } - 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); + // prevent end > max + if (max !== null) { + if (newEnd > max) { + diff = (newEnd - max); + newStart -= diff; + newEnd -= diff; + + // prevent start < min + if (min != null) { + if (newStart < min) { + newStart = min; + } + } + } + } + + // prevent (end-start) < zoomMin + if (this.options.zoomMin !== null) { + var zoomMin = parseFloat(this.options.zoomMin); + if (zoomMin < 0) { + zoomMin = 0; + } + if ((newEnd - newStart) < zoomMin) { + if ((this.end - this.start) === zoomMin) { + // ignore this action, we are already zoomed to the minimum + newStart = this.start; + newEnd = this.end; } else { - this._hideTooltip(); + // zoom to the minimum + diff = (zoomMin - (newEnd - newStart)); + newStart -= diff / 2; + newEnd += diff / 2; } } } - 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); + // prevent (end-start) > zoomMax + if (this.options.zoomMax !== null) { + var zoomMax = parseFloat(this.options.zoomMax); + if (zoomMax < 0) { + zoomMax = 0; + } + if ((newEnd - newStart) > zoomMax) { + if ((this.end - this.start) === zoomMax) { + // ignore this action, we are already zoomed to the maximum + newStart = this.start; + newEnd = this.end; } - }, delay); + else { + // zoom to the maximum + diff = ((newEnd - newStart) - zoomMax); + newStart += diff / 2; + newEnd -= diff / 2; + } + } } - }; - /** - * Event handler for touchstart event on mobile devices - */ - Graph3d.prototype._onTouchStart = function(event) { - this.touchDown = true; + var changed = (this.start != newStart || this.end != newEnd); - var me = this; - this.ontouchmove = function (event) {me._onTouchMove(event);}; - this.ontouchend = function (event) {me._onTouchEnd(event);}; - util.addEventListener(document, 'touchmove', me.ontouchmove); - util.addEventListener(document, 'touchend', me.ontouchend); + this.start = newStart; + this.end = newEnd; - this._onMouseDown(event); + return changed; }; /** - * Event handler for touchmove event on mobile devices + * Retrieve the current range. + * @return {Object} An object with start and end properties */ - Graph3d.prototype._onTouchMove = function(event) { - this._onMouseMove(event); + Range.prototype.getRange = function() { + return { + start: this.start, + end: this.end + }; }; /** - * Event handler for touchend event on mobile devices + * 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._onTouchEnd = function(event) { - this.touchDown = false; + Range.prototype.conversion = function (width) { + return Range.conversion(this.start, this.end, width); + }; - util.removeEventListener(document, 'touchmove', this.ontouchmove); - util.removeEventListener(document, 'touchend', this.ontouchend); + /** + * Static method to calculate the conversion offset and scale for a range, + * based on the provided start, end, and width + * @param {Number} start + * @param {Number} end + * @param {Number} width + * @returns {{offset: number, scale: number}} conversion + */ + Range.conversion = function (start, end, width) { + if (width != 0 && (end - start != 0)) { + return { + offset: start, + scale: width / (end - start) + } + } + else { + return { + offset: 0, + scale: 1 + }; + } + }; - this._onMouseUp(event); + /** + * Start dragging horizontally or vertically + * @param {Event} event + * @private + */ + Range.prototype._onDragStart = function(event) { + // only allow dragging when configured as movable + if (!this.options.moveable) return; + + // refuse to drag when we where pinching to prevent the timeline make a jump + // when releasing the fingers in opposite order from the touch screen + if (!this.props.touch.allowDragging) return; + + this.props.touch.start = this.start; + this.props.touch.end = this.end; + + if (this.body.dom.root) { + this.body.dom.root.style.cursor = 'move'; + } + }; + + /** + * Perform dragging operation + * @param {Event} event + * @private + */ + Range.prototype._onDrag = function (event) { + // only allow dragging when configured as movable + if (!this.options.moveable) return; + var direction = this.options.direction; + validateDirection(direction); + // refuse to drag when we where pinching to prevent the timeline make a jump + // when releasing the fingers in opposite order from the touch screen + if (!this.props.touch.allowDragging) return; + var delta = (direction == 'horizontal') ? event.gesture.deltaX : event.gesture.deltaY, + interval = (this.props.touch.end - this.props.touch.start), + width = (direction == 'horizontal') ? this.body.domProps.center.width : this.body.domProps.center.height, + diffRange = -delta / width * interval; + this._applyRange(this.props.touch.start + diffRange, this.props.touch.end + diffRange); + this.body.emitter.emit('rangechange', { + start: new Date(this.start), + end: new Date(this.end) + }); }; + /** + * Stop dragging operation + * @param {event} event + * @private + */ + Range.prototype._onDragEnd = function (event) { + // only allow dragging when configured as movable + if (!this.options.moveable) return; + + // refuse to drag when we where pinching to prevent the timeline make a jump + // when releasing the fingers in opposite order from the touch screen + if (!this.props.touch.allowDragging) return; + + 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) + }); + }; /** - * 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; if (event.wheelDelta) { /* IE/Opera. */ - delta = event.wheelDelta/120; + 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; + 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) { - 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 gesture = hammerUtil.fakeGesture(this, event), + pointer = getPointer(gesture.center, this.body.dom.center), + pointerDate = this._pointerToDate(pointer); - // fire a cameraPositionChange event - var parameters = this.getCameraPosition(); - this.emit('cameraPositionChange', parameters); + this.zoom(scale, pointerDate); + } - // 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)); + 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; + }; - // 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); + /** + * On start of a hold gesture + * @private + */ + Range.prototype._onHold = function () { + this.props.touch.allowDragging = false; }; /** - * 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 + * Handle pinch event + * @param {Event} event * @private */ - Graph3d.prototype._dataPointFromXY = function (x, y) { - var i, - distMax = 100, // px - dataPoint = null, - closestDataPoint = null, - closestDist = null, - center = new Point2d(x, y); + Range.prototype._onPinch = function (event) { + // only allow zooming when configured as zoomable and moveable + if (!(this.options.zoomable && this.options.moveable)) return; - if (this.style === Graph3d.STYLE.BAR || - this.style === Graph3d.STYLE.BARCOLOR || - this.style === Graph3d.STYLE.BARSIZE) { - // the data points are ordered from far away to closest - for (i = this.dataPoints.length - 1; i >= 0; i--) { - dataPoint = this.dataPoints[i]; - var surfaces = dataPoint.surfaces; - if (surfaces) { - for (var s = surfaces.length - 1; s >= 0; s--) { - // split each surface in two triangles, and see if the center point is inside one of these - var surface = surfaces[s]; - var corners = surface.corners; - var triangle1 = [corners[0].screen, corners[1].screen, corners[2].screen]; - var triangle2 = [corners[2].screen, corners[3].screen, corners[0].screen]; - if (this._insideTriangle(center, triangle1) || - this._insideTriangle(center, triangle2)) { - // return immediately at the first hit - return dataPoint; - } - } - } - } - } - else { - // find the closest data point, using distance to the center of the point on 2d screen - for (i = 0; i < this.dataPoints.length; i++) { - dataPoint = this.dataPoints[i]; - var point = dataPoint.screen; - if (point) { - var distX = Math.abs(x - point.x); - var distY = Math.abs(y - point.y); - var dist = Math.sqrt(distX * distX + distY * distY); + this.props.touch.allowDragging = false; - if ((closestDist === null || dist < closestDist) && dist < distMax) { - closestDist = dist; - closestDataPoint = dataPoint; - } - } + if (event.gesture.touches.length > 1) { + if (!this.props.touch.center) { + this.props.touch.center = getPointer(event.gesture.center, this.body.dom.center); } - } + var scale = 1 / event.gesture.scale, + initDate = this._pointerToDate(this.props.touch.center); - return closestDataPoint; + // calculate new start and end + var newStart = parseInt(initDate + (this.props.touch.start - initDate) * scale); + var newEnd = parseInt(initDate + (this.props.touch.end - initDate) * scale); + + // apply new range + this.setRange(newStart, newEnd); + } }; /** - * Display a tooltip for given data point - * @param {Object} dataPoint + * Helper function to calculate the center date for zooming + * @param {{x: Number, y: Number}} pointer + * @return {number} date * @private */ - Graph3d.prototype._showTooltip = function (dataPoint) { - var content, line, dot; + Range.prototype._pointerToDate = function (pointer) { + var conversion; + var direction = this.options.direction; - if (!this.tooltip) { - content = document.createElement('div'); - content.style.position = 'absolute'; - content.style.padding = '10px'; - content.style.border = '1px solid #4d4d4d'; - content.style.color = '#1a1a1a'; - content.style.background = 'rgba(255,255,255,0.7)'; - content.style.borderRadius = '2px'; - content.style.boxShadow = '5px 5px 10px rgba(128,128,128,0.5)'; - - line = document.createElement('div'); - line.style.position = 'absolute'; - line.style.height = '40px'; - line.style.width = '0'; - line.style.borderLeft = '1px solid #4d4d4d'; - - dot = document.createElement('div'); - dot.style.position = 'absolute'; - dot.style.height = '0'; - dot.style.width = '0'; - dot.style.border = '5px solid #4d4d4d'; - dot.style.borderRadius = '5px'; - - this.tooltip = { - dataPoint: null, - dom: { - content: content, - line: line, - dot: dot - } - }; - } - else { - content = this.tooltip.dom.content; - line = this.tooltip.dom.line; - dot = this.tooltip.dom.dot; - } - - this._hideTooltip(); + validateDirection(direction); - this.tooltip.dataPoint = dataPoint; - if (typeof this.showTooltip === 'function') { - content.innerHTML = this.showTooltip(dataPoint.point); + if (direction == 'horizontal') { + var width = this.body.domProps.center.width; + conversion = this.conversion(width); + return pointer.x / conversion.scale + conversion.offset; } else { - content.innerHTML = '' + - '' + - '' + - '' + - '
x:' + dataPoint.point.x + '
y:' + dataPoint.point.y + '
z:' + dataPoint.point.z + '
'; + var height = this.body.domProps.center.height; + conversion = this.conversion(height); + return pointer.y / conversion.scale + conversion.offset; } - - content.style.left = '0'; - content.style.top = '0'; - this.frame.appendChild(content); - this.frame.appendChild(line); - this.frame.appendChild(dot); - - // calculate sizes - var contentWidth = content.offsetWidth; - var contentHeight = content.offsetHeight; - var lineHeight = line.offsetHeight; - var dotWidth = dot.offsetWidth; - var dotHeight = dot.offsetHeight; - - var left = dataPoint.screen.x - contentWidth / 2; - left = Math.min(Math.max(left, 10), this.frame.clientWidth - 10 - contentWidth); - - line.style.left = dataPoint.screen.x + 'px'; - line.style.top = (dataPoint.screen.y - lineHeight) + 'px'; - content.style.left = left + 'px'; - content.style.top = (dataPoint.screen.y - lineHeight - contentHeight) + 'px'; - dot.style.left = (dataPoint.screen.x - dotWidth / 2) + 'px'; - dot.style.top = (dataPoint.screen.y - dotHeight / 2) + 'px'; }; /** - * Hide the tooltip when displayed + * 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 */ - Graph3d.prototype._hideTooltip = function () { - if (this.tooltip) { - this.tooltip.dataPoint = null; + function getPointer (touch, element) { + return { + x: touch.pageX - util.getAbsoluteLeft(element), + y: touch.pageY - util.getAbsoluteTop(element) + }; + } - 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); - } - } - } + /** + * Zoom the range the given scale in or out. Start and end date will + * be adjusted, and the timeline will be redrawn. You can optionally give a + * date around which to zoom. + * For example, try scale = 0.9 or 1.1 + * @param {Number} scale Scaling factor. Values above 1 will zoom out, + * values below 1 will zoom in. + * @param {Number} [center] Value representing a date around which will + * be zoomed. + */ + Range.prototype.zoom = function(scale, center) { + // if centerDate is not provided, take it half between start Date and end Date + if (center == null) { + center = (this.start + this.end) / 2; } - }; - /**--------------------------------------------------------------------------**/ + // calculate new start and end + var newStart = center + (this.start - center) * scale; + var newEnd = center + (this.end - center) * scale; + this.setRange(newStart, newEnd); + }; /** - * Get the horizontal mouse position from a mouse event - * @param {Event} event - * @return {Number} mouse x + * 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 */ - getMouseX = function(event) { - if ('clientX' in event) return event.clientX; - return event.targetTouches[0] && event.targetTouches[0].clientX || 0; + Range.prototype.move = function(delta) { + // zoom start Date and end Date relative to the centerDate + var diff = (this.end - this.start); + + // apply new values + var newStart = this.start + diff * delta; + var newEnd = this.end + diff * delta; + + // TODO: reckon with min and max range + + this.start = newStart; + this.end = newEnd; }; /** - * Get the vertical mouse position from a mouse event - * @param {Event} event - * @return {Number} mouse y + * Move the range to a new center point + * @param {Number} moveTo New center point of the range */ - getMouseY = function(event) { - if ('clientY' in event) return event.clientY; - return event.targetTouches[0] && event.targetTouches[0].clientY || 0; + Range.prototype.moveTo = function(moveTo) { + var center = (this.start + this.end) / 2; + + var diff = center - moveTo; + + // calculate new start and end + var newStart = this.start - diff; + var newEnd = this.end - diff; + + this.setRange(newStart, newEnd); }; - module.exports = Graph3d; + module.exports = Range; /***/ }, -/* 10 */ +/* 16 */ /***/ function(module, exports, __webpack_require__) { - + // Utility functions for ordering and stacking of items + var EPSILON = 0.001; // used when checking collisions, to prevent round-off errors + /** - * Expose `Emitter`. + * Order items by their start data + * @param {Item[]} items */ - - module.exports = Emitter; + exports.orderByStart = function(items) { + items.sort(function (a, b) { + return a.data.start - b.data.start; + }); + }; /** - * Initialize a new `Emitter`. - * - * @api public + * 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; - function Emitter(obj) { - if (obj) return mixin(obj); + return aTime - bTime; + }); }; /** - * Mixin the emitter properties. - * - * @param {Object} obj - * @return {Object} - * @api private + * 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; - function mixin(obj) { - for (var key in Emitter.prototype) { - obj[key] = Emitter.prototype[key]; + if (force) { + // reset top position of all items + for (i = 0, iMax = items.length; i < iMax; i++) { + items[i].top = null; + } } - return obj; - } - /** - * Listen on the given `event` with `fn`. - * - * @param {String} event - * @param {Function} fn - * @return {Emitter} - * @api public - */ + // calculate new, non-overlapping positions + for (i = 0, iMax = items.length; i < iMax; i++) { + var item = items[i]; + if (item.top === null) { + // initialize top position + item.top = margin.axis; - Emitter.prototype.on = - Emitter.prototype.addEventListener = function(event, fn){ - this._callbacks = this._callbacks || {}; - (this._callbacks[event] = this._callbacks[event] || []) - .push(fn); - return this; + do { + // TODO: optimize checking for overlap. when there is a gap without items, + // you only need to check for items from the next item on, not from zero + var collidingItem = null; + for (var j = 0, jj = items.length; j < jj; j++) { + var other = items[j]; + if (other.top !== null && other !== item && exports.collision(item, other, margin.item)) { + collidingItem = other; + break; + } + } + + if (collidingItem != null) { + // There is a collision. Reposition the items above the colliding element + item.top = collidingItem.top + collidingItem.height + margin.item.vertical; + } + } while (collidingItem); + } + } }; /** - * Adds an `event` listener that will be invoked a single - * time then automatically removed. - * - * @param {String} event - * @param {Function} fn - * @return {Emitter} - * @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) { + var i, iMax; - Emitter.prototype.once = function(event, fn){ - var self = this; - this._callbacks = this._callbacks || {}; - - function on() { - self.off(event, on); - fn.apply(this, arguments); + // reset top position of all items + for (i = 0, iMax = items.length; i < iMax; i++) { + items[i].top = margin.axis; } - - on.fn = fn; - this.on(event, on); - return this; }; /** - * Remove the given callback for `event` or all - * registered callbacks. - * - * @param {String} event - * @param {Function} fn - * @return {Emitter} - * @api public + * 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 */ + 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); + }; - Emitter.prototype.off = - Emitter.prototype.removeListener = - Emitter.prototype.removeAllListeners = - Emitter.prototype.removeEventListener = function(event, fn){ - this._callbacks = this._callbacks || {}; - - // all - if (0 == arguments.length) { - this._callbacks = {}; - return this; - } - - // specific event - var callbacks = this._callbacks[event]; - if (!callbacks) return this; - // remove all handlers - if (1 == arguments.length) { - delete this._callbacks[event]; - return this; - } +/***/ }, +/* 17 */ +/***/ function(module, exports, __webpack_require__) { - // 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; - }; + var moment = __webpack_require__(41); /** - * Emit `event` with the given args. + * @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. * - * @param {String} event - * @param {Mixed} ... - * @return {Emitter} + * If minimumStep is provided, the step size is chosen as close as possible + * to the minimumStep but larger than minimumStep. If minimumStep is not + * provided, the scale is set to 1 DAY. + * The minimumStep should correspond with the onscreen size of about 6 characters + * + * Alternatively, you can set a scale by hand. + * After creation, you can initialize the class by executing first(). Then you + * can iterate from the start date to the end date via next(). You can check if + * the end date is reached with the function hasNext(). After each step, you can + * retrieve the current date via getCurrent(). + * The TimeStep has scales ranging from milliseconds, seconds, minutes, hours, + * days, to years. + * + * Version: 1.2 + * + * @param {Date} [start] The start date, for example new Date(2010, 9, 21) + * or new Date(2010, 9, 21, 23, 45, 00) + * @param {Date} [end] The end date + * @param {Number} [minimumStep] Optional. Minimum step size in milliseconds */ + function TimeStep(start, end, minimumStep) { + // variables + this.current = new Date(); + this._start = new Date(); + this._end = new Date(); - Emitter.prototype.emit = function(event){ - this._callbacks = this._callbacks || {}; - var args = [].slice.call(arguments, 1) - , callbacks = this._callbacks[event]; + this.autoScale = true; + this.scale = TimeStep.SCALE.DAY; + this.step = 1; - if (callbacks) { - callbacks = callbacks.slice(0); - for (var i = 0, len = callbacks.length; i < len; ++i) { - callbacks[i].apply(this, args); - } - } + // initialize the range + this.setRange(start, end, minimumStep); + } - return this; + /// enum scale + TimeStep.SCALE = { + MILLISECOND: 1, + SECOND: 2, + MINUTE: 3, + HOUR: 4, + DAY: 5, + WEEKDAY: 6, + MONTH: 7, + YEAR: 8 }; + /** - * Return array of callbacks for `event`. - * - * @param {String} event - * @return {Array} - * @api public + * Set a new range + * If minimumStep is provided, the step size is chosen as close as possible + * to the minimumStep but larger than minimumStep. If minimumStep is not + * provided, the scale is set to 1 DAY. + * The minimumStep should correspond with the onscreen size of about 6 characters + * @param {Date} [start] The start date and time. + * @param {Date} [end] The end date and time. + * @param {int} [minimumStep] Optional. Minimum step size in milliseconds */ + TimeStep.prototype.setRange = function(start, end, minimumStep) { + if (!(start instanceof Date) || !(end instanceof Date)) { + throw "No legal start or end date in method setRange"; + } - Emitter.prototype.listeners = function(event){ - this._callbacks = this._callbacks || {}; - return this._callbacks[event] || []; + this._start = (start != undefined) ? new Date(start.valueOf()) : new Date(); + this._end = (end != undefined) ? new Date(end.valueOf()) : new Date(); + + if (this.autoScale) { + this.setMinimumStep(minimumStep); + } }; /** - * Check if this emitter has `event` handlers. - * - * @param {String} event - * @return {Boolean} - * @api public + * Set the range iterator to the start date. */ - - Emitter.prototype.hasListeners = function(event){ - return !! this.listeners(event).length; + TimeStep.prototype.first = function() { + this.current = new Date(this._start.valueOf()); + this.roundToMinor(); }; - -/***/ }, -/* 11 */ -/***/ function(module, exports, __webpack_require__) { - /** - * @prototype Point3d - * @param {Number} [x] - * @param {Number} [y] - * @param {Number} [z] + * Round the current date to the first minor date value + * This must be executed once when the current date is set to start Date */ - function Point3d(x, y, z) { - this.x = x !== undefined ? x : 0; - this.y = y !== undefined ? y : 0; - this.z = z !== undefined ? z : 0; + TimeStep.prototype.roundToMinor = function() { + // round to floor + // IMPORTANT: we have no breaks in this switch! (this is no bug) + //noinspection FallthroughInSwitchStatementJS + switch (this.scale) { + case TimeStep.SCALE.YEAR: + this.current.setFullYear(this.step * Math.floor(this.current.getFullYear() / this.step)); + this.current.setMonth(0); + case TimeStep.SCALE.MONTH: this.current.setDate(1); + case TimeStep.SCALE.DAY: // intentional fall through + case TimeStep.SCALE.WEEKDAY: this.current.setHours(0); + case TimeStep.SCALE.HOUR: this.current.setMinutes(0); + case TimeStep.SCALE.MINUTE: this.current.setSeconds(0); + case TimeStep.SCALE.SECOND: this.current.setMilliseconds(0); + //case TimeStep.SCALE.MILLISECOND: // nothing to do for milliseconds + } + + if (this.step != 1) { + // round down to the first minor value that is a multiple of the current step size + switch (this.scale) { + case TimeStep.SCALE.MILLISECOND: this.current.setMilliseconds(this.current.getMilliseconds() - this.current.getMilliseconds() % this.step); break; + case TimeStep.SCALE.SECOND: this.current.setSeconds(this.current.getSeconds() - this.current.getSeconds() % this.step); break; + case TimeStep.SCALE.MINUTE: this.current.setMinutes(this.current.getMinutes() - this.current.getMinutes() % this.step); break; + case TimeStep.SCALE.HOUR: this.current.setHours(this.current.getHours() - this.current.getHours() % this.step); break; + case TimeStep.SCALE.WEEKDAY: // intentional fall through + case TimeStep.SCALE.DAY: this.current.setDate((this.current.getDate()-1) - (this.current.getDate()-1) % this.step + 1); break; + case TimeStep.SCALE.MONTH: this.current.setMonth(this.current.getMonth() - this.current.getMonth() % this.step); break; + case TimeStep.SCALE.YEAR: this.current.setFullYear(this.current.getFullYear() - this.current.getFullYear() % this.step); break; + default: break; + } + } }; /** - * Subtract the two provided points, returns a-b - * @param {Point3d} a - * @param {Point3d} b - * @return {Point3d} a-b + * Check if the there is a next step + * @return {boolean} true if the current date has not passed the end date */ - 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; + TimeStep.prototype.hasNext = function () { + return (this.current.valueOf() <= this._end.valueOf()); }; /** - * Add the two provided points, returns a+b - * @param {Point3d} a - * @param {Point3d} b - * @return {Point3d} a+b + * Do the next step */ - 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; - }; + TimeStep.prototype.next = function() { + var prev = this.current.valueOf(); - /** - * 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; + // Two cases, needed to prevent issues with switching daylight savings + // (end of March and end of October) + if (this.current.getMonth() < 6) { + switch (this.scale) { + case TimeStep.SCALE.MILLISECOND: - return crossproduct; - }; + this.current = new Date(this.current.valueOf() + this.step); break; + case TimeStep.SCALE.SECOND: this.current = new Date(this.current.valueOf() + this.step * 1000); break; + case TimeStep.SCALE.MINUTE: this.current = new Date(this.current.valueOf() + this.step * 1000 * 60); break; + case TimeStep.SCALE.HOUR: + this.current = new Date(this.current.valueOf() + this.step * 1000 * 60 * 60); + // in case of skipping an hour for daylight savings, adjust the hour again (else you get: 0h 5h 9h ... instead of 0h 4h 8h ...) + var h = this.current.getHours(); + this.current.setHours(h - (h % this.step)); + break; + case TimeStep.SCALE.WEEKDAY: // intentional fall through + case TimeStep.SCALE.DAY: this.current.setDate(this.current.getDate() + this.step); break; + case TimeStep.SCALE.MONTH: this.current.setMonth(this.current.getMonth() + this.step); break; + case TimeStep.SCALE.YEAR: this.current.setFullYear(this.current.getFullYear() + this.step); break; + default: break; + } + } + else { + switch (this.scale) { + case TimeStep.SCALE.MILLISECOND: this.current = new Date(this.current.valueOf() + this.step); break; + case TimeStep.SCALE.SECOND: this.current.setSeconds(this.current.getSeconds() + this.step); break; + case TimeStep.SCALE.MINUTE: this.current.setMinutes(this.current.getMinutes() + this.step); break; + case TimeStep.SCALE.HOUR: this.current.setHours(this.current.getHours() + this.step); break; + case TimeStep.SCALE.WEEKDAY: // intentional fall through + case TimeStep.SCALE.DAY: this.current.setDate(this.current.getDate() + this.step); break; + case TimeStep.SCALE.MONTH: this.current.setMonth(this.current.getMonth() + this.step); break; + case TimeStep.SCALE.YEAR: this.current.setFullYear(this.current.getFullYear() + this.step); break; + default: break; + } + } + if (this.step != 1) { + // round down to the correct major value + switch (this.scale) { + case TimeStep.SCALE.MILLISECOND: if(this.current.getMilliseconds() < this.step) this.current.setMilliseconds(0); break; + case TimeStep.SCALE.SECOND: if(this.current.getSeconds() < this.step) this.current.setSeconds(0); break; + case TimeStep.SCALE.MINUTE: if(this.current.getMinutes() < this.step) this.current.setMinutes(0); break; + case TimeStep.SCALE.HOUR: if(this.current.getHours() < this.step) this.current.setHours(0); break; + case TimeStep.SCALE.WEEKDAY: // intentional fall through + case TimeStep.SCALE.DAY: if(this.current.getDate() < this.step+1) this.current.setDate(1); break; + case TimeStep.SCALE.MONTH: if(this.current.getMonth() < this.step) this.current.setMonth(0); break; + case TimeStep.SCALE.YEAR: break; // nothing to do for year + default: break; + } + } - /** - * 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 - ); + // safety mechanism: if current time is still unchanged, move to the end + if (this.current.valueOf() == prev) { + this.current = new Date(this._end.valueOf()); + } }; - module.exports = Point3d; - - -/***/ }, -/* 12 */ -/***/ function(module, exports, __webpack_require__) { /** - * @prototype Point2d - * @param {Number} [x] - * @param {Number} [y] + * Get the current datetime + * @return {Date} current The current date */ - Point2d = function (x, y) { - this.x = x !== undefined ? x : 0; - this.y = y !== undefined ? y : 0; + TimeStep.prototype.getCurrent = function() { + return this.current; }; - module.exports = Point2d; - - -/***/ }, -/* 13 */ -/***/ function(module, exports, __webpack_require__) { - - var Point3d = __webpack_require__(11); - /** - * @class Camera - * The camera is mounted on a (virtual) camera arm. The camera arm can rotate - * The camera is always looking in the direction of the origin of the arm. - * This way, the camera always rotates around one fixed point, the location - * of the camera arm. + * Set a custom scale. Autoscaling will be disabled. + * For example setScale(SCALE.MINUTES, 5) will result + * in minor steps of 5 minutes, and major steps of an hour. * - * Documentation: - * http://en.wikipedia.org/wiki/3D_projection + * @param {TimeStep.SCALE} newScale + * A scale. Choose from SCALE.MILLISECOND, + * SCALE.SECOND, SCALE.MINUTE, SCALE.HOUR, + * SCALE.WEEKDAY, SCALE.DAY, SCALE.MONTH, + * SCALE.YEAR. + * @param {Number} newStep A step size, by default 1. Choose for + * example 1, 2, 5, or 10. */ - Camera = function () { - this.armLocation = new Point3d(); - this.armRotation = {}; - this.armRotation.horizontal = 0; - this.armRotation.vertical = 0; - this.armLength = 1.7; + TimeStep.prototype.setScale = function(newScale, newStep) { + this.scale = newScale; - this.cameraLocation = new Point3d(); - this.cameraRotation = new Point3d(0.5*Math.PI, 0, 0); + if (newStep > 0) { + this.step = newStep; + } - this.calculateCameraOrientation(); + this.autoScale = false; }; /** - * 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 + * Enable or disable autoscaling + * @param {boolean} enable If true, autoascaling is set true */ - Camera.prototype.setArmLocation = function(x, y, z) { - this.armLocation.x = x; - this.armLocation.y = y; - this.armLocation.z = z; - - this.calculateCameraOrientation(); + TimeStep.prototype.setAutoScale = function (enable) { + this.autoScale = enable; }; + /** - * 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. + * Automatically determine the scale that bests fits the provided minimum step + * @param {Number} [minimumStep] The minimum step size in milliseconds */ - Camera.prototype.setArmRotation = function(horizontal, vertical) { - if (horizontal !== undefined) { - this.armRotation.horizontal = horizontal; + TimeStep.prototype.setMinimumStep = function(minimumStep) { + if (minimumStep == undefined) { + return; } - 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; - } + 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 (horizontal !== undefined || vertical !== undefined) { - this.calculateCameraOrientation(); - } + // find the smallest step that is larger than the provided minimumStep + if (stepYear*1000 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 1000;} + if (stepYear*500 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 500;} + if (stepYear*100 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 100;} + if (stepYear*50 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 50;} + if (stepYear*10 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 10;} + if (stepYear*5 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 5;} + if (stepYear > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 1;} + if (stepMonth*3 > minimumStep) {this.scale = TimeStep.SCALE.MONTH; this.step = 3;} + if (stepMonth > minimumStep) {this.scale = TimeStep.SCALE.MONTH; this.step = 1;} + if (stepDay*5 > minimumStep) {this.scale = TimeStep.SCALE.DAY; this.step = 5;} + if (stepDay*2 > minimumStep) {this.scale = TimeStep.SCALE.DAY; this.step = 2;} + if (stepDay > minimumStep) {this.scale = TimeStep.SCALE.DAY; this.step = 1;} + if (stepDay/2 > minimumStep) {this.scale = TimeStep.SCALE.WEEKDAY; this.step = 1;} + if (stepHour*4 > minimumStep) {this.scale = TimeStep.SCALE.HOUR; this.step = 4;} + if (stepHour > minimumStep) {this.scale = TimeStep.SCALE.HOUR; this.step = 1;} + if (stepMinute*15 > minimumStep) {this.scale = TimeStep.SCALE.MINUTE; this.step = 15;} + if (stepMinute*10 > minimumStep) {this.scale = TimeStep.SCALE.MINUTE; this.step = 10;} + if (stepMinute*5 > minimumStep) {this.scale = TimeStep.SCALE.MINUTE; this.step = 5;} + if (stepMinute > minimumStep) {this.scale = TimeStep.SCALE.MINUTE; this.step = 1;} + if (stepSecond*15 > minimumStep) {this.scale = TimeStep.SCALE.SECOND; this.step = 15;} + if (stepSecond*10 > minimumStep) {this.scale = TimeStep.SCALE.SECOND; this.step = 10;} + if (stepSecond*5 > minimumStep) {this.scale = TimeStep.SCALE.SECOND; this.step = 5;} + if (stepSecond > minimumStep) {this.scale = TimeStep.SCALE.SECOND; this.step = 1;} + if (stepMillisecond*200 > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 200;} + if (stepMillisecond*100 > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 100;} + if (stepMillisecond*50 > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 50;} + if (stepMillisecond*10 > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 10;} + if (stepMillisecond*5 > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 5;} + if (stepMillisecond > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 1;} }; /** - * Retrieve the current arm rotation - * @return {object} An object with parameters horizontal and vertical + * Snap a date to a rounded value. + * The snap intervals are dependent on the current scale and step. + * @param {Date} date the date to be snapped. + * @return {Date} snappedDate */ - Camera.prototype.getArmRotation = function() { - var rot = {}; - rot.horizontal = this.armRotation.horizontal; - rot.vertical = this.armRotation.vertical; + TimeStep.prototype.snap = function(date) { + var clone = new Date(date.valueOf()); - return rot; - }; + if (this.scale == TimeStep.SCALE.YEAR) { + var year = clone.getFullYear() + Math.round(clone.getMonth() / 12); + clone.setFullYear(Math.round(year / this.step) * this.step); + clone.setMonth(0); + clone.setDate(0); + clone.setHours(0); + clone.setMinutes(0); + clone.setSeconds(0); + clone.setMilliseconds(0); + } + else if (this.scale == TimeStep.SCALE.MONTH) { + if (clone.getDate() > 15) { + clone.setDate(1); + clone.setMonth(clone.getMonth() + 1); + // important: first set Date to 1, after that change the month. + } + else { + clone.setDate(1); + } - /** - * Set the (normalized) length of the camera arm. - * @param {Number} length A length between 0.71 and 5.0 - */ - Camera.prototype.setArmLength = function(length) { - if (length === undefined) - return; - - this.armLength = length; - - // Radius must be larger than the corner of the graph, - // which has a distance of sqrt(0.5^2+0.5^2) = 0.71 from the center of the - // graph - if (this.armLength < 0.71) this.armLength = 0.71; - if (this.armLength > 5.0) this.armLength = 5.0; - - this.calculateCameraOrientation(); + clone.setHours(0); + clone.setMinutes(0); + clone.setSeconds(0); + clone.setMilliseconds(0); + } + else if (this.scale == TimeStep.SCALE.DAY) { + //noinspection FallthroughInSwitchStatementJS + switch (this.step) { + case 5: + case 2: + clone.setHours(Math.round(clone.getHours() / 24) * 24); break; + default: + clone.setHours(Math.round(clone.getHours() / 12) * 12); break; + } + clone.setMinutes(0); + clone.setSeconds(0); + clone.setMilliseconds(0); + } + else if (this.scale == TimeStep.SCALE.WEEKDAY) { + //noinspection FallthroughInSwitchStatementJS + switch (this.step) { + case 5: + case 2: + clone.setHours(Math.round(clone.getHours() / 12) * 12); break; + default: + clone.setHours(Math.round(clone.getHours() / 6) * 6); break; + } + clone.setMinutes(0); + clone.setSeconds(0); + clone.setMilliseconds(0); + } + else if (this.scale == TimeStep.SCALE.HOUR) { + switch (this.step) { + case 4: + clone.setMinutes(Math.round(clone.getMinutes() / 60) * 60); break; + default: + clone.setMinutes(Math.round(clone.getMinutes() / 30) * 30); break; + } + clone.setSeconds(0); + clone.setMilliseconds(0); + } else if (this.scale == TimeStep.SCALE.MINUTE) { + //noinspection FallthroughInSwitchStatementJS + switch (this.step) { + case 15: + case 10: + clone.setMinutes(Math.round(clone.getMinutes() / 5) * 5); + clone.setSeconds(0); + break; + case 5: + clone.setSeconds(Math.round(clone.getSeconds() / 60) * 60); break; + default: + clone.setSeconds(Math.round(clone.getSeconds() / 30) * 30); break; + } + clone.setMilliseconds(0); + } + else if (this.scale == TimeStep.SCALE.SECOND) { + //noinspection FallthroughInSwitchStatementJS + switch (this.step) { + case 15: + case 10: + clone.setSeconds(Math.round(clone.getSeconds() / 5) * 5); + clone.setMilliseconds(0); + break; + case 5: + clone.setMilliseconds(Math.round(clone.getMilliseconds() / 1000) * 1000); break; + default: + clone.setMilliseconds(Math.round(clone.getMilliseconds() / 500) * 500); break; + } + } + else if (this.scale == TimeStep.SCALE.MILLISECOND) { + var step = this.step > 5 ? this.step / 2 : 1; + clone.setMilliseconds(Math.round(clone.getMilliseconds() / step) * step); + } + + return clone; }; /** - * Retrieve the arm length - * @return {Number} length + * 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. */ - Camera.prototype.getArmLength = function() { - return this.armLength; + TimeStep.prototype.isMajor = function() { + switch (this.scale) { + case TimeStep.SCALE.MILLISECOND: + return (this.current.getMilliseconds() == 0); + case TimeStep.SCALE.SECOND: + return (this.current.getSeconds() == 0); + case TimeStep.SCALE.MINUTE: + return (this.current.getHours() == 0) && (this.current.getMinutes() == 0); + // Note: this is no bug. Major label is equal for both minute and hour scale + case TimeStep.SCALE.HOUR: + return (this.current.getHours() == 0); + case TimeStep.SCALE.WEEKDAY: // intentional fall through + case TimeStep.SCALE.DAY: + return (this.current.getDate() == 1); + case TimeStep.SCALE.MONTH: + return (this.current.getMonth() == 0); + case TimeStep.SCALE.YEAR: + return false; + default: + return false; + } }; - /** - * Retrieve the camera location - * @return {Point3d} cameraLocation - */ - Camera.prototype.getCameraLocation = function() { - return this.cameraLocation; - }; /** - * Retrieve the camera rotation - * @return {Point3d} cameraRotation + * 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 */ - Camera.prototype.getCameraRotation = function() { - return this.cameraRotation; + TimeStep.prototype.getLabelMinor = function(date) { + if (date == undefined) { + date = this.current; + } + + switch (this.scale) { + case TimeStep.SCALE.MILLISECOND: return moment(date).format('SSS'); + case TimeStep.SCALE.SECOND: return moment(date).format('s'); + case TimeStep.SCALE.MINUTE: return moment(date).format('HH:mm'); + case TimeStep.SCALE.HOUR: return moment(date).format('HH:mm'); + case TimeStep.SCALE.WEEKDAY: return moment(date).format('ddd D'); + case TimeStep.SCALE.DAY: return moment(date).format('D'); + case TimeStep.SCALE.MONTH: return moment(date).format('MMM'); + case TimeStep.SCALE.YEAR: return moment(date).format('YYYY'); + default: return ''; + } }; + /** - * Calculate the location and rotation of the camera based on the - * position and orientation of the camera arm + * 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 */ - 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); + TimeStep.prototype.getLabelMajor = function(date) { + if (date == undefined) { + date = this.current; + } - // calculate rotation of the camera - this.cameraRotation.x = Math.PI/2 - this.armRotation.vertical; - this.cameraRotation.y = 0; - this.cameraRotation.z = -this.armRotation.horizontal; + //noinspection FallthroughInSwitchStatementJS + switch (this.scale) { + case TimeStep.SCALE.MILLISECOND:return moment(date).format('HH:mm:ss'); + case TimeStep.SCALE.SECOND: return moment(date).format('D MMMM HH:mm'); + case TimeStep.SCALE.MINUTE: + case TimeStep.SCALE.HOUR: return moment(date).format('ddd D MMMM'); + case TimeStep.SCALE.WEEKDAY: + case TimeStep.SCALE.DAY: return moment(date).format('MMMM YYYY'); + case TimeStep.SCALE.MONTH: return moment(date).format('YYYY'); + case TimeStep.SCALE.YEAR: return ''; + default: return ''; + } }; - module.exports = Camera; + module.exports = TimeStep; + /***/ }, -/* 14 */ +/* 18 */ /***/ function(module, exports, __webpack_require__) { - var DataView = __webpack_require__(8); + var util = __webpack_require__(2); + var Component = __webpack_require__(19); /** - * @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 + * A current time bar + * @param {{range: Range, dom: Object, domProps: Object}} body + * @param {Object} [options] Available parameters: + * {Boolean} [showCurrentTime] + * @constructor CurrentTime + * @extends Component */ - function Filter (data, column, graph) { - this.data = data; - this.column = column; - this.graph = graph; // the parent graph - - this.index = undefined; - this.value = undefined; + function CurrentTime (body, options) { + this.body = body; - // read all distinct values and select the first one - this.values = graph.getDistinctValues(data.get(), this.column); + // default options + this.defaultOptions = { + showCurrentTime: true + }; + this.options = util.extend({}, this.defaultOptions); - // sort both numeric and string values correctly - this.values.sort(function (a, b) { - return a > b ? 1 : a < b ? -1 : 0; - }); + this._create(); - if (this.values.length > 0) { - this.selectValue(0); - } + this.setOptions(options); + } - // create an array with the filtered datapoints. this will be loaded afterwards - this.dataPoints = []; + CurrentTime.prototype = new Component(); - this.loaded = false; - this.onLoadCallback = undefined; + /** + * 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%'; - if (graph.animationPreload) { - this.loaded = false; - this.loadInBackground(); - } - else { - this.loaded = true; - } + this.bar = bar; }; - /** - * Return the label - * @return {string} label + * Destroy the CurrentTime bar */ - Filter.prototype.isLoaded = function() { - return this.loaded; - }; + CurrentTime.prototype.destroy = function () { + this.options.showCurrentTime = false; + this.redraw(); // will remove the bar from the DOM and stop refreshing + this.body = null; + }; /** - * Return the loaded progress - * @return {Number} percentage between 0 and 100 + * Set options for the component. Options will be merged in current options. + * @param {Object} options Available parameters: + * {boolean} [showCurrentTime] */ - Filter.prototype.getLoadedProgress = function() { - var len = this.values.length; + CurrentTime.prototype.setOptions = function(options) { + if (options) { + // copy all options that we know + util.selectiveExtend(['showCurrentTime'], this.options, options); + } + }; - var i = 0; - while (this.dataPoints[i]) { - i++; + /** + * Repaint the component + * @return {boolean} Returns true if the component is resized + */ + CurrentTime.prototype.redraw = function() { + if (this.options.showCurrentTime) { + var parent = this.body.dom.backgroundVertical; + if (this.bar.parentNode != parent) { + // attach to the dom + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); + } + parent.appendChild(this.bar); + + this.start(); + } + + var now = new Date(); + var x = this.body.util.toScreen(now); + + this.bar.style.left = x + 'px'; + this.bar.title = 'Current time: ' + now; + } + else { + // remove the line from the DOM + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); + } + this.stop(); } - return Math.round(i / len * 100); + 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 timer to adjust for the new time + me.currentTimeTimer = setTimeout(update, interval); + } + + update(); + }; /** - * Return the label - * @return {string} label + * Stop auto refreshing the current time bar */ - Filter.prototype.getLabel = function() { - return this.graph.filterLabel; + CurrentTime.prototype.stop = function() { + if (this.currentTimeTimer !== undefined) { + clearTimeout(this.currentTimeTimer); + delete this.currentTimeTimer; + } }; + module.exports = CurrentTime; + + +/***/ }, +/* 19 */ +/***/ function(module, exports, __webpack_require__) { /** - * Return the columnIndex of the filter - * @return {Number} columnIndex + * Prototype for visual components + * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} [body] + * @param {Object} [options] */ - Filter.prototype.getColumn = function() { - return this.column; - }; + function Component (body, options) { + this.options = null; + this.props = null; + } /** - * Return the currently selected value. Returns undefined if there is no selection - * @return {*} value + * Set options for the component. The new options will be merged into the + * current options. + * @param {Object} options */ - Filter.prototype.getSelectedValue = function() { - if (this.index === undefined) - return undefined; + Component.prototype.setOptions = function(options) { + if (options) { + util.extend(this.options, options); + } + }; - return this.values[this.index]; + /** + * Repaint the component + * @return {boolean} Returns true if the component is resized + */ + Component.prototype.redraw = function() { + // should be implemented by the component + return false; }; /** - * Retrieve all values of the filter - * @return {Array} values + * Destroy the component. Cleanup DOM and event listeners */ - Filter.prototype.getValues = function() { - return this.values; + Component.prototype.destroy = function() { + // should be implemented by the component }; /** - * Retrieve one value of the filter - * @param {Number} index - * @return {*} value + * Test whether the component is resized since the last time _isResized() was + * called. + * @return {Boolean} Returns true if the component is resized + * @protected */ - Filter.prototype.getValue = function(index) { - if (index >= this.values.length) - throw 'Error: index out of range'; + Component.prototype._isResized = function() { + var resized = (this.props._previousWidth !== this.props.width || + this.props._previousHeight !== this.props.height); - return this.values[index]; + this.props._previousWidth = this.props.width; + this.props._previousHeight = this.props.height; + + return resized; }; + module.exports = Component; + + +/***/ }, +/* 20 */ +/***/ function(module, exports, __webpack_require__) { + + var Hammer = __webpack_require__(40); + var util = __webpack_require__(2); + var Component = __webpack_require__(19); /** - * Retrieve the (filtered) dataPoints for the currently selected filter index - * @param {Number} [index] (optional) - * @return {Array} dataPoints + * A custom time bar + * @param {{range: Range, dom: Object}} body + * @param {Object} [options] Available parameters: + * {Boolean} [showCustomTime] + * @constructor CustomTime + * @extends Component */ - Filter.prototype._getDataPoints = function(index) { - if (index === undefined) - index = this.index; - - if (index === undefined) - return []; - var dataPoints; - if (this.dataPoints[index]) { - dataPoints = this.dataPoints[index]; - } - else { - var f = {}; - f.column = this.column; - f.value = this.values[index]; + function CustomTime (body, options) { + this.body = body; - var dataView = new DataView(this.data,{filter: function (item) {return (item[f.column] == f.value);}}).get(); - dataPoints = this.graph._getDataPoints(dataView); + // default options + this.defaultOptions = { + showCustomTime: false + }; + this.options = util.extend({}, this.defaultOptions); - this.dataPoints[index] = dataPoints; - } + this.customTime = new Date(); + this.eventParams = {}; // stores state parameters while dragging the bar - return dataPoints; - }; + // create the DOM + this._create(); + this.setOptions(options); + } + CustomTime.prototype = new Component(); /** - * Set a callback function when the filter is fully loaded. + * Set options for the component. Options will be merged in current options. + * @param {Object} options Available parameters: + * {boolean} [showCustomTime] */ - Filter.prototype.setOnLoadCallback = function(callback) { - this.onLoadCallback = callback; + CustomTime.prototype.setOptions = function(options) { + if (options) { + // copy all options that we know + util.selectiveExtend(['showCustomTime'], this.options, options); + } }; - /** - * Add a value to the list with available values for this filter - * No double entries will be created. - * @param {Number} index + * Create the DOM for the custom time + * @private */ - Filter.prototype.selectValue = function(index) { - if (index >= this.values.length) - throw 'Error: index out of range'; + CustomTime.prototype._create = function() { + var bar = document.createElement('div'); + bar.className = 'customtime'; + bar.style.position = 'absolute'; + bar.style.top = '0px'; + bar.style.height = '100%'; + this.bar = bar; - this.index = index; - this.value = this.values[index]; + var drag = document.createElement('div'); + drag.style.position = 'relative'; + drag.style.top = '0px'; + drag.style.left = '-10px'; + drag.style.height = '100%'; + drag.style.width = '20px'; + bar.appendChild(drag); + + // attach event listeners + this.hammer = Hammer(bar, { + prevent_default: true + }); + this.hammer.on('dragstart', this._onDragStart.bind(this)); + this.hammer.on('drag', this._onDrag.bind(this)); + this.hammer.on('dragend', this._onDragEnd.bind(this)); }; /** - * Load all filtered rows in the background one by one - * Start this method without providing an index! + * Destroy the CustomTime bar */ - Filter.prototype.loadInBackground = function(index) { - if (index === undefined) - index = 0; + CustomTime.prototype.destroy = function () { + this.options.showCustomTime = false; + this.redraw(); // will remove the bar from the DOM - var frame = this.graph.frame; + this.hammer.enable(false); + this.hammer = null; - if (index < this.values.length) { - var dataPointsTemp = this._getDataPoints(index); - //this.graph.redrawInfo(); // TODO: not neat + this.body = null; + }; - // create a progress box - if (frame.progress === undefined) { - frame.progress = document.createElement('DIV'); - frame.progress.style.position = 'absolute'; - frame.progress.style.color = 'gray'; - frame.appendChild(frame.progress); + /** + * 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); } - 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; + var x = this.body.util.toScreen(this.customTime); + + this.bar.style.left = x + 'px'; + this.bar.title = 'Time: ' + this.customTime; } else { - this.loaded = true; - - // remove the progress box - if (frame.progress !== undefined) { - frame.removeChild(frame.progress); - frame.progress = undefined; + // remove the line from the DOM + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); } - - if (this.onLoadCallback) - this.onLoadCallback(); } - }; - - module.exports = Filter; - - -/***/ }, -/* 15 */ -/***/ function(module, exports, __webpack_require__) { - var util = __webpack_require__(1); + return false; + }; /** - * @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. + * Set custom time. + * @param {Date} time */ - function Slider(container, options) { - if (container === undefined) { - throw 'Error: No container element defined'; - } - this.container = container; - this.visible = (options && options.visible != undefined) ? options.visible : true; - - if (this.visible) { - this.frame = document.createElement('DIV'); - //this.frame.style.backgroundColor = '#E5E5E5'; - this.frame.style.width = '100%'; - this.frame.style.position = 'relative'; - this.container.appendChild(this.frame); - - this.frame.prev = document.createElement('INPUT'); - this.frame.prev.type = 'BUTTON'; - this.frame.prev.value = 'Prev'; - this.frame.appendChild(this.frame.prev); - - this.frame.play = document.createElement('INPUT'); - this.frame.play.type = 'BUTTON'; - this.frame.play.value = 'Play'; - this.frame.appendChild(this.frame.play); - - this.frame.next = document.createElement('INPUT'); - this.frame.next.type = 'BUTTON'; - this.frame.next.value = 'Next'; - this.frame.appendChild(this.frame.next); - - this.frame.bar = document.createElement('INPUT'); - this.frame.bar.type = 'BUTTON'; - this.frame.bar.style.position = 'absolute'; - this.frame.bar.style.border = '1px solid red'; - this.frame.bar.style.width = '100px'; - this.frame.bar.style.height = '6px'; - this.frame.bar.style.borderRadius = '2px'; - this.frame.bar.style.MozBorderRadius = '2px'; - this.frame.bar.style.border = '1px solid #7F7F7F'; - this.frame.bar.style.backgroundColor = '#E5E5E5'; - this.frame.appendChild(this.frame.bar); - - this.frame.slide = document.createElement('INPUT'); - this.frame.slide.type = 'BUTTON'; - this.frame.slide.style.margin = '0px'; - this.frame.slide.value = ' '; - this.frame.slide.style.position = 'relative'; - this.frame.slide.style.left = '-100px'; - this.frame.appendChild(this.frame.slide); - - // create events - var me = this; - this.frame.slide.onmousedown = function (event) {me._onMouseDown(event);}; - this.frame.prev.onclick = function (event) {me.prev(event);}; - this.frame.play.onclick = function (event) {me.togglePlay(event);}; - this.frame.next.onclick = function (event) {me.next(event);}; - } - - this.onChangeCallback = undefined; - - this.values = []; - this.index = undefined; - - this.playTimeout = undefined; - this.playInterval = 1000; // milliseconds - this.playLoop = true; - } + CustomTime.prototype.setCustomTime = function(time) { + this.customTime = new Date(time.valueOf()); + this.redraw(); + }; /** - * Select the previous index + * Retrieve the current custom time. + * @return {Date} customTime */ - Slider.prototype.prev = function() { - var index = this.getIndex(); - if (index > 0) { - index--; - this.setIndex(index); - } + CustomTime.prototype.getCustomTime = function() { + return new Date(this.customTime.valueOf()); }; /** - * Select the next index + * Start moving horizontally + * @param {Event} event + * @private */ - Slider.prototype.next = function() { - var index = this.getIndex(); - if (index < this.values.length - 1) { - index++; - this.setIndex(index); - } + CustomTime.prototype._onDragStart = function(event) { + this.eventParams.dragging = true; + this.eventParams.customTime = this.customTime; + + event.stopPropagation(); + event.preventDefault(); }; /** - * Select the next index + * Perform moving operating. + * @param {Event} event + * @private */ - 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); - } + CustomTime.prototype._onDrag = function (event) { + if (!this.eventParams.dragging) return; - var end = new Date(); - var diff = (end - start); + var deltaX = event.gesture.deltaX, + x = this.body.util.toScreen(this.eventParams.customTime) + deltaX, + time = this.body.util.toTime(x); - // 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 + this.setCustomTime(time); - var me = this; - this.playTimeout = setTimeout(function() {me.playNext();}, interval); - }; + // fire a timechange event + this.body.emitter.emit('timechange', { + time: new Date(this.customTime.valueOf()) + }); - /** - * Toggle start or stop playing - */ - Slider.prototype.togglePlay = function() { - if (this.playTimeout === undefined) { - this.play(); - } else { - this.stop(); - } + event.stopPropagation(); + event.preventDefault(); }; /** - * Start playing + * Stop moving operating. + * @param {event} event + * @private */ - Slider.prototype.play = function() { - // Test whether already playing - if (this.playTimeout) return; + CustomTime.prototype._onDragEnd = function (event) { + if (!this.eventParams.dragging) return; - this.playNext(); + // fire a timechanged event + this.body.emitter.emit('timechanged', { + time: new Date(this.customTime.valueOf()) + }); - if (this.frame) { - this.frame.play.value = 'Stop'; - } + event.stopPropagation(); + event.preventDefault(); }; - /** - * Stop playing - */ - Slider.prototype.stop = function() { - clearInterval(this.playTimeout); - this.playTimeout = undefined; + module.exports = CustomTime; - if (this.frame) { - this.frame.play.value = 'Play'; - } - }; - /** - * 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; - }; +/***/ }, +/* 21 */ +/***/ function(module, exports, __webpack_require__) { - /** - * Set the interval for playing the list - * @param {Number} interval The interval in milliseconds - */ - Slider.prototype.setPlayInterval = function(interval) { - this.playInterval = interval; - }; + var util = __webpack_require__(2); + var DOMutil = __webpack_require__(1); + var Component = __webpack_require__(19); + var DataStep = __webpack_require__(14); /** - * Retrieve the current play interval - * @return {Number} interval The interval in milliseconds - */ - Slider.prototype.getPlayInterval = function(interval) { - return this.playInterval; - }; - - /** - * 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. + * A horizontal time axis + * @param {Object} [options] See DataAxis.setOptions for the available + * options. + * @constructor DataAxis + * @extends Component + * @param body */ - Slider.prototype.setPlayLoop = function(doLoop) { - this.playLoop = doLoop; - }; - + function DataAxis (body, options, svg) { + this.id = util.randomUUID(); + this.body = body; - /** - * Execute the onchange callback function - */ - Slider.prototype.onChange = function() { - if (this.onChangeCallback !== undefined) { - this.onChangeCallback(); - } - }; + 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 + }; - /** - * 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'; + this.linegraphSVG = svg; + this.props = {}; + this.DOMelements = { // dynamic elements + lines: {}, + labels: {} + }; - // position the slider button - var left = this.indexToLeft(this.index); - this.frame.slide.style.left = (left) + 'px'; - } - }; + this.dom = {}; + this.range = {start:0, end:0}; - /** - * 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; + this.options = util.extend({}, this.defaultOptions); + this.conversionFactor = 1; - if (this.values.length > 0) - this.setIndex(0); - else - this.index = undefined; - }; + this.setOptions(options); + this.width = Number(('' + this.options.width).replace("px","")); + this.minWidth = this.width; + this.height = this.linegraphSVG.offsetHeight; - /** - * Select a value by its index - * @param {Number} index - */ - Slider.prototype.setIndex = function(index) { - if (index < this.values.length) { - this.index = index; + this.stepPixels = 25; + this.stepPixelsForced = 25; + this.lineOffset = 0; + this.master = true; + this.svgElements = {}; - this.redraw(); - this.onChange(); - } - else { - throw 'Error: index out of range'; - } - }; - /** - * retrieve the index of the currently selected vaue - * @return {Number} index - */ - Slider.prototype.getIndex = function() { - return this.index; - }; + this.groups = {}; + this.amountOfGroups = 0; + // create the HTML DOM + this._create(); + } - /** - * retrieve the currently selected value - * @return {*} value - */ - Slider.prototype.get = function() { - return this.values[this.index]; - }; + DataAxis.prototype = new Component(); - 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); + DataAxis.prototype.addGroup = function(label, graphOptions) { + if (!this.groups.hasOwnProperty(label)) { + this.groups[label] = graphOptions; + } + this.amountOfGroups += 1; + }; - this.frame.style.cursor = 'move'; + DataAxis.prototype.updateGroup = function(label, graphOptions) { + this.groups[label] = graphOptions; + }; - // 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); + DataAxis.prototype.removeGroup = function(label) { + if (this.groups.hasOwnProperty(label)) { + delete this.groups[label]; + this.amountOfGroups -= 1; + } }; - Slider.prototype.leftToIndex = function (left) { - var width = parseFloat(this.frame.bar.style.width) - - this.frame.slide.clientWidth - 10; - var x = left - 3; + DataAxis.prototype.setOptions = function (options) { + if (options) { + var redraw = false; + if (this.options.orientation != options.orientation && options.orientation !== undefined) { + redraw = true; + } + var fields = [ + 'orientation', + 'showMinorLabels', + 'showMajorLabels', + 'icons', + 'majorLinesOffset', + 'minorLinesOffset', + 'labelOffsetX', + 'labelOffsetY', + 'iconWidth', + 'width', + 'visible']; + util.selectiveExtend(fields, this.options, options); - var index = Math.round(x / width * (this.values.length-1)); - if (index < 0) index = 0; - if (index > this.values.length-1) index = this.values.length-1; + this.minWidth = Number(('' + this.options.width).replace("px","")); - return index; + if (redraw == true && this.dom.frame) { + this.hide(); + this.show(); + } + } }; - 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; + /** + * 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; - return left; - }; + this.dom.lineContainer = document.createElement('div'); + this.dom.lineContainer.style.width = '100%'; + this.dom.lineContainer.style.height = this.height; + // create svg element for graph drawing. + this.svg = document.createElementNS('http://www.w3.org/2000/svg',"svg"); + this.svg.style.position = "absolute"; + this.svg.style.top = '0px'; + this.svg.style.height = '100%'; + this.svg.style.width = '100%'; + this.svg.style.display = "block"; + this.dom.frame.appendChild(this.svg); + }; + DataAxis.prototype._redrawGroupIcons = function () { + DOMutil.prepareElements(this.svgElements); - Slider.prototype._onMouseMove = function (event) { - var diff = event.clientX - this.startClientX; - var x = this.startSlideX + diff; + var x; + var iconWidth = this.options.iconWidth; + var iconHeight = 15; + var iconOffset = 4; + var y = iconOffset + 0.5 * iconHeight; - var index = this.leftToIndex(x); + if (this.options.orientation == 'left') { + x = iconOffset; + } + else { + x = this.width - iconWidth - iconOffset; + } - this.setIndex(index); + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + if (this.groups[groupId].visible == true) { + this.groups[groupId].drawIcon(x, y, this.svgElements, this.svg, iconWidth, iconHeight); + y += iconHeight + iconOffset; + } + } + } - util.preventDefault(); + DOMutil.cleanupElements(this.svgElements); }; + /** + * Create the HTML DOM for the DataAxis + */ + DataAxis.prototype.show = function() { + if (!this.dom.frame.parentNode) { + if (this.options.orientation == 'left') { + this.body.dom.left.appendChild(this.dom.frame); + } + else { + this.body.dom.right.appendChild(this.dom.frame); + } + } - 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); - - util.preventDefault(); - }; - - module.exports = Slider; - - -/***/ }, -/* 16 */ -/***/ function(module, exports, __webpack_require__) { - - /** - * @prototype StepNumber - * The class StepNumber is an iterator for Numbers. You provide a start and end - * value, and a best step size. StepNumber itself rounds to fixed values and - * a finds the step that best fits the provided step. - * - * If prettyStep is true, the step size is chosen as close as possible to the - * provided step, but being a round value like 1, 2, 5, 10, 20, 50, .... - * - * Example usage: - * var step = new StepNumber(0, 10, 2.5, true); - * step.start(); - * while (!step.end()) { - * alert(step.getCurrent()); - * step.next(); - * } - * - * Version: 1.0 - * - * @param {Number} start The start value - * @param {Number} end The end value - * @param {Number} step Optional. Step size. Must be a positive value. - * @param {boolean} prettyStep Optional. If true, the step size is rounded - * To a pretty step size (like 1, 2, 5, 10, 20, 50, ...) - */ - 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); + if (!this.dom.lineContainer.parentNode) { + this.body.dom.backgroundHorizontal.appendChild(this.dom.lineContainer); + } }; /** - * Set a new range: start, end and step. - * - * @param {Number} start The start value - * @param {Number} end The end value - * @param {Number} step Optional. Step size. Must be a positive value. - * @param {boolean} prettyStep Optional. If true, the step size is rounded - * To a pretty step size (like 1, 2, 5, 10, 20, 50, ...) + * Create the HTML DOM for the DataAxis */ - StepNumber.prototype.setRange = function(start, end, step, prettyStep) { - this._start = start ? start : 0; - this._end = end ? end : 0; + DataAxis.prototype.hide = function() { + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } - this.setStep(step, prettyStep); + if (this.dom.lineContainer.parentNode) { + this.dom.lineContainer.parentNode.removeChild(this.dom.lineContainer); + } }; /** - * 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, ...) + * Set a range (start and end) + * @param end + * @param start + * @param end */ - StepNumber.prototype.setStep = function(step, prettyStep) { - if (step === undefined || step <= 0) - return; - - if (prettyStep !== undefined) - this.prettyStep = prettyStep; - - if (this.prettyStep === true) - this._step = StepNumber.calculatePrettyStep(step); - else - this._step = step; + DataAxis.prototype.setRange = function (start, end) { + this.range.start = start; + this.range.end = end; }; /** - * Calculate a nice step size, closest to the desired step size. - * Returns a value in one of the ranges 1*10^n, 2*10^n, or 5*10^n, where n is an - * integer Number. For example 1, 2, 5, 10, 20, 50, etc... - * @param {Number} step Desired step size - * @return {Number} Nice step size + * Repaint the component + * @return {boolean} Returns true if the component is resized */ - StepNumber.calculatePrettyStep = function (step) { - var log10 = function (x) {return Math.log(x) / Math.LN10;}; + DataAxis.prototype.redraw = function () { + var changeCalled = false; + var activeGroups = 0; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + if (this.groups[groupId].visible == true) { + activeGroups++; + } + } + } + if (this.amountOfGroups == 0 || activeGroups == 0) { + this.hide(); + } + else { + this.show(); + this.height = Number(this.linegraphSVG.style.height.replace("px","")); + // svg offsetheight did not work in firefox and explorer... - // 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))); + this.dom.lineContainer.style.height = this.height + 'px'; + this.width = this.options.visible == true ? Number(('' + this.options.width).replace("px","")) : 0; - // choose the best step (closest to minimum step) - var prettyStep = step1; - if (Math.abs(step2 - step) <= Math.abs(prettyStep - step)) prettyStep = step2; - if (Math.abs(step5 - step) <= Math.abs(prettyStep - step)) prettyStep = step5; + var props = this.props; + var frame = this.dom.frame; - // for safety - if (prettyStep <= 0) { - prettyStep = 1; - } + // update classname + frame.className = 'dataaxis'; - return prettyStep; - }; + // calculate character width and height + this._calculateCharSize(); - /** - * returns the current value of the step - * @return {Number} current value - */ - StepNumber.prototype.getCurrent = function () { - return parseFloat(this._current.toPrecision(this.precision)); - }; + var orientation = this.options.orientation; + var showMinorLabels = this.options.showMinorLabels; + var showMajorLabels = this.options.showMajorLabels; - /** - * returns the current step size - * @return {Number} current step size - */ - StepNumber.prototype.getStep = function () { - return this._step; - }; + // determine the width and height of the elemens for the axis + props.minorLabelHeight = showMinorLabels ? props.minorCharHeight : 0; + props.majorLabelHeight = showMajorLabels ? props.majorCharHeight : 0; - /** - * 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; - }; + 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; - /** - * Do a step, add the step size to the current value - */ - StepNumber.prototype.next = function () { - this._current += this._step; + // take frame offline while updating (is almost twice as fast) + if (orientation == 'left') { + frame.style.top = '0'; + frame.style.left = '0'; + frame.style.bottom = ''; + frame.style.width = this.width + 'px'; + frame.style.height = this.height + "px"; + } + else { // right + frame.style.top = ''; + frame.style.bottom = '0'; + frame.style.left = '0'; + frame.style.width = this.width + 'px'; + frame.style.height = this.height + "px"; + } + changeCalled = this._redrawLabels(); + if (this.options.icons == true) { + this._redrawGroupIcons(); + } + } + return changeCalled; }; /** - * Returns true whether the end is reached - * @return {boolean} True if the current value has passed the end value. + * Repaint major and minor text labels and vertical grid lines + * @private */ - StepNumber.prototype.end = function () { - return (this._current > this._end); - }; - - module.exports = StepNumber; + DataAxis.prototype._redrawLabels = function () { + DOMutil.prepareElements(this.DOMelements.lines); + DOMutil.prepareElements(this.DOMelements.labels); + var orientation = this.options['orientation']; -/***/ }, -/* 17 */ -/***/ function(module, exports, __webpack_require__) { + // calculate range and step (step such that we have space for 7 characters per label) + var minimumStep = this.master ? this.props.majorCharHeight || 10 : this.stepPixelsForced; + var step = new DataStep(this.range.start, this.range.end, minimumStep, this.dom.frame.offsetHeight); + this.step = step; + step.first(); + // get the distance in pixels for a step + var stepPixels = this.dom.frame.offsetHeight / ((step.marginRange / step.step) + 1); + this.stepPixels = stepPixels; - var Emitter = __webpack_require__(10); - var Hammer = __webpack_require__(18); - var util = __webpack_require__(1); - var DataSet = __webpack_require__(7); - var DataView = __webpack_require__(8); - var Range = __webpack_require__(20); - var Core = __webpack_require__(23); - var TimeAxis = __webpack_require__(24); - var CurrentTime = __webpack_require__(26); - var CustomTime = __webpack_require__(27); - var ItemSet = __webpack_require__(28); + var amountOfSteps = this.height / stepPixels; + var stepDifference = 0; - /** - * Create a timeline visualization - * @param {HTMLElement} container - * @param {vis.DataSet | Array | google.visualization.DataTable} [items] - * @param {Object} [options] See Timeline.setOptions for the available options. - * @constructor - */ - function Timeline (container, items, options) { - // mix the core properties in here - for (var coreProp in Core.prototype) { - if (Core.prototype.hasOwnProperty(coreProp) && !Timeline.prototype.hasOwnProperty(coreProp)) { - Timeline.prototype[coreProp] = Core.prototype[coreProp]; + if (this.master == false) { + stepPixels = this.stepPixelsForced; + stepDifference = Math.round((this.height / stepPixels) - amountOfSteps); + for (var i = 0; i < 0.5 * stepDifference; i++) { + step.previous(); } + amountOfSteps = this.height / stepPixels; } - if (!(this instanceof Timeline)) { - throw new SyntaxError('Constructor must be called with the new operator'); - } - var me = this; - this.defaultOptions = { - start: null, - end: null, + this.valueAtZero = step.marginEnd; + var marginStartPos = 0; - autoResize: true, + // do not draw the first label + var max = 1; + step.next(); - 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); + this.maxLabelSize = 0; + var y = 0; + while (max < Math.round(amountOfSteps)) { - // all components listed here will be repainted automatically - this.components = []; + y = Math.round(max * stepPixels); + marginStartPos = max * stepPixels; + var isMajor = step.isMajor(); - this.body = { - dom: this.dom, - domProps: this.props, - emitter: { - on: this.on.bind(this), - off: this.off.bind(this), - emit: this.emit.bind(this) - }, - util: { - snap: null, // will be specified after TimeAxis is created - toScreen: me._toScreen.bind(me), - toGlobalScreen: me._toGlobalScreen.bind(me), // this refers to the root.width - toTime: me._toTime.bind(me), - toGlobalTime : me._toGlobalTime.bind(me) + if (this.options['showMinorLabels'] && isMajor == false || this.master == false && this.options['showMinorLabels'] == true) { + this._redrawLabel(y - 2, step.getCurrent(), orientation, 'yAxis minor', this.props.minorCharHeight); } - }; - - // range - this.range = new Range(this.body); - this.components.push(this.range); - this.body.range = this.range; - - // time axis - this.timeAxis = new TimeAxis(this.body); - this.components.push(this.timeAxis); - this.body.util.snap = this.timeAxis.snap.bind(this.timeAxis); - - // current time bar - this.currentTime = new CurrentTime(this.body); - this.components.push(this.currentTime); - - // custom time bar - // Note: time bar will be attached in this.setOptions when selected - this.customTime = new CustomTime(this.body); - this.components.push(this.customTime); - - // item set - this.itemSet = new ItemSet(this.body); - this.components.push(this.itemSet); - this.itemsData = null; // DataSet - this.groupsData = null; // DataSet + if (isMajor && this.options['showMajorLabels'] && this.master == true || + this.options['showMinorLabels'] == false && this.master == false && isMajor == true) { + if (y >= 0) { + this._redrawLabel(y - 2, step.getCurrent(), orientation, 'yAxis major', this.props.majorCharHeight); + } + this._redrawLine(y, orientation, 'grid horizontal major', this.options.majorLinesOffset, this.props.majorLineWidth); + } + else { + this._redrawLine(y, orientation, 'grid horizontal minor', this.options.minorLinesOffset, this.props.minorLineWidth); + } - // apply options - if (options) { - this.setOptions(options); + step.next(); + max++; } - // create itemset - if (items) { - this.setItems(items); - } - else { + this.conversionFactor = marginStartPos/((amountOfSteps-1) * step.step); + + var offset = this.options.icons == true ? this.options.iconWidth + this.options.labelOffsetX + 15 : this.options.labelOffsetX + 15; + // this will resize the yAxis to accomodate the labels. + if (this.maxLabelSize > (this.width - offset) && this.options.visible == true) { + this.width = this.maxLabelSize + offset; + this.options.width = this.width + "px"; + DOMutil.cleanupElements(this.DOMelements.lines); + DOMutil.cleanupElements(this.DOMelements.labels); this.redraw(); + return true; } - } - - /** - * Set options. Options will be passed to all components loaded in the Timeline. - * @param {Object} [options] - * {String} orientation - * Vertical orientation for the Timeline, - * can be 'bottom' (default) or 'top'. - * {String | Number} width - * Width for the timeline, a number in pixels or - * a css string like '1000px' or '75%'. '100%' by default. - * {String | Number} height - * Fixed height for the Timeline, a number in pixels or - * a css string like '400px' or '75%'. If undefined, - * The Timeline will automatically size such that - * its contents fit. - * {String | Number} minHeight - * Minimum height for the Timeline, a number in pixels or - * a css string like '400px' or '75%'. - * {String | Number} maxHeight - * Maximum height for the Timeline, a number in pixels or - * a css string like '400px' or '75%'. - * {Number | Date | String} start - * Start date for the visible window - * {Number | Date | String} end - * End date for the visible window - */ - Timeline.prototype.setOptions = function (options) { - if (options) { - // copy the known options - var fields = ['width', 'height', 'minHeight', 'maxHeight', 'autoResize', 'start', 'end', 'orientation']; - util.selectiveExtend(fields, this.options, options); - - // enable/disable autoResize - this._initAutoResize(); + // this will resize the yAxis if it is too big for the labels. + else if (this.maxLabelSize < (this.width - offset) && this.options.visible == true && this.width > this.minWidth) { + this.width = Math.max(this.minWidth,this.maxLabelSize + offset); + this.options.width = this.width + "px"; + DOMutil.cleanupElements(this.DOMelements.lines); + DOMutil.cleanupElements(this.DOMelements.labels); + this.redraw(); + return true; } - - // propagate options to all components - this.components.forEach(function (component) { - component.setOptions(options); - }); - - // TODO: remove deprecation error one day (deprecated since version 0.8.0) - if (options && options.order) { - throw new Error('Option order is deprecated. There is no replacement for this feature.'); + else { + DOMutil.cleanupElements(this.DOMelements.lines); + DOMutil.cleanupElements(this.DOMelements.labels); + return false; } - - // redraw everything - this.redraw(); }; /** - * Set items - * @param {vis.DataSet | Array | google.visualization.DataTable | null} items + * Create a label for the axis at position x + * @private + * @param y + * @param text + * @param orientation + * @param className + * @param characterHeight */ - Timeline.prototype.setItems = function(items) { - var initialLoad = (this.itemsData == null); - - // convert to type DataSet when needed - var newDataSet; - if (!items) { - newDataSet = null; - } - else if (items instanceof DataSet || items instanceof DataView) { - newDataSet = items; + 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 { - // turn an array into a dataset - newDataSet = new DataSet(items, { - type: { - start: 'Date', - end: 'Date' - } - }); + label.style.right = '-' + this.options.labelOffsetX + 'px'; + label.style.textAlign = "left"; } - // set items - this.itemsData = newDataSet; - this.itemSet && this.itemSet.setItems(newDataSet); - - if (initialLoad && ('start' in this.options || 'end' in this.options)) { - this.fit(); + label.style.top = y - 0.5 * characterHeight + this.options.labelOffsetY + 'px'; - var start = ('start' in this.options) ? util.convert(this.options.start, 'Date') : null; - var end = ('end' in this.options) ? util.convert(this.options.end, 'Date') : null; + text += ''; - this.setWindow(start, end); + var largestWidth = Math.max(this.props.majorCharWidth,this.props.minorCharWidth); + if (this.maxLabelSize < text.length * largestWidth) { + this.maxLabelSize = text.length * largestWidth; } }; /** - * Set groups - * @param {vis.DataSet | Array | google.visualization.DataTable} groups + * Create a minor line for the axis at position y + * @param y + * @param orientation + * @param className + * @param offset + * @param width */ - Timeline.prototype.setGroups = function(groups) { - // convert to type DataSet when needed - var newDataSet; - if (!groups) { - newDataSet = null; - } - else if (groups instanceof DataSet || groups instanceof DataView) { - newDataSet = groups; - } - else { - // turn an array into a dataset - newDataSet = new DataSet(groups); - } + DataAxis.prototype._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 = ''; - this.groupsData = newDataSet; - this.itemSet.setGroups(newDataSet); - }; + if (orientation == 'left') { + line.style.left = (this.width - offset) + 'px'; + } + else { + line.style.right = (this.width - offset) + 'px'; + } - /** - * Set selected items by their id. Replaces the current selection - * Unknown id's are silently ignored. - * @param {Array} [ids] An array with zero or more id's of the items to be - * selected. If ids is an empty array, all items will be - * unselected. - */ - Timeline.prototype.setSelection = function(ids) { - this.itemSet && this.itemSet.setSelection(ids); + line.style.width = width + 'px'; + line.style.top = y + 'px'; + } }; - /** - * Get the selected items by their id - * @return {Array} ids The ids of the selected items - */ - Timeline.prototype.getSelection = function() { - return this.itemSet && this.itemSet.getSelection() || []; + + DataAxis.prototype.convertValue = function (value) { + var invertedValue = this.valueAtZero - value; + var convertedValue = invertedValue * this.conversionFactor; + return convertedValue; // the -2 is to compensate for the borders }; /** - * 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 + * 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 */ - Timeline.prototype.getItemRange = function() { - // calculate min from start filed - var dataset = this.itemsData.getDataSet(), - min = null, - max = null; + DataAxis.prototype._calculateCharSize = function () { + // determine the char width and height on the minor axis + if (!('minorCharHeight' in this.props)) { + var textMinor = document.createTextNode('0'); + var measureCharMinor = document.createElement('DIV'); + measureCharMinor.className = 'yAxis minor measure'; + measureCharMinor.appendChild(textMinor); + this.dom.frame.appendChild(measureCharMinor); - if (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 + this.props.minorCharHeight = measureCharMinor.clientHeight; + this.props.minorCharWidth = measureCharMinor.clientWidth; - // 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.dom.frame.removeChild(measureCharMinor); } - return { - min: (min != null) ? new Date(min) : null, - max: (max != null) ? new Date(max) : null - }; + if (!('majorCharHeight' in this.props)) { + var textMajor = document.createTextNode('0'); + var measureCharMajor = document.createElement('DIV'); + measureCharMajor.className = 'yAxis major measure'; + measureCharMajor.appendChild(textMajor); + this.dom.frame.appendChild(measureCharMajor); + + this.props.majorCharHeight = measureCharMajor.clientHeight; + this.props.majorCharWidth = measureCharMajor.clientWidth; + + this.dom.frame.removeChild(measureCharMajor); + } }; + /** + * Snap a date to a rounded value. + * The snap intervals are dependent on the current scale and step. + * @param {Date} date the date to be snapped. + * @return {Date} snappedDate + */ + DataAxis.prototype.snap = function(date) { + return this.step.snap(date); + }; - module.exports = Timeline; + module.exports = DataAxis; /***/ }, -/* 18 */ +/* 22 */ /***/ function(module, exports, __webpack_require__) { - // Only load hammer.js when in a browser environment - // (loading hammer.js in a node.js environment gives errors) - if (typeof window !== 'undefined') { - module.exports = window['Hammer'] || __webpack_require__(19); - } - else { - module.exports = function () { - throw Error('hammer.js is only available in a browser, not in node.js.'); + var util = __webpack_require__(2); + var DOMutil = __webpack_require__(1); + + /** + * @constructor Group + * @param {Number | String} groupId + * @param {Object} data + * @param {ItemSet} itemSet + */ + function GraphGroup (group, groupId, options, groupsUsingDefaultStyles) { + this.id = groupId; + var fields = ['sampling','style','sort','yAxisOrientation','barChart','drawPoints','shaded','catmullRom','slots'] + this.options = util.selectiveBridgeObject(fields,options); + this.usingDefaultStyle = group.className === undefined; + this.groupsUsingDefaultStyles = groupsUsingDefaultStyles; + this.zeroPosition = 0; + this.update(group); + if (this.usingDefaultStyle == true) { + this.groupsUsingDefaultStyles[0] += 1; } + this.itemsData = []; + this.visible = group.visible === undefined ? true : group.visible; } + 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 = []; + } + }; -/***/ }, -/* 19 */ -/***/ function(module, exports, __webpack_require__) { + GraphGroup.prototype.setZeroPosition = function(pos) { + this.zeroPosition = pos; + }; - 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 */ + GraphGroup.prototype.setOptions = function(options) { + if (options !== undefined) { + var fields = ['sampling','style','sort','yAxisOrientation','barChart','slots']; + util.selectiveDeepExtend(fields, this.options, options); - (function(window, undefined) { - 'use strict'; + util.mergeOptions(this.options, options,'catmullRom'); + util.mergeOptions(this.options, options,'drawPoints'); + util.mergeOptions(this.options, options,'shaded'); - /** - * @main - * @module hammer - * - * @class Hammer - * @static - */ + if (options.catmullRom) { + if (typeof options.catmullRom == 'object') { + if (options.catmullRom.parametrization) { + if (options.catmullRom.parametrization == 'uniform') { + this.options.catmullRom.alpha = 0; + } + else if (options.catmullRom.parametrization == 'chordal') { + this.options.catmullRom.alpha = 1.0; + } + else { + this.options.catmullRom.parametrization = 'centripetal'; + this.options.catmullRom.alpha = 0.5; + } + } + } + } + } + }; + + GraphGroup.prototype.update = function(group) { + this.group = group; + this.content = group.content || 'graph'; + this.className = group.className || this.className || "graphGroup" + this.groupsUsingDefaultStyles[0] % 10; + this.visible = group.visible === undefined ? true : group.visible; + this.setOptions(group.options); + }; + + GraphGroup.prototype.drawIcon = function(x, y, JSONcontainer, SVGcontainer, iconWidth, iconHeight) { + var fillHeight = iconHeight * 0.5; + var path, fillPath; + + var outline = DOMutil.getSVGElement("rect", JSONcontainer, SVGcontainer); + outline.setAttributeNS(null, "x", x); + outline.setAttributeNS(null, "y", y - fillHeight); + outline.setAttributeNS(null, "width", iconWidth); + outline.setAttributeNS(null, "height", 2*fillHeight); + outline.setAttributeNS(null, "class", "outline"); + + if (this.options.style == 'line') { + path = DOMutil.getSVGElement("path", JSONcontainer, SVGcontainer); + path.setAttributeNS(null, "class", this.className); + path.setAttributeNS(null, "d", "M" + x + ","+y+" L" + (x + iconWidth) + ","+y+""); + if (this.options.shaded.enabled == true) { + fillPath = DOMutil.getSVGElement("path", JSONcontainer, SVGcontainer); + if (this.options.shaded.orientation == 'top') { + fillPath.setAttributeNS(null, "d", "M"+x+", " + (y - fillHeight) + + "L"+x+","+y+" L"+ (x + iconWidth) + ","+y+" L"+ (x + iconWidth) + "," + (y - fillHeight)); + } + else { + fillPath.setAttributeNS(null, "d", "M"+x+","+y+" " + + "L"+x+"," + (y + fillHeight) + " " + + "L"+ (x + iconWidth) + "," + (y + fillHeight) + + "L"+ (x + iconWidth) + ","+y); + } + 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); + } + }; /** - * Hammer, use this to create instances - * ```` - * var hammertime = new Hammer(myElement); - * ```` * - * @method Hammer - * @param {HTMLElement} element - * @param {Object} [options={}] - * @return {Hammer.Instance} + * @param iconWidth + * @param iconHeight + * @returns {{icon: HTMLElement, label: (group.content|*|string), orientation: (.options.yAxisOrientation|*)}} */ - var Hammer = function Hammer(element, options) { - return new Hammer.Instance(element, options || {}); - }; + GraphGroup.prototype.getLegend = function(iconWidth, iconHeight) { + var svg = document.createElementNS('http://www.w3.org/2000/svg',"svg"); + this.drawIcon(0,0.5*iconHeight,[],svg,iconWidth,iconHeight); + return {icon: svg, label: this.content, orientation:this.options.yAxisOrientation}; + } + + module.exports = GraphGroup; + + +/***/ }, +/* 23 */ +/***/ function(module, exports, __webpack_require__) { + + var util = __webpack_require__(2); + var stack = __webpack_require__(16); + var ItemRange = __webpack_require__(31); /** - * version, as defined in package.json - * the value will be set at each build - * @property VERSION - * @final - * @type {String} + * @constructor Group + * @param {Number | String} groupId + * @param {Object} data + * @param {ItemSet} itemSet */ - Hammer.VERSION = '1.1.3'; + function Group (groupId, data, itemSet) { + this.groupId = groupId; - /** - * default settings. - * more settings are defined per gesture at `/gestures`. Each gesture can be disabled/enabled - * by setting it's name (like `swipe`) to false. - * You can set the defaults for all instances by changing this object before creating an instance. - * @example - * ```` - * Hammer.defaults.drag = false; - * Hammer.defaults.behavior.touchAction = 'pan-y'; - * delete Hammer.defaults.behavior.userSelect; - * ```` - * @property defaults - * @type {Object} - */ - Hammer.defaults = { - /** - * this setting object adds styles and attributes to the element to prevent the browser from doing - * its native behavior. The css properties are auto prefixed for the browsers when needed. - * @property defaults.behavior - * @type {Object} - */ - behavior: { - /** - * Disables text selection to improve the dragging gesture. When the value is `none` it also sets - * `onselectstart=false` for IE on the element. Mainly for desktop browsers. - * @property defaults.behavior.userSelect - * @type {String} - * @default 'none' - */ - userSelect: 'none', - - /** - * Specifies whether and how a given region can be manipulated by the user (for instance, by panning or zooming). - * Used by Chrome 35> and IE10>. By default this makes the element blocking any touch event. - * @property defaults.behavior.touchAction - * @type {String} - * @default: 'pan-y' - */ - touchAction: 'pan-y', + this.itemSet = itemSet; - /** - * Disables the default callout shown when you touch and hold a touch target. - * On iOS, when you touch and hold a touch target such as a link, Safari displays - * a callout containing information about the link. This property allows you to disable that callout. - * @property defaults.behavior.touchCallout - * @type {String} - * @default 'none' - */ - touchCallout: 'none', + this.dom = {}; + this.props = { + label: { + width: 0, + height: 0 + } + }; + this.className = null; - /** - * Specifies whether zooming is enabled. Used by IE10> - * @property defaults.behavior.contentZooming - * @type {String} - * @default 'none' - */ - contentZooming: 'none', + this.items = {}; // items filtered by groupId of this group + this.visibleItems = []; // items currently visible in window + this.orderedItems = { // items sorted by start and by end + byStart: [], + byEnd: [] + }; - /** - * 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._create(); - /** - * Overrides the highlight color shown when the user taps a link or a JavaScript - * clickable element in Safari on iPhone. This property obeys the alpha value, if specified. - * - * If you don't specify an alpha value, Safari on iPhone applies a default alpha value - * to the color. To disable tap highlighting, set the alpha value to 0 (invisible). - * If you set the alpha value to 1.0 (opaque), the element is not visible when tapped. - * @property defaults.behavior.tapHighlightColor - * @type {String} - * @default 'rgba(0,0,0,0)' - */ - tapHighlightColor: 'rgba(0,0,0,0)' - } - }; + this.setData(data); + } /** - * hammer document where the base events are added at - * @property DOCUMENT - * @type {HTMLElement} - * @default window.document + * Create DOM elements for the group + * @private */ - Hammer.DOCUMENT = document; + Group.prototype._create = function() { + var label = document.createElement('div'); + label.className = 'vlabel'; + this.dom.label = label; - /** - * detect support for pointer events - * @property HAS_POINTEREVENTS - * @type {Boolean} - */ - Hammer.HAS_POINTEREVENTS = navigator.pointerEnabled || navigator.msPointerEnabled; + var inner = document.createElement('div'); + inner.className = 'inner'; + label.appendChild(inner); + this.dom.inner = inner; - /** - * detect support for touch events - * @property HAS_TOUCHEVENTS - * @type {Boolean} - */ - Hammer.HAS_TOUCHEVENTS = ('ontouchstart' in window); + var foreground = document.createElement('div'); + foreground.className = 'group'; + foreground['timeline-group'] = this; + this.dom.foreground = foreground; - /** - * detect mobile browsers - * @property IS_MOBILE - * @type {Boolean} - */ - Hammer.IS_MOBILE = /mobile|tablet|ip(ad|hone|od)|android|silk/i.test(navigator.userAgent); + this.dom.background = document.createElement('div'); + this.dom.background.className = 'group'; - /** - * detect if we want to support mouseevents at all - * @property NO_MOUSEEVENTS - * @type {Boolean} - */ - Hammer.NO_MOUSEEVENTS = (Hammer.HAS_TOUCHEVENTS && Hammer.IS_MOBILE) || Hammer.HAS_POINTEREVENTS; + this.dom.axis = document.createElement('div'); + this.dom.axis.className = 'group'; - /** - * interval in which Hammer recalculates current velocity/direction/angle in ms - * @property CALCULATE_INTERVAL - * @type {Number} - * @default 25 - */ - Hammer.CALCULATE_INTERVAL = 25; + // create a hidden marker to detect when the Timelines container is attached + // to the DOM, or the style of a parent of the Timeline is changed from + // display:none is changed to visible. + this.dom.marker = document.createElement('div'); + this.dom.marker.style.visibility = 'hidden'; + this.dom.marker.innerHTML = '?'; + this.dom.background.appendChild(this.dom.marker); + }; /** - * 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} + * Set the group data for this group + * @param {Object} data Group data, can contain properties content and className */ - var EVENT_TYPES = {}; + 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 + } - /** - * direction strings, for safe comparisons - * @property DIRECTION_DOWN|LEFT|UP|RIGHT - * @final - * @type {String} - * @default 'down' 'left' 'up' 'right' - */ - var DIRECTION_DOWN = Hammer.DIRECTION_DOWN = 'down'; - var DIRECTION_LEFT = Hammer.DIRECTION_LEFT = 'left'; - var DIRECTION_UP = Hammer.DIRECTION_UP = 'up'; - var DIRECTION_RIGHT = Hammer.DIRECTION_RIGHT = 'right'; + // update title + this.dom.label.title = data && data.title || ''; - /** - * 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 (!this.dom.inner.firstChild) { + util.addClassName(this.dom.inner, 'hidden'); + } + else { + util.removeClassName(this.dom.inner, 'hidden'); + } - /** - * 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'; + // update className + var className = data && data.className || null; + if (className != this.className) { + if (this.className) { + util.removeClassName(this.dom.label, className); + util.removeClassName(this.dom.foreground, className); + util.removeClassName(this.dom.background, className); + util.removeClassName(this.dom.axis, className); + } + util.addClassName(this.dom.label, className); + util.addClassName(this.dom.foreground, className); + util.addClassName(this.dom.background, className); + util.addClassName(this.dom.axis, className); + } + }; /** - * if the window events are set... - * @property READY - * @writeOnce - * @type {Boolean} - * @default false + * Get the width of the group label + * @return {number} width */ - Hammer.READY = false; + Group.prototype.getLabelWidth = function() { + return this.props.label.width; + }; - /** - * plugins namespace - * @property plugins - * @type {Object} - */ - Hammer.plugins = Hammer.plugins || {}; /** - * gestures namespace - * see `/gestures` for the definitions - * @property gestures - * @type {Object} + * 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 */ - Hammer.gestures = Hammer.gestures || {}; + Group.prototype.redraw = function(range, margin, restack) { + var resized = false; - /** - * setup events to detect gestures on the document - * this function is called when creating an new instance - * @private - */ - function setup() { - if(Hammer.READY) { - return; - } + this.visibleItems = this._updateVisibleItems(this.orderedItems, this.visibleItems, range); - // find what eventtypes we add listeners to - Event.determineEventTypes(); + // 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; - // Register all gestures inside Hammer.gestures - Utils.each(Hammer.gestures, function(gesture) { - Detection.register(gesture); + util.forEach(this.items, function (item) { + item.dirty = true; + if (item.displayed) item.redraw(); }); - // Add touch events on the document - Event.onTouch(Hammer.DOCUMENT, EVENT_MOVE, Detection.detect); - Event.onTouch(Hammer.DOCUMENT, EVENT_END, Detection.detect); - - // Hammer is ready...! - Hammer.READY = true; - } + restack = true; + } - /** - * @module hammer - * - * @class Utils - * @static - */ - var Utils = Hammer.utils = { - /** - * extend method, could also be used for cloning when `dest` is an empty object. - * changes the dest object - * @method extend - * @param {Object} dest - * @param {Object} src - * @param {Boolean} [merge=false] do a merge - * @return {Object} dest - */ - extend: function extend(dest, src, merge) { - for(var key in src) { - if(!src.hasOwnProperty(key) || (dest[key] !== undefined && merge)) { - continue; - } - dest[key] = src[key]; - } - return dest; - }, + // 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); + } - /** - * 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); - }, + // recalculate the height of the group + var height; + var visibleItems = this.visibleItems; + if (visibleItems.length) { + var min = visibleItems[0].top; + var max = visibleItems[0].top + visibleItems[0].height; + util.forEach(visibleItems, function (item) { + min = Math.min(min, item.top); + max = Math.max(max, (item.top + item.height)); + }); + if (min > margin.axis) { + // there is an empty gap between the lowest item and the axis + var offset = min - margin.axis; + max -= offset; + util.forEach(visibleItems, function (item) { + item.top -= offset; + }); + } + height = max + margin.item.vertical / 2; + } + else { + height = margin.axis + margin.item.vertical; + } + height = Math.max(height, this.props.label.height); - /** - * 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); - }, + // 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; - /** - * 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; + // 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; - // 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; - } - } - } - }, + // apply new height + this.dom.background.style.height = height + 'px'; + this.dom.foreground.style.height = height + 'px'; + this.dom.label.style.height = height + 'px'; - /** - * 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; - }, + // 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(); + } - /** - * 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; - } - }, + return resized; + }; - /** - * 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); - }, + /** + * Show this group: attach to the DOM + */ + Group.prototype.show = function() { + if (!this.dom.label.parentNode) { + this.itemSet.dom.labelSet.appendChild(this.dom.label); + } - /** - * find if a node is in the given parent - * @method hasParent - * @param {HTMLElement} node - * @param {HTMLElement} parent - * @return {Boolean} found - */ - hasParent: function hasParent(node, parent) { - while(node) { - if(node == parent) { - return true; - } - node = node.parentNode; - } - return false; - }, + if (!this.dom.foreground.parentNode) { + this.itemSet.dom.foreground.appendChild(this.dom.foreground); + } - /** - * 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; + if (!this.dom.background.parentNode) { + this.itemSet.dom.background.appendChild(this.dom.background); + } - // 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 - }; - } + if (!this.dom.axis.parentNode) { + this.itemSet.dom.axis.appendChild(this.dom.axis); + } + }; - Utils.each(touches, function(touch) { - pageX.push(touch.pageX); - pageY.push(touch.pageY); - clientX.push(touch.clientX); - clientY.push(touch.clientY); - }); - - return { - pageX: (min.apply(Math, pageX) + max.apply(Math, pageX)) / 2, - pageY: (min.apply(Math, pageY) + max.apply(Math, pageY)) / 2, - clientX: (min.apply(Math, clientX) + max.apply(Math, clientX)) / 2, - clientY: (min.apply(Math, clientY) + max.apply(Math, clientY)) / 2 - }; - }, - - /** - * calculate the velocity between two points. unit is in px per ms. - * @method getVelocity - * @param {Number} deltaTime - * @param {Number} deltaX - * @param {Number} deltaY - * @return {Object} velocity `x` and `y` - */ - getVelocity: function getVelocity(deltaTime, deltaX, deltaY) { - return { - x: Math.abs(deltaX / deltaTime) || 0, - y: Math.abs(deltaY / deltaTime) || 0 - }; - }, - - /** - * calculate the angle between two coordinates - * @method getAngle - * @param {Touch} touch1 - * @param {Touch} touch2 - * @return {Number} angle - */ - getAngle: function getAngle(touch1, touch2) { - var x = touch2.clientX - touch1.clientX, - y = touch2.clientY - touch1.clientY; - - return Math.atan2(y, x) * 180 / Math.PI; - }, - - /** - * do a small comparision to get the direction between two touches. - * @method getDirection - * @param {Touch} touch1 - * @param {Touch} touch2 - * @return {String} direction matches `DIRECTION_LEFT|RIGHT|UP|DOWN` - */ - getDirection: function getDirection(touch1, touch2) { - var x = Math.abs(touch1.clientX - touch2.clientX), - y = Math.abs(touch1.clientY - touch2.clientY); - - if(x >= y) { - return touch1.clientX - touch2.clientX > 0 ? DIRECTION_LEFT : DIRECTION_RIGHT; - } - return touch1.clientY - touch2.clientY > 0 ? DIRECTION_UP : DIRECTION_DOWN; - }, + /** + * Hide this group: remove from the DOM + */ + Group.prototype.hide = function() { + var label = this.dom.label; + if (label.parentNode) { + label.parentNode.removeChild(label); + } - /** - * calculate the distance between two touches - * @method getDistance - * @param {Touch}touch1 - * @param {Touch} touch2 - * @return {Number} distance - */ - getDistance: function getDistance(touch1, touch2) { - var x = touch2.clientX - touch1.clientX, - y = touch2.clientY - touch1.clientY; + var foreground = this.dom.foreground; + if (foreground.parentNode) { + foreground.parentNode.removeChild(foreground); + } - return Math.sqrt((x * x) + (y * y)); - }, + var background = this.dom.background; + if (background.parentNode) { + background.parentNode.removeChild(background); + } - /** - * calculate the scale factor between two touchLists - * no scale is 1, and goes down to 0 when pinched together, and bigger when pinched out - * @method getScale - * @param {Array} start array of touches - * @param {Array} end array of touches - * @return {Number} scale - */ - getScale: function getScale(start, end) { - // need two fingers... - if(start.length >= 2 && end.length >= 2) { - return this.getDistance(end[0], end[1]) / this.getDistance(start[0], start[1]); - } - return 1; - }, + var axis = this.dom.axis; + if (axis.parentNode) { + axis.parentNode.removeChild(axis); + } + }; - /** - * 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; - }, + /** + * Add an item to the group + * @param {Item} item + */ + Group.prototype.add = function(item) { + this.items[item.id] = item; + item.setParent(this); - /** - * 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.visibleItems.indexOf(item) == -1) { + var range = this.itemSet.body.range; // TODO: not nice accessing the range like this + this._checkIfVisible(item, this.visibleItems, range); + } + }; - /** - * 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); + /** + * Remove an item from the group + * @param {Item} item + */ + Group.prototype.remove = function(item) { + delete this.items[item.id]; + item.setParent(this.itemSet); - for(var i = 0; i < prefixes.length; i++) { - var p = prop; - // prefixes - if(prefixes[i]) { - p = prefixes[i] + p.slice(0, 1).toUpperCase() + p.slice(1); - } + // remove from visible items + var index = this.visibleItems.indexOf(item); + if (index != -1) this.visibleItems.splice(index, 1); - // test the style - if(p in element.style) { - element.style[p] = (toggle == null || toggle) && value || ''; - break; - } - } - }, + // TODO: also remove from ordered items? + }; - /** - * 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; - } + /** + * Remove an item from the corresponding DataSet + * @param {Item} item + */ + Group.prototype.removeFromDataSet = function(item) { + this.itemSet.removeItem(item.id); + }; - // set the css properties - Utils.each(props, function(value, prop) { - Utils.setPrefixedCss(element, prop, value, toggle); - }); + /** + * Reorder the items + */ + Group.prototype.order = function() { + var array = util.toArray(this.items); + this.orderedItems.byStart = array; + this.orderedItems.byEnd = this._constructByEndArray(array); - var falseFn = toggle && function() { - return false; - }; + stack.orderByStart(this.orderedItems.byStart); + stack.orderByEnd(this.orderedItems.byEnd); + }; - // also the disable onselectstart - if(props.userSelect == 'none') { - element.onselectstart = falseFn; - } - // and disable ondragstart - if(props.userDrag == 'none') { - element.ondragstart = falseFn; - } - }, + /** + * Create an array containing all items being a range (having an end date) + * @param {Item[]} array + * @returns {ItemRange[]} + * @private + */ + Group.prototype._constructByEndArray = function(array) { + var endArray = []; - /** - * 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(); - }); + for (var i = 0; i < array.length; i++) { + if (array[i] instanceof ItemRange) { + endArray.push(array[i]); } + } + return endArray; }; - /** - * @module hammer + * 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 */ - /** - * @class Event - * @static - */ - var Event = Hammer.event = { - /** - * when touch events have been fired, this is true - * this is used to stop mouse events - * @property prevent_mouseevents - * @private - * @type {Boolean} - */ - preventMouseEvents: false, - - /** - * if EVENT_START has been fired - * @property started - * @private - * @type {Boolean} - */ - started: false, + Group.prototype._updateVisibleItems = function(orderedItems, visibleItems, range) { + var initialPosByStart, + newVisibleItems = [], + i; - /** - * when the mouse is hold down, this is true - * @property should_detect - * @private - * @type {Boolean} - */ - shouldDetect: false, + // first check if the items that were in view previously are still in view. + // this handles the case for the ItemRange that is both before and after the current one. + if (visibleItems.length > 0) { + for (i = 0; i < visibleItems.length; i++) { + this._checkIfVisible(visibleItems[i], newVisibleItems, range); + } + } - /** - * simple event binder with a hook and support for multiple types - * @method on - * @param {HTMLElement} element - * @param {String} type - * @param {Function} handler - * @param {Function} [hook] - * @param {Object} hook.type - */ - on: function on(element, type, handler, hook) { - var types = type.split(' '); - Utils.each(types, function(type) { - Utils.on(element, type, handler); - hook && hook(type); - }); - }, + // If there were no visible items previously, use binarySearch to find a visible ItemPoint or ItemRange (based on startTime) + if (newVisibleItems.length == 0) { + initialPosByStart = util.binarySearch(orderedItems.byStart, range, 'data','start'); + } + else { + initialPosByStart = orderedItems.byStart.indexOf(newVisibleItems[0]); + } - /** - * 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); - }); - }, + // use visible search to find a visible ItemRange (only based on endTime) + var initialPosByEnd = util.binarySearch(orderedItems.byEnd, range, 'data','end'); - /** - * 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; + // if we found a initial ID to use, trace it up and down until we meet an invisible item. + if (initialPosByStart != -1) { + for (i = initialPosByStart; i >= 0; i--) { + if (this._checkIfInvisible(orderedItems.byStart[i], newVisibleItems, range)) {break;} + } + for (i = initialPosByStart + 1; i < orderedItems.byStart.length; i++) { + if (this._checkIfInvisible(orderedItems.byStart[i], newVisibleItems, range)) {break;} + } + } - var onTouchHandler = function onTouchHandler(ev) { - var srcType = ev.type.toLowerCase(), - isPointer = Hammer.HAS_POINTEREVENTS, - isMouse = Utils.inStr(srcType, 'mouse'), - triggerType; + // if we found a initial ID to use, trace it up and down until we meet an invisible item. + if (initialPosByEnd != -1) { + for (i = initialPosByEnd; i >= 0; i--) { + if (this._checkIfInvisible(orderedItems.byEnd[i], newVisibleItems, range)) {break;} + } + for (i = initialPosByEnd + 1; i < orderedItems.byEnd.length; i++) { + if (this._checkIfInvisible(orderedItems.byEnd[i], newVisibleItems, range)) {break;} + } + } - // if 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; + return newVisibleItems; + }; - // mousebutton must be down - } else if(isMouse && eventType == EVENT_START && ev.button === 0) { - self.preventMouseEvents = false; - self.shouldDetect = true; - } else if(isPointer && eventType == EVENT_START) { - self.shouldDetect = (ev.buttons === 1 || PointerEvent.matchType(POINTER_TOUCH, ev)); - // just a valid start event, but no mouse - } else if(!isMouse && eventType == EVENT_START) { - self.preventMouseEvents = true; - self.shouldDetect = true; - } - // update the pointer event before entering the detection - if(isPointer && eventType != EVENT_END) { - PointerEvent.updatePointer(eventType, ev); - } - // we are in a touch/down state, so allowed detection of gestures - if(self.shouldDetect) { - triggerType = self.doDetect.call(self, ev, eventType, element, handler); - } + /** + * this function checks if an item is invisible. If it is NOT we make it visible + * and add it to the global visible items. If it is, return true. + * + * @param {Item} item + * @param {Item[]} visibleItems + * @param {{start:number, end:number}} range + * @returns {boolean} + * @private + */ + Group.prototype._checkIfInvisible = function(item, visibleItems, range) { + if (item.isVisible(range)) { + if (!item.displayed) item.show(); + item.repositionX(); + if (visibleItems.indexOf(item) == -1) { + visibleItems.push(item); + } + return false; + } + else { + if (item.displayed) item.hide(); + return true; + } + }; - // ...and we are done with the detection - // so reset everything to start each detection totally fresh - if(triggerType == EVENT_END) { - self.preventMouseEvents = false; - self.shouldDetect = false; - PointerEvent.reset(); - // update the pointerevent object after the detection - } + /** + * this function is very similar to the _checkIfInvisible() but it does not + * return booleans, hides the item if it should not be seen and always adds to + * the visibleItems. + * this one is for brute forcing and hiding. + * + * @param {Item} item + * @param {Array} visibleItems + * @param {{start:number, end:number}} range + * @private + */ + Group.prototype._checkIfVisible = function(item, visibleItems, range) { + if (item.isVisible(range)) { + if (!item.displayed) item.show(); + // reposition item horizontally + item.repositionX(); + visibleItems.push(item); + } + else { + if (item.displayed) item.hide(); + } + }; - if(isPointer && eventType == EVENT_END) { - PointerEvent.updatePointer(eventType, ev); - } - }; + module.exports = Group; - this.on(element, EVENT_TYPES[eventType], onTouchHandler); - return onTouchHandler; - }, - /** - * 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; +/***/ }, +/* 24 */ +/***/ function(module, exports, __webpack_require__) { - // 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; + var Hammer = __webpack_require__(40); + var util = __webpack_require__(2); + var DataSet = __webpack_require__(3); + var DataView = __webpack_require__(4); + var Component = __webpack_require__(19); + var Group = __webpack_require__(23); + var ItemBox = __webpack_require__(29); + var ItemPoint = __webpack_require__(30); + var ItemRange = __webpack_require__(31); - // keep track of how many touches have been removed - changedLength = touchList.length - ((ev.changedTouches) ? ev.changedTouches.length : 1); - } - // 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; - } + var UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items - // detection has been started, we keep track of this, see above - this.started = true; + /** + * 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; - // generate some event data, some basic information - var evData = this.collectEventData(element, triggerType, touchList, ev); + this.defaultOptions = { + type: null, // 'box', 'point', 'range' + orientation: 'bottom', // 'top' or 'bottom' + align: 'center', // alignment of box items + stack: true, + groupOrder: null, - // 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); - } + selectable: true, + editable: { + updateTime: false, + updateGroup: false, + add: false, + remove: false + }, - // trigger a change (TOUCH, RELEASE) event, this means the length of the touches changed - if(triggerChange) { - evData.changedLength = changedLength; - evData.eventType = triggerChange; + onAdd: function (item, callback) { + callback(item); + }, + onUpdate: function (item, callback) { + callback(item); + }, + onMove: function (item, callback) { + callback(item); + }, + onRemove: function (item, callback) { + callback(item); + }, - handler.call(Detection, evData); + margin: { + item: { + horizontal: 10, + vertical: 10 + }, + axis: 20 + }, + padding: 5 + }; - evData.eventType = triggerType; - delete evData.changedLength; - } + // options is shared by this ItemSet and all its items + this.options = util.extend({}, this.defaultOptions); - // trigger the END event - if(triggerType == EVENT_END) { - handler.call(Detection, evData); + // options for getting items from the DataSet with the correct type + this.itemOptions = { + type: {start: 'Date', end: 'Date'} + }; - // ...and we are done with the detection - // so reset everything to start each detection totally fresh - this.started = false; - } + this.conversion = { + toScreen: body.util.toScreen, + toTime: body.util.toTime + }; + this.dom = {}; + this.props = {}; + this.hammer = null; - return triggerType; - }, + var me = this; + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet - /** - * 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' - ]; - } + // 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); + } + }; - EVENT_TYPES[EVENT_START] = types[0]; - EVENT_TYPES[EVENT_MOVE] = types[1]; - EVENT_TYPES[EVENT_END] = types[2]; - return EVENT_TYPES; + // 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); + } + }; - /** - * 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(); - } + this.items = {}; // object with an Item for every data item + this.groups = {}; // Group object for every group + this.groupIds = []; - // get the touchlist - if(ev.touches) { - if(eventType == EVENT_MOVE) { - return ev.touches; - } + this.selection = []; // list with the ids of all selected nodes + this.stackDirty = true; // if true, all items will be restacked on next redraw - var identifiers = []; - var concat = [].concat(Utils.toArray(ev.touches), Utils.toArray(ev.changedTouches)); - var touchList = []; + this.touchParams = {}; // stores properties while dragging + // create the HTML DOM - Utils.each(concat, function(touch) { - if(Utils.inArray(identifiers, touch.identifier) === false) { - touchList.push(touch); - } - identifiers.push(touch.identifier); - }); + this._create(); - return touchList; - } + this.setOptions(options); + } - // make fake touchList from mouse position - ev.identifier = 1; - return [ev]; - }, + ItemSet.prototype = new Component(); - /** - * 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; - } + // available item types will be registered here + ItemSet.types = { + box: ItemBox, + range: ItemRange, + point: ItemPoint + }; - return { - center: Utils.getCenter(touches), - timeStamp: Date.now(), - target: ev.target, - touches: touches, - eventType: eventType, - pointerType: pointerType, - srcEvent: ev, + /** + * Create the HTML DOM for the ItemSet + */ + ItemSet.prototype._create = function(){ + var frame = document.createElement('div'); + frame.className = 'itemset'; + frame['timeline-itemset'] = this; + this.dom.frame = frame; - /** - * 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(); - }, + // create background panel + var background = document.createElement('div'); + background.className = 'background'; + frame.appendChild(background); + this.dom.background = background; - /** - * stop bubbling the event up to its parents - */ - stopPropagation: function() { - this.srcEvent.stopPropagation(); - }, + // create foreground panel + var foreground = document.createElement('div'); + foreground.className = 'foreground'; + frame.appendChild(foreground); + this.dom.foreground = foreground; - /** - * immediately stop gesture detection - * might be useful after a swipe was detected - * @return {*} - */ - stopDetect: function() { - return Detection.stopDetect(); - } - }; - } - }; + // 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; - /** - * @module hammer - * - * @class PointerEvent - * @static - */ - var PointerEvent = Hammer.PointerEvent = { - /** - * holds all pointers, by `identifier` - * @property pointers - * @type {Object} - */ - pointers: {}, + // create ungrouped Group + this._updateUngrouped(); - /** - * 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; - }, + // attach event listeners + // Note: we bind to the centerContainer for the case where the height + // of the center container is larger than of the ItemSet, so we + // can click in the empty area to create a new item or deselect an item. + this.hammer = Hammer(this.body.dom.centerContainer, { + prevent_default: true + }); - /** - * 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; - } - }, + // 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)); - /** - * 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; - } + // single select (or unselect) when tapping an item + this.hammer.on('tap', this._onSelectItem.bind(this)); - var pt = ev.pointerType, - types = {}; + // multi select when holding mouse/touch, or on ctrl+click + this.hammer.on('hold', this._onMultiSelectItem.bind(this)); - 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]; - }, + // add item on doubletap + this.hammer.on('doubletap', this._onAddItem.bind(this)); - /** - * reset the stored pointers - * @method reset - */ - reset: function resetList() { - this.pointers = {}; - } + // attach to the DOM + this.show(); }; - /** - * @module hammer - * - * @class Detection - * @static + * Set options for the ItemSet. Existing options will be extended/overwritten. + * @param {Object} [options] The following options are available: + * {String} type + * Default type for the items. Choose from 'box' + * (default), 'point', or 'range'. The default + * Style can be overwritten by individual items. + * {String} align + * Alignment for the items, only applicable for + * ItemBox. Choose 'center' (default), 'left', or + * 'right'. + * {String} orientation + * Orientation of the item set. Choose 'top' or + * 'bottom' (default). + * {Function} groupOrder + * A sorting function for ordering groups + * {Boolean} stack + * If true (deafult), items will be stacked on + * top of each other. + * {Number} margin.axis + * Margin between the axis and the items in pixels. + * Default is 20. + * {Number} margin.item.horizontal + * Horizontal margin between items in pixels. + * Default is 10. + * {Number} margin.item.vertical + * Vertical Margin between items in pixels. + * Default is 10. + * {Number} margin.item + * Margin between items in pixels in both horizontal + * and vertical direction. Default is 10. + * {Number} margin + * Set margin for both axis and items in pixels. + * {Number} padding + * Padding of the contents of an item in pixels. + * Must correspond with the items css. Default is 5. + * {Boolean} selectable + * If true (default), items can be selected. + * {Boolean} editable + * Set all editable options to true or false + * {Boolean} editable.updateTime + * Allow dragging an item to an other moment in time + * {Boolean} editable.updateGroup + * Allow dragging an item to an other group + * {Boolean} editable.add + * Allow creating new items on double tap + * {Boolean} editable.remove + * Allow removing items by clicking the delete button + * top right of a selected item. + * {Function(item: Item, callback: Function)} onAdd + * Callback function triggered when an item is about to be added: + * when the user double taps an empty space in the Timeline. + * {Function(item: Item, callback: Function)} onUpdate + * Callback function fired when an item is about to be updated. + * This function typically has to show a dialog where the user + * change the item. If not implemented, nothing happens. + * {Function(item: Item, callback: Function)} onMove + * Fired when an item has been moved. If not implemented, + * the move action will be accepted. + * {Function(item: Item, callback: Function)} onRemove + * Fired when an item is about to be deleted. + * If not implemented, the item will be always removed. */ - var Detection = Hammer.detection = { - // contains all registred Hammer.gestures in the correct order - gestures: [], - - // data of the current Hammer.gesture detection session - current: null, + ItemSet.prototype.setOptions = function(options) { + if (options) { + // copy all options that we know + var fields = ['type', 'align', 'orientation', 'padding', 'stack', 'selectable', 'groupOrder']; + util.selectiveExtend(fields, this.options, options); - // the previous Hammer.gesture session data - // is a full clone of the previous gesture.current object - previous: null, + 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); + } + } + } + } - // when this becomes true, no gestures are fired - stopped: false, + 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); + } + } - /** - * 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; + // callback functions + var addCallback = (function (name) { + if (name in options) { + var fn = options[name]; + if (!(fn instanceof Function)) { + throw new Error('option ' + name + ' must be a function ' + name + '(item, callback)'); } + this.options[name] = fn; + } + }).bind(this); + ['onAdd', 'onUpdate', 'onRemove', 'onMove'].forEach(addCallback); - this.stopped = false; + // force the itemSet to refresh: options like orientation and margins may be changed + this.markDirty(); + } + }; - // 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 - }; + /** + * Mark the ItemSet dirty so it will refresh everything with next redraw + */ + ItemSet.prototype.markDirty = function() { + this.groupIds = []; + this.stackDirty = true; + }; - this.detect(eventData); - }, + /** + * Destroy the ItemSet + */ + ItemSet.prototype.destroy = function() { + this.hide(); + this.setItems(null); + this.setGroups(null); - /** - * Hammer.gesture detection - * @method detect - * @param {Object} eventData - * @return {any} - */ - detect: function detect(eventData) { - if(!this.current || this.stopped) { - return; - } - - // extend event data with calculations about scale, distance etc - eventData = this.extendEventData(eventData); + this.hammer = null; - // hammer instance and instance options - var inst = this.current.inst, - instOptions = inst.options; + this.body = null; + this.conversion = null; + }; - // call Hammer.gesture handlers - Utils.each(this.gestures, function triggerGesture(gesture) { - // only when the instance options have enabled this gesture - if(!this.stopped && inst.enabled && instOptions[gesture.name]) { - gesture.handler.call(gesture, eventData, inst); - } - }, this); + /** + * Hide the component from the DOM + */ + ItemSet.prototype.hide = function() { + // remove the frame containing the items + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } - // store as previous event event - if(this.current) { - this.current.lastEvent = eventData; - } + // remove the axis with dots + if (this.dom.axis.parentNode) { + this.dom.axis.parentNode.removeChild(this.dom.axis); + } - if(eventData.eventType == EVENT_END) { - this.stopDetect(); - } + // remove the labelset containing all group labels + if (this.dom.labelSet.parentNode) { + this.dom.labelSet.parentNode.removeChild(this.dom.labelSet); + } + }; - return eventData; - }, + /** + * Show the component in the DOM (when not already visible). + * @return {Boolean} changed + */ + ItemSet.prototype.show = function() { + // show frame containing the items + if (!this.dom.frame.parentNode) { + this.body.dom.center.appendChild(this.dom.frame); + } - /** - * 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); + // show axis with dots + if (!this.dom.axis.parentNode) { + this.body.dom.backgroundVertical.appendChild(this.dom.axis); + } - // reset the current - this.current = null; - this.stopped = true; - }, + // show labelset containing labels + if (!this.dom.labelSet.parentNode) { + this.body.dom.left.appendChild(this.dom.labelSet); + } + }; - /** - * 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; + /** + * Set selected items by their id. Replaces the current selection + * Unknown id's are silently ignored. + * @param {Array} [ids] An array with zero or more id's of the items to be + * selected. If ids is an empty array, all items will be + * unselected. + */ + ItemSet.prototype.setSelection = function(ids) { + var i, ii, id, item; - if(calcEv && ev.timeStamp - calcEv.timeStamp > Hammer.CALCULATE_INTERVAL) { - center = calcEv.center; - deltaTime = ev.timeStamp - calcEv.timeStamp; - deltaX = ev.center.clientX - calcEv.center.clientX; - deltaY = ev.center.clientY - calcEv.center.clientY; - recalc = true; - } + if (ids) { + if (!Array.isArray(ids)) { + throw new TypeError('Array expected'); + } - if(ev.eventType == EVENT_TOUCH || ev.eventType == EVENT_RELEASE) { - cur.futureCalcEvent = ev; - } + // 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(); + } - 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); + // 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(); + } + } + } + }; - cur.lastCalcEvent = cur.futureCalcEvent || ev; - cur.futureCalcEvent = ev; - } + /** + * Get the selected items by their id + * @return {Array} ids The ids of the selected items + */ + ItemSet.prototype.getSelection = function() { + return this.selection.concat([]); + }; - ev.velocityX = calcData.velocity.x; - ev.velocityY = calcData.velocity.y; - ev.interimAngle = calcData.angle; - ev.interimDirection = calcData.direction; - }, + /** + * 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); - /** - * extend eventData for Hammer.gestures - * @method extendEventData - * @param {Object} ev - * @return {Object} ev - */ - extendEventData: function extendEventData(ev) { - var cur = this.current, - startEv = cur.startEvent, - lastEv = cur.lastEvent || startEv; + var ids = []; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + var group = this.groups[groupId]; + var rawVisibleItems = group.visibleItems; - // 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 - }); - }); + // 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); } + } + } + } - var deltaTime = ev.timeStamp - startEv.timeStamp, - deltaX = ev.center.clientX - startEv.center.clientX, - deltaY = ev.center.clientY - startEv.center.clientY; + return ids; + }; - this.getCalculatedData(ev, lastEv.center, deltaTime, deltaX, deltaY); + /** + * 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; + } + } + }; - Utils.extend(ev, { - startEvent: startEv, + /** + * 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; - deltaTime: deltaTime, - deltaX: deltaX, - deltaY: deltaY, + // update class name + frame.className = 'itemset' + (editable ? ' editable' : ''); - 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) - }); + // reorder the groups (if needed) + resized = this._orderGroups() || resized; - return ev; - }, + // check whether zoomed (in that case we need to re-stack everything) + // TODO: would be nicer to get this as a trigger from Range + var visibleInterval = range.end - range.start; + var zoomed = (visibleInterval != this.lastVisibleInterval) || (this.props.width != this.props.lastWidth); + if (zoomed) this.stackDirty = true; + this.lastVisibleInterval = visibleInterval; + this.props.lastWidth = this.props.width; - /** - * 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; - } + // redraw all groups + var restack = this.stackDirty, + firstGroup = this._firstGroup(), + firstMargin = { + item: margin.item, + axis: margin.axis + }, + nonFirstMargin = { + item: margin.item, + axis: margin.item.vertical / 2 + }, + height = 0, + minHeight = margin.axis + margin.item.vertical; + util.forEach(this.groups, function (group) { + var groupMargin = (group == firstGroup) ? firstMargin : nonFirstMargin; + var groupResized = group.redraw(range, groupMargin, restack); + resized = groupResized || resized; + height += group.height; + }); + height = Math.max(height, minHeight); + this.stackDirty = false; - // extend Hammer default options with the Hammer.gesture options - Utils.extend(Hammer.defaults, options, true); + // update frame height + frame.style.height = asSize(height); - // set its index - gesture.index = gesture.index || 1000; + // calculate actual size and position + this.props.top = frame.offsetTop; + this.props.left = frame.offsetLeft; + this.props.width = frame.offsetWidth; + this.props.height = height; - // add Hammer.gesture to the list - this.gestures.push(gesture); + // reposition axis + this.dom.axis.style.top = asSize((orientation == 'top') ? + (this.body.domProps.top.height + this.body.domProps.border.top) : + (this.body.domProps.top.height + this.body.domProps.centerContainer.height)); + this.dom.axis.style.left = this.body.domProps.border.left + 'px'; - // 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; - }); + // check if this component is resized + resized = this._isResized() || resized; - return this.gestures; - } + return resized; }; - /** - * @module hammer + * 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 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} + * Create or delete the group holding all ungrouped items. This group is used when + * there are no groups specified. + * @protected */ - Hammer.Instance = function(element, options) { - var self = this; + ItemSet.prototype._updateUngrouped = function() { + var ungrouped = this.groups[UNGROUPED]; - // setup HammerJS window events and register all gestures - // this also sets up the default options - setup(); + if (this.groupsData) { + // remove the group holding all ungrouped items + if (ungrouped) { + ungrouped.hide(); + delete this.groups[UNGROUPED]; + } + } + else { + // create a group holding all (unfiltered) items + if (!ungrouped) { + var id = null; + var data = null; + ungrouped = new Group(id, data, this); + this.groups[UNGROUPED] = ungrouped; - /** - * @property element - * @type {HTMLElement} - */ - this.element = element; + for (var itemId in this.items) { + if (this.items.hasOwnProperty(itemId)) { + ungrouped.add(this.items[itemId]); + } + } - /** - * @property enabled - * @type {Boolean} - * @protected - */ - this.enabled = true; + ungrouped.show(); + } + } + }; - /** - * 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; - }); + /** + * Get the element for the labelset + * @return {HTMLElement} labelSet + */ + ItemSet.prototype.getLabelSet = function() { + return this.dom.labelSet; + }; - this.options = Utils.extend(Utils.extend({}, Hammer.defaults), options || {}); + /** + * Set items + * @param {vis.DataSet | null} items + */ + ItemSet.prototype.setItems = function(items) { + var me = this, + ids, + oldItemsData = this.itemsData; - // 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); - } + // 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'); + } - /** - * 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); - } + if (oldItemsData) { + // unsubscribe from old dataset + util.forEach(this.itemListeners, function (callback, event) { + oldItemsData.off(event, callback); }); - /** - * keep a list of user event handlers which needs to be removed when calling 'dispose' - * @property eventHandlers - * @type {Array} - */ - this.eventHandlers = []; - }; + // remove all drawn items + ids = oldItemsData.getIds(); + this._onRemove(ids); + } - 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; - }, + if (this.itemsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.itemListeners, function (callback, event) { + me.itemsData.on(event, callback, id); + }); - /** - * unbind events to the instance - * @method off - * @chainable - * @param {String} gestures - * @param {Function} handler - */ - off: function offEvent(gestures, handler) { - var self = this; + // add all new items + ids = this.itemsData.getIds(); + this._onAdd(ids); - 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; - }, + // update the group holding all ungrouped items + this._updateUngrouped(); + } + }; - /** - * trigger gesture event - * @method trigger - * @chainable - * @param {String} gesture - * @param {Object} [eventData] - */ - trigger: function triggerEvent(gesture, eventData) { - // optional - if(!eventData) { - eventData = {}; - } + /** + * Get the current items + * @returns {vis.DataSet | null} + */ + ItemSet.prototype.getItems = function() { + return this.itemsData; + }; - // create DOM event - var event = Hammer.DOCUMENT.createEvent('Event'); - event.initEvent(gesture, true, true); - event.gesture = eventData; - - // trigger on the target if it is in the instance element, - // this is for event delegation tricks - var element = this.element; - if(Utils.hasParent(eventData.target, element)) { - element = eventData.target; - } + /** + * Set groups + * @param {vis.DataSet} groups + */ + ItemSet.prototype.setGroups = function(groups) { + var me = this, + ids; - element.dispatchEvent(event); - return this; - }, + // unsubscribe from current dataset + if (this.groupsData) { + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.unsubscribe(event, callback); + }); - /** - * enable of disable hammer.js detection - * @method enable - * @chainable - * @param {Boolean} state - */ - enable: function enable(state) { - this.enabled = state; - return this; - }, + // remove all drawn groups + ids = this.groupsData.getIds(); + this.groupsData = null; + this._onRemoveGroups(ids); // note: this will cause a redraw + } - /** - * dispose this hammer instance - * @method dispose - * @return {Null} - */ - dispose: function dispose() { - var i, eh; + // 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'); + } - // undo all changes made by stop_browser_behavior - Utils.toggleBehavior(this.element, this.options.behavior, false); + if (this.groupsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.on(event, callback, id); + }); - // unbind all custom event handlers - for(i = -1; (eh = this.eventHandlers[++i]);) { - Utils.off(this.element, eh.gesture, eh.handler); - } + // draw all ms + ids = this.groupsData.getIds(); + this._onAddGroups(ids); + } - this.eventHandlers = []; + // update the group holding all ungrouped items + this._updateUngrouped(); - // unbind the start event listener - Event.off(this.element, EVENT_TYPES[EVENT_START], this.eventStartHandler); + // update the order of all items in each group + this._order(); - return null; - } + this.body.emitter.emit('change'); }; - - /** - * @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 + * Get the current groups + * @returns {vis.DataSet | null} groups */ + ItemSet.prototype.getGroups = function() { + return this.groupsData; + }; + /** - * @event dragstart - * @param {Object} ev + * Remove an item by its id + * @param {String | Number} id */ + ItemSet.prototype.removeItem = function(id) { + var item = this.itemsData.get(id), + dataset = this.itemsData.getDataSet(); + + if (item) { + // confirm deletion + this.options.onRemove(item, function (item) { + if (item) { + // remove by id here, it is possible that an item has no id defined + // itself, so better not delete by the item itself + dataset.remove(id); + } + }); + } + }; + /** - * @event dragend - * @param {Object} ev + * Handle updated items + * @param {Number[]} ids + * @protected */ + ItemSet.prototype._onUpdate = function(ids) { + var me = this; + + ids.forEach(function (id) { + var itemData = me.itemsData.get(id, me.itemOptions), + item = me.items[id], + type = itemData.type || me.options.type || (itemData.end ? 'range' : 'box'); + + var constructor = ItemSet.types[type]; + + if (item) { + // update item + if (!constructor || !(item instanceof constructor)) { + // item type has changed, delete the item and recreate it + me._removeItem(item); + item = null; + } + else { + me._updateItem(item, itemData); + } + } + + if (!item) { + // create item + if (constructor) { + item = new constructor(itemData, me.conversion, me.options); + item.id = id; // TODO: not so nice setting id afterwards + me._addItem(item); + } + else if (type == 'rangeoverflow') { + // TODO: deprecated since version 2.1.0 (or 3.0.0?). cleanup some day + throw new TypeError('Item type "rangeoverflow" is deprecated. Use css styling instead: ' + + '.vis.timeline .item.range .content {overflow: visible;}'); + } + else { + throw new TypeError('Unknown item type "' + type + '"'); + } + } + }); + + this._order(); + this.stackDirty = true; // force re-stacking of all items next redraw + this.body.emitter.emit('change'); + }; + /** - * @event drapleft - * @param {Object} ev + * Handle added items + * @param {Number[]} ids + * @protected */ + ItemSet.prototype._onAdd = ItemSet.prototype._onUpdate; + /** - * @event dragright - * @param {Object} ev + * Handle removed items + * @param {Number[]} ids + * @protected */ + ItemSet.prototype._onRemove = function(ids) { + var count = 0; + var me = this; + ids.forEach(function (id) { + var item = me.items[id]; + if (item) { + count++; + me._removeItem(item); + } + }); + + if (count) { + // update order + this._order(); + this.stackDirty = true; // force re-stacking of all items next redraw + this.body.emitter.emit('change'); + } + }; + /** - * @event dragup - * @param {Object} ev + * Update the order of item in all groups + * @private */ + ItemSet.prototype._order = function() { + // reorder the items in all groups + // TODO: optimization: only reorder groups affected by the changed items + util.forEach(this.groups, function (group) { + group.order(); + }); + }; + /** - * @event dragdown - * @param {Object} ev + * Handle updated groups + * @param {Number[]} ids + * @private */ + ItemSet.prototype._onUpdateGroups = function(ids) { + this._onAddGroups(ids); + }; /** - * @param {String} name + * Handle changed groups + * @param {Number[]} ids + * @private */ - (function(name) { - var triggered = false; - - function dragGesture(ev, inst) { - var cur = Detection.current; + ItemSet.prototype._onAddGroups = function(ids) { + var me = this; - // max touches - if(inst.options.dragMaxTouches > 0 && - ev.touches.length > inst.options.dragMaxTouches) { - return; - } + ids.forEach(function (id) { + var groupData = me.groupsData.get(id); + var group = me.groups[id]; - switch(ev.eventType) { - case EVENT_START: - triggered = false; - break; + if (!group) { + // check for reserved ids + if (id == UNGROUPED) { + throw new Error('Illegal group id. ' + id + ' is a reserved id.'); + } - case EVENT_MOVE: - // when the distance we moved is too small we skip this gesture - // or we can be already in dragging - if(ev.distance < inst.options.dragMinDistance && - cur.name != name) { - return; - } + var groupOptions = Object.create(me.options); + util.extend(groupOptions, { + height: null + }); - var startCenter = cur.startEvent.center; + group = new Group(id, groupData, me); + me.groups[id] = group; - // 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; + // 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); + } + } + } - // recalculate event data using new start point - ev = Detection.extendEventData(ev); - } - } + group.order(); + group.show(); + } + else { + // update group + group.setData(groupData); + } + }); - // lock drag to axis? - if(cur.lastEvent.dragLockToAxis || - ( inst.options.dragLockToAxis && - inst.options.dragLockMinDistance <= ev.distance - )) { - ev.dragLockToAxis = true; - } + this.body.emitter.emit('change'); + }; - // 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; - } - } + /** + * Handle removed groups + * @param {Number[]} ids + * @private + */ + ItemSet.prototype._onRemoveGroups = function(ids) { + var groups = this.groups; + ids.forEach(function (id) { + var group = groups[id]; - // first time, trigger dragstart event - if(!triggered) { - inst.trigger(name + 'start', ev); - triggered = true; - } + if (group) { + group.hide(); + delete groups[id]; + } + }); - // trigger events - inst.trigger(name, ev); - inst.trigger(name + ev.direction, ev); + this.markDirty(); - var isVertical = Utils.isVertical(ev.direction); + this.body.emitter.emit('change'); + }; - // block the browser events - if((inst.options.dragBlockVertical && isVertical) || - (inst.options.dragBlockHorizontal && !isVertical)) { - ev.preventDefault(); - } - break; + /** + * 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 + }); - case EVENT_RELEASE: - if(triggered && ev.changedLength <= inst.options.dragMaxTouches) { - inst.trigger(name + 'end', ev); - triggered = false; - } - break; + 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(); + }); - case EVENT_END: - triggered = false; - break; - } + // show the groups again, attach them to the DOM in correct order + groupIds.forEach(function (groupId) { + groups[groupId].show(); + }); + + this.groupIds = groupIds; } - 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, + return changed; + } + else { + return false; + } + }; - /** - * 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, + /** + * Add a new item + * @param {Item} item + * @private + */ + ItemSet.prototype._addItem = function(item) { + this.items[item.id] = item; - /** - * set 0 for unlimited, but this can conflict with transform - * @property dragMaxTouches - * @type {Number} - * @default 1 - */ - dragMaxTouches: 1, + // add to group + var groupId = this.groupsData ? item.data.group : UNGROUPED; + var group = this.groups[groupId]; + if (group) group.add(item); + }; - /** - * 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, + /** + * Update an existing item + * @param {Item} item + * @param {Object} itemData + * @private + */ + ItemSet.prototype._updateItem = function(item, itemData) { + var oldGroupId = item.data.group; - /** - * same as `dragBlockHorizontal`, but for vertical movement - * @property dragBlockVertical - * @type {Boolean} - * @default false - */ - dragBlockVertical: false, + item.data = itemData; + if (item.displayed) { + item.redraw(); + } - /** - * 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, + // update group + if (oldGroupId != item.data.group) { + var oldGroup = this.groups[oldGroupId]; + if (oldGroup) oldGroup.remove(item); - /** - * 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'); + var groupId = this.groupsData ? item.data.group : UNGROUPED; + var group = this.groups[groupId]; + if (group) group.add(item); + } + }; /** - * @module gestures + * Delete an item from the ItemSet: remove it from the DOM, from the map + * with items, and from the map with visible items, and from the selection + * @param {Item} item + * @private */ + ItemSet.prototype._removeItem = function(item) { + // remove from DOM + item.hide(); + + // remove from items + delete this.items[item.id]; + + // remove from selection + var index = this.selection.indexOf(item.id); + if (index != -1) this.selection.splice(index, 1); + + // remove from group + var groupId = this.groupsData ? item.data.group : UNGROUPED; + var group = this.groups[groupId]; + if (group) group.remove(item); + }; + /** - * 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 an array containing all items being a range (having an end date) + * @param array + * @returns {Array} + * @private */ - Hammer.gestures.Gesture = { - name: 'gesture', - index: 1337, - handler: function releaseGesture(ev, inst) { - inst.trigger(this.name, ev); + ItemSet.prototype._constructByEndArray = function(array) { + var endArray = []; + + for (var i = 0; i < array.length; i++) { + if (array[i] instanceof ItemRange) { + endArray.push(array[i]); } + } + return endArray; }; /** - * @module gestures - */ - /** - * Touch stays at the same place for x time + * Register the clicked item on touch, before dragStart is initiated. * - * @class Hold - * @static - */ - /** - * @event hold - * @param {Object} ev + * dragStart is initiated from a mousemove event, which can have left the item + * already resulting in an item == null + * + * @param {Event} event + * @private */ + ItemSet.prototype._onTouch = function (event) { + // store the touched item, used in _onDragStart + this.touchParams.item = ItemSet.itemFromTarget(event); + }; /** - * @param {String} name + * Start dragging the selected events + * @param {Event} event + * @private */ - (function(name) { - var timer; - - function holdGesture(ev, inst) { - var options = inst.options, - current = Detection.current; + ItemSet.prototype._onDragStart = function (event) { + if (!this.options.editable.updateTime && !this.options.editable.updateGroup) { + return; + } - switch(ev.eventType) { - case EVENT_START: - clearTimeout(timer); + var item = this.touchParams.item || null, + me = this, + props; - // set the gesture so we can check in the timeout if it still is - current.name = name; + if (item && item.selected) { + var dragLeftItem = event.target.dragLeftItem; + var dragRightItem = event.target.dragRightItem; - // 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; + if (dragLeftItem) { + props = { + item: dragLeftItem + }; - case EVENT_MOVE: - if(ev.distance > options.holdThreshold) { - clearTimeout(timer); - } - break; + 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; + } - case EVENT_RELEASE: - clearTimeout(timer); - break; - } + this.touchParams.itemProps = [props]; } + else if (dragRightItem) { + props = { + item: dragRightItem + }; - Hammer.gestures.Hold = { - name: name, - index: 10, - defaults: { - /** - * @property holdTimeout - * @type {Number} - * @default 500 - */ - holdTimeout: 500, + 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; + } - /** - * movement allowed while holding - * @property holdThreshold - * @type {Number} - * @default 2 - */ - holdThreshold: 2 - }, - handler: holdGesture - }; - })('hold'); + this.touchParams.itemProps = [props]; + } + else { + this.touchParams.itemProps = this.getSelection().map(function (id) { + var item = me.items[id]; + var props = { + item: item + }; - /** - * @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 (me.options.editable.updateTime) { + if ('start' in item.data) props.start = item.data.start.valueOf(); + if ('end' in item.data) props.end = item.data.end.valueOf(); } + if (me.options.editable.updateGroup) { + if ('group' in item.data) props.group = item.data.group; + } + + return props; + }); } + + event.stopPropagation(); + } }; /** - * @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 + * Drag selected items + * @param {Event} event + * @private */ + ItemSet.prototype._onDrag = function (event) { + if (this.touchParams.itemProps) { + var range = this.body.range, + snap = this.body.util.snap || null, + deltaX = event.gesture.deltaX, + scale = (this.props.width / (range.end - range.start)), + offset = deltaX / scale; + + // move + this.touchParams.itemProps.forEach(function (props) { + if ('start' in props) { + var start = new Date(props.start + offset); + props.item.data.start = snap ? snap(start) : start; + } + + if ('end' in props) { + var end = new Date(props.end + offset); + props.item.data.end = snap ? snap(end) : end; + } + + if ('group' in props) { + // drag from one group to another + var group = ItemSet.groupFromTarget(event); + _moveToGroup(props.item, group); + } + }); + + // TODO: implement onMoving handler + + this.stackDirty = true; // force re-stacking of all items next redraw + this.body.emitter.emit('change'); + + event.stopPropagation(); + } + }; + /** - * @event swipeup - * @param {Object} ev + * Move an item to another group + * @param {Item} item + * @param {Group} group + * @private */ + function _moveToGroup (item, group) { + if (group && group.groupId != item.data.group) { + var oldGroup = item.parent; + oldGroup.remove(item); + oldGroup.order(); + group.add(item); + group.order(); + + item.data.group = group.groupId; + } + } + /** - * @event swipedown - * @param {Object} ev + * End of dragging selected items + * @param {Event} event + * @private */ - Hammer.gestures.Swipe = { - name: 'swipe', - index: 40, - defaults: { - /** - * @property swipeMinTouches - * @type {Number} - * @default 1 - */ - swipeMinTouches: 1, - - /** - * @property swipeMaxTouches - * @type {Number} - * @default 1 - */ - swipeMaxTouches: 1, - - /** - * horizontal swipe velocity - * @property swipeVelocityX - * @type {Number} - * @default 0.6 - */ - swipeVelocityX: 0.6, + 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(); - /** - * vertical swipe velocity - * @property swipeVelocityY - * @type {Number} - * @default 0.6 - */ - swipeVelocityY: 0.6 - }, + 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); - handler: function swipeGesture(ev, inst) { - if(ev.eventType == EVENT_RELEASE) { - var touches = ev.touches.length, - options = inst.options; + 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; + } - // max touches - if(touches < options.swipeMinTouches || - touches > options.swipeMaxTouches) { - return; + // only apply changes when start or end is actually changed + if (changed) { + me.options.onMove(itemData, function (itemData) { + if (itemData) { + // apply changes + itemData[dataset._fieldId] = id; // ensure the item contains its id (can be undefined) + changes.push(itemData); + } + else { + // restore original values + if ('start' in props) props.item.data.start = props.start; + if ('end' in props) props.item.data.end = props.end; + if ('group' in props && props.item.data.group != props.group) { + var group = me.groups[props.group]; + _moveToGroup(props.item, group); } - // 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); - } - } + me.stackDirty = true; // force re-stacking of all items next redraw + me.body.emitter.emit('change'); + } + }); + } + }); + + // apply the changes to the data (if there are changes) + if (changes.length) { + dataset.update(changes); } + + event.stopPropagation(); + } }; /** - * @module gestures - */ - /** - * Single tap and a double tap on a place - * - * @class Tap - * @static - */ - /** - * @event tap - * @param {Object} ev - */ - /** - * @event doubletap - * @param {Object} ev + * Handle selecting/deselecting an item when tapping it + * @param {Event} event + * @private */ + ItemSet.prototype._onSelectItem = function (event) { + if (!this.options.selectable) return; + + var ctrlKey = event.gesture.srcEvent && event.gesture.srcEvent.ctrlKey; + var shiftKey = event.gesture.srcEvent && event.gesture.srcEvent.shiftKey; + if (ctrlKey || shiftKey) { + this._onMultiSelectItem(event); + return; + } + + var oldSelection = this.getSelection(); + + var item = ItemSet.itemFromTarget(event); + var selection = item ? [item.id] : []; + this.setSelection(selection); + + var newSelection = this.getSelection(); + + // emit a select event, + // except when old selection is empty and new selection is still empty + if (newSelection.length > 0 || oldSelection.length > 0) { + this.body.emitter.emit('select', { + items: this.getSelection() + }); + } + + event.stopPropagation(); + }; /** - * @param {String} name + * Handle creation and updates of an item on double tap + * @param event + * @private */ - (function(name) { - var hasMoved = false; + ItemSet.prototype._onAddItem = function (event) { + if (!this.options.selectable) return; + if (!this.options.editable.add) return; - function tapGesture(ev, inst) { - var options = inst.options, - current = Detection.current, - prev = Detection.previous, - sincePrev, - didDoubleTap; + var me = this, + snap = this.body.util.snap || null, + item = ItemSet.itemFromTarget(event); - switch(ev.eventType) { - case EVENT_START: - hasMoved = false; - break; + if (item) { + // update item - case EVENT_MOVE: - hasMoved = hasMoved || (ev.distance > options.tapMaxDistance); - break; + // execute async handler to update the item (or cancel it) + var itemData = me.itemsData.get(item.id); // get a clone of the data from the dataset + this.options.onUpdate(itemData, function (itemData) { + if (itemData) { + me.itemsData.update(itemData); + } + }); + } + else { + // add item + var xAbs = util.getAbsoluteLeft(this.dom.frame); + var x = event.gesture.center.pageX - xAbs; + var start = this.body.util.toTime(x); + var newItem = { + start: snap ? snap(start) : start, + content: 'new item' + }; - 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; + // when default type is a range, add a default end date to the new item + if (this.options.type === 'range') { + var end = this.body.util.toTime(x + this.props.width / 5); + newItem.end = snap ? snap(end) : end; + } - // check if double tap - if(prev && prev.name == name && - (sincePrev && sincePrev < options.doubleTapInterval) && - ev.distance < options.doubleTapDistance) { - inst.trigger('doubletap', ev); - didDoubleTap = true; - } + newItem[this.itemsData.fieldId] = util.randomUUID(); - // do a single tap - if(!didDoubleTap || options.tapAlways) { - current.name = name; - inst.trigger(current.name, ev); - } - } - break; - } + var group = ItemSet.groupFromTarget(event); + if (group) { + newItem.group = group.groupId; } - 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, + // execute async handler to customize (or cancel) adding an item + this.options.onAdd(newItem, function (item) { + if (item) { + me.itemsData.add(newItem); + // TODO: need to trigger a redraw? + } + }); + } + }; - /** - * max distance of movement of a tap, this is for the slow tappers - * @property tapMaxDistance - * @type {Number} - * @default 10 - */ - tapMaxDistance: 10, + /** + * Handle selecting/deselecting multiple items when holding an item + * @param {Event} event + * @private + */ + ItemSet.prototype._onMultiSelectItem = function (event) { + if (!this.options.selectable) return; - /** - * always trigger the `tap` event, even while double-tapping - * @property tapAlways - * @type {Boolean} - * @default true - */ - tapAlways: true, + var selection, + item = ItemSet.itemFromTarget(event); - /** - * max distance between two taps - * @property doubleTapDistance - * @type {Number} - * @default 20 - */ - doubleTapDistance: 20, + if (item) { + // multi select items + selection = this.getSelection(); // current selection + var index = selection.indexOf(item.id); + if (index == -1) { + // item is not yet selected -> select it + selection.push(item.id); + } + else { + // item is already selected -> deselect it + selection.splice(index, 1); + } + this.setSelection(selection); - /** - * max time between two taps - * @property doubleTapInterval - * @type {Number} - * @default 300 - */ - doubleTapInterval: 300 - } - }; - })('tap'); + this.body.emitter.emit('select', { + items: this.getSelection() + }); + + event.stopPropagation(); + } + }; /** - * @module gestures + * 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; + } + + return null; + }; + /** - * when a touch is being touched at the page - * - * @class Touch - * @static + * Find the Group from an event target: + * searches for the attribute 'timeline-group' in the event target's element tree + * @param {Event} event + * @return {Group | null} group */ + ItemSet.groupFromTarget = function(event) { + var target = event.target; + while (target) { + if (target.hasOwnProperty('timeline-group')) { + return target['timeline-group']; + } + target = target.parentNode; + } + + return null; + }; + /** - * @event touch - * @param {Object} ev + * 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 */ - Hammer.gestures.Touch = { - name: 'touch', - index: -Infinity, - defaults: { - /** - * call preventDefault at touchstart, and makes the element blocking by disabling the scrolling of the page, - * but it improves gestures like transforming and dragging. - * be careful with using this, it can be very annoying for users to be stuck on the page - * @property preventDefault - * @type {Boolean} - * @default false - */ - preventDefault: false, + ItemSet.itemSetFromTarget = function(event) { + var target = event.target; + while (target) { + if (target.hasOwnProperty('timeline-itemset')) { + return target['timeline-itemset']; + } + target = target.parentNode; + } - /** - * 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; - } + return null; + }; - if(inst.options.preventDefault) { - ev.preventDefault(); - } + module.exports = ItemSet; - if(ev.eventType == EVENT_TOUCH) { - inst.trigger('touch', ev); - } - } - }; - /** - * @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 - */ +/***/ }, +/* 25 */ +/***/ function(module, exports, __webpack_require__) { + + var util = __webpack_require__(2); + var DOMutil = __webpack_require__(1); + var Component = __webpack_require__(19); /** - * @param {String} name + * Legend for Graph2d */ - (function(name) { - var triggered = false; + function Legend(body, options, side) { + this.body = body; + this.defaultOptions = { + enabled: true, + icons: true, + iconSize: 20, + iconSpacing: 6, + left: { + visible: true, + position: 'top-left' // top/bottom - left,center,right + }, + right: { + visible: true, + position: 'top-left' // top/bottom - left,center,right + } + } + this.side = side; + this.options = util.extend({},this.defaultOptions); - function transformGesture(ev, inst) { - switch(ev.eventType) { - case EVENT_START: - triggered = false; - break; + this.svgElements = {}; + this.dom = {}; + this.groups = {}; + this.amountOfGroups = 0; + this._create(); - case EVENT_MOVE: - // at least multitouch - if(ev.touches.length < 2) { - return; - } + this.setOptions(options); + } - var scaleThreshold = Math.abs(1 - ev.scale); - var rotationThreshold = Math.abs(ev.rotation); + Legend.prototype = new Component(); - // 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; - } - // we are transforming! - Detection.current.name = name; + Legend.prototype.addGroup = function(label, graphOptions) { + if (!this.groups.hasOwnProperty(label)) { + this.groups[label] = graphOptions; + } + this.amountOfGroups += 1; + }; - // first time, trigger dragstart event - if(!triggered) { - inst.trigger(name + 'start', ev); - triggered = true; - } + Legend.prototype.updateGroup = function(label, graphOptions) { + this.groups[label] = graphOptions; + }; - inst.trigger(name, ev); // basic transform event + Legend.prototype.removeGroup = function(label) { + if (this.groups.hasOwnProperty(label)) { + delete this.groups[label]; + this.amountOfGroups -= 1; + } + }; - // trigger rotate event - if(rotationThreshold > inst.options.transformMinRotation) { - inst.trigger('rotate', ev); - } + 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"; - // trigger pinch event - if(scaleThreshold > inst.options.transformMinScale) { - inst.trigger('pinch', ev); - inst.trigger('pinch' + (ev.scale < 1 ? 'in' : 'out'), ev); - } - break; + this.dom.textArea = document.createElement('div'); + this.dom.textArea.className = 'legendText'; + this.dom.textArea.style.position = "relative"; + this.dom.textArea.style.top = "0px"; - case EVENT_RELEASE: - if(triggered && ev.changedLength < 2) { - inst.trigger(name + 'end', ev); - triggered = false; - } - break; - } - } - - Hammer.gestures.Transform = { - name: name, - index: 45, - defaults: { - /** - * minimal scale factor, no scale is 1, zoomin is to 0 and zoomout until higher then 1 - * @property transformMinScale - * @type {Number} - * @default 0.01 - */ - transformMinScale: 0.01, - - /** - * rotation in degrees - * @property transformMinRotation - * @type {Number} - * @default 1 - */ - transformMinRotation: 1 - }, + 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'; - handler: transformGesture - }; - })('transform'); + this.dom.frame.appendChild(this.svg); + this.dom.frame.appendChild(this.dom.textArea); + }; /** - * @module hammer + * Hide the component from the DOM */ + Legend.prototype.hide = function() { + // remove the frame containing the items + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } + }; - // 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; - } + /** + * 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); + } + }; - })(window); + Legend.prototype.setOptions = function(options) { + var fields = ['enabled','orientation','icons','left','right']; + util.selectiveDeepExtend(fields, this.options, options); + }; -/***/ }, -/* 20 */ -/***/ function(module, exports, __webpack_require__) { + Legend.prototype.redraw = function() { + var activeGroups = 0; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + if (this.groups[groupId].visible == true) { + activeGroups++; + } + } + } - var util = __webpack_require__(1); - var hammerUtil = __webpack_require__(21); - var moment = __webpack_require__(2); - var Component = __webpack_require__(22); + 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 = ''; + } - /** - * @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('days', -3).valueOf(); // Number - this.end = now.clone().add('days', 4).valueOf(); // Number + if (this.options[this.side].position == 'top-left' || this.options[this.side].position == 'top-right') { + this.dom.frame.style.top = 4 - Number(this.body.dom.center.style.top.replace("px","")) + 'px'; + this.dom.frame.style.bottom = ''; + } + else { + this.dom.frame.style.bottom = 4 - Number(this.body.dom.center.style.top.replace("px","")) + 'px'; + this.dom.frame.style.top = ''; + } - this.body = body; + 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(); + } - // 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); + var content = ''; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + if (this.groups[groupId].visible == true) { + content += this.groups[groupId].content + '
'; + } + } + } + this.dom.textArea.innerHTML = content; + this.dom.textArea.style.lineHeight = ((0.75 * this.options.iconSize) + this.options.iconSpacing) + 'px'; + } + }; - this.props = { - touch: {} - }; + 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; - // drag listeners for dragging - this.body.emitter.on('dragstart', this._onDragStart.bind(this)); - this.body.emitter.on('drag', this._onDrag.bind(this)); - this.body.emitter.on('dragend', this._onDragEnd.bind(this)); + this.svg.style.width = iconWidth + 5 + iconOffset + 'px'; - // ignore dragging when holding - this.body.emitter.on('hold', this._onHold.bind(this)); + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + if (this.groups[groupId].visible == true) { + this.groups[groupId].drawIcon(x, y, this.svgElements, this.svg, iconWidth, iconHeight); + y += iconHeight + this.options.iconSpacing; + } + } + } - // mouse wheel for zooming - this.body.emitter.on('mousewheel', this._onMouseWheel.bind(this)); - this.body.emitter.on('DOMMouseScroll', this._onMouseWheel.bind(this)); // For FF + DOMutil.cleanupElements(this.svgElements); + } + }; - // pinch to zoom - this.body.emitter.on('touch', this._onTouch.bind(this)); - this.body.emitter.on('pinch', this._onPinch.bind(this)); + module.exports = Legend; - this.setOptions(options); - } - Range.prototype = new Component(); +/***/ }, +/* 26 */ +/***/ function(module, exports, __webpack_require__) { - /** - * Set options for the range controller - * @param {Object} options Available options: - * {Number | Date | String} start Start date for the range - * {Number | Date | String} end End date for the range - * {Number} min Minimum value for start - * {Number} max Maximum value for end - * {Number} zoomMin Set a minimum value for - * (end - start). - * {Number} zoomMax Set a maximum value for - * (end - start). - * {Boolean} moveable Enable moving of the range - * by dragging. True by default - * {Boolean} zoomable Enable zooming of the range - * by pinching/scrolling. True by default - */ - Range.prototype.setOptions = function (options) { - if (options) { - // copy the options that we know - var fields = ['direction', 'min', 'max', 'zoomMin', 'zoomMax', 'moveable', 'zoomable']; - util.selectiveExtend(fields, this.options, options); + var util = __webpack_require__(2); + var DOMutil = __webpack_require__(1); + var DataSet = __webpack_require__(3); + var DataView = __webpack_require__(4); + var Component = __webpack_require__(19); + var DataAxis = __webpack_require__(21); + var GraphGroup = __webpack_require__(22); + var Legend = __webpack_require__(25); - if ('start' in options || 'end' in options) { - // apply a new range. both start and end are optional - this.setRange(options.start, options.end); - } - } - }; + var UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items /** - * Test whether direction has a valid value - * @param {String} direction 'horizontal' or 'vertical' + * This is the constructor of the LineGraph. It requires a Timeline body and options. + * + * @param body + * @param options + * @constructor */ - function validateDirection (direction) { - if (direction != 'horizontal' && direction != 'vertical') { - throw new TypeError('Unknown direction "' + direction + '". ' + - 'Choose "horizontal" or "vertical".'); - } - } + function LineGraph(body, options) { + this.id = util.randomUUID(); + this.body = body; - /** - * Set a new start and end range - * @param {Number} [start] - * @param {Number} [end] - */ - Range.prototype.setRange = function(start, end) { - var changed = this._applyRange(start, end); - if (changed) { - var params = { - start: new Date(this.start), - end: new Date(this.end) - }; - this.body.emitter.emit('rangechange', params); - this.body.emitter.emit('rangechanged', params); - } - }; - - /** - * Set a new start and end range. This method is the same as setRange, but - * does not trigger a range change and range changed event, and it returns - * true when the range is changed - * @param {Number} [start] - * @param {Number} [end] - * @return {Boolean} changed - * @private - */ - Range.prototype._applyRange = function(start, end) { - var newStart = (start != null) ? util.convert(start, 'Date').valueOf() : this.start, - newEnd = (end != null) ? util.convert(end, 'Date').valueOf() : this.end, - max = (this.options.max != null) ? util.convert(this.options.max, 'Date').valueOf() : null, - min = (this.options.min != null) ? util.convert(this.options.min, 'Date').valueOf() : null, - diff; + this.defaultOptions = { + yAxisOrientation: 'left', + defaultGroup: 'default', + sort: true, + sampling: true, + graphHeight: '400px', + shaded: { + enabled: false, + orientation: 'bottom' // top, bottom + }, + style: 'line', // line, bar + barChart: { + width: 50, + allowOverlap: true, + align: 'center' // left, center, right + }, + catmullRom: { + enabled: true, + parametrization: 'centripetal', // uniform (alpha = 0.0), chordal (alpha = 1.0), centripetal (alpha = 0.5) + alpha: 0.5 + }, + drawPoints: { + enabled: true, + size: 6, + style: 'square' // square, circle + }, + dataAxis: { + showMinorLabels: true, + showMajorLabels: true, + icons: false, + width: '40px', + visible: true + }, + 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 + } + } + }; - // 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 + '"'); - } + // 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 = {}; - // prevent start < end - if (newEnd < newStart) { - newEnd = newStart; - } + var me = this; + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet - // prevent start < min - if (min !== null) { - if (newStart < min) { - diff = (min - newStart); - newStart += diff; - newEnd += diff; + // listeners for the DataSet of the items + this.itemListeners = { + 'add': function (event, params, senderId) { + me._onAdd(params.items); + }, + 'update': function (event, params, senderId) { + me._onUpdate(params.items); + }, + 'remove': function (event, params, senderId) { + me._onRemove(params.items); + } + }; - // prevent end > max - if (max != null) { - if (newEnd > max) { - newEnd = max; - } - } + // 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); } - } + }; - // prevent end > max - if (max !== null) { - if (newEnd > max) { - diff = (newEnd - max); - newStart -= diff; - newEnd -= diff; + 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 - // prevent start < min - if (min != null) { - if (newStart < min) { - newStart = min; + this.svgElements = {}; + this.setOptions(options); + this.groupsUsingDefaultStyles = [0]; + + this.body.emitter.on("rangechange",function() { + if (me.lastStart != 0) { + var offset = me.body.range.start - me.lastStart; + var range = me.body.range.end - me.body.range.start; + if (me.width != 0) { + var rangePerPixelInv = me.width/range; + var xOffset = offset * rangePerPixelInv; + me.svg.style.left = (-me.width - xOffset) + "px"; } } - } - } + }); + this.body.emitter.on("rangechanged", function() { + me.lastStart = me.body.range.start; + me.svg.style.left = util.option.asSize(-me.width); + me._updateGraph.apply(me); + }); - // prevent (end-start) < zoomMin - if (this.options.zoomMin !== null) { - var zoomMin = parseFloat(this.options.zoomMin); - if (zoomMin < 0) { - zoomMin = 0; - } - if ((newEnd - newStart) < zoomMin) { - if ((this.end - this.start) === zoomMin) { - // ignore this action, we are already zoomed to the minimum - newStart = this.start; - newEnd = this.end; - } - else { - // zoom to the minimum - diff = (zoomMin - (newEnd - newStart)); - newStart -= diff / 2; - newEnd += diff / 2; - } - } - } + // create the HTML DOM + this._create(); + this.body.emitter.emit("change"); + } - // prevent (end-start) > zoomMax - if (this.options.zoomMax !== null) { - var zoomMax = parseFloat(this.options.zoomMax); - if (zoomMax < 0) { - zoomMax = 0; - } - if ((newEnd - newStart) > zoomMax) { - if ((this.end - this.start) === zoomMax) { - // ignore this action, we are already zoomed to the maximum - newStart = this.start; - newEnd = this.end; - } - else { - // zoom to the maximum - diff = ((newEnd - newStart) - zoomMax); - newStart += diff / 2; - newEnd -= diff / 2; - } - } - } + LineGraph.prototype = new Component(); - var changed = (this.start != newStart || this.end != newEnd); + /** + * Create the HTML DOM for the ItemSet + */ + LineGraph.prototype._create = function(){ + var frame = document.createElement('div'); + frame.className = 'LineGraph'; + this.dom.frame = frame; - this.start = newStart; - this.end = newEnd; + // 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); - return changed; - }; + // data axis + this.options.dataAxis.orientation = 'left'; + this.yAxisLeft = new DataAxis(this.body, this.options.dataAxis, this.svg); - /** - * Retrieve the current range. - * @return {Object} An object with start and end properties - */ - Range.prototype.getRange = function() { - return { - start: this.start, - end: this.end - }; - }; + this.options.dataAxis.orientation = 'right'; + this.yAxisRight = new DataAxis(this.body, this.options.dataAxis, this.svg); + delete this.options.dataAxis.orientation; - /** - * Calculate the conversion offset and scale for current range, based on - * the provided width - * @param {Number} width - * @returns {{offset: number, scale: number}} conversion - */ - Range.prototype.conversion = function (width) { - return Range.conversion(this.start, this.end, width); + // legends + this.legendLeft = new Legend(this.body, this.options.legend, 'left'); + this.legendRight = new Legend(this.body, this.options.legend, 'right'); + + this.show(); }; /** - * 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 + * set the options of the LineGraph. the mergeOptions is used for subObjects that have an enabled element. + * @param options */ - Range.conversion = function (start, end, width) { - if (width != 0 && (end - start != 0)) { - return { - offset: start, - scale: width / (end - start) + LineGraph.prototype.setOptions = function(options) { + if (options) { + var fields = ['sampling','defaultGroup','graphHeight','yAxisOrientation','style','barChart','dataAxis','sort']; + util.selectiveDeepExtend(fields, this.options, options); + util.mergeOptions(this.options, options,'catmullRom'); + util.mergeOptions(this.options, options,'drawPoints'); + util.mergeOptions(this.options, options,'shaded'); + util.mergeOptions(this.options, options,'legend'); + + if (options.catmullRom) { + if (typeof options.catmullRom == 'object') { + if (options.catmullRom.parametrization) { + if (options.catmullRom.parametrization == 'uniform') { + this.options.catmullRom.alpha = 0; + } + else if (options.catmullRom.parametrization == 'chordal') { + this.options.catmullRom.alpha = 1.0; + } + else { + this.options.catmullRom.parametrization = 'centripetal'; + this.options.catmullRom.alpha = 0.5; + } + } + } + } + + if (this.yAxisLeft) { + if (options.dataAxis !== undefined) { + this.yAxisLeft.setOptions(this.options.dataAxis); + this.yAxisRight.setOptions(this.options.dataAxis); + } + } + + if (this.legendLeft) { + if (options.legend !== undefined) { + this.legendLeft.setOptions(this.options.legend); + this.legendRight.setOptions(this.options.legend); + } + } + + if (this.groups.hasOwnProperty(UNGROUPED)) { + this.groups[UNGROUPED].setOptions(options); } } - else { - return { - offset: 0, - scale: 1 - }; + if (this.dom.frame) { + this._updateGraph(); } }; /** - * Start dragging horizontally or vertically - * @param {Event} event - * @private + * Hide the component from the DOM */ - Range.prototype._onDragStart = function(event) { - // only allow dragging when configured as movable - if (!this.options.moveable) return; - - // refuse to drag when we where pinching to prevent the timeline make a jump - // when releasing the fingers in opposite order from the touch screen - if (!this.props.touch.allowDragging) return; - - this.props.touch.start = this.start; - this.props.touch.end = this.end; - - if (this.body.dom.root) { - this.body.dom.root.style.cursor = 'move'; + LineGraph.prototype.hide = function() { + // remove the frame containing the items + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); } }; /** - * Perform dragging operation - * @param {Event} event - * @private + * Show the component in the DOM (when not already visible). + * @return {Boolean} changed */ - Range.prototype._onDrag = function (event) { - // only allow dragging when configured as movable - if (!this.options.moveable) return; - var direction = this.options.direction; - validateDirection(direction); - // refuse to drag when we where pinching to prevent the timeline make a jump - // when releasing the fingers in opposite order from the touch screen - if (!this.props.touch.allowDragging) return; - var delta = (direction == 'horizontal') ? event.gesture.deltaX : event.gesture.deltaY, - interval = (this.props.touch.end - this.props.touch.start), - width = (direction == 'horizontal') ? this.body.domProps.center.width : this.body.domProps.center.height, - diffRange = -delta / width * interval; - this._applyRange(this.props.touch.start + diffRange, this.props.touch.end + diffRange); - this.body.emitter.emit('rangechange', { - start: new Date(this.start), - end: new Date(this.end) - }); + LineGraph.prototype.show = function() { + // show frame containing the items + if (!this.dom.frame.parentNode) { + this.body.dom.center.appendChild(this.dom.frame); + } }; + /** - * Stop dragging operation - * @param {event} event - * @private + * Set items + * @param {vis.DataSet | null} items */ - Range.prototype._onDragEnd = function (event) { - // only allow dragging when configured as movable - if (!this.options.moveable) return; + LineGraph.prototype.setItems = function(items) { + var me = this, + ids, + oldItemsData = this.itemsData; - // 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; + // replace the dataset + if (!items) { + this.itemsData = null; + } + else if (items instanceof DataSet || items instanceof DataView) { + this.itemsData = items; + } + else { + throw new TypeError('Data must be an instance of DataSet or DataView'); + } - if (this.body.dom.root) { - this.body.dom.root.style.cursor = 'auto'; + if (oldItemsData) { + // unsubscribe from old dataset + util.forEach(this.itemListeners, function (callback, event) { + oldItemsData.off(event, callback); + }); + + // remove all drawn items + ids = oldItemsData.getIds(); + this._onRemove(ids); } - // fire a rangechanged event - this.body.emitter.emit('rangechanged', { - start: new Date(this.start), - end: new Date(this.end) - }); + if (this.itemsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.itemListeners, function (callback, event) { + me.itemsData.on(event, callback, id); + }); + + // add all new items + ids = this.itemsData.getIds(); + this._onAdd(ids); + } + this._updateUngrouped(); + this._updateGraph(); + this.redraw(); }; /** - * Event handler for mouse wheel event, used to zoom - * Code from http://adomas.org/javascript-mouse-wheel/ - * @param {Event} event - * @private + * Set groups + * @param {vis.DataSet} groups */ - Range.prototype._onMouseWheel = function(event) { - // only allow zooming when configured as zoomable and moveable - if (!(this.options.zoomable && this.options.moveable)) return; + LineGraph.prototype.setGroups = function(groups) { + var me = this, + ids; - // 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; - } + // unsubscribe from current dataset + if (this.groupsData) { + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.unsubscribe(event, callback); + }); - // 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 + // remove all drawn groups + ids = this.groupsData.getIds(); + this.groupsData = null; + this._onRemoveGroups(ids); // note: this will cause a 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)) ; - } + // 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'); + } - // 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.groupsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.on(event, callback, id); + }); - this.zoom(scale, pointerDate); + // draw all ms + ids = this.groupsData.getIds(); + this._onAddGroups(ids); } - - // Prevent default actions caused by mouse wheel - // (else the page and timeline both zoom and scroll) - event.preventDefault(); + this._onUpdate(); }; - /** - * Start of a touch gesture - * @private - */ - Range.prototype._onTouch = function (event) { - this.props.touch.start = this.start; - this.props.touch.end = this.end; - this.props.touch.allowDragging = true; - this.props.touch.center = null; - }; - /** - * On start of a hold gesture - * @private - */ - Range.prototype._onHold = function () { - this.props.touch.allowDragging = false; - }; - /** - * Handle pinch event - * @param {Event} event - * @private - */ - Range.prototype._onPinch = function (event) { - // only allow zooming when configured as zoomable and moveable - if (!(this.options.zoomable && this.options.moveable)) return; + LineGraph.prototype._onUpdate = function(ids) { + this._updateUngrouped(); + this._updateAllGroupData(); + this._updateGraph(); + this.redraw(); + }; + LineGraph.prototype._onAdd = function (ids) {this._onUpdate(ids);}; + LineGraph.prototype._onRemove = function (ids) {this._onUpdate(ids);}; + LineGraph.prototype._onUpdateGroups = function (groupIds) { + for (var i = 0; i < groupIds.length; i++) { + var group = this.groupsData.get(groupIds[i]); + this._updateGroup(group, groupIds[i]); + } - this.props.touch.allowDragging = false; + this._updateGraph(); + this.redraw(); + }; + LineGraph.prototype._onAddGroups = function (groupIds) {this._onUpdateGroups(groupIds);}; - if (event.gesture.touches.length > 1) { - if (!this.props.touch.center) { - this.props.touch.center = getPointer(event.gesture.center, this.body.dom.center); + 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]]; } - - var scale = 1 / event.gesture.scale, - initDate = this._pointerToDate(this.props.touch.center); - - // calculate new start and end - var newStart = parseInt(initDate + (this.props.touch.start - initDate) * scale); - var newEnd = parseInt(initDate + (this.props.touch.end - initDate) * scale); - - // apply new range - this.setRange(newStart, newEnd); } + this._updateUngrouped(); + this._updateGraph(); + this.redraw(); }; /** - * Helper function to calculate the center date for zooming - * @param {{x: Number, y: Number}} pointer - * @return {number} date + * update a group object + * + * @param group + * @param groupId * @private */ - Range.prototype._pointerToDate = function (pointer) { - var conversion; - var direction = this.options.direction; - - validateDirection(direction); - - if (direction == 'horizontal') { - var width = this.body.domProps.center.width; - conversion = this.conversion(width); - return pointer.x / conversion.scale + conversion.offset; + 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 { - var height = this.body.domProps.center.height; - conversion = this.conversion(height); - return pointer.y / conversion.scale + conversion.offset; + 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(); }; - /** - * Get the pointer location relative to the location of the dom element - * @param {{pageX: Number, pageY: Number}} touch - * @param {Element} element HTML DOM element - * @return {{x: Number, y: Number}} pointer - * @private - */ - function getPointer (touch, element) { - return { - x: touch.pageX - util.getAbsoluteLeft(element), - y: touch.pageY - util.getAbsoluteTop(element) - }; - } + LineGraph.prototype._updateAllGroupData = function () { + if (this.itemsData != null) { + var groupsContent = {}; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + groupsContent[groupId] = []; + } + } + for (var itemId in this.itemsData._data) { + if (this.itemsData._data.hasOwnProperty(itemId)) { + var item = this.itemsData._data[itemId]; + item.x = util.convert(item.x,"Date"); + groupsContent[item.group].push(item); + } + } + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + this.groups[groupId].setItems(groupsContent[groupId]); + } + } + } + }; /** - * 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. + * 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 */ - Range.prototype.zoom = function(scale, center) { - // if centerDate is not provided, take it half between start Date and end Date - if (center == null) { - center = (this.start + this.end) / 2; - } + LineGraph.prototype._updateUngrouped = function() { + if (this.itemsData != null) { + // var t0 = new Date(); + var group = {id: UNGROUPED, content: this.options.defaultGroup}; + this._updateGroup(group, UNGROUPED); + var ungroupedCounter = 0; + if (this.itemsData) { + for (var itemId in this.itemsData._data) { + if (this.itemsData._data.hasOwnProperty(itemId)) { + var item = this.itemsData._data[itemId]; + if (item != undefined) { + if (item.hasOwnProperty('group')) { + if (item.group === undefined) { + item.group = UNGROUPED; + } + } + else { + item.group = UNGROUPED; + } + ungroupedCounter = item.group == UNGROUPED ? ungroupedCounter + 1 : ungroupedCounter; + } + } + } + } - // calculate new start and end - var newStart = center + (this.start - center) * scale; - var newEnd = center + (this.end - center) * scale; + // much much slower + // var datapoints = this.itemsData.get({ + // filter: function (item) {return item.group === undefined;}, + // showInternalIds:true + // }); + // if (datapoints.length > 0) { + // var updateQuery = []; + // for (var i = 0; i < datapoints.length; i++) { + // updateQuery.push({id:datapoints[i].id, group: UNGROUPED}); + // } + // this.itemsData.update(updateQuery, true); + // } + // var t1 = new Date(); + // var pointInUNGROUPED = this.itemsData.get({filter: function (item) {return item.group == UNGROUPED;}}); + if (ungroupedCounter == 0) { + delete this.groups[UNGROUPED]; + this.legendLeft.removeGroup(UNGROUPED); + this.legendRight.removeGroup(UNGROUPED); + this.yAxisLeft.removeGroup(UNGROUPED); + this.yAxisRight.removeGroup(UNGROUPED); + } + // console.log("getting amount ungrouped",new Date() - t1); + // console.log("putting in ungrouped",new Date() - t0); + } + else { + delete this.groups[UNGROUPED]; + this.legendLeft.removeGroup(UNGROUPED); + this.legendRight.removeGroup(UNGROUPED); + this.yAxisLeft.removeGroup(UNGROUPED); + this.yAxisRight.removeGroup(UNGROUPED); + } - this.setRange(newStart, newEnd); + this.legendLeft.redraw(); + this.legendRight.redraw(); }; + /** - * Move the range with a given delta to the left or right. Start and end - * value will be adjusted. For example, try delta = 0.1 or -0.1 - * @param {Number} delta Moving amount. Positive value will move right, - * negative value will move left + * Redraw the component, mandatory function + * @return {boolean} Returns true if the component is resized */ - Range.prototype.move = function(delta) { - // zoom start Date and end Date relative to the centerDate - var diff = (this.end - this.start); + LineGraph.prototype.redraw = function() { + var resized = false; - // apply new values - var newStart = this.start + diff * delta; - var newEnd = this.end + diff * delta; + this.svg.style.height = ('' + this.options.graphHeight).replace('px','') + 'px'; + if (this.lastWidth === undefined && this.width || this.lastWidth != this.width) { + resized = true; + } + // check if this component is resized + resized = this._isResized() || resized; + // check whether zoomed (in that case we need to re-stack everything) + var visibleInterval = this.body.range.end - this.body.range.start; + var zoomed = (visibleInterval != this.lastVisibleInterval) || (this.width != this.lastWidth); + this.lastVisibleInterval = visibleInterval; + this.lastWidth = this.width; - // TODO: reckon with min and max range + // calculate actual size and position + this.width = this.dom.frame.offsetWidth; - this.start = newStart; - this.end = newEnd; + // the svg element is three times as big as the width, this allows for fully dragging left and right + // without reloading the graph. the controls for this are bound to events in the constructor + if (resized == true) { + this.svg.style.width = util.option.asSize(3*this.width); + this.svg.style.left = util.option.asSize(-this.width); + } + if (zoomed == true) { + this._updateGraph(); + } + + this.legendLeft.redraw(); + this.legendRight.redraw(); + + return resized; }; /** - * Move the range to a new center point - * @param {Number} moveTo New center point of the range + * Update and redraw the graph. + * */ - Range.prototype.moveTo = function(moveTo) { - var center = (this.start + this.end) / 2; + LineGraph.prototype._updateGraph = function () { + // reset the svg elements + DOMutil.prepareElements(this.svgElements); - var diff = center - moveTo; + if (this.width != 0 && this.itemsData != null) { + var group, groupData, preprocessedGroup, i; + var preprocessedGroupData = []; + var processedGroupData = []; + var groupRanges = []; + var changeCalled = false; - // calculate new start and end - var newStart = this.start - diff; - var newEnd = this.end - diff; + // getting group Ids + var groupIds = []; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + groupIds.push(groupId); + } + } - this.setRange(newStart, newEnd); - }; + // 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); - module.exports = Range; + // first select and preprocess the data from the datasets. + // the groups have their preselection of data, we now loop over this data to see + // what data we need to draw. Sorted data is much faster. + // more optimization is possible by doing the sampling before and using the binary search + // to find the end date to determine the increment. + if (groupIds.length > 0) { + for (i = 0; i < groupIds.length; i++) { + group = this.groups[groupIds[i]]; + if (group.visible == true) { + groupData = []; + // optimization for sorted data + if (group.options.sort == true) { + var guess = Math.max(0,util.binarySearchGeneric(group.itemsData, minDate, 'x', 'before')); + + for (var j = guess; j < group.itemsData.length; j++) { + var item = group.itemsData[j]; + if (item !== undefined) { + if (item.x > maxDate) { + groupData.push(item); + break; + } + else { + groupData.push(item); + } + } + } + } + else { + for (var j = 0; j < group.itemsData.length; j++) { + var item = group.itemsData[j]; + if (item !== undefined) { + if (item.x > minDate && item.x < maxDate) { + groupData.push(item); + } + } + } + } + // preprocess, split into ranges and data + if (groupData.length > 0) { + preprocessedGroup = this._preprocessData(groupData, group); + groupRanges.push({min: preprocessedGroup.min, max: preprocessedGroup.max}); + preprocessedGroupData.push(preprocessedGroup.data); + } + else { + groupRanges.push({}); + preprocessedGroupData.push([]); + } + } + else { + groupRanges.push({}); + preprocessedGroupData.push([]); + } + } + // update the Y axis first, we use this data to draw at the correct Y points + // changeCalled is required to clean the SVG on a change emit. + changeCalled = this._updateYAxis(groupIds, groupRanges); + if (changeCalled == true) { + DOMutil.cleanupElements(this.svgElements); + this.body.emitter.emit("change"); + return; + } -/***/ }, -/* 21 */ -/***/ function(module, exports, __webpack_require__) { + // with the yAxis scaled correctly, use this to get the Y values of the points. + for (i = 0; i < groupIds.length; i++) { + group = this.groups[groupIds[i]]; + processedGroupData.push(this._convertYvalues(preprocessedGroupData[i],group)) + } + + // draw the groups + for (i = 0; i < groupIds.length; i++) { + group = this.groups[groupIds[i]]; + if (group.visible == true) { + if (group.options.style == 'line') { + this._drawLineGraph(processedGroupData[i], group); + } + else { + this._drawBarGraph (processedGroupData[i], group); + } + } + } + } + } - var Hammer = __webpack_require__(18); + // cleanup unused svg elements + DOMutil.cleanupElements(this.svgElements); + }; /** - * Fake a hammer.js gesture. Event can be a ScrollEvent or MouseMoveEvent - * @param {Element} element - * @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 + * @private */ - exports.fakeGesture = function(element, event) { - var eventType = null; + LineGraph.prototype._updateYAxis = function (groupIds, groupRanges) { + var changeCalled = false; + var yAxisLeftUsed = false; + var yAxisRightUsed = false; + var minLeft = 1e9, minRight = 1e9, maxLeft = -1e9, maxRight = -1e9, minVal, maxVal; + var orientation = 'left'; - // for hammer.js 1.0.5 - // var gesture = Hammer.event.collectEventData(this, eventType, event); + // if groups are present + if (groupIds.length > 0) { + for (var i = 0; i < groupIds.length; i++) { + orientation = 'left'; + var group = this.groups[groupIds[i]]; + if (group.visible == true) { + if (group.options.yAxisOrientation == 'right') { + orientation = 'right'; + } - // for hammer.js 1.0.6+ - var touches = Hammer.event.getTouchList(event, eventType); - var gesture = Hammer.event.collectEventData(this, eventType, touches, event); + minVal = groupRanges[i].min; + maxVal = groupRanges[i].max; - // on IE in standards mode, no touches are recognized by hammer.js, - // resulting in NaN values for center.pageX and center.pageY - if (isNaN(gesture.center.pageX)) { - gesture.center.pageX = event.pageX; - } - if (isNaN(gesture.center.pageY)) { - gesture.center.pageY = event.pageY; + if (orientation == 'left') { + yAxisLeftUsed = true; + minLeft = minLeft > minVal ? minVal : minLeft; + maxLeft = maxLeft < maxVal ? maxVal : maxLeft; + } + else { + yAxisRightUsed = true; + minRight = minRight > minVal ? minVal : minRight; + maxRight = maxRight < maxVal ? maxVal : maxRight; + } + } + } + if (yAxisLeftUsed == true) { + this.yAxisLeft.setRange(minLeft, maxLeft); + } + if (yAxisRightUsed == true) { + this.yAxisRight.setRange(minRight, maxRight); + } } - return gesture; - }; + changeCalled = this._toggleAxisVisiblity(yAxisLeftUsed , this.yAxisLeft) || changeCalled; + changeCalled = this._toggleAxisVisiblity(yAxisRightUsed, this.yAxisRight) || changeCalled; + if (yAxisRightUsed == true && yAxisLeftUsed == true) { + this.yAxisLeft.drawIcons = true; + this.yAxisRight.drawIcons = true; + } + else { + this.yAxisLeft.drawIcons = false; + this.yAxisRight.drawIcons = false; + } -/***/ }, -/* 22 */ -/***/ function(module, exports, __webpack_require__) { + this.yAxisRight.master = !yAxisLeftUsed; - /** - * 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 (this.yAxisRight.master == false) { + if (yAxisRightUsed == true) {this.yAxisLeft.lineOffset = this.yAxisRight.width;} + else {this.yAxisLeft.lineOffset = 0;} - /** - * 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); + changeCalled = this.yAxisLeft.redraw() || changeCalled; + this.yAxisRight.stepPixelsForced = this.yAxisLeft.stepPixels; + changeCalled = this.yAxisRight.redraw() || changeCalled; + } + else { + changeCalled = this.yAxisRight.redraw() || changeCalled; } + return changeCalled; }; /** - * Repaint the component - * @return {boolean} Returns true if the component is resized + * 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 */ - Component.prototype.redraw = function() { - // should be implemented by the component - return false; + LineGraph.prototype._toggleAxisVisiblity = function (axisUsed, axis) { + var changed = false; + if (axisUsed == false) { + if (axis.dom.frame.parentNode) { + axis.hide(); + changed = true; + } + } + else { + if (!axis.dom.frame.parentNode) { + axis.show(); + changed = true; + } + } + return changed; }; - /** - * Destroy the component. Cleanup DOM and event listeners - */ - Component.prototype.destroy = function() { - // should be implemented by the component - }; /** - * Test whether the component is resized since the last time _isResized() was - * called. - * @return {Boolean} Returns true if the component is resized - * @protected + * draw a bar graph + * @param datapoints + * @param group */ - Component.prototype._isResized = function() { - var resized = (this.props._previousWidth !== this.props.width || - this.props._previousHeight !== this.props.height); - - this.props._previousWidth = this.props.width; - this.props._previousHeight = this.props.height; + LineGraph.prototype._drawBarGraph = function (dataset, group) { + if (dataset != null) { + if (dataset.length > 0) { + var coreDistance; + var minWidth = 0.1 * group.options.barChart.width; + var offset = 0; - return resized; + // check for intersections + var intersections = {}; + + for (var i = 0; i < dataset.length; i++) { + if (i+1 < dataset.length) {coreDistance = Math.abs(dataset[i+1].x - dataset[i].x);} + if (i > 0) {coreDistance = Math.min(coreDistance,Math.abs(dataset[i-1].x - dataset[i].x));} + if (coreDistance == 0) { + if (intersections[dataset[i].x] === undefined) { + intersections[dataset[i].x] = {amount:0, resolved:0}; + } + intersections[dataset[i].x].amount += 1; + } + } + + // plot the bargraph + var key; + for (var i = 0; i < dataset.length; i++) { + key = dataset[i].x; + if (intersections[key] === undefined) { + if (i+1 < dataset.length) {coreDistance = Math.abs(dataset[i+1].x - key);} + if (i > 0) {coreDistance = Math.min(coreDistance,Math.abs(dataset[i-1].x - key));} + var drawData = this._getSafeDrawData(coreDistance, group, minWidth); + } + else { + var nextKey = i + (intersections[key].amount - intersections[key].resolved); + var prevKey = i - (intersections[key].resolved + 1); + if (nextKey < dataset.length) {coreDistance = Math.abs(dataset[nextKey].x - key);} + if (prevKey > 0) {coreDistance = Math.min(coreDistance,Math.abs(dataset[prevKey].x - key));} + var drawData = this._getSafeDrawData(coreDistance, group, minWidth); + intersections[key].resolved += 1; + + if (group.options.barChart.allowOverlap == false) { + drawData.width = drawData.width / intersections[key].amount; + drawData.offset += (intersections[key].resolved) * drawData.width - (0.5*drawData.width * (intersections[key].amount+1)); + if (group.options.barChart.align == 'left') {offset -= 0.5*drawData.width;} + else if (group.options.barChart.align == 'right') {offset += 0.5*drawData.width;} + } + } + DOMutil.drawBar(dataset[i].x + drawData.offset, dataset[i].y, drawData.width, group.zeroPosition - dataset[i].y, group.className + ' bar', this.svgElements, this.svg); + } + + // draw points + if (group.options.drawPoints.enabled == true) { + this._drawPoints(dataset, group, this.svgElements, this.svg, offset); + } + } + } }; - module.exports = Component; + LineGraph.prototype._getSafeDrawData = function (coreDistance, group, minWidth) { + var width, offset; + if (coreDistance < group.options.barChart.width && coreDistance > 0) { + width = coreDistance < minWidth ? minWidth : coreDistance; + offset = 0; // recalculate offset with the new width; + if (group.options.slots) { // recalculate the shared width and offset if these options are set. + width = (width / group.options.slots.total); + offset = group.options.slots.slot * width - (0.5*width * (group.options.slots.total+1)); + } + if (group.options.barChart.align == 'left') {offset -= 0.5*coreDistance;} + else if (group.options.barChart.align == 'right') {offset += 0.5*coreDistance;} + } + else { + // no collisions, plot with default settings + width = group.options.barChart.width; + offset = 0; + if (group.options.slots) { + // if the groups are sharing the same points, this allows them to be plotted side by side + width = width / group.options.slots.total; + offset = group.options.slots.slot * width - (0.5*width * (group.options.slots.total+1)); + } + if (group.options.barChart.align == 'left') {offset -= 0.5*group.options.barChart.width;} + else if (group.options.barChart.align == 'right') {offset += 0.5*group.options.barChart.width;} + } -/***/ }, -/* 23 */ -/***/ function(module, exports, __webpack_require__) { + return {width: width, offset: offset}; + } - var Emitter = __webpack_require__(10); - var Hammer = __webpack_require__(18); - var util = __webpack_require__(1); - var DataSet = __webpack_require__(7); - var DataView = __webpack_require__(8); - var Range = __webpack_require__(20); - var TimeAxis = __webpack_require__(24); - var CurrentTime = __webpack_require__(26); - var CustomTime = __webpack_require__(27); - var ItemSet = __webpack_require__(28); /** - * 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 + * draw a line graph + * + * @param datapoints + * @param group */ - function Core () {} + LineGraph.prototype._drawLineGraph = function (dataset, group) { + if (dataset != null) { + if (dataset.length > 0) { + var path, d; + var svgHeight = Number(this.svg.style.height.replace("px","")); + path = DOMutil.getSVGElement('path', this.svgElements, this.svg); + path.setAttributeNS(null, "class", group.className); - // turn Core into an event emitter - Emitter(Core.prototype); + // construct path from dataset + if (group.options.catmullRom.enabled == true) { + d = this._catmullRom(dataset, group); + } + else { + d = this._linear(dataset); + } + + // append with points for fill and finalize the path + if (group.options.shaded.enabled == true) { + var fillPath = DOMutil.getSVGElement('path',this.svgElements, this.svg); + var dFill; + if (group.options.shaded.orientation == 'top') { + dFill = "M" + dataset[0].x + "," + 0 + " " + d + "L" + dataset[dataset.length - 1].x + "," + 0; + } + else { + dFill = "M" + dataset[0].x + "," + svgHeight + " " + d + "L" + dataset[dataset.length - 1].x + "," + svgHeight; + } + fillPath.setAttributeNS(null, "class", group.className + " fill"); + fillPath.setAttributeNS(null, "d", dFill); + } + // copy properties to path for drawing. + path.setAttributeNS(null, "d", "M" + d); + + // draw points + if (group.options.drawPoints.enabled == true) { + this._drawPoints(dataset, group, this.svgElements, this.svg); + } + } + } + }; /** - * 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 + * draw the data points + * + * @param dataset + * @param JSONcontainer + * @param svg + * @param group */ - Core.prototype._create = function (container) { - this.dom = {}; + LineGraph.prototype._drawPoints = function (dataset, group, JSONcontainer, svg, offset) { + if (offset === undefined) {offset = 0;} + for (var i = 0; i < dataset.length; i++) { + DOMutil.drawPoint(dataset[i].x + offset, dataset[i].y, group, JSONcontainer, svg); + } + }; - this.dom.root = document.createElement('div'); - this.dom.background = document.createElement('div'); - this.dom.backgroundVertical = document.createElement('div'); - this.dom.backgroundHorizontal = document.createElement('div'); - this.dom.centerContainer = document.createElement('div'); - this.dom.leftContainer = document.createElement('div'); - this.dom.rightContainer = document.createElement('div'); - this.dom.center = document.createElement('div'); - this.dom.left = document.createElement('div'); - this.dom.right = document.createElement('div'); - this.dom.top = document.createElement('div'); - this.dom.bottom = document.createElement('div'); - this.dom.shadowTop = document.createElement('div'); - this.dom.shadowBottom = document.createElement('div'); - this.dom.shadowTopLeft = document.createElement('div'); - this.dom.shadowBottomLeft = document.createElement('div'); - this.dom.shadowTopRight = document.createElement('div'); - this.dom.shadowBottomRight = document.createElement('div'); - this.dom.background.className = 'vispanel background'; - this.dom.backgroundVertical.className = 'vispanel background vertical'; - this.dom.backgroundHorizontal.className = 'vispanel background horizontal'; - this.dom.centerContainer.className = 'vispanel center'; - this.dom.leftContainer.className = 'vispanel left'; - this.dom.rightContainer.className = 'vispanel right'; - this.dom.top.className = 'vispanel top'; - this.dom.bottom.className = 'vispanel bottom'; - this.dom.left.className = 'content'; - this.dom.center.className = 'content'; - this.dom.right.className = 'content'; - this.dom.shadowTop.className = 'shadow top'; - this.dom.shadowBottom.className = 'shadow bottom'; - this.dom.shadowTopLeft.className = 'shadow top'; - this.dom.shadowBottomLeft.className = 'shadow bottom'; - this.dom.shadowTopRight.className = 'shadow top'; - this.dom.shadowBottomRight.className = 'shadow bottom'; - this.dom.root.appendChild(this.dom.background); - this.dom.root.appendChild(this.dom.backgroundVertical); - this.dom.root.appendChild(this.dom.backgroundHorizontal); - this.dom.root.appendChild(this.dom.centerContainer); - this.dom.root.appendChild(this.dom.leftContainer); - this.dom.root.appendChild(this.dom.rightContainer); - this.dom.root.appendChild(this.dom.top); - this.dom.root.appendChild(this.dom.bottom); + /** + * This uses the DataAxis object to generate the correct X coordinate on the SVG window. It uses the + * util function toScreen to get the x coordinate from the timestamp. It also pre-filters the data and get the minMax ranges for + * the yAxis. + * + * @param datapoints + * @returns {Array} + * @private + */ + LineGraph.prototype._preprocessData = function (datapoints, group) { + var extractedData = []; + var xValue, yValue; + var toScreen = this.body.util.toScreen; - this.dom.centerContainer.appendChild(this.dom.center); - this.dom.leftContainer.appendChild(this.dom.left); - this.dom.rightContainer.appendChild(this.dom.right); + var increment = 1; + var amountOfPoints = datapoints.length; - 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); + var yMin = datapoints[0].y; + var yMax = datapoints[0].y; - this.on('rangechange', this.redraw.bind(this)); - this.on('change', this.redraw.bind(this)); - this.on('touch', this._onTouch.bind(this)); - this.on('pinch', this._onPinch.bind(this)); - this.on('dragstart', this._onDragStart.bind(this)); - this.on('drag', this._onDrag.bind(this)); + // the global screen is used because changing the width of the yAxis may affect the increment, resulting in an endless loop + // of width changing of the yAxis. + if (group.options.sampling == true) { + var xDistance = this.body.util.toGlobalScreen(datapoints[datapoints.length-1].x) - this.body.util.toGlobalScreen(datapoints[0].x); + var pointsPerPixel = amountOfPoints/xDistance; + increment = Math.min(Math.ceil(0.2 * amountOfPoints), Math.max(1,Math.round(pointsPerPixel))); + } - // create event listeners for all interesting events, these events will be - // emitted via emitter - this.hammer = Hammer(this.dom.root, { - prevent_default: true - }); - this.listeners = {}; + for (var i = 0; i < amountOfPoints; i += increment) { + xValue = toScreen(datapoints[i].x) + this.width - 1; + yValue = datapoints[i].y; + extractedData.push({x: xValue, y: yValue}); + yMin = yMin > yValue ? yValue : yMin; + yMax = yMax < yValue ? yValue : yMax; + } - var me = this; - var events = [ - 'touch', 'pinch', - 'tap', 'doubletap', 'hold', - 'dragstart', 'drag', 'dragend', - 'mousewheel', 'DOMMouseScroll' // DOMMouseScroll is needed for Firefox - ]; - events.forEach(function (event) { - var listener = function () { - var args = [event].concat(Array.prototype.slice.call(arguments, 0)); - me.emit.apply(me, args); - }; - me.hammer.on(event, listener); - me.listeners[event] = listener; - }); - - // size properties of each of the panels - this.props = { - root: {}, - background: {}, - centerContainer: {}, - leftContainer: {}, - rightContainer: {}, - center: {}, - left: {}, - right: {}, - top: {}, - bottom: {}, - border: {}, - scrollTop: 0, - scrollTopMin: 0 - }; - this.touch = {}; // store state information needed for touch events - - // attach the root panel to the provided container - if (!container) throw new Error('No container provided'); - container.appendChild(this.dom.root); + // extractedData.sort(function (a,b) {return a.x - b.x;}); + return {min: yMin, max: yMax, data: extractedData}; }; /** - * Destroy the Core, clean up all DOM elements and event listeners. + * This uses the DataAxis object to generate the correct Y coordinate on the SVG window. It uses the + * util function toScreen to get the x coordinate from the timestamp. + * + * @param datapoints + * @param options + * @returns {Array} + * @private */ - Core.prototype.destroy = function () { - // unbind datasets - this.clear(); - - // remove all event listeners - this.off(); - - // stop checking for changed size - this._stopAutoResize(); + LineGraph.prototype._convertYvalues = function (datapoints, group) { + var extractedData = []; + var xValue, yValue; + var axis = this.yAxisLeft; + var svgHeight = Number(this.svg.style.height.replace("px","")); - // remove from DOM - if (this.dom.root.parentNode) { - this.dom.root.parentNode.removeChild(this.dom.root); + if (group.options.yAxisOrientation == 'right') { + axis = this.yAxisRight; } - this.dom = null; - // cleanup hammer touch events - for (var event in this.listeners) { - if (this.listeners.hasOwnProperty(event)) { - delete this.listeners[event]; - } + for (var i = 0; i < datapoints.length; i++) { + xValue = datapoints[i].x; + yValue = Math.round(axis.convertValue(datapoints[i].y)); + extractedData.push({x: xValue, y: yValue}); } - this.listeners = null; - this.hammer = null; - // give all components the opportunity to cleanup - this.components.forEach(function (component) { - component.destroy(); - }); + group.setZeroPosition(Math.min(svgHeight, axis.convertValue(0))); - this.body = null; + // extractedData.sort(function (a,b) {return a.x - b.x;}); + return extractedData; }; /** - * Set a custom time bar - * @param {Date} time + * This uses an uniform parametrization of the CatmullRom algorithm: + * "On the Parameterization of Catmull-Rom Curves" by Cem Yuksel et al. + * @param data + * @returns {string} + * @private */ - Core.prototype.setCustomTime = function (time) { - if (!this.customTime) { - throw new Error('Cannot get custom time: Custom time bar is not enabled'); - } - - this.customTime.setCustomTime(time); - }; + LineGraph.prototype._catmullRomUniform = function(data) { + // catmull rom + var p0, p1, p2, p3, bp1, bp2; + var d = Math.round(data[0].x) + "," + Math.round(data[0].y) + " "; + var normalization = 1/6; + var length = data.length; + for (var i = 0; i < length - 1; i++) { - /** - * Retrieve the current custom time. - * @return {Date} customTime - */ - Core.prototype.getCustomTime = function() { - if (!this.customTime) { - throw new Error('Cannot get custom time: Custom time bar is not enabled'); - } + p0 = (i == 0) ? data[0] : data[i-1]; + p1 = data[i]; + p2 = data[i+1]; + p3 = (i + 2 < length) ? data[i+2] : p2; - return this.customTime.getCustomTime(); - }; + // Catmull-Rom to Cubic Bezier conversion matrix + // 0 1 0 0 + // -1/6 1 1/6 0 + // 0 1/6 1 -1/6 + // 0 0 1 0 - /** - * 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() || []; - }; + // bp0 = { x: p1.x, y: p1.y }; + bp1 = { x: ((-p0.x + 6*p1.x + p2.x) *normalization), y: ((-p0.y + 6*p1.y + p2.y) *normalization)}; + bp2 = { x: (( p1.x + 6*p2.x - p3.x) *normalization), y: (( p1.y + 6*p2.y - p3.y) *normalization)}; + // bp0 = { x: p2.x, y: p2.y }; + d += "C" + + bp1.x + "," + + bp1.y + " " + + bp2.x + "," + + bp2.y + " " + + p2.x + "," + + p2.y + " "; + } + return d; + }; /** - * 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 + * This uses either the chordal or centripetal parameterization of the catmull-rom algorithm. + * By default, the centripetal parameterization is used because this gives the nicest results. + * These parameterizations are relatively heavy because the distance between 4 points have to be calculated. * - * @param {Object} [what] Optionally specify what to clear. By default: - * {items: true, groups: true, options: true} + * One optimization can be used to reuse distances since this is a sliding window approach. + * @param data + * @returns {string} + * @private */ - Core.prototype.clear = function(what) { - // clear items - if (!what || what.items) { - this.setItems(null); + LineGraph.prototype._catmullRom = function(data, group) { + var alpha = group.options.catmullRom.alpha; + if (alpha == 0 || alpha === undefined) { + return this._catmullRomUniform(data); } + else { + var p0, p1, p2, p3, bp1, bp2, d1,d2,d3, A, B, N, M; + var d3powA, d2powA, d3pow2A, d2pow2A, d1pow2A, d1powA; + var d = Math.round(data[0].x) + "," + Math.round(data[0].y) + " "; + var length = data.length; + for (var i = 0; i < length - 1; i++) { - // clear groups - if (!what || what.groups) { - this.setGroups(null); - } + p0 = (i == 0) ? data[0] : data[i-1]; + p1 = data[i]; + p2 = data[i+1]; + p3 = (i + 2 < length) ? data[i+2] : p2; - // clear options of timeline and of each of the components - if (!what || what.options) { - this.components.forEach(function (component) { - component.setOptions(component.defaultOptions); - }); + d1 = Math.sqrt(Math.pow(p0.x - p1.x,2) + Math.pow(p0.y - p1.y,2)); + d2 = Math.sqrt(Math.pow(p1.x - p2.x,2) + Math.pow(p1.y - p2.y,2)); + d3 = Math.sqrt(Math.pow(p2.x - p3.x,2) + Math.pow(p2.y - p3.y,2)); - this.setOptions(this.defaultOptions); // this will also do a redraw - } - }; + // Catmull-Rom to Cubic Bezier conversion matrix + // + // A = 2d1^2a + 3d1^a * d2^a + d3^2a + // B = 2d3^2a + 3d3^a * d2^a + d2^2a + // + // [ 0 1 0 0 ] + // [ -d2^2a/N A/N d1^2a/N 0 ] + // [ 0 d3^2a/M B/M -d2^2a/M ] + // [ 0 0 1 0 ] - /** - * Set Core window such that it fits all items - */ - Core.prototype.fit = function() { - // apply the data range as range - var dataRange = this.getItemRange(); + // [ 0 1 0 0 ] + // [ -d2pow2a/N A/N d1pow2a/N 0 ] + // [ 0 d3pow2a/M B/M -d2pow2a/M ] + // [ 0 0 1 0 ] - // 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 + d3powA = Math.pow(d3, alpha); + d3pow2A = Math.pow(d3,2*alpha); + d2powA = Math.pow(d2, alpha); + d2pow2A = Math.pow(d2,2*alpha); + d1powA = Math.pow(d1, alpha); + d1pow2A = Math.pow(d1,2*alpha); + + A = 2*d1pow2A + 3*d1powA * d2powA + d2pow2A; + B = 2*d3pow2A + 3*d3powA * d2powA + d2pow2A; + N = 3*d1powA * (d1powA + d2powA); + if (N > 0) {N = 1 / N;} + M = 3*d3powA * (d3powA + d2powA); + if (M > 0) {M = 1 / M;} + + bp1 = { x: ((-d2pow2A * p0.x + A*p1.x + d1pow2A * p2.x) * N), + y: ((-d2pow2A * p0.y + A*p1.y + d1pow2A * p2.y) * N)}; + + bp2 = { x: (( d3pow2A * p1.x + B*p2.x - d2pow2A * p3.x) * M), + y: (( d3pow2A * p1.y + B*p2.y - d2pow2A * p3.y) * M)}; + + if (bp1.x == 0 && bp1.y == 0) {bp1 = p1;} + if (bp2.x == 0 && bp2.y == 0) {bp2 = p2;} + d += "C" + + bp1.x + "," + + bp1.y + " " + + bp2.x + "," + + bp2.y + " " + + p2.x + "," + + p2.y + " "; } - start = new Date(start.valueOf() - interval * 0.05); - end = new Date(end.valueOf() + interval * 0.05); - } - // skip range set if there is no start and end date - if (start === null && end === null) { - return; + return d; } - - this.range.setRange(start, end); }; - /** - * Set the visible window. Both parameters are optional, you can change only - * start or only end. Syntax: - * - * TimeLine.setWindow(start, end) - * TimeLine.setWindow(range) - * - * Where start and end can be a Date, number, or string, and range is an - * object with properties start and end. - * - * @param {Date | Number | String | Object} [start] Start date of visible window - * @param {Date | Number | String} [end] End date of visible window + * this generates the SVG path for a linear drawing between datapoints. + * @param data + * @returns {string} + * @private */ - Core.prototype.setWindow = function(start, end) { - if (arguments.length == 1) { - var range = arguments[0]; - this.range.setRange(range.start, range.end); - } - else { - this.range.setRange(start, end); + LineGraph.prototype._linear = function(data) { + // linear + var d = ""; + for (var i = 0; i < data.length; i++) { + if (i == 0) { + d += data[i].x + "," + data[i].y; + } + else { + d += " " + data[i].x + "," + data[i].y; + } } + return d; }; - /** - * Get the visible window - * @return {{start: Date, end: Date}} Visible range - */ - Core.prototype.getWindow = function() { - var range = this.range.getRange(); - return { - start: new Date(range.start), - end: new Date(range.end) - }; - }; - - /** - * Force a redraw of the Core. Can be useful to manually redraw when - * option autoResize=false - */ - Core.prototype.redraw = function() { - var resized = false, - options = this.options, - props = this.props, - dom = this.dom; - - if (!dom) return; // when destroyed + module.exports = LineGraph; - // update class names - dom.root.className = 'vis timeline root ' + options.orientation; - // 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, ''); +/***/ }, +/* 27 */ +/***/ function(module, exports, __webpack_require__) { - // 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; + var util = __webpack_require__(2); + var Component = __webpack_require__(19); + var TimeStep = __webpack_require__(17); - // 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; + /** + * A horizontal time axis + * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} body + * @param {Object} [options] See TimeAxis.setOptions for the available + * options. + * @constructor TimeAxis + * @extends Component + */ + function TimeAxis (body, options) { + this.dom = { + foreground: null, + majorLines: [], + majorTexts: [], + minorLines: [], + minorTexts: [], + redundant: { + majorLines: [], + majorTexts: [], + minorLines: [], + minorTexts: [] + } + }; + this.props = { + range: { + start: 0, + end: 0, + minimumStep: 0 + }, + lineTop: 0 + }; - // TODO: compensate borders when any of the panels is empty. + this.defaultOptions = { + orientation: 'bottom', // supported: 'top', 'bottom' + // TODO: implement timeaxis orientations 'left' and 'right' + showMinorLabels: true, + showMajorLabels: true + }; + this.options = util.extend({}, this.defaultOptions); - // apply auto height - // TODO: only calculate autoHeight when needed (else we cause an extra reflow/repaint of the DOM) - var contentHeight = Math.max(props.left.height, props.center.height, props.right.height); - var autoHeight = props.top.height + contentHeight + props.bottom.height + - borderRootHeight + props.border.top + props.border.bottom; - dom.root.style.height = util.option.asSize(options.height, autoHeight + 'px'); + this.body = body; - // 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; + // create the HTML DOM + this._create(); - // 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.setOptions(options); + } - // 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'; + TimeAxis.prototype = new Component(); - dom.background.style.width = props.background.width + 'px'; - dom.backgroundVertical.style.width = props.centerContainer.width + 'px'; - dom.backgroundHorizontal.style.width = props.background.width + 'px'; - dom.centerContainer.style.width = props.center.width + 'px'; - dom.top.style.width = props.top.width + 'px'; - dom.bottom.style.width = props.bottom.width + 'px'; + /** + * Set options for the TimeAxis. + * Parameters will be merged in current options. + * @param {Object} options Available options: + * {string} [orientation] + * {boolean} [showMinorLabels] + * {boolean} [showMajorLabels] + */ + TimeAxis.prototype.setOptions = function(options) { + if (options) { + // copy all options that we know + util.selectiveExtend(['orientation', 'showMinorLabels', 'showMajorLabels'], this.options, options); + } + }; - // reposition the panels - dom.background.style.left = '0'; - dom.background.style.top = '0'; - dom.backgroundVertical.style.left = props.left.width + 'px'; - dom.backgroundVertical.style.top = '0'; - dom.backgroundHorizontal.style.left = '0'; - dom.backgroundHorizontal.style.top = props.top.height + 'px'; - dom.centerContainer.style.left = props.left.width + 'px'; - dom.centerContainer.style.top = props.top.height + 'px'; - dom.leftContainer.style.left = '0'; - dom.leftContainer.style.top = props.top.height + 'px'; - dom.rightContainer.style.left = (props.left.width + props.center.width) + 'px'; - dom.rightContainer.style.top = props.top.height + 'px'; - dom.top.style.left = props.left.width + 'px'; - dom.top.style.top = '0'; - dom.bottom.style.left = props.left.width + 'px'; - dom.bottom.style.top = (props.top.height + props.centerContainer.height) + 'px'; + /** + * Create the HTML DOM for the TimeAxis + */ + TimeAxis.prototype._create = function() { + this.dom.foreground = document.createElement('div'); + this.dom.background = document.createElement('div'); - // 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.foreground.className = 'timeaxis foreground'; + this.dom.background.className = 'timeaxis background'; + }; - // 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); + /** + * Destroy the TimeAxis + */ + TimeAxis.prototype.destroy = function() { + // remove from DOM + if (this.dom.foreground.parentNode) { + this.dom.foreground.parentNode.removeChild(this.dom.foreground); } - dom.center.style.left = '0'; - dom.center.style.top = offset + 'px'; - dom.left.style.left = '0'; - dom.left.style.top = offset + 'px'; - dom.right.style.left = '0'; - dom.right.style.top = offset + 'px'; - - // show shadows when vertical scrolling is available - var visibilityTop = this.props.scrollTop == 0 ? 'hidden' : ''; - var visibilityBottom = this.props.scrollTop == this.props.scrollTopMin ? 'hidden' : ''; - dom.shadowTop.style.visibility = visibilityTop; - dom.shadowBottom.style.visibility = visibilityBottom; - dom.shadowTopLeft.style.visibility = visibilityTop; - dom.shadowBottomLeft.style.visibility = visibilityBottom; - dom.shadowTopRight.style.visibility = visibilityTop; - dom.shadowBottomRight.style.visibility = visibilityBottom; - - // redraw all components - this.components.forEach(function (component) { - resized = component.redraw() || resized; - }); - if (resized) { - // keep repainting until all sizes are settled - this.redraw(); + if (this.dom.background.parentNode) { + this.dom.background.parentNode.removeChild(this.dom.background); } - }; - // TODO: deprecated since version 1.1.0, remove some day - Core.prototype.repaint = function () { - throw new Error('Function repaint is deprecated. Use redraw instead.'); + this.body = null; }; /** - * 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 + * Repaint the component + * @return {boolean} Returns true if the component is resized */ - // TODO: move this function to Range - Core.prototype._toTime = function(x) { - var conversion = this.range.conversion(this.props.center.width); - return new Date(x / conversion.scale + conversion.offset); - }; + TimeAxis.prototype.redraw = function () { + var options = this.options, + props = this.props, + foreground = this.dom.foreground, + 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); - /** - * Convert a position on the global screen (pixels) to a datetime - * @param {int} x Position on the screen in pixels - * @return {Date} time The datetime the corresponds with given position x - * @private - */ - // TODO: move this function to Range - Core.prototype._toGlobalTime = function(x) { - var conversion = this.range.conversion(this.props.root.width); - return new Date(x / conversion.scale + conversion.offset); - }; + // calculate character width and height + this._calculateCharSize(); - /** - * Convert a datetime (Date object) into a position on the screen - * @param {Date} time A date - * @return {int} x The position on the screen in pixels which corresponds - * with the given date. - * @private - */ - // TODO: move this function to Range - Core.prototype._toScreen = function(time) { - var conversion = this.range.conversion(this.props.center.width); - return (time.valueOf() - conversion.offset) * conversion.scale; - }; + // 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; + // 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; - /** - * Convert a datetime (Date object) into a position on the root - * This is used to get the pixel density estimate for the screen, not the center panel - * @param {Date} time A date - * @return {int} x The position on root in pixels which corresponds - * with the given date. - * @private - */ - // TODO: move this function to Range - Core.prototype._toGlobalScreen = function(time) { - var conversion = this.range.conversion(this.props.root.width); - return (time.valueOf() - conversion.offset) * conversion.scale; - }; + 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'; - /** - * Initialize watching when option autoResize is true - * @private - */ - Core.prototype._initAutoResize = function () { - if (this.options.autoResize == true) { - this._startAutoResize(); + this._repaintLabels(); + + // put DOM online again (at the same place) + if (foregroundNextSibling) { + parent.insertBefore(foreground, foregroundNextSibling); } else { - this._stopAutoResize(); + parent.appendChild(foreground) + } + if (backgroundNextSibling) { + this.body.dom.backgroundVertical.insertBefore(background, backgroundNextSibling); + } + else { + this.body.dom.backgroundVertical.appendChild(background) } + + return this._isResized() || parentChanged; }; /** - * Watch for changes in the size of the container. On resize, the Panel will - * automatically redraw itself. + * Repaint major and minor text labels and vertical grid lines * @private */ - Core.prototype._startAutoResize = function () { - var me = this; + TimeAxis.prototype._repaintLabels = function () { + var orientation = this.options.orientation; - this._stopAutoResize(); + // calculate range and step (step such that we have space for 7 characters per label) + var start = util.convert(this.body.range.start, 'Number'), + end = util.convert(this.body.range.end, 'Number'), + minimumStep = this.body.util.toTime((this.props.minorCharWidth || 10) * 7).valueOf() + -this.body.util.toTime(0).valueOf(); + var step = new TimeStep(new Date(start), new Date(end), minimumStep); + this.step = step; - this._onResize = function() { - if (me.options.autoResize != true) { - // stop watching when the option autoResize is changed to false - me._stopAutoResize(); - return; - } + // Move all DOM elements to a "redundant" list, where they + // can be picked for re-use, and clear the lists with lines and texts. + // At the end of the function _repaintLabels, left over elements will be cleaned up + var dom = this.dom; + dom.redundant.majorLines = dom.majorLines; + dom.redundant.majorTexts = dom.majorTexts; + dom.redundant.minorLines = dom.minorLines; + dom.redundant.minorTexts = dom.minorTexts; + dom.majorLines = []; + dom.majorTexts = []; + dom.minorLines = []; + dom.minorTexts = []; - if (me.dom.root) { - // check whether the frame is resized - if ((me.dom.root.clientWidth != me.props.lastWidth) || - (me.dom.root.clientHeight != me.props.lastHeight)) { - me.props.lastWidth = me.dom.root.clientWidth; - me.props.lastHeight = me.dom.root.clientHeight; + step.first(); + var xFirstMajorLabel = undefined; + var max = 0; + while (step.hasNext() && max < 1000) { + max++; + var cur = step.getCurrent(), + x = this.body.util.toScreen(cur), + isMajor = step.isMajor(); - me.emit('change'); + // TODO: lines must have a width, such that we can create css backgrounds + + if (this.options.showMinorLabels) { + this._repaintMinorText(x, step.getLabelMinor(), orientation); + } + + if (isMajor && this.options.showMajorLabels) { + if (x > 0) { + if (xFirstMajorLabel == undefined) { + xFirstMajorLabel = x; + } + this._repaintMajorText(x, step.getLabelMajor(), orientation); } + this._repaintMajorLine(x, orientation); + } + else { + this._repaintMinorLine(x, orientation); } - }; - // add event listener to window resize - util.addEventListener(window, 'resize', this._onResize); + step.next(); + } - this.watchTimer = setInterval(this._onResize, 1000); - }; + // 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 - /** - * Stop watching for a resize of the frame. - * @private - */ - Core.prototype._stopAutoResize = function () { - if (this.watchTimer) { - clearInterval(this.watchTimer); - this.watchTimer = undefined; + if (xFirstMajorLabel == undefined || widthText < xFirstMajorLabel) { + this._repaintMajorText(0, leftText, orientation); + } } - // remove event listener on window.resize - util.removeEventListener(window, 'resize', this._onResize); - this._onResize = null; + // 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); + } + } + }); }; /** - * Start moving the timeline vertically - * @param {Event} event + * Create a minor label for the axis at position x + * @param {Number} x + * @param {String} text + * @param {String} orientation "top" or "bottom" (default) * @private */ - Core.prototype._onTouch = function (event) { - this.touch.allowDragging = true; - }; + TimeAxis.prototype._repaintMinorText = function (x, text, orientation) { + // reuse redundant label + var label = this.dom.redundant.minorTexts.shift(); - /** - * Start moving the timeline vertically - * @param {Event} event - * @private - */ - Core.prototype._onPinch = function (event) { - this.touch.allowDragging = false; + if (!label) { + // create new label + var content = document.createTextNode(''); + label = document.createElement('div'); + label.appendChild(content); + label.className = 'text minor'; + this.dom.foreground.appendChild(label); + } + this.dom.minorTexts.push(label); + + label.childNodes[0].nodeValue = text; + + label.style.top = (orientation == 'top') ? (this.props.majorLabelHeight + 'px') : '0'; + label.style.left = x + 'px'; + //label.title = title; // TODO: this is a heavy operation }; /** - * Start moving the timeline vertically - * @param {Event} event + * Create a Major label for the axis at position x + * @param {Number} x + * @param {String} text + * @param {String} orientation "top" or "bottom" (default) * @private */ - Core.prototype._onDragStart = function (event) { - this.touch.initialScrollTop = this.props.scrollTop; + TimeAxis.prototype._repaintMajorText = function (x, text, orientation) { + // reuse redundant label + var label = this.dom.redundant.majorTexts.shift(); + + if (!label) { + // create label + var content = document.createTextNode(text); + label = document.createElement('div'); + label.className = 'text major'; + label.appendChild(content); + this.dom.foreground.appendChild(label); + } + this.dom.majorTexts.push(label); + + label.childNodes[0].nodeValue = text; + //label.title = title; // TODO: this is a heavy operation + + label.style.top = (orientation == 'top') ? '0' : (this.props.minorLabelHeight + 'px'); + label.style.left = x + 'px'; }; /** - * Move the timeline vertically - * @param {Event} event + * Create a minor line for the axis at position x + * @param {Number} x + * @param {String} orientation "top" or "bottom" (default) * @private */ - Core.prototype._onDrag = function (event) { - // refuse to drag when we where pinching to prevent the timeline make a jump - // when releasing the fingers in opposite order from the touch screen - if (!this.touch.allowDragging) return; - - var delta = event.gesture.deltaY; + TimeAxis.prototype._repaintMinorLine = function (x, orientation) { + // reuse redundant line + var line = this.dom.redundant.minorLines.shift(); - var oldScrollTop = this._getScrollTop(); - var newScrollTop = this._setScrollTop(this.touch.initialScrollTop + delta); + if (!line) { + // create vertical line + line = document.createElement('div'); + line.className = 'grid vertical minor'; + this.dom.background.appendChild(line); + } + this.dom.minorLines.push(line); - if (newScrollTop != oldScrollTop) { - this.redraw(); // TODO: this causes two redraws when dragging, the other is triggered by rangechange already + 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'; }; /** - * Apply a scrollTop - * @param {Number} scrollTop - * @returns {Number} scrollTop Returns the applied scrollTop + * Create a Major line for the axis at position x + * @param {Number} x + * @param {String} orientation "top" or "bottom" (default) * @private */ - Core.prototype._setScrollTop = function (scrollTop) { - this.props.scrollTop = scrollTop; - this._updateScrollTop(); - return this.props.scrollTop; + TimeAxis.prototype._repaintMajorLine = function (x, orientation) { + // reuse redundant line + var line = this.dom.redundant.majorLines.shift(); + + if (!line) { + // create vertical line + line = document.createElement('DIV'); + line.className = 'grid vertical major'; + this.dom.background.appendChild(line); + } + this.dom.majorLines.push(line); + + var props = this.props; + if (orientation == 'top') { + line.style.top = '0'; + } + else { + line.style.top = this.body.domProps.top.height + 'px'; + } + line.style.left = (x - props.majorLineWidth / 2) + 'px'; + line.style.height = props.majorLineHeight + 'px'; }; /** - * Update the current scrollTop when the height of the containers has been changed - * @returns {Number} scrollTop Returns the applied scrollTop + * 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 */ - 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; + 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; - // 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; + // determine the char width and height on the major axis + if (!this.dom.measureCharMajor) { + this.dom.measureCharMajor = document.createElement('DIV'); + this.dom.measureCharMajor.className = 'text minor measure'; + this.dom.measureCharMajor.style.position = 'absolute'; - return this.props.scrollTop; + 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; }; /** - * Get the current scrollTop - * @returns {number} scrollTop - * @private + * Snap a date to a rounded value. + * The snap intervals are dependent on the current scale and step. + * @param {Date} date the date to be snapped. + * @return {Date} snappedDate */ - Core.prototype._getScrollTop = function () { - return this.props.scrollTop; + TimeAxis.prototype.snap = function(date) { + return this.step.snap(date); }; - module.exports = Core; + module.exports = TimeAxis; /***/ }, -/* 24 */ +/* 28 */ /***/ function(module, exports, __webpack_require__) { - var util = __webpack_require__(1); - var Component = __webpack_require__(22); - var TimeStep = __webpack_require__(25); + var Hammer = __webpack_require__(40); /** - * A horizontal time axis - * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} body - * @param {Object} [options] See TimeAxis.setOptions for the available - * options. - * @constructor TimeAxis - * @extends Component + * @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 TimeAxis (body, options) { - this.dom = { - foreground: null, - majorLines: [], - majorTexts: [], - minorLines: [], - minorTexts: [], - redundant: { - majorLines: [], - majorTexts: [], - minorLines: [], - minorTexts: [] - } - }; - this.props = { - range: { - start: 0, - end: 0, - minimumStep: 0 - }, - lineTop: 0 - }; - - this.defaultOptions = { - orientation: 'bottom', // supported: 'top', 'bottom' - // TODO: implement timeaxis orientations 'left' and 'right' - showMinorLabels: true, - showMajorLabels: true - }; - this.options = util.extend({}, this.defaultOptions); - - this.body = body; + function Item (data, conversion, options) { + this.id = null; + this.parent = null; + this.data = data; + this.dom = null; + this.conversion = conversion || {}; + this.options = options || {}; - // create the HTML DOM - this._create(); + this.selected = false; + this.displayed = false; + this.dirty = true; - this.setOptions(options); + this.top = null; + this.left = null; + this.width = null; + this.height = null; } - 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] + * Select current item */ - TimeAxis.prototype.setOptions = function(options) { - if (options) { - // copy all options that we know - util.selectiveExtend(['orientation', 'showMinorLabels', 'showMajorLabels'], this.options, options); - } + Item.prototype.select = function() { + this.selected = true; + if (this.displayed) this.redraw(); }; /** - * Create the HTML DOM for the TimeAxis + * Unselect current item */ - 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'; + Item.prototype.unselect = function() { + this.selected = false; + if (this.displayed) this.redraw(); }; /** - * Destroy the TimeAxis + * Set a parent for the item + * @param {ItemSet | Group} parent */ - TimeAxis.prototype.destroy = function() { - // remove from DOM - if (this.dom.foreground.parentNode) { - this.dom.foreground.parentNode.removeChild(this.dom.foreground); + Item.prototype.setParent = function(parent) { + if (this.displayed) { + this.hide(); + this.parent = parent; + if (this.parent) { + this.show(); + } } - if (this.dom.background.parentNode) { - this.dom.background.parentNode.removeChild(this.dom.background); + else { + this.parent = parent; } + }; - this.body = 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 + */ + Item.prototype.isVisible = function(range) { + // Should be implemented by Item implementations + return false; }; /** - * Repaint the component - * @return {boolean} Returns true if the component is resized + * Show the Item in the DOM (when not already visible) + * @return {Boolean} changed */ - TimeAxis.prototype.redraw = function () { - var options = this.options, - props = this.props, - foreground = this.dom.foreground, - background = this.dom.background; + Item.prototype.show = function() { + return false; + }; - // determine the correct parent DOM element (depending on option orientation) - var parent = (options.orientation == 'top') ? this.body.dom.top : this.body.dom.bottom; - var parentChanged = (foreground.parentNode !== parent); + /** + * Hide the Item from the DOM (when visible) + * @return {Boolean} changed + */ + Item.prototype.hide = function() { + return false; + }; - // 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; + /** + * Repaint the item + */ + Item.prototype.redraw = function() { + // should be implemented by the item + }; - // 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; + /** + * Reposition the Item horizontally + */ + Item.prototype.repositionX = function() { + // should be implemented by the item + }; - 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 + /** + * Reposition the Item vertically + */ + Item.prototype.repositionY = function() { + // should be implemented by the item + }; - // 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); + /** + * 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; - foreground.style.height = this.props.height + 'px'; + var deleteButton = document.createElement('div'); + deleteButton.className = 'delete'; + deleteButton.title = 'Delete this item'; - this._repaintLabels(); + Hammer(deleteButton, { + preventDefault: true + }).on('tap', function (event) { + me.parent.removeFromDataSet(me); + event.stopPropagation(); + }); - // 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); + anchor.appendChild(deleteButton); + this.dom.deleteButton = deleteButton; } - else { - this.body.dom.backgroundVertical.appendChild(background) + 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; } - - return this._isResized() || parentChanged; }; - /** - * Repaint major and minor text labels and vertical grid lines - * @private - */ - TimeAxis.prototype._repaintLabels = function () { - var orientation = this.options.orientation; - - // calculate range and step (step such that we have space for 7 characters per label) - var start = util.convert(this.body.range.start, 'Number'), - end = util.convert(this.body.range.end, 'Number'), - minimumStep = this.body.util.toTime((this.props.minorCharWidth || 10) * 7).valueOf() - -this.body.util.toTime(0).valueOf(); - var step = new TimeStep(new Date(start), new Date(end), minimumStep); - this.step = step; + module.exports = 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.majorLines = dom.majorLines; - dom.redundant.majorTexts = dom.majorTexts; - dom.redundant.minorLines = dom.minorLines; - dom.redundant.minorTexts = dom.minorTexts; - dom.majorLines = []; - dom.majorTexts = []; - dom.minorLines = []; - dom.minorTexts = []; - step.first(); - var xFirstMajorLabel = undefined; - var max = 0; - while (step.hasNext() && max < 1000) { - max++; - var cur = step.getCurrent(), - x = this.body.util.toScreen(cur), - isMajor = step.isMajor(); +/***/ }, +/* 29 */ +/***/ function(module, exports, __webpack_require__) { - // TODO: lines must have a width, such that we can create css backgrounds + var Item = __webpack_require__(28); - if (this.options.showMinorLabels) { - this._repaintMinorText(x, step.getLabelMinor(), orientation); + /** + * @constructor ItemBox + * @extends Item + * @param {Object} data Object containing parameters start + * content, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} [options] Configuration options + * // TODO: describe available options + */ + function ItemBox (data, conversion, options) { + this.props = { + dot: { + width: 0, + height: 0 + }, + line: { + width: 0, + height: 0 } + }; - if (isMajor && this.options.showMajorLabels) { - if (x > 0) { - if (xFirstMajorLabel == undefined) { - xFirstMajorLabel = x; - } - this._repaintMajorText(x, step.getLabelMajor(), orientation); - } - this._repaintMajorLine(x, orientation); - } - else { - this._repaintMinorLine(x, orientation); + // validate data + if (data) { + if (data.start == undefined) { + throw new Error('Property "start" missing in item ' + data); } - - 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 + Item.call(this, data, conversion, options); + } - if (xFirstMajorLabel == undefined || widthText < xFirstMajorLabel) { - this._repaintMajorText(0, leftText, orientation); - } - } + ItemBox.prototype = new Item (null, null, null); - // 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); - } - } - }); + /** + * Check whether this item is visible inside given range + * @returns {{start: Number, end: Number}} range with a timestamp for start and end + * @returns {boolean} True if visible + */ + ItemBox.prototype.isVisible = function(range) { + // determine visibility + // TODO: account for the real width of the item. Right now we just add 1/4 to the window + var interval = (range.end - range.start) / 4; + return (this.data.start > range.start - interval) && (this.data.start < range.end + interval); }; /** - * Create a minor label for the axis at position x - * @param {Number} x - * @param {String} text - * @param {String} orientation "top" or "bottom" (default) - * @private + * Repaint the item */ - TimeAxis.prototype._repaintMinorText = function (x, text, orientation) { - // reuse redundant label - var label = this.dom.redundant.minorTexts.shift(); + ItemBox.prototype.redraw = function() { + var dom = this.dom; + if (!dom) { + // create DOM + this.dom = {}; + dom = this.dom; - if (!label) { - // create new label - var content = document.createTextNode(''); - label = document.createElement('div'); - label.appendChild(content); - label.className = 'text minor'; - this.dom.foreground.appendChild(label); - } - this.dom.minorTexts.push(label); + // create main box + dom.box = document.createElement('DIV'); - label.childNodes[0].nodeValue = text; + // contents box (inside the background box). used for making margins + dom.content = document.createElement('DIV'); + dom.content.className = 'content'; + dom.box.appendChild(dom.content); - label.style.top = (orientation == 'top') ? (this.props.majorLabelHeight + 'px') : '0'; - label.style.left = x + 'px'; - //label.title = title; // TODO: this is a heavy operation - }; + // line to axis + dom.line = document.createElement('DIV'); + dom.line.className = 'line'; - /** - * Create a Major label for the axis at position x - * @param {Number} x - * @param {String} text - * @param {String} orientation "top" or "bottom" (default) - * @private - */ - TimeAxis.prototype._repaintMajorText = function (x, text, orientation) { - // reuse redundant label - var label = this.dom.redundant.majorTexts.shift(); + // dot on axis + dom.dot = document.createElement('DIV'); + dom.dot.className = 'dot'; - if (!label) { - // create label - var content = document.createTextNode(text); - label = document.createElement('div'); - label.className = 'text major'; - label.appendChild(content); - this.dom.foreground.appendChild(label); + // attach this item as attribute + dom.box['timeline-item'] = this; } - this.dom.majorTexts.push(label); - - label.childNodes[0].nodeValue = text; - //label.title = title; // TODO: this is a heavy operation - label.style.top = (orientation == 'top') ? '0' : (this.props.minorLabelHeight + 'px'); - label.style.left = x + 'px'; - }; - - /** - * Create a minor line for the axis at position x - * @param {Number} x - * @param {String} orientation "top" or "bottom" (default) - * @private - */ - TimeAxis.prototype._repaintMinorLine = function (x, orientation) { - // reuse redundant line - var line = this.dom.redundant.minorLines.shift(); - - if (!line) { - // create vertical line - line = document.createElement('div'); - line.className = 'grid vertical minor'; - this.dom.background.appendChild(line); + // append DOM to parent DOM + if (!this.parent) { + throw new Error('Cannot redraw item: no parent attached'); } - this.dom.minorLines.push(line); - - var props = this.props; - if (orientation == 'top') { - line.style.top = props.majorLabelHeight + 'px'; + if (!dom.box.parentNode) { + var foreground = this.parent.dom.foreground; + if (!foreground) throw new Error('Cannot redraw time axis: parent has no foreground container element'); + foreground.appendChild(dom.box); } - else { - line.style.top = this.body.domProps.top.height + 'px'; + if (!dom.line.parentNode) { + var background = this.parent.dom.background; + if (!background) throw new Error('Cannot redraw time axis: parent has no background container element'); + background.appendChild(dom.line); } - line.style.height = props.minorLineHeight + 'px'; - line.style.left = (x - props.minorLineWidth / 2) + 'px'; - }; + if (!dom.dot.parentNode) { + var axis = this.parent.dom.axis; + if (!background) throw new Error('Cannot redraw time axis: parent has no axis container element'); + axis.appendChild(dom.dot); + } + this.displayed = true; - /** - * Create a Major line for the axis at position x - * @param {Number} x - * @param {String} orientation "top" or "bottom" (default) - * @private - */ - TimeAxis.prototype._repaintMajorLine = function (x, orientation) { - // reuse redundant line - var line = this.dom.redundant.majorLines.shift(); + // update contents + if (this.data.content != this.content) { + this.content = this.data.content; + if (this.content instanceof Element) { + dom.content.innerHTML = ''; + dom.content.appendChild(this.content); + } + else if (this.data.content != undefined) { + dom.content.innerHTML = this.content; + } + else { + throw new Error('Property "content" missing in item ' + this.data.id); + } - if (!line) { - // create vertical line - line = document.createElement('DIV'); - line.className = 'grid vertical major'; - this.dom.background.appendChild(line); + this.dirty = true; } - this.dom.majorLines.push(line); - var props = this.props; - if (orientation == 'top') { - line.style.top = '0'; - } - else { - line.style.top = this.body.domProps.top.height + 'px'; + // update title + if (this.data.title != this.title) { + dom.box.title = this.data.title; + this.title = this.data.title; } - line.style.left = (x - props.majorLineWidth / 2) + 'px'; - line.style.height = props.majorLineHeight + 'px'; - }; - - /** - * Determine the size of text on the axis (both major and minor axis). - * The size is calculated only once and then cached in this.props. - * @private - */ - TimeAxis.prototype._calculateCharSize = function () { - // Note: We calculate char size with every redraw. Size may change, for - // example when any of the timelines parents had display:none for example. - // determine the char width and height on the minor axis - if (!this.dom.measureCharMinor) { - this.dom.measureCharMinor = document.createElement('DIV'); - this.dom.measureCharMinor.className = 'text minor measure'; - this.dom.measureCharMinor.style.position = 'absolute'; + // update class + var className = (this.data.className? ' ' + this.data.className : '') + + (this.selected ? ' selected' : ''); + if (this.className != className) { + this.className = className; + dom.box.className = 'item box' + className; + dom.line.className = 'item line' + className; + dom.dot.className = 'item dot' + className; - this.dom.measureCharMinor.appendChild(document.createTextNode('0')); - this.dom.foreground.appendChild(this.dom.measureCharMinor); + this.dirty = true; } - this.props.minorCharHeight = this.dom.measureCharMinor.clientHeight; - this.props.minorCharWidth = this.dom.measureCharMinor.clientWidth; - // determine the char width and height on the major axis - if (!this.dom.measureCharMajor) { - this.dom.measureCharMajor = document.createElement('DIV'); - this.dom.measureCharMajor.className = 'text minor measure'; - this.dom.measureCharMajor.style.position = 'absolute'; + // recalculate size + if (this.dirty) { + this.props.dot.height = dom.dot.offsetHeight; + this.props.dot.width = dom.dot.offsetWidth; + this.props.line.width = dom.line.offsetWidth; + this.width = dom.box.offsetWidth; + this.height = dom.box.offsetHeight; - this.dom.measureCharMajor.appendChild(document.createTextNode('0')); - this.dom.foreground.appendChild(this.dom.measureCharMajor); + this.dirty = false; } - this.props.majorCharHeight = this.dom.measureCharMajor.clientHeight; - this.props.majorCharWidth = this.dom.measureCharMajor.clientWidth; + + this._repaintDeleteButton(dom.box); }; /** - * Snap a date to a rounded value. - * The snap intervals are dependent on the current scale and step. - * @param {Date} date the date to be snapped. - * @return {Date} snappedDate + * Show the item in the DOM (when not already displayed). The items DOM will + * be created when needed. */ - TimeAxis.prototype.snap = function(date) { - return this.step.snap(date); + ItemBox.prototype.show = function() { + if (!this.displayed) { + this.redraw(); + } }; - module.exports = TimeAxis; - - -/***/ }, -/* 25 */ -/***/ function(module, exports, __webpack_require__) { - - var moment = __webpack_require__(2); - /** - * @constructor TimeStep - * The class TimeStep is an iterator for dates. You provide a start date and an - * end date. The class itself determines the best scale (step size) based on the - * provided start Date, end Date, and minimumStep. - * - * 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 + * Hide the item from the DOM (when visible) */ - function TimeStep(start, end, minimumStep) { - // variables - this.current = new Date(); - this._start = new Date(); - this._end = new Date(); + ItemBox.prototype.hide = function() { + if (this.displayed) { + var dom = this.dom; - this.autoScale = true; - this.scale = TimeStep.SCALE.DAY; - this.step = 1; + 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); - // initialize the range - this.setRange(start, end, minimumStep); - } + this.top = null; + this.left = null; - /// enum scale - TimeStep.SCALE = { - MILLISECOND: 1, - SECOND: 2, - MINUTE: 3, - HOUR: 4, - DAY: 5, - WEEKDAY: 6, - MONTH: 7, - YEAR: 8 + this.displayed = false; + } }; - /** - * 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 + * Reposition the item horizontally + * @Override */ - TimeStep.prototype.setRange = function(start, end, minimumStep) { - if (!(start instanceof Date) || !(end instanceof Date)) { - throw "No legal start or end date in method setRange"; + ItemBox.prototype.repositionX = function() { + var start = this.conversion.toScreen(this.data.start), + align = this.options.align, + left, + box = this.dom.box, + line = this.dom.line, + dot = this.dom.dot; + + // calculate left position of the box + if (align == 'right') { + this.left = start - this.width; + } + else if (align == 'left') { + this.left = start; + } + else { + // default or 'center' + this.left = start - this.width / 2; } - this._start = (start != undefined) ? new Date(start.valueOf()) : new Date(); - this._end = (end != undefined) ? new Date(end.valueOf()) : new Date(); + // reposition box + box.style.left = this.left + 'px'; - if (this.autoScale) { - this.setMinimumStep(minimumStep); - } + // reposition line + line.style.left = (start - this.props.line.width / 2) + 'px'; + + // reposition dot + dot.style.left = (start - this.props.dot.width / 2) + 'px'; }; /** - * Set the range iterator to the start date. + * Reposition the item vertically + * @Override */ - TimeStep.prototype.first = function() { - this.current = new Date(this._start.valueOf()); - this.roundToMinor(); + ItemBox.prototype.repositionY = function() { + var orientation = this.options.orientation, + box = this.dom.box, + line = this.dom.line, + dot = this.dom.dot; + + if (orientation == 'top') { + box.style.top = (this.top || 0) + 'px'; + + line.style.top = '0'; + line.style.height = (this.parent.top + this.top + 1) + 'px'; + line.style.bottom = ''; + } + else { // orientation 'bottom' + var itemSetHeight = this.parent.itemSet.props.height; // TODO: this is nasty + var lineHeight = itemSetHeight - this.parent.top - this.parent.height + this.top; + + box.style.top = (this.parent.height - this.top - this.height || 0) + 'px'; + line.style.top = (itemSetHeight - lineHeight) + 'px'; + line.style.bottom = '0'; + } + + dot.style.top = (-this.props.dot.height / 2) + 'px'; }; + module.exports = ItemBox; + + +/***/ }, +/* 30 */ +/***/ function(module, exports, __webpack_require__) { + + var Item = __webpack_require__(28); + /** - * Round the current date to the first minor date value - * This must be executed once when the current date is set to start Date + * @constructor ItemPoint + * @extends Item + * @param {Object} data Object containing parameters start + * content, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} [options] Configuration options + * // TODO: describe available options */ - TimeStep.prototype.roundToMinor = function() { - // round to floor - // IMPORTANT: we have no breaks in this switch! (this is no bug) - //noinspection FallthroughInSwitchStatementJS - switch (this.scale) { - case TimeStep.SCALE.YEAR: - this.current.setFullYear(this.step * Math.floor(this.current.getFullYear() / this.step)); - this.current.setMonth(0); - case TimeStep.SCALE.MONTH: this.current.setDate(1); - case TimeStep.SCALE.DAY: // intentional fall through - case TimeStep.SCALE.WEEKDAY: this.current.setHours(0); - case TimeStep.SCALE.HOUR: this.current.setMinutes(0); - case TimeStep.SCALE.MINUTE: this.current.setSeconds(0); - case TimeStep.SCALE.SECOND: this.current.setMilliseconds(0); - //case TimeStep.SCALE.MILLISECOND: // nothing to do for milliseconds - } + function ItemPoint (data, conversion, options) { + this.props = { + dot: { + top: 0, + width: 0, + height: 0 + }, + content: { + height: 0, + marginLeft: 0 + } + }; - if (this.step != 1) { - // round down to the first minor value that is a multiple of the current step size - switch (this.scale) { - case TimeStep.SCALE.MILLISECOND: this.current.setMilliseconds(this.current.getMilliseconds() - this.current.getMilliseconds() % this.step); break; - case TimeStep.SCALE.SECOND: this.current.setSeconds(this.current.getSeconds() - this.current.getSeconds() % this.step); break; - case TimeStep.SCALE.MINUTE: this.current.setMinutes(this.current.getMinutes() - this.current.getMinutes() % this.step); break; - case TimeStep.SCALE.HOUR: this.current.setHours(this.current.getHours() - this.current.getHours() % this.step); break; - case TimeStep.SCALE.WEEKDAY: // intentional fall through - case TimeStep.SCALE.DAY: this.current.setDate((this.current.getDate()-1) - (this.current.getDate()-1) % this.step + 1); break; - case TimeStep.SCALE.MONTH: this.current.setMonth(this.current.getMonth() - this.current.getMonth() % this.step); break; - case TimeStep.SCALE.YEAR: this.current.setFullYear(this.current.getFullYear() - this.current.getFullYear() % this.step); break; - default: break; + // validate data + if (data) { + if (data.start == undefined) { + throw new Error('Property "start" missing in item ' + data); } } - }; + + Item.call(this, data, conversion, options); + } + + ItemPoint.prototype = new Item (null, null, null); /** - * Check if the there is a next step - * @return {boolean} true if the current date has not passed the end date + * Check whether this item is visible inside given range + * @returns {{start: Number, end: Number}} range with a timestamp for start and end + * @returns {boolean} True if visible */ - TimeStep.prototype.hasNext = function () { - return (this.current.valueOf() <= this._end.valueOf()); + ItemPoint.prototype.isVisible = function(range) { + // determine visibility + // TODO: account for the real width of the item. Right now we just add 1/4 to the window + var interval = (range.end - range.start) / 4; + return (this.data.start > range.start - interval) && (this.data.start < range.end + interval); }; /** - * Do the next step + * Repaint the item */ - TimeStep.prototype.next = function() { - var prev = this.current.valueOf(); + ItemPoint.prototype.redraw = function() { + var dom = this.dom; + if (!dom) { + // create DOM + this.dom = {}; + dom = this.dom; - // Two cases, needed to prevent issues with switching daylight savings - // (end of March and end of October) - if (this.current.getMonth() < 6) { - switch (this.scale) { - case TimeStep.SCALE.MILLISECOND: + // background box + dom.point = document.createElement('div'); + // className is updated in redraw() - this.current = new Date(this.current.valueOf() + this.step); break; - case TimeStep.SCALE.SECOND: this.current = new Date(this.current.valueOf() + this.step * 1000); break; - case TimeStep.SCALE.MINUTE: this.current = new Date(this.current.valueOf() + this.step * 1000 * 60); break; - case TimeStep.SCALE.HOUR: - this.current = new Date(this.current.valueOf() + this.step * 1000 * 60 * 60); - // in case of skipping an hour for daylight savings, adjust the hour again (else you get: 0h 5h 9h ... instead of 0h 4h 8h ...) - var h = this.current.getHours(); - this.current.setHours(h - (h % this.step)); - break; - case TimeStep.SCALE.WEEKDAY: // intentional fall through - case TimeStep.SCALE.DAY: this.current.setDate(this.current.getDate() + this.step); break; - case TimeStep.SCALE.MONTH: this.current.setMonth(this.current.getMonth() + this.step); break; - case TimeStep.SCALE.YEAR: this.current.setFullYear(this.current.getFullYear() + this.step); break; - default: break; - } + // contents box, right from the dot + dom.content = document.createElement('div'); + dom.content.className = 'content'; + dom.point.appendChild(dom.content); + + // dot at start + dom.dot = document.createElement('div'); + dom.point.appendChild(dom.dot); + + // attach this item as attribute + dom.point['timeline-item'] = this; } - else { - switch (this.scale) { - case TimeStep.SCALE.MILLISECOND: this.current = new Date(this.current.valueOf() + this.step); break; - case TimeStep.SCALE.SECOND: this.current.setSeconds(this.current.getSeconds() + this.step); break; - case TimeStep.SCALE.MINUTE: this.current.setMinutes(this.current.getMinutes() + this.step); break; - case TimeStep.SCALE.HOUR: this.current.setHours(this.current.getHours() + this.step); break; - case TimeStep.SCALE.WEEKDAY: // intentional fall through - case TimeStep.SCALE.DAY: this.current.setDate(this.current.getDate() + this.step); break; - case TimeStep.SCALE.MONTH: this.current.setMonth(this.current.getMonth() + this.step); break; - case TimeStep.SCALE.YEAR: this.current.setFullYear(this.current.getFullYear() + this.step); break; - default: break; + + // append DOM to parent DOM + if (!this.parent) { + throw new Error('Cannot redraw item: no parent attached'); + } + if (!dom.point.parentNode) { + var foreground = this.parent.dom.foreground; + if (!foreground) { + throw new Error('Cannot redraw time axis: parent has no foreground container element'); } + foreground.appendChild(dom.point); } + this.displayed = true; - if (this.step != 1) { - // round down to the correct major value - switch (this.scale) { - case TimeStep.SCALE.MILLISECOND: if(this.current.getMilliseconds() < this.step) this.current.setMilliseconds(0); break; - case TimeStep.SCALE.SECOND: if(this.current.getSeconds() < this.step) this.current.setSeconds(0); break; - case TimeStep.SCALE.MINUTE: if(this.current.getMinutes() < this.step) this.current.setMinutes(0); break; - case TimeStep.SCALE.HOUR: if(this.current.getHours() < this.step) this.current.setHours(0); break; - case TimeStep.SCALE.WEEKDAY: // intentional fall through - case TimeStep.SCALE.DAY: if(this.current.getDate() < this.step+1) this.current.setDate(1); break; - case TimeStep.SCALE.MONTH: if(this.current.getMonth() < this.step) this.current.setMonth(0); break; - case TimeStep.SCALE.YEAR: break; // nothing to do for year - default: break; + // update contents + if (this.data.content != this.content) { + this.content = this.data.content; + if (this.content instanceof Element) { + dom.content.innerHTML = ''; + dom.content.appendChild(this.content); + } + else if (this.data.content != undefined) { + dom.content.innerHTML = this.content; } + else { + throw new Error('Property "content" missing in item ' + this.data.id); + } + + this.dirty = true; } - // safety mechanism: if current time is still unchanged, move to the end - if (this.current.valueOf() == prev) { - this.current = new Date(this._end.valueOf()); + // update title + if (this.data.title != this.title) { + dom.point.title = this.data.title; + this.title = this.data.title; } - }; + // update class + var className = (this.data.className? ' ' + this.data.className : '') + + (this.selected ? ' selected' : ''); + if (this.className != className) { + this.className = className; + dom.point.className = 'item point' + className; + dom.dot.className = 'item dot' + className; - /** - * Get the current datetime - * @return {Date} current The current date - */ - TimeStep.prototype.getCurrent = function() { - return this.current; - }; + this.dirty = true; + } - /** - * Set a custom scale. Autoscaling will be disabled. - * For example setScale(SCALE.MINUTES, 5) will result - * in minor steps of 5 minutes, and major steps of an hour. - * - * @param {TimeStep.SCALE} newScale - * A scale. Choose from SCALE.MILLISECOND, - * SCALE.SECOND, SCALE.MINUTE, SCALE.HOUR, - * SCALE.WEEKDAY, SCALE.DAY, SCALE.MONTH, - * SCALE.YEAR. - * @param {Number} newStep A step size, by default 1. Choose for - * example 1, 2, 5, or 10. - */ - TimeStep.prototype.setScale = function(newScale, newStep) { - this.scale = newScale; + // recalculate size + if (this.dirty) { + this.width = dom.point.offsetWidth; + this.height = dom.point.offsetHeight; + this.props.dot.width = dom.dot.offsetWidth; + this.props.dot.height = dom.dot.offsetHeight; + this.props.content.height = dom.content.offsetHeight; - if (newStep > 0) { - this.step = newStep; + // 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.autoScale = false; + this._repaintDeleteButton(dom.point); }; /** - * Enable or disable autoscaling - * @param {boolean} enable If true, autoascaling is set true - */ - TimeStep.prototype.setAutoScale = function (enable) { - this.autoScale = enable; - }; - - - /** - * Automatically determine the scale that bests fits the provided minimum step - * @param {Number} [minimumStep] The minimum step size in milliseconds + * Show the item in the DOM (when not already visible). The items DOM will + * be created when needed. */ - TimeStep.prototype.setMinimumStep = function(minimumStep) { - if (minimumStep == undefined) { - return; + ItemPoint.prototype.show = function() { + if (!this.displayed) { + this.redraw(); } - - 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); - - // find the smallest step that is larger than the provided minimumStep - if (stepYear*1000 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 1000;} - if (stepYear*500 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 500;} - if (stepYear*100 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 100;} - if (stepYear*50 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 50;} - if (stepYear*10 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 10;} - if (stepYear*5 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 5;} - if (stepYear > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 1;} - if (stepMonth*3 > minimumStep) {this.scale = TimeStep.SCALE.MONTH; this.step = 3;} - if (stepMonth > minimumStep) {this.scale = TimeStep.SCALE.MONTH; this.step = 1;} - if (stepDay*5 > minimumStep) {this.scale = TimeStep.SCALE.DAY; this.step = 5;} - if (stepDay*2 > minimumStep) {this.scale = TimeStep.SCALE.DAY; this.step = 2;} - if (stepDay > minimumStep) {this.scale = TimeStep.SCALE.DAY; this.step = 1;} - if (stepDay/2 > minimumStep) {this.scale = TimeStep.SCALE.WEEKDAY; this.step = 1;} - if (stepHour*4 > minimumStep) {this.scale = TimeStep.SCALE.HOUR; this.step = 4;} - if (stepHour > minimumStep) {this.scale = TimeStep.SCALE.HOUR; this.step = 1;} - if (stepMinute*15 > minimumStep) {this.scale = TimeStep.SCALE.MINUTE; this.step = 15;} - if (stepMinute*10 > minimumStep) {this.scale = TimeStep.SCALE.MINUTE; this.step = 10;} - if (stepMinute*5 > minimumStep) {this.scale = TimeStep.SCALE.MINUTE; this.step = 5;} - if (stepMinute > minimumStep) {this.scale = TimeStep.SCALE.MINUTE; this.step = 1;} - if (stepSecond*15 > minimumStep) {this.scale = TimeStep.SCALE.SECOND; this.step = 15;} - if (stepSecond*10 > minimumStep) {this.scale = TimeStep.SCALE.SECOND; this.step = 10;} - if (stepSecond*5 > minimumStep) {this.scale = TimeStep.SCALE.SECOND; this.step = 5;} - if (stepSecond > minimumStep) {this.scale = TimeStep.SCALE.SECOND; this.step = 1;} - if (stepMillisecond*200 > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 200;} - if (stepMillisecond*100 > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 100;} - if (stepMillisecond*50 > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 50;} - if (stepMillisecond*10 > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 10;} - if (stepMillisecond*5 > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 5;} - if (stepMillisecond > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 1;} }; /** - * Snap a date to a rounded value. - * The snap intervals are dependent on the current scale and step. - * @param {Date} date the date to be snapped. - * @return {Date} snappedDate + * Hide the item from the DOM (when visible) */ - TimeStep.prototype.snap = function(date) { - var clone = new Date(date.valueOf()); - - if (this.scale == TimeStep.SCALE.YEAR) { - var year = clone.getFullYear() + Math.round(clone.getMonth() / 12); - clone.setFullYear(Math.round(year / this.step) * this.step); - clone.setMonth(0); - clone.setDate(0); - clone.setHours(0); - clone.setMinutes(0); - clone.setSeconds(0); - clone.setMilliseconds(0); - } - else if (this.scale == TimeStep.SCALE.MONTH) { - if (clone.getDate() > 15) { - clone.setDate(1); - clone.setMonth(clone.getMonth() + 1); - // important: first set Date to 1, after that change the month. - } - else { - clone.setDate(1); + ItemPoint.prototype.hide = function() { + if (this.displayed) { + if (this.dom.point.parentNode) { + this.dom.point.parentNode.removeChild(this.dom.point); } - clone.setHours(0); - clone.setMinutes(0); - clone.setSeconds(0); - clone.setMilliseconds(0); - } - else if (this.scale == TimeStep.SCALE.DAY) { - //noinspection FallthroughInSwitchStatementJS - switch (this.step) { - case 5: - case 2: - clone.setHours(Math.round(clone.getHours() / 24) * 24); break; - default: - clone.setHours(Math.round(clone.getHours() / 12) * 12); break; - } - clone.setMinutes(0); - clone.setSeconds(0); - clone.setMilliseconds(0); - } - else if (this.scale == TimeStep.SCALE.WEEKDAY) { - //noinspection FallthroughInSwitchStatementJS - switch (this.step) { - case 5: - case 2: - clone.setHours(Math.round(clone.getHours() / 12) * 12); break; - default: - clone.setHours(Math.round(clone.getHours() / 6) * 6); break; - } - clone.setMinutes(0); - clone.setSeconds(0); - clone.setMilliseconds(0); - } - else if (this.scale == TimeStep.SCALE.HOUR) { - switch (this.step) { - case 4: - clone.setMinutes(Math.round(clone.getMinutes() / 60) * 60); break; - default: - clone.setMinutes(Math.round(clone.getMinutes() / 30) * 30); break; - } - clone.setSeconds(0); - clone.setMilliseconds(0); - } else if (this.scale == TimeStep.SCALE.MINUTE) { - //noinspection FallthroughInSwitchStatementJS - switch (this.step) { - case 15: - case 10: - clone.setMinutes(Math.round(clone.getMinutes() / 5) * 5); - clone.setSeconds(0); - break; - case 5: - clone.setSeconds(Math.round(clone.getSeconds() / 60) * 60); break; - default: - clone.setSeconds(Math.round(clone.getSeconds() / 30) * 30); break; - } - clone.setMilliseconds(0); - } - else if (this.scale == TimeStep.SCALE.SECOND) { - //noinspection FallthroughInSwitchStatementJS - switch (this.step) { - case 15: - case 10: - clone.setSeconds(Math.round(clone.getSeconds() / 5) * 5); - clone.setMilliseconds(0); - break; - case 5: - clone.setMilliseconds(Math.round(clone.getMilliseconds() / 1000) * 1000); break; - default: - clone.setMilliseconds(Math.round(clone.getMilliseconds() / 500) * 500); break; - } - } - else if (this.scale == TimeStep.SCALE.MILLISECOND) { - var step = this.step > 5 ? this.step / 2 : 1; - clone.setMilliseconds(Math.round(clone.getMilliseconds() / step) * step); - } - - return clone; - }; + this.top = null; + this.left = null; - /** - * Check if the current value is a major value (for example when the step - * is DAY, a major value is each first day of the MONTH) - * @return {boolean} true if current date is major, else false. - */ - TimeStep.prototype.isMajor = function() { - switch (this.scale) { - case TimeStep.SCALE.MILLISECOND: - return (this.current.getMilliseconds() == 0); - case TimeStep.SCALE.SECOND: - return (this.current.getSeconds() == 0); - case TimeStep.SCALE.MINUTE: - return (this.current.getHours() == 0) && (this.current.getMinutes() == 0); - // Note: this is no bug. Major label is equal for both minute and hour scale - case TimeStep.SCALE.HOUR: - return (this.current.getHours() == 0); - case TimeStep.SCALE.WEEKDAY: // intentional fall through - case TimeStep.SCALE.DAY: - return (this.current.getDate() == 1); - case TimeStep.SCALE.MONTH: - return (this.current.getMonth() == 0); - case TimeStep.SCALE.YEAR: - return false; - default: - return false; + this.displayed = false; } }; - /** - * 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 + * Reposition the item horizontally + * @Override */ - TimeStep.prototype.getLabelMinor = function(date) { - if (date == undefined) { - date = this.current; - } + ItemPoint.prototype.repositionX = function() { + var start = this.conversion.toScreen(this.data.start); - switch (this.scale) { - case TimeStep.SCALE.MILLISECOND: return moment(date).format('SSS'); - case TimeStep.SCALE.SECOND: return moment(date).format('s'); - case TimeStep.SCALE.MINUTE: return moment(date).format('HH:mm'); - case TimeStep.SCALE.HOUR: return moment(date).format('HH:mm'); - case TimeStep.SCALE.WEEKDAY: return moment(date).format('ddd D'); - case TimeStep.SCALE.DAY: return moment(date).format('D'); - case TimeStep.SCALE.MONTH: return moment(date).format('MMM'); - case TimeStep.SCALE.YEAR: return moment(date).format('YYYY'); - default: return ''; - } - }; + this.left = start - this.props.dot.width; + // reposition point + this.dom.point.style.left = this.left + 'px'; + }; /** - * 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 + * Reposition the item vertically + * @Override */ - TimeStep.prototype.getLabelMajor = function(date) { - if (date == undefined) { - date = this.current; - } + ItemPoint.prototype.repositionY = function() { + var orientation = this.options.orientation, + point = this.dom.point; - //noinspection FallthroughInSwitchStatementJS - switch (this.scale) { - case TimeStep.SCALE.MILLISECOND:return moment(date).format('HH:mm:ss'); - case TimeStep.SCALE.SECOND: return moment(date).format('D MMMM HH:mm'); - case TimeStep.SCALE.MINUTE: - case TimeStep.SCALE.HOUR: return moment(date).format('ddd D MMMM'); - case TimeStep.SCALE.WEEKDAY: - case TimeStep.SCALE.DAY: return moment(date).format('MMMM YYYY'); - case TimeStep.SCALE.MONTH: return moment(date).format('YYYY'); - case TimeStep.SCALE.YEAR: return ''; - default: return ''; + if (orientation == 'top') { + point.style.top = this.top + 'px'; + } + else { + point.style.top = (this.parent.height - this.top - this.height) + 'px'; } }; - module.exports = TimeStep; + module.exports = ItemPoint; /***/ }, -/* 26 */ +/* 31 */ /***/ function(module, exports, __webpack_require__) { - var util = __webpack_require__(1); - var Component = __webpack_require__(22); + var Hammer = __webpack_require__(40); + var Item = __webpack_require__(28); /** - * A current time bar - * @param {{range: Range, dom: Object, domProps: Object}} body - * @param {Object} [options] Available parameters: - * {Boolean} [showCurrentTime] - * @constructor CurrentTime - * @extends Component + * @constructor ItemRange + * @extends Item + * @param {Object} data Object containing parameters start, end + * content, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} [options] Configuration options + * // TODO: describe options */ - function CurrentTime (body, options) { - this.body = body; - - // default options - this.defaultOptions = { - showCurrentTime: true + function ItemRange (data, conversion, options) { + this.props = { + content: { + width: 0 + } }; - this.options = util.extend({}, this.defaultOptions); + this.overflow = false; // if contents can overflow (css styling), this flag is set to true - this._create(); + // 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.setOptions(options); + Item.call(this, data, conversion, options); } - CurrentTime.prototype = new Component(); - - /** - * Create the HTML DOM for the current time bar - * @private - */ - CurrentTime.prototype._create = function() { - var bar = document.createElement('div'); - bar.className = 'currenttime'; - bar.style.position = 'absolute'; - bar.style.top = '0px'; - bar.style.height = '100%'; + ItemRange.prototype = new Item (null, null, null); - this.bar = bar; - }; + ItemRange.prototype.baseClassName = 'item range'; /** - * Destroy the CurrentTime bar + * 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 */ - CurrentTime.prototype.destroy = function () { - this.options.showCurrentTime = false; - this.redraw(); // will remove the bar from the DOM and stop refreshing - - this.body = null; + ItemRange.prototype.isVisible = function(range) { + // determine visibility + return (this.data.start < range.end) && (this.data.end > range.start); }; /** - * Set options for the component. Options will be merged in current options. - * @param {Object} options Available parameters: - * {boolean} [showCurrentTime] + * Repaint the item */ - CurrentTime.prototype.setOptions = function(options) { - if (options) { - // copy all options that we know - util.selectiveExtend(['showCurrentTime'], this.options, options); - } - }; + ItemRange.prototype.redraw = function() { + var dom = this.dom; + if (!dom) { + // create DOM + this.dom = {}; + dom = this.dom; - /** - * 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); + // background box + dom.box = document.createElement('div'); + // className is updated in redraw() - this.start(); - } + // contents box + dom.content = document.createElement('div'); + dom.content.className = 'content'; + dom.box.appendChild(dom.content); - var now = new Date(); - var x = this.body.util.toScreen(now); + // attach this item as attribute + dom.box['timeline-item'] = this; + } - this.bar.style.left = x + 'px'; - this.bar.title = 'Current time: ' + now; + // append DOM to parent DOM + if (!this.parent) { + throw new Error('Cannot redraw item: no parent attached'); } - else { - // remove the line from the DOM - if (this.bar.parentNode) { - this.bar.parentNode.removeChild(this.bar); + if (!dom.box.parentNode) { + var foreground = this.parent.dom.foreground; + if (!foreground) { + throw new Error('Cannot redraw time axis: parent has no foreground container element'); } - this.stop(); + foreground.appendChild(dom.box); } + this.displayed = true; - return false; - }; + // update contents + if (this.data.content != this.content) { + this.content = this.data.content; + if (this.content instanceof Element) { + dom.content.innerHTML = ''; + dom.content.appendChild(this.content); + } + else if (this.data.content != undefined) { + dom.content.innerHTML = this.content; + } + else { + throw new Error('Property "content" missing in item ' + this.data.id); + } - /** - * Start auto refreshing the current time bar - */ - CurrentTime.prototype.start = function() { - var me = this; + this.dirty = true; + } - function update () { - me.stop(); + // update title + if (this.data.title != this.title) { + dom.box.title = this.data.title; + this.title = this.data.title; + } - // 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; + // update class + var className = (this.data.className ? (' ' + this.data.className) : '') + + (this.selected ? ' selected' : ''); + if (this.className != className) { + this.className = className; + dom.box.className = this.baseClassName + className; - me.redraw(); + this.dirty = true; + } - // start a timer to adjust for the new time - me.currentTimeTimer = setTimeout(update, interval); + // recalculate size + if (this.dirty) { + // determine from css whether this box has overflow + this.overflow = window.getComputedStyle(dom.content).overflow !== 'hidden'; + + this.props.content.width = this.dom.content.offsetWidth; + this.height = this.dom.box.offsetHeight; + + this.dirty = false; } - update(); + this._repaintDeleteButton(dom.box); + this._repaintDragLeft(); + this._repaintDragRight(); }; /** - * Stop auto refreshing the current time bar + * Show the item in the DOM (when not already visible). The items DOM will + * be created when needed. */ - CurrentTime.prototype.stop = function() { - if (this.currentTimeTimer !== undefined) { - clearTimeout(this.currentTimeTimer); - delete this.currentTimeTimer; + ItemRange.prototype.show = function() { + if (!this.displayed) { + this.redraw(); } }; - module.exports = CurrentTime; - - -/***/ }, -/* 27 */ -/***/ function(module, exports, __webpack_require__) { - - var Hammer = __webpack_require__(18); - var util = __webpack_require__(1); - var Component = __webpack_require__(22); - /** - * A custom time bar - * @param {{range: Range, dom: Object}} body - * @param {Object} [options] Available parameters: - * {Boolean} [showCustomTime] - * @constructor CustomTime - * @extends Component + * Hide the item from the DOM (when visible) + * @return {Boolean} changed */ + ItemRange.prototype.hide = function() { + if (this.displayed) { + var box = this.dom.box; - function CustomTime (body, options) { - this.body = body; - - // default options - this.defaultOptions = { - showCustomTime: false - }; - this.options = util.extend({}, this.defaultOptions); - - this.customTime = new Date(); - this.eventParams = {}; // stores state parameters while dragging the bar - - // create the DOM - this._create(); - - this.setOptions(options); - } + if (box.parentNode) { + box.parentNode.removeChild(box); + } - CustomTime.prototype = new Component(); + this.top = null; + this.left = null; - /** - * 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'], this.options, options); + this.displayed = false; } }; /** - * Create the DOM for the custom time - * @private + * Reposition the item horizontally + * @Override */ - 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); - - // 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)); - }; - - /** - * Destroy the CustomTime bar - */ - CustomTime.prototype.destroy = function () { - this.options.showCustomTime = false; - this.redraw(); // will remove the bar from the DOM - - this.hammer.enable(false); - this.hammer = null; - - this.body = null; - }; + ItemRange.prototype.repositionX = function() { + var props = this.props, + parentWidth = this.parent.width, + start = this.conversion.toScreen(this.data.start), + end = this.conversion.toScreen(this.data.end), + padding = this.options.padding, + contentLeft; - /** - * 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); - } + // 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); - var x = this.body.util.toScreen(this.customTime); + if (this.overflow) { + // when range exceeds left of the window, position the contents at the left of the visible area + contentLeft = Math.max(-start, 0); - this.bar.style.left = x + 'px'; - this.bar.title = 'Time: ' + this.customTime; + this.left = start; + this.width = boxWidth + this.props.content.width; + // Note: The calculation of width is an optimistic calculation, giving + // a width which will not change when moving the Timeline + // So no restacking needed, which is nicer for the eye; } - else { - // remove the line from the DOM - if (this.bar.parentNode) { - this.bar.parentNode.removeChild(this.bar); + else { // no overflow + // when range exceeds left of the window, position the contents at the left of the visible area + if (start < 0) { + contentLeft = Math.min(-start, + (end - start - props.content.width - 2 * padding)); + // TODO: remove the need for options.padding. it's terrible. + } + else { + contentLeft = 0; } - } - - return false; - }; - /** - * Set custom time. - * @param {Date} time - */ - CustomTime.prototype.setCustomTime = function(time) { - this.customTime = new Date(time.valueOf()); - this.redraw(); - }; + this.left = start; + this.width = boxWidth; + } - /** - * Retrieve the current custom time. - * @return {Date} customTime - */ - CustomTime.prototype.getCustomTime = function() { - return new Date(this.customTime.valueOf()); + this.dom.box.style.left = this.left + 'px'; + this.dom.box.style.width = boxWidth + 'px'; + this.dom.content.style.left = contentLeft + 'px'; }; /** - * Start moving horizontally - * @param {Event} event - * @private + * Reposition the item vertically + * @Override */ - CustomTime.prototype._onDragStart = function(event) { - this.eventParams.dragging = true; - this.eventParams.customTime = this.customTime; + ItemRange.prototype.repositionY = function() { + var orientation = this.options.orientation, + box = this.dom.box; - event.stopPropagation(); - event.preventDefault(); + if (orientation == 'top') { + box.style.top = this.top + 'px'; + } + else { + box.style.top = (this.parent.height - this.top - this.height) + 'px'; + } }; /** - * Perform moving operating. - * @param {Event} event - * @private + * Repaint a drag area on the left side of the range when the range is selected + * @protected */ - CustomTime.prototype._onDrag = function (event) { - if (!this.eventParams.dragging) return; - - var deltaX = event.gesture.deltaX, - x = this.body.util.toScreen(this.eventParams.customTime) + deltaX, - time = this.body.util.toTime(x); - - this.setCustomTime(time); + ItemRange.prototype._repaintDragLeft = function () { + if (this.selected && this.options.editable.updateTime && !this.dom.dragLeft) { + // create and show drag area + var dragLeft = document.createElement('div'); + dragLeft.className = 'drag-left'; + dragLeft.dragLeftItem = this; - // fire a timechange event - this.body.emitter.emit('timechange', { - time: new Date(this.customTime.valueOf()) - }); + // TODO: this should be redundant? + Hammer(dragLeft, { + preventDefault: true + }).on('drag', function () { + //console.log('drag left') + }); - event.stopPropagation(); - event.preventDefault(); + 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; + } }; /** - * Stop moving operating. - * @param {event} event - * @private + * Repaint a drag area on the right side of the range when the range is selected + * @protected */ - CustomTime.prototype._onDragEnd = function (event) { - if (!this.eventParams.dragging) return; + ItemRange.prototype._repaintDragRight = function () { + if (this.selected && this.options.editable.updateTime && !this.dom.dragRight) { + // create and show drag area + var dragRight = document.createElement('div'); + dragRight.className = 'drag-right'; + dragRight.dragRightItem = this; - // fire a timechanged event - this.body.emitter.emit('timechanged', { - time: new Date(this.customTime.valueOf()) - }); + // TODO: this should be redundant? + Hammer(dragRight, { + preventDefault: true + }).on('drag', function () { + //console.log('drag right') + }); - event.stopPropagation(); - event.preventDefault(); + this.dom.box.appendChild(dragRight); + this.dom.dragRight = dragRight; + } + else if (!this.selected && this.dom.dragRight) { + // delete drag area + if (this.dom.dragRight.parentNode) { + this.dom.dragRight.parentNode.removeChild(this.dom.dragRight); + } + this.dom.dragRight = null; + } }; - module.exports = CustomTime; + module.exports = ItemRange; /***/ }, -/* 28 */ +/* 32 */ /***/ function(module, exports, __webpack_require__) { - var Hammer = __webpack_require__(18); - var util = __webpack_require__(1); - var DataSet = __webpack_require__(7); - var DataView = __webpack_require__(8); - var Component = __webpack_require__(22); - var Group = __webpack_require__(29); - var ItemBox = __webpack_require__(33); - var ItemPoint = __webpack_require__(34); - var ItemRange = __webpack_require__(31); - + var Emitter = __webpack_require__(46); + var Hammer = __webpack_require__(40); + var mousetrap = __webpack_require__(47); + var util = __webpack_require__(2); + var hammerUtil = __webpack_require__(43); + var DataSet = __webpack_require__(3); + var DataView = __webpack_require__(4); + var dotparser = __webpack_require__(38); + var gephiParser = __webpack_require__(39); + var Groups = __webpack_require__(34); + var Images = __webpack_require__(35); + var Node = __webpack_require__(36); + var Edge = __webpack_require__(33); + var Popup = __webpack_require__(37); + var MixinLoader = __webpack_require__(45); - var UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items + // Load custom shapes into CanvasRenderingContext2D + __webpack_require__(44); /** - * An ItemSet holds a set of items and ranges which can be displayed in a - * range. The width is determined by the parent of the ItemSet, and the height - * is determined by the size of the items. - * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} body - * @param {Object} [options] See ItemSet.setOptions for the available options. - * @constructor ItemSet - * @extends Component + * @constructor Network + * Create a network visualization, displaying nodes and edges. + * + * @param {Element} container The DOM element in which the Network will + * be created. Normally a div element. + * @param {Object} data An object containing parameters + * {Array} nodes + * {Array} edges + * @param {Object} options Options */ - function ItemSet(body, options) { - this.body = body; + function Network (container, data, options) { + if (!(this instanceof Network)) { + throw new SyntaxError('Constructor must be called with the new operator'); + } - this.defaultOptions = { - type: null, // 'box', 'point', 'range' - orientation: 'bottom', // 'top' or 'bottom' - align: 'center', // alignment of box items - stack: true, - groupOrder: null, + this._initializeMixinLoaders(); - selectable: true, - editable: { - updateTime: false, - updateGroup: false, - add: false, - remove: false - }, + // create variables and set default values + this.containerElement = container; - onAdd: function (item, callback) { - callback(item); - }, - onUpdate: function (item, callback) { - callback(item); - }, - onMove: function (item, callback) { - callback(item); - }, - onRemove: function (item, callback) { - callback(item); - }, - - margin: { - item: { - horizontal: 10, - vertical: 10 - }, - axis: 20 - }, - padding: 5 - }; - - // options is shared by this ItemSet and all its items - this.options = util.extend({}, this.defaultOptions); - - // options for getting items from the DataSet with the correct type - this.itemOptions = { - type: {start: 'Date', end: 'Date'} - }; + // render and calculation settings + this.renderRefreshRate = 60; // hz (fps) + this.renderTimestep = 1000 / this.renderRefreshRate; // ms -- saves calculation later on + this.renderTime = 0.5 * this.renderTimestep; // measured time it takes to render a frame + this.maxPhysicsTicksPerRender = 3; // max amount of physics ticks per render step. + this.physicsDiscreteStepsize = 0.50; // discrete stepsize of the simulation - this.conversion = { - toScreen: body.util.toScreen, - toTime: body.util.toTime - }; - this.dom = {}; - this.props = {}; - this.hammer = null; + this.initializing = true; - var me = this; - this.itemsData = null; // DataSet - this.groupsData = null; // DataSet + this.triggerFunctions = {add:null,edit:null,editEdge:null,connect:null,del:null}; - // listeners for the DataSet of the items - this.itemListeners = { - 'add': function (event, params, senderId) { - me._onAdd(params.items); + // set constant values + this.defaultOptions = { + nodes: { + mass: 1, + radiusMin: 10, + radiusMax: 30, + radius: 10, + shape: 'ellipse', + image: undefined, + widthMin: 16, // px + widthMax: 64, // px + fixed: false, + fontColor: 'black', + fontSize: 14, // px + fontFace: 'verdana', + level: -1, + color: { + border: '#2B7CE9', + background: '#97C2FC', + highlight: { + border: '#2B7CE9', + background: '#D2E5FF' + }, + hover: { + border: '#2B7CE9', + background: '#D2E5FF' + } + }, + borderColor: '#2B7CE9', + backgroundColor: '#97C2FC', + highlightColor: '#D2E5FF', + group: undefined, + borderWidth: 1 }, - 'update': function (event, params, senderId) { - me._onUpdate(params.items); + edges: { + widthMin: 1, + widthMax: 15, + width: 1, + widthSelectionMultiplier: 2, + hoverWidth: 1.5, + style: 'line', + color: { + color:'#848484', + highlight:'#848484', + hover: '#848484' + }, + fontColor: '#343434', + fontSize: 14, // px + fontFace: 'arial', + fontFill: 'white', + arrowScaleFactor: 1, + dash: { + length: 10, + gap: 5, + altLength: undefined + }, + inheritColor: "from" // to, from, false, true (== from) }, - 'remove': function (event, params, senderId) { - me._onRemove(params.items); - } - }; - - // listeners for the DataSet of the groups - this.groupListeners = { - 'add': function (event, params, senderId) { - me._onAddGroups(params.items); + configurePhysics:false, + physics: { + barnesHut: { + enabled: true, + theta: 1 / 0.6, // inverted to save time during calculation + gravitationalConstant: -2000, + centralGravity: 0.3, + springLength: 95, + springConstant: 0.04, + damping: 0.09 + }, + repulsion: { + centralGravity: 0.0, + springLength: 200, + springConstant: 0.05, + nodeDistance: 100, + damping: 0.09 + }, + hierarchicalRepulsion: { + enabled: false, + centralGravity: 0.0, + springLength: 100, + springConstant: 0.01, + nodeDistance: 150, + damping: 0.09 + }, + damping: null, + centralGravity: null, + springLength: null, + springConstant: null }, - 'update': function (event, params, senderId) { - me._onUpdateGroups(params.items); + clustering: { // Per Node in Cluster = PNiC + enabled: false, // (Boolean) | global on/off switch for clustering. + initialMaxNodes: 100, // (# nodes) | if the initial amount of nodes is larger than this, we cluster until the total number is less than this threshold. + clusterThreshold:500, // (# nodes) | during calculate forces, we check if the total number of nodes is larger than this. If it is, cluster until reduced to reduceToNodes + reduceToNodes:300, // (# nodes) | during calculate forces, we check if the total number of nodes is larger than clusterThreshold. If it is, cluster until reduced to this + chainThreshold: 0.4, // (% of all drawn nodes)| maximum percentage of allowed chainnodes (long strings of connected nodes) within all nodes. (lower means less chains). + clusterEdgeThreshold: 20, // (px) | edge length threshold. if smaller, this node is clustered. + sectorThreshold: 100, // (# nodes in cluster) | cluster size threshold. If larger, expanding in own sector. + screenSizeThreshold: 0.2, // (% of canvas) | relative size threshold. If the width or height of a clusternode takes up this much of the screen, decluster node. + fontSizeMultiplier: 4.0, // (px PNiC) | how much the cluster font size grows per node in cluster (in px). + maxFontSize: 1000, + forceAmplification: 0.1, // (multiplier PNiC) | factor of increase fo the repulsion force of a cluster (per node in cluster). + distanceAmplification: 0.1, // (multiplier PNiC) | factor how much the repulsion distance of a cluster increases (per node in cluster). + edgeGrowth: 20, // (px PNiC) | amount of clusterSize connected to the edge is multiplied with this and added to edgeLength. + nodeScaling: {width: 1, // (px PNiC) | growth of the width per node in cluster. + height: 1, // (px PNiC) | growth of the height per node in cluster. + radius: 1}, // (px PNiC) | growth of the radius per node in cluster. + maxNodeSizeIncrements: 600, // (# increments) | max growth of the width per node in cluster. + activeAreaBoxSize: 80, // (px) | box area around the curser where clusters are popped open. + clusterLevelDifference: 2 }, - 'remove': function (event, params, senderId) { - me._onRemoveGroups(params.items); - } + navigation: { + enabled: false + }, + keyboard: { + enabled: false, + speed: {x: 10, y: 10, zoom: 0.02} + }, + dataManipulation: { + enabled: false, + initiallyVisible: false + }, + hierarchicalLayout: { + enabled:false, + levelSeparation: 150, + nodeSpacing: 100, + direction: "UD" // UD, DU, LR, RL + }, + freezeForStabilization: false, + smoothCurves: { + enabled: true, + dynamic: true, + type: "continuous", + roundness: 0.5 + }, + dynamicSmoothCurves: true, + maxVelocity: 30, + minVelocity: 0.1, // px/s + stabilize: true, // stabilize before displaying the network + stabilizationIterations: 1000, // maximum number of iteration to stabilize + labels:{ + add:"Add Node", + edit:"Edit", + link:"Add Link", + del:"Delete selected", + editNode:"Edit Node", + editEdge:"Edit Edge", + back:"Back", + addDescription:"Click in an empty space to place a new node.", + linkDescription:"Click on a node and drag the edge to another node to connect them.", + editEdgeDescription:"Click on the control points and drag them to a node to connect to it.", + addError:"The function for add does not support two arguments (data,callback).", + linkError:"The function for connect does not support two arguments (data,callback).", + editError:"The function for edit does not support two arguments (data, callback).", + editBoundError:"No edit function has been bound to this button.", + deleteError:"The function for delete does not support two arguments (data, callback).", + deleteClusterError:"Clusters cannot be deleted." + }, + tooltip: { + delay: 300, + fontColor: 'black', + fontSize: 14, // px + fontFace: 'verdana', + color: { + border: '#666', + background: '#FFFFC6' + } + }, + dragNetwork: true, + dragNodes: true, + zoomable: true, + hover: false, + hideEdgesOnDrag: false, + hideNodesOnDrag: false, + width : '100%', + height : '100%', + selectable: true }; + this.constants = util.extend({}, this.defaultOptions); - this.items = {}; // object with an Item for every data item - this.groups = {}; // Group object for every group - this.groupIds = []; + this.hoverObj = {nodes:{},edges:{}}; + this.controlNodesActive = false; - this.selection = []; // list with the ids of all selected nodes - this.stackDirty = true; // if true, all items will be restacked on next redraw + // Node variables + var network = this; + this.groups = new Groups(); // object with groups + this.images = new Images(); // object with images + this.images.setOnloadCallback(function () { + network._redraw(); + }); - this.touchParams = {}; // stores properties while dragging - // create the HTML DOM + // 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 this._create(); - + // load the sector system. (mandatory, fully integrated with Network) + this._loadSectorSystem(); + // load the cluster system. (mandatory, even when not using the cluster system, there are function calls to it) + this._loadClusterSystem(); + // load the selection system. (mandatory, required by Network) + this._loadSelectionSystem(); + // load the selection system. (mandatory, required by Network) + this._loadHierarchySystem(); + + // apply options + this._setTranslation(this.frame.clientWidth / 2, this.frame.clientHeight / 2); + this._setScale(1); this.setOptions(options); - } - ItemSet.prototype = new Component(); + // other vars + this.freezeSimulation = false;// freeze the simulation + this.cachedFunctions = {}; - // available item types will be registered here - ItemSet.types = { - box: ItemBox, - range: ItemRange, - point: ItemPoint - }; + // containers for nodes and edges + this.calculationNodes = {}; + this.calculationNodeIndices = []; + this.nodeIndices = []; // array with all the indices of the nodes. Used to speed up forces calculation + this.nodes = {}; // object with Node objects + this.edges = {}; // object with Edge objects - /** - * Create the HTML DOM for the ItemSet - */ - ItemSet.prototype._create = function(){ - var frame = document.createElement('div'); - frame.className = 'itemset'; - frame['timeline-itemset'] = this; - this.dom.frame = frame; + // position and scale variables and objects + this.canvasTopLeft = {"x": 0,"y": 0}; // coordinates of the top left of the canvas. they will be set during _redraw. + this.canvasBottomRight = {"x": 0,"y": 0}; // coordinates of the bottom right of the canvas. they will be set during _redraw + this.pointerPosition = {"x": 0,"y": 0}; // coordinates of the bottom right of the canvas. they will be set during _redraw + this.areaCenter = {}; // object with x and y elements used for determining the center of the zoom action + this.scale = 1; // defining the global scale variable in the constructor + this.previousScale = this.scale; // this is used to check if the zoom operation is zooming in or out - // create background panel - var background = document.createElement('div'); - background.className = 'background'; - frame.appendChild(background); - this.dom.background = background; + // datasets or dataviews + this.nodesData = null; // A DataSet or DataView + this.edgesData = null; // A DataSet or DataView - // create foreground panel - var foreground = document.createElement('div'); - foreground.className = 'foreground'; - frame.appendChild(foreground); - this.dom.foreground = foreground; + // create event listeners used to subscribe on the DataSets of the nodes and edges + this.nodesListeners = { + 'add': function (event, params) { + network._addNodes(params.items); + network.start(); + }, + 'update': function (event, params) { + network._updateNodes(params.items); + network.start(); + }, + 'remove': function (event, params) { + network._removeNodes(params.items); + network.start(); + } + }; + this.edgesListeners = { + 'add': function (event, params) { + network._addEdges(params.items); + network.start(); + }, + 'update': function (event, params) { + network._updateEdges(params.items); + network.start(); + }, + 'remove': function (event, params) { + network._removeEdges(params.items); + network.start(); + } + }; - // create axis panel - var axis = document.createElement('div'); - axis.className = 'axis'; - this.dom.axis = axis; + // properties for the animation + this.moving = true; + this.timer = undefined; // Scheduling function. Is definded in this.start(); - // create labelset - var labelSet = document.createElement('div'); - labelSet.className = 'labelset'; - this.dom.labelSet = labelSet; + // load data (the disable start variable will be the same as the enabled clustering) + this.setData(data,this.constants.clustering.enabled || this.constants.hierarchicalLayout.enabled); - // create ungrouped Group - this._updateUngrouped(); + // hierarchical layout + this.initializing = false; + if (this.constants.hierarchicalLayout.enabled == true) { + this._setupHierarchicalLayout(); + } + else { + // zoom so all data will fit on the screen, if clustering is enabled, we do not want start to be called here. + if (this.constants.stabilize == false) { + this.zoomExtent(true,this.constants.clustering.enabled); + } + } - // attach event listeners - // Note: we bind to the centerContainer for the case where the height - // of the center container is larger than of the ItemSet, so we - // can click in the empty area to create a new item or deselect an item. - this.hammer = Hammer(this.body.dom.centerContainer, { - prevent_default: true - }); + // if clustering is disabled, the simulation will have started in the setData function + if (this.constants.clustering.enabled) { + this.startWithClustering(); + } + } - // 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)); + // Extend Network with an Emitter mixin + Emitter(Network.prototype); - // single select (or unselect) when tapping an item - this.hammer.on('tap', this._onSelectItem.bind(this)); + /** + * Get the script path where the vis.js library is located + * + * @returns {string | null} path Path or null when not found. Path does not + * end with a slash. + * @private + */ + Network.prototype._getScriptPath = function() { + var scripts = document.getElementsByTagName( 'script' ); - // multi select when holding mouse/touch, or on ctrl+click - this.hammer.on('hold', this._onMultiSelectItem.bind(this)); + // find script named vis.js or vis.min.js + for (var i = 0; i < scripts.length; i++) { + var src = scripts[i].src; + var match = src && /\/?vis(.min)?\.js$/.exec(src); + if (match) { + // return path without the script name + return src.substring(0, src.length - match[0].length); + } + } - // add item on doubletap - this.hammer.on('doubletap', this._onAddItem.bind(this)); + return null; + }; - // attach to the DOM - this.show(); + + /** + * Find the center position of the network + * @private + */ + Network.prototype._getRange = function() { + var minY = 1e9, maxY = -1e9, minX = 1e9, maxX = -1e9, node; + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + node = this.nodes[nodeId]; + if (minX > (node.x)) {minX = node.x;} + if (maxX < (node.x)) {maxX = node.x;} + if (minY > (node.y)) {minY = node.y;} + if (maxY < (node.y)) {maxY = node.y;} + } + } + if (minX == 1e9 && maxX == -1e9 && minY == 1e9 && maxY == -1e9) { + minY = 0, maxY = 0, minX = 0, maxX = 0; + } + return {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; }; + /** - * Set options for the ItemSet. Existing options will be extended/overwritten. - * @param {Object} [options] The following options are available: - * {String} type - * Default type for the items. Choose from 'box' - * (default), 'point', or 'range'. The default - * Style can be overwritten by individual items. - * {String} align - * Alignment for the items, only applicable for - * ItemBox. Choose 'center' (default), 'left', or - * 'right'. - * {String} orientation - * Orientation of the item set. Choose 'top' or - * 'bottom' (default). - * {Function} groupOrder - * A sorting function for ordering groups - * {Boolean} stack - * If true (deafult), items will be stacked on - * top of each other. - * {Number} margin.axis - * Margin between the axis and the items in pixels. - * Default is 20. - * {Number} margin.item.horizontal - * Horizontal margin between items in pixels. - * Default is 10. - * {Number} margin.item.vertical - * Vertical Margin between items in pixels. - * Default is 10. - * {Number} margin.item - * Margin between items in pixels in both horizontal - * and vertical direction. Default is 10. - * {Number} margin - * Set margin for both axis and items in pixels. - * {Number} padding - * Padding of the contents of an item in pixels. - * Must correspond with the items css. Default is 5. - * {Boolean} selectable - * If true (default), items can be selected. - * {Boolean} editable - * Set all editable options to true or false - * {Boolean} editable.updateTime - * Allow dragging an item to an other moment in time - * {Boolean} editable.updateGroup - * Allow dragging an item to an other group - * {Boolean} editable.add - * Allow creating new items on double tap - * {Boolean} editable.remove - * Allow removing items by clicking the delete button - * top right of a selected item. - * {Function(item: Item, callback: Function)} onAdd - * Callback function triggered when an item is about to be added: - * when the user double taps an empty space in the Timeline. - * {Function(item: Item, callback: Function)} onUpdate - * Callback function fired when an item is about to be updated. - * This function typically has to show a dialog where the user - * change the item. If not implemented, nothing happens. - * {Function(item: Item, callback: Function)} onMove - * Fired when an item has been moved. If not implemented, - * the move action will be accepted. - * {Function(item: Item, callback: Function)} onRemove - * Fired when an item is about to be deleted. - * If not implemented, the item will be always removed. + * @param {object} range = {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; + * @returns {{x: number, y: number}} + * @private */ - ItemSet.prototype.setOptions = function(options) { - if (options) { - // copy all options that we know - var fields = ['type', 'align', 'orientation', 'padding', 'stack', 'selectable', 'groupOrder']; - util.selectiveExtend(fields, this.options, options); + Network.prototype._findCenter = function(range) { + return {x: (0.5 * (range.maxX + range.minX)), + y: (0.5 * (range.maxY + range.minY))}; + }; - if ('margin' in options) { - if (typeof options.margin === 'number') { - this.options.margin.axis = options.margin; - this.options.margin.item.horizontal = options.margin; - this.options.margin.item.vertical = options.margin; - } - else if (typeof options.margin === 'object') { - util.selectiveExtend(['axis'], this.options.margin, options.margin); - if ('item' in options.margin) { - if (typeof options.margin.item === 'number') { - this.options.margin.item.horizontal = options.margin.item; - this.options.margin.item.vertical = options.margin.item; - } - else if (typeof options.margin.item === 'object') { - util.selectiveExtend(['horizontal', 'vertical'], this.options.margin.item, options.margin.item); - } - } - } - } - if ('editable' in options) { - if (typeof options.editable === 'boolean') { - this.options.editable.updateTime = options.editable; - this.options.editable.updateGroup = options.editable; - this.options.editable.add = options.editable; - this.options.editable.remove = options.editable; - } - else if (typeof options.editable === 'object') { - util.selectiveExtend(['updateTime', 'updateGroup', 'add', 'remove'], this.options.editable, options.editable); - } - } + /** + * center the network + * + * @param {object} range = {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; + */ + Network.prototype._centerNetwork = function(range) { + var center = this._findCenter(range); - // callback functions - var addCallback = (function (name) { - if (name in options) { - var fn = options[name]; - if (!(fn instanceof Function)) { - throw new Error('option ' + name + ' must be a function ' + name + '(item, callback)'); - } - this.options[name] = fn; - } - }).bind(this); - ['onAdd', 'onUpdate', 'onRemove', 'onMove'].forEach(addCallback); + center.x *= this.scale; + center.y *= this.scale; + center.x -= 0.5 * this.frame.canvas.clientWidth; + center.y -= 0.5 * this.frame.canvas.clientHeight; - // force the itemSet to refresh: options like orientation and margins may be changed - this.markDirty(); - } + this._setTranslation(-center.x,-center.y); // set at 0,0 }; - /** - * Mark the ItemSet dirty so it will refresh everything with next redraw - */ - ItemSet.prototype.markDirty = function() { - this.groupIds = []; - this.stackDirty = true; - }; /** - * Destroy the ItemSet + * This function zooms out to fit all data on screen based on amount of nodes + * + * @param {Boolean} [initialZoom] | zoom based on fitted formula or range, true = fitted, default = false; + * @param {Boolean} [disableStart] | If true, start is not called. */ - ItemSet.prototype.destroy = function() { - this.hide(); - this.setItems(null); - this.setGroups(null); + Network.prototype.zoomExtent = function(initialZoom, disableStart) { + if (initialZoom === undefined) { + initialZoom = false; + } + if (disableStart === undefined) { + disableStart = false; + } - this.hammer = null; + var range = this._getRange(); + var zoomLevel; - this.body = null; - this.conversion = null; - }; + if (initialZoom == true) { + var numberOfNodes = this.nodeIndices.length; + if (this.constants.smoothCurves == true) { + if (this.constants.clustering.enabled == true && + numberOfNodes >= this.constants.clustering.initialMaxNodes) { + zoomLevel = 49.07548 / (numberOfNodes + 142.05338) + 9.1444e-04; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. + } + else { + zoomLevel = 12.662 / (numberOfNodes + 7.4147) + 0.0964822; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. + } + } + else { + if (this.constants.clustering.enabled == true && + numberOfNodes >= this.constants.clustering.initialMaxNodes) { + zoomLevel = 77.5271985 / (numberOfNodes + 187.266146) + 4.76710517e-05; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. + } + else { + zoomLevel = 30.5062972 / (numberOfNodes + 19.93597763) + 0.08413486; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. + } + } - /** - * Hide the component from the DOM - */ - ItemSet.prototype.hide = function() { - // remove the frame containing the items - if (this.dom.frame.parentNode) { - this.dom.frame.parentNode.removeChild(this.dom.frame); + // correct for larger canvasses. + var factor = Math.min(this.frame.canvas.clientWidth / 600, this.frame.canvas.clientHeight / 600); + zoomLevel *= factor; } + else { + var xDistance = (Math.abs(range.minX) + Math.abs(range.maxX)) * 1.1; + var yDistance = (Math.abs(range.minY) + Math.abs(range.maxY)) * 1.1; - // remove the axis with dots - if (this.dom.axis.parentNode) { - this.dom.axis.parentNode.removeChild(this.dom.axis); - } + var xZoomLevel = this.frame.canvas.clientWidth / xDistance; + var yZoomLevel = this.frame.canvas.clientHeight / yDistance; - // remove the labelset containing all group labels - if (this.dom.labelSet.parentNode) { - this.dom.labelSet.parentNode.removeChild(this.dom.labelSet); + zoomLevel = (xZoomLevel <= yZoomLevel) ? xZoomLevel : yZoomLevel; } - }; - /** - * Show the component in the DOM (when not already visible). - * @return {Boolean} changed - */ - ItemSet.prototype.show = function() { - // show frame containing the items - if (!this.dom.frame.parentNode) { - this.body.dom.center.appendChild(this.dom.frame); + if (zoomLevel > 1.0) { + zoomLevel = 1.0; } - // 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); + this._setScale(zoomLevel); + this._centerNetwork(range); + if (disableStart == false) { + this.moving = true; + this.start(); } }; + /** - * Set selected items by their id. Replaces the current selection - * Unknown id's are silently ignored. - * @param {Array} [ids] An array with zero or more id's of the items to be - * selected. If ids is an empty array, all items will be - * unselected. + * Update the this.nodeIndices with the most recent node index list + * @private */ - ItemSet.prototype.setSelection = function(ids) { - var i, ii, id, item; - - if (ids) { - if (!Array.isArray(ids)) { - throw new TypeError('Array expected'); - } - - // unselect currently selected items - for (i = 0, ii = this.selection.length; i < ii; i++) { - id = this.selection[i]; - item = this.items[id]; - if (item) item.unselect(); - } - - // select items - this.selection = []; - for (i = 0, ii = ids.length; i < ii; i++) { - id = ids[i]; - item = this.items[id]; - if (item) { - this.selection.push(id); - item.select(); - } + Network.prototype._updateNodeIndexList = function() { + this._clearNodeIndexList(); + for (var idx in this.nodes) { + if (this.nodes.hasOwnProperty(idx)) { + this.nodeIndices.push(idx); } } }; - /** - * 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 + * Set nodes and edges, and optionally options as well. + * + * @param {Object} data Object containing parameters: + * {Array | DataSet | DataView} [nodes] Array with nodes + * {Array | DataSet | DataView} [edges] Array with edges + * {String} [dot] String containing data in DOT format + * {String} [gephi] String containing data in gephi JSON format + * {Options} [options] Object with options + * @param {Boolean} [disableStart] | optional: disable the calling of the start function. */ - ItemSet.prototype.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; + Network.prototype.setData = function(data, disableStart) { + if (disableStart === undefined) { + disableStart = false; + } - // 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); - } - } - } + 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.'); } - return ids; - }; + // set options + this.setOptions(data && data.options); - /** - * 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; + // set all data + if (data && data.dot) { + // parse DOT file + if(data && data.dot) { + var dotData = dotparser.DOTToGraph(data.dot); + this.setData(dotData); + return; } } - }; - - /** - * 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; - - // update class name - frame.className = 'itemset' + (editable ? ' editable' : ''); + 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); + } - // reorder the groups (if needed) - resized = this._orderGroups() || resized; + this._putDataInSector(); + if (!disableStart) { + // find a stable position or start animating to a stable position + if (this.constants.stabilize) { + var me = this; + setTimeout(function() {me._stabilize(); me.start();},0) + } + else { + this.start(); + } + } + }; - // 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; + /** + * Set options + * @param {Object} options + * @param {Boolean} [initializeView] | set zoom and translation to default. + */ + Network.prototype.setOptions = function (options) { + if (options) { + var prop; - // redraw all groups - var restack = this.stackDirty, - firstGroup = this._firstGroup(), - firstMargin = { - item: margin.item, - axis: margin.axis - }, - nonFirstMargin = { - item: margin.item, - axis: margin.item.vertical / 2 - }, - height = 0, - minHeight = margin.axis + margin.item.vertical; - util.forEach(this.groups, function (group) { - var groupMargin = (group == firstGroup) ? firstMargin : nonFirstMargin; - var groupResized = group.redraw(range, groupMargin, restack); - resized = groupResized || resized; - height += group.height; - }); - height = Math.max(height, minHeight); - this.stackDirty = false; + var fields = ['nodes','edges','smoothCurves','hierarchicalLayout','clustering','navigation','keyboard','dataManipulation', + 'onAdd','onEdit','onEditEdge','onConnect','onDelete' + ]; + util.selectiveNotDeepExtend(fields,this.constants, options); + util.selectiveNotDeepExtend(['color'],this.constants.nodes, options.nodes); + util.selectiveNotDeepExtend(['color','length'],this.constants.edges, options.edges); - // update frame height - frame.style.height = asSize(height); + if (options.physics) { + util.mergeOptions(this.constants.physics, options.physics,'barnesHut'); + util.mergeOptions(this.constants.physics, options.physics,'repulsion'); - // calculate actual size and position - this.props.top = frame.offsetTop; - this.props.left = frame.offsetLeft; - this.props.width = frame.offsetWidth; - this.props.height = height; + if (options.physics.hierarchicalRepulsion) { + this.constants.hierarchicalLayout.enabled = true; + this.constants.physics.hierarchicalRepulsion.enabled = true; + this.constants.physics.barnesHut.enabled = false; + for (prop in options.physics.hierarchicalRepulsion) { + if (options.physics.hierarchicalRepulsion.hasOwnProperty(prop)) { + this.constants.physics.hierarchicalRepulsion[prop] = options.physics.hierarchicalRepulsion[prop]; + } + } + } + } - // reposition axis - this.dom.axis.style.top = asSize((orientation == 'top') ? - (this.body.domProps.top.height + this.body.domProps.border.top) : - (this.body.domProps.top.height + this.body.domProps.centerContainer.height)); - this.dom.axis.style.left = this.body.domProps.border.left + 'px'; + 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;} - // check if this component is resized - resized = this._isResized() || resized; + util.mergeOptions(this.constants, options,'smoothCurves'); + util.mergeOptions(this.constants, options,'hierarchicalLayout'); + util.mergeOptions(this.constants, options,'clustering'); + util.mergeOptions(this.constants, options,'navigation'); + util.mergeOptions(this.constants, options,'keyboard'); + util.mergeOptions(this.constants, options,'dataManipulation'); - return 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]; + if (options.dataManipulation) { + this.editMode = this.constants.dataManipulation.initiallyVisible; + } - 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]; + // TODO: work out these options and document them + if (options.edges) { + if (options.edges.color !== undefined) { + if (util.isString(options.edges.color)) { + this.constants.edges.color = {}; + this.constants.edges.color.color = options.edges.color; + this.constants.edges.color.highlight = options.edges.color; + this.constants.edges.color.hover = options.edges.color; + } + else { + if (options.edges.color.color !== undefined) {this.constants.edges.color.color = options.edges.color.color;} + if (options.edges.color.highlight !== undefined) {this.constants.edges.color.highlight = options.edges.color.highlight;} + if (options.edges.color.hover !== undefined) {this.constants.edges.color.hover = options.edges.color.hover;} + } + } - if (this.groupsData) { - // remove the group holding all ungrouped items - if (ungrouped) { - ungrouped.hide(); - delete this.groups[UNGROUPED]; + 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;} + } + } } - } - else { - // create a group holding all (unfiltered) items - if (!ungrouped) { - var id = null; - var data = null; - ungrouped = new Group(id, data, this); - this.groups[UNGROUPED] = ungrouped; - for (var itemId in this.items) { - if (this.items.hasOwnProperty(itemId)) { - ungrouped.add(this.items[itemId]); + 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); } } + } - ungrouped.show(); + 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); + } } } - }; - /** - * Get the element for the labelset - * @return {HTMLElement} labelSet - */ - ItemSet.prototype.getLabelSet = function() { - return this.dom.labelSet; + // (Re)loading the mixins that can be enabled or disabled in the options. + // load the force calculation functions, grouped under the physics system. + this._loadPhysicsSystem(); + // load the navigation system. + this._loadNavigationControls(); + // load the data manipulation system + this._loadManipulationSystem(); + // configure the smooth curves + this._configureSmoothCurves(); + + + // bind keys. If disabled, this will not do anything; + this._createKeyBinds(); + this.setSize(this.constants.width, this.constants.height); + this.moving = true; + this.start(); + }; /** - * Set items - * @param {vis.DataSet | null} items + * Create the main frame for the Network. + * This function is executed once when a Network object is created. The frame + * contains a canvas, and this canvas contains all objects like the axis and + * nodes. + * @private */ - ItemSet.prototype.setItems = function(items) { - var me = this, - ids, - oldItemsData = this.itemsData; - - // replace the dataset - if (!items) { - this.itemsData = null; - } - else if (items instanceof DataSet || items instanceof DataView) { - this.itemsData = items; - } - else { - throw new TypeError('Data must be an instance of DataSet or DataView'); + Network.prototype._create = function () { + // remove all elements from the container element. + while (this.containerElement.hasChildNodes()) { + this.containerElement.removeChild(this.containerElement.firstChild); } - if (oldItemsData) { - // unsubscribe from old dataset - util.forEach(this.itemListeners, function (callback, event) { - oldItemsData.off(event, callback); - }); + this.frame = document.createElement('div'); + this.frame.className = 'network-frame'; + this.frame.style.position = 'relative'; + this.frame.style.overflow = 'hidden'; - // remove all drawn items - ids = oldItemsData.getIds(); - this._onRemove(ids); + // create the network canvas (HTML canvas element) + this.frame.canvas = document.createElement( 'canvas' ); + this.frame.canvas.style.position = 'relative'; + this.frame.appendChild(this.frame.canvas); + if (!this.frame.canvas.getContext) { + var noCanvas = document.createElement( 'DIV' ); + noCanvas.style.color = 'red'; + noCanvas.style.fontWeight = 'bold' ; + noCanvas.style.padding = '10px'; + noCanvas.innerHTML = 'Error: your browser does not support HTML canvas'; + this.frame.canvas.appendChild(noCanvas); } - if (this.itemsData) { - // subscribe to new dataset - var id = this.id; - util.forEach(this.itemListeners, function (callback, event) { - me.itemsData.on(event, callback, id); - }); + var me = this; + this.drag = {}; + this.pinch = {}; + this.hammer = Hammer(this.frame.canvas, { + prevent_default: true + }); + this.hammer.on('tap', me._onTap.bind(me) ); + this.hammer.on('doubletap', me._onDoubleTap.bind(me) ); + this.hammer.on('hold', me._onHold.bind(me) ); + this.hammer.on('pinch', me._onPinch.bind(me) ); + this.hammer.on('touch', me._onTouch.bind(me) ); + this.hammer.on('dragstart', me._onDragStart.bind(me) ); + this.hammer.on('drag', me._onDrag.bind(me) ); + this.hammer.on('dragend', me._onDragEnd.bind(me) ); + this.hammer.on('release', me._onRelease.bind(me) ); + this.hammer.on('mousewheel',me._onMouseWheel.bind(me) ); + this.hammer.on('DOMMouseScroll',me._onMouseWheel.bind(me) ); // for FF + this.hammer.on('mousemove', me._onMouseMoveTitle.bind(me) ); - // add all new items - ids = this.itemsData.getIds(); - this._onAdd(ids); + // add the frame to the container element + this.containerElement.appendChild(this.frame); - // update the group holding all ungrouped items - this._updateUngrouped(); - } }; - /** - * Get the current items - * @returns {vis.DataSet | null} - */ - ItemSet.prototype.getItems = function() { - return this.itemsData; - }; /** - * Set groups - * @param {vis.DataSet} groups + * Binding the keys for keyboard navigation. These functions are defined in the NavigationMixin + * @private */ - ItemSet.prototype.setGroups = function(groups) { - var me = this, - ids; - - // unsubscribe from current dataset - if (this.groupsData) { - util.forEach(this.groupListeners, function (callback, event) { - me.groupsData.unsubscribe(event, callback); - }); + Network.prototype._createKeyBinds = function() { + var me = this; + this.mousetrap = mousetrap; - // remove all drawn groups - ids = this.groupsData.getIds(); - this.groupsData = null; - this._onRemoveGroups(ids); // note: this will cause a redraw - } + this.mousetrap.reset(); - // replace the dataset - if (!groups) { - this.groupsData = null; - } - else if (groups instanceof DataSet || groups instanceof DataView) { - this.groupsData = groups; - } - else { - throw new TypeError('Data must be an instance of DataSet or DataView'); + if (this.constants.keyboard.enabled == true) { + this.mousetrap.bind("up", this._moveUp.bind(me) , "keydown"); + this.mousetrap.bind("up", this._yStopMoving.bind(me), "keyup"); + this.mousetrap.bind("down", this._moveDown.bind(me) , "keydown"); + this.mousetrap.bind("down", this._yStopMoving.bind(me), "keyup"); + this.mousetrap.bind("left", this._moveLeft.bind(me) , "keydown"); + this.mousetrap.bind("left", this._xStopMoving.bind(me), "keyup"); + this.mousetrap.bind("right",this._moveRight.bind(me), "keydown"); + this.mousetrap.bind("right",this._xStopMoving.bind(me), "keyup"); + this.mousetrap.bind("=", this._zoomIn.bind(me), "keydown"); + this.mousetrap.bind("=", this._stopZoom.bind(me), "keyup"); + this.mousetrap.bind("-", this._zoomOut.bind(me), "keydown"); + this.mousetrap.bind("-", this._stopZoom.bind(me), "keyup"); + this.mousetrap.bind("[", this._zoomIn.bind(me), "keydown"); + this.mousetrap.bind("[", this._stopZoom.bind(me), "keyup"); + this.mousetrap.bind("]", this._zoomOut.bind(me), "keydown"); + this.mousetrap.bind("]", this._stopZoom.bind(me), "keyup"); + this.mousetrap.bind("pageup",this._zoomIn.bind(me), "keydown"); + this.mousetrap.bind("pageup",this._stopZoom.bind(me), "keyup"); + this.mousetrap.bind("pagedown",this._zoomOut.bind(me),"keydown"); + this.mousetrap.bind("pagedown",this._stopZoom.bind(me), "keyup"); } - 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); + if (this.constants.dataManipulation.enabled == true) { + this.mousetrap.bind("escape",this._createManipulatorBar.bind(me)); + this.mousetrap.bind("del",this._deleteSelected.bind(me)); } - - // update the group holding all ungrouped items - this._updateUngrouped(); - - // update the order of all items in each group - this._order(); - - this.body.emitter.emit('change'); }; /** - * Get the current groups - * @returns {vis.DataSet | null} groups + * Get the pointer location from a touch location + * @param {{pageX: Number, pageY: Number}} touch + * @return {{x: Number, y: Number}} pointer + * @private */ - ItemSet.prototype.getGroups = function() { - return this.groupsData; + Network.prototype._getPointer = function (touch) { + return { + x: touch.pageX - util.getAbsoluteLeft(this.frame.canvas), + y: touch.pageY - util.getAbsoluteTop(this.frame.canvas) + }; }; /** - * Remove an item by its id - * @param {String | Number} id + * On start of a touch gesture, store the pointer + * @param event + * @private */ - ItemSet.prototype.removeItem = function(id) { - var item = this.itemsData.get(id), - dataset = this.itemsData.getDataSet(); + Network.prototype._onTouch = function (event) { + this.drag.pointer = this._getPointer(event.gesture.center); + this.drag.pinched = false; + this.pinch.scale = this._getScale(); - 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); - } - }); - } + this._handleTouch(this.drag.pointer); }; /** - * Handle updated items - * @param {Number[]} ids - * @protected + * handle drag start event + * @private */ - ItemSet.prototype._onUpdate = function(ids) { - var me = this; + Network.prototype._onDragStart = function () { + this._handleDragStart(); + }; - ids.forEach(function (id) { - var itemData = me.itemsData.get(id, me.itemOptions), - item = me.items[id], - type = itemData.type || me.options.type || (itemData.end ? 'range' : 'box'); - var constructor = ItemSet.types[type]; + /** + * This function is called by _onDragStart. + * It is separated out because we can then overload it for the datamanipulation system. + * + * @private + */ + Network.prototype._handleDragStart = function() { + var drag = this.drag; + var node = this._getNodeAt(drag.pointer); + // note: drag.pointer is set in _onTouch to get the initial touch location - if (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); - } + drag.dragging = true; + drag.selection = []; + drag.translation = this._getTranslation(); + drag.nodeId = null; + + if (node != null) { + drag.nodeId = node.id; + // select the clicked node if not yet selected + if (!node.isSelected()) { + this._selectObject(node,false); } - 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 + '"'); + // create an array with the selected nodes and their original location and status + for (var objectId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(objectId)) { + var object = this.selectionObj.nodes[objectId]; + var s = { + id: object.id, + node: object, + + // store original x, y, xFixed and yFixed, make the node temporarily Fixed + x: object.x, + y: object.y, + xFixed: object.xFixed, + yFixed: object.yFixed + }; + + object.xFixed = true; + object.yFixed = true; + + drag.selection.push(s); } } - }); - - this._order(); - this.stackDirty = true; // force re-stacking of all items next redraw - this.body.emitter.emit('change'); + } }; - /** - * Handle added items - * @param {Number[]} ids - * @protected - */ - ItemSet.prototype._onAdd = ItemSet.prototype._onUpdate; - - /** - * Handle removed items - * @param {Number[]} ids - * @protected - */ - ItemSet.prototype._onRemove = function(ids) { - var count = 0; - var me = this; - ids.forEach(function (id) { - var item = me.items[id]; - if (item) { - count++; - me._removeItem(item); - } - }); - - if (count) { - // update order - this._order(); - this.stackDirty = true; // force re-stacking of all items next redraw - this.body.emitter.emit('change'); - } - }; /** - * Update the order of item in all groups + * handle drag event * @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(); - }); + Network.prototype._onDrag = function (event) { + this._handleOnDrag(event) }; - /** - * Handle updated groups - * @param {Number[]} ids - * @private - */ - ItemSet.prototype._onUpdateGroups = function(ids) { - this._onAddGroups(ids); - }; /** - * Handle changed groups - * @param {Number[]} ids + * This function is called by _onDrag. + * It is separated out because we can then overload it for the datamanipulation system. + * * @private */ - ItemSet.prototype._onAddGroups = function(ids) { - var me = this; + Network.prototype._handleOnDrag = function(event) { + if (this.drag.pinched) { + return; + } - ids.forEach(function (id) { - var groupData = me.groupsData.get(id); - var group = me.groups[id]; + var pointer = this._getPointer(event.gesture.center); - if (!group) { - // check for reserved ids - if (id == UNGROUPED) { - throw new Error('Illegal group id. ' + id + ' is a reserved id.'); - } + var me = this; + var drag = this.drag; + var selection = drag.selection; + if (selection && selection.length && this.constants.dragNodes == true) { + // calculate delta's and new location + var deltaX = pointer.x - drag.pointer.x; + var deltaY = pointer.y - drag.pointer.y; - var groupOptions = Object.create(me.options); - util.extend(groupOptions, { - height: null - }); + // update position of all selected nodes + selection.forEach(function (s) { + var node = s.node; - group = new Group(id, groupData, me); - me.groups[id] = group; + if (!s.xFixed) { + node.x = me._XconvertDOMtoCanvas(me._XconvertCanvasToDOM(s.x) + deltaX); + } - // 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); - } - } + if (!s.yFixed) { + node.y = me._YconvertDOMtoCanvas(me._YconvertCanvasToDOM(s.y) + deltaY); } + }); - group.order(); - group.show(); - } - else { - // update group - group.setData(groupData); + + // start _animationStep if not yet running + if (!this.moving) { + this.moving = true; + this.start(); } - }); + } + else { + if (this.constants.dragNetwork == true) { + // move the network + var diffX = pointer.x - this.drag.pointer.x; + var diffY = pointer.y - this.drag.pointer.y; - this.body.emitter.emit('change'); + this._setTranslation( + this.drag.translation.x + diffX, + this.drag.translation.y + diffY + ); + this._redraw(); + // this.moving = true; + // this.start(); + } + } }; /** - * Handle removed groups - * @param {Number[]} ids + * handle drag start event * @private */ - ItemSet.prototype._onRemoveGroups = function(ids) { - var groups = this.groups; - ids.forEach(function (id) { - var group = groups[id]; - - if (group) { - group.hide(); - delete groups[id]; - } - }); - - this.markDirty(); + Network.prototype._onDragEnd = function () { + this.drag.dragging = false; + var selection = this.drag.selection; + if (selection && selection.length) { + selection.forEach(function (s) { + // restore original xFixed and yFixed + s.node.xFixed = s.xFixed; + s.node.yFixed = s.yFixed; + }); + this.moving = true; + this.start(); + } + else { + this._redraw(); + } - this.body.emitter.emit('change'); }; /** - * Reorder the groups if needed - * @return {boolean} changed + * handle tap/click event: select/unselect a node * @private */ - ItemSet.prototype._orderGroups = function () { - if (this.groupsData) { - // reorder the groups - var groupIds = this.groupsData.getIds({ - order: this.options.groupOrder - }); - - var changed = !util.equalArray(groupIds, this.groupIds); - if (changed) { - // hide all groups, removes them from the DOM - var groups = this.groups; - groupIds.forEach(function (groupId) { - groups[groupId].hide(); - }); + Network.prototype._onTap = function (event) { + var pointer = this._getPointer(event.gesture.center); + this.pointerPosition = pointer; + this._handleTap(pointer); - // show the groups again, attach them to the DOM in correct order - groupIds.forEach(function (groupId) { - groups[groupId].show(); - }); + }; - this.groupIds = groupIds; - } - return changed; - } - else { - return false; - } + /** + * handle doubletap event + * @private + */ + Network.prototype._onDoubleTap = function (event) { + var pointer = this._getPointer(event.gesture.center); + this._handleDoubleTap(pointer); }; + /** - * Add a new item - * @param {Item} item + * handle long tap event: multi select nodes * @private */ - ItemSet.prototype._addItem = function(item) { - this.items[item.id] = item; + Network.prototype._onHold = function (event) { + var pointer = this._getPointer(event.gesture.center); + this.pointerPosition = pointer; + this._handleOnHold(pointer); + }; - // add to group - var groupId = this.groupsData ? item.data.group : UNGROUPED; - var group = this.groups[groupId]; - if (group) group.add(item); + /** + * handle the release of the screen + * + * @private + */ + Network.prototype._onRelease = function (event) { + var pointer = this._getPointer(event.gesture.center); + this._handleOnRelease(pointer); }; /** - * Update an existing item - * @param {Item} item - * @param {Object} itemData + * Handle pinch event + * @param event * @private */ - ItemSet.prototype._updateItem = function(item, itemData) { - var oldGroupId = item.data.group; + Network.prototype._onPinch = function (event) { + var pointer = this._getPointer(event.gesture.center); - item.data = itemData; - if (item.displayed) { - item.redraw(); + this.drag.pinched = true; + if (!('scale' in this.pinch)) { + this.pinch.scale = 1; } - // update group - if (oldGroupId != item.data.group) { - var oldGroup = this.groups[oldGroupId]; - if (oldGroup) oldGroup.remove(item); - - var groupId = this.groupsData ? item.data.group : UNGROUPED; - var group = this.groups[groupId]; - if (group) group.add(item); - } + // TODO: enabled moving while pinching? + var scale = this.pinch.scale * event.gesture.scale; + this._zoom(scale, pointer) }; /** - * 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 + * Zoom the network in or out + * @param {Number} scale a number around 1, and between 0.01 and 10 + * @param {{x: Number, y: Number}} pointer Position on screen + * @return {Number} appliedScale scale is limited within the boundaries * @private */ - ItemSet.prototype._removeItem = function(item) { - // remove from DOM - item.hide(); + Network.prototype._zoom = function(scale, pointer) { + if (this.constants.zoomable == true) { + var scaleOld = this._getScale(); + if (scale < 0.00001) { + scale = 0.00001; + } + if (scale > 10) { + scale = 10; + } - // remove from items - delete this.items[item.id]; + var preScaleDragPointer = null; + if (this.drag !== undefined) { + if (this.drag.dragging == true) { + preScaleDragPointer = this.DOMtoCanvas(this.drag.pointer); + } + } + // + this.frame.canvas.clientHeight / 2 + var translation = this._getTranslation(); - // remove from selection - var index = this.selection.indexOf(item.id); - if (index != -1) this.selection.splice(index, 1); + var scaleFrac = scale / scaleOld; + var tx = (1 - scaleFrac) * pointer.x + translation.x * scaleFrac; + var ty = (1 - scaleFrac) * pointer.y + translation.y * scaleFrac; - // remove from group - var groupId = this.groupsData ? item.data.group : UNGROUPED; - var group = this.groups[groupId]; - if (group) group.remove(item); - }; + this.areaCenter = {"x" : this._XconvertDOMtoCanvas(pointer.x), + "y" : this._YconvertDOMtoCanvas(pointer.y)}; - /** - * Create an array containing all items being a range (having an end date) - * @param array - * @returns {Array} - * @private - */ - ItemSet.prototype._constructByEndArray = function(array) { - var endArray = []; + this._setScale(scale); + this._setTranslation(tx, ty); + this.updateClustersDefault(); - for (var i = 0; i < array.length; i++) { - if (array[i] instanceof ItemRange) { - endArray.push(array[i]); + if (preScaleDragPointer != null) { + var postScaleDragPointer = this.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; } - 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 + * 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 */ - ItemSet.prototype._onDragStart = function (event) { - if (!this.options.editable.updateTime && !this.options.editable.updateGroup) { - return; + Network.prototype._onMouseWheel = function(event) { + // retrieve delta + var delta = 0; + if (event.wheelDelta) { /* IE/Opera. */ + delta = event.wheelDelta/120; + } else if (event.detail) { /* Mozilla case. */ + // In Mozilla, sign of delta is different than in IE. + // Also, delta is multiple of 3. + delta = -event.detail/3; } - var item = this.touchParams.item || null, - me = this, - props; - - if (item && item.selected) { - var dragLeftItem = event.target.dragLeftItem; - var dragRightItem = event.target.dragRightItem; - - if (dragLeftItem) { - props = { - item: dragLeftItem - }; - - if (me.options.editable.updateTime) { - props.start = item.data.start.valueOf(); - } - if (me.options.editable.updateGroup) { - if ('group' in item.data) props.group = item.data.group; - } - - this.touchParams.itemProps = [props]; - } - else if (dragRightItem) { - props = { - item: dragRightItem - }; - - if (me.options.editable.updateTime) { - props.end = item.data.end.valueOf(); - } - if (me.options.editable.updateGroup) { - if ('group' in item.data) props.group = item.data.group; - } + // 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) { - this.touchParams.itemProps = [props]; + // calculate the new scale + var scale = this._getScale(); + var zoom = delta / 10; + if (delta < 0) { + zoom = zoom / (1 - zoom); } - else { - this.touchParams.itemProps = this.getSelection().map(function (id) { - var item = me.items[id]; - var props = { - item: item - }; - - if (me.options.editable.updateTime) { - if ('start' in item.data) props.start = item.data.start.valueOf(); - if ('end' in item.data) props.end = item.data.end.valueOf(); - } - if (me.options.editable.updateGroup) { - if ('group' in item.data) props.group = item.data.group; - } + scale *= (1 + zoom); - return props; - }); - } + // calculate the pointer location + var gesture = hammerUtil.fakeGesture(this, event); + var pointer = this._getPointer(gesture.center); - event.stopPropagation(); + // apply the new scale + this._zoom(scale, pointer); } + + // Prevent default actions caused by mouse wheel. + event.preventDefault(); }; + /** - * Drag selected items - * @param {Event} event + * Mouse move handler for checking whether the title moves over a node with a title. + * @param {Event} event * @private */ - ItemSet.prototype._onDrag = function (event) { - if (this.touchParams.itemProps) { - var range = this.body.range, - snap = this.body.util.snap || null, - deltaX = event.gesture.deltaX, - scale = (this.props.width / (range.end - range.start)), - offset = deltaX / scale; + Network.prototype._onMouseMoveTitle = function (event) { + var gesture = hammerUtil.fakeGesture(this, event); + var pointer = this._getPointer(gesture.center); - // move - this.touchParams.itemProps.forEach(function (props) { - if ('start' in props) { - var start = new Date(props.start + offset); - props.item.data.start = snap ? snap(start) : start; - } + // check if the previously selected node is still selected + if (this.popupObj) { + this._checkHidePopup(pointer); + } - if ('end' in props) { - var end = new Date(props.end + offset); - props.item.data.end = snap ? snap(end) : end; - } + // start a timeout that will check if the mouse is positioned above + // an element + var me = this; + var checkShow = function() { + me._checkShowPopup(pointer); + }; + if (this.popupTimer) { + clearInterval(this.popupTimer); // stop any running calculationTimer + } + if (!this.drag.dragging) { + this.popupTimer = setTimeout(checkShow, this.constants.tooltip.delay); + } - if ('group' in props) { - // drag from one group to another - var group = ItemSet.groupFromTarget(event); - if (group && group.groupId != props.item.data.group) { - var oldGroup = props.item.parent; - oldGroup.remove(props.item); - oldGroup.order(); - group.add(props.item); - group.order(); - props.item.data.group = group.groupId; - } + /** + * 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]; } - }); - - // TODO: implement onMoving handler + } - this.stackDirty = true; // force re-stacking of all items next redraw - this.body.emitter.emit('change'); + // adding hover highlights + var obj = this._getNodeAt(pointer); + if (obj == null) { + obj = this._getEdgeAt(pointer); + } + if (obj != null) { + this._hoverObject(obj); + } - event.stopPropagation(); + // 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(); } }; /** - * End of dragging selected items - * @param {Event} event + * 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 */ - 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(); + 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) + }; - this.touchParams.itemProps.forEach(function (props) { - var id = props.item.id, - itemData = me.itemsData.get(id, me.itemOptions); + var id; + var lastPopupNode = this.popupObj; - 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 (this.popupObj == undefined) { + // search the nodes for overlap, select the top one in case of multiple nodes + var nodes = this.nodes; + for (id in nodes) { + if (nodes.hasOwnProperty(id)) { + var node = nodes[id]; + if (node.getTitle() !== undefined && node.isOverlappingWith(obj)) { + this.popupObj = node; + break; + } } + } + } - // only apply changes when start or end is actually changed - if (changed) { - me.options.onMove(itemData, function (itemData) { - if (itemData) { - // apply changes - itemData[dataset._fieldId] = id; // ensure the item contains its id (can be undefined) - changes.push(itemData); - } - else { - // restore original values - if ('start' in props) props.item.data.start = props.start; - if ('end' in props) props.item.data.end = props.end; + if (this.popupObj === undefined) { + // search the edges for overlap + var edges = this.edges; + for (id in edges) { + if (edges.hasOwnProperty(id)) { + var edge = edges[id]; + if (edge.connected && (edge.getTitle() !== undefined) && + edge.isOverlappingWith(obj)) { + this.popupObj = edge; + break; + } + } + } + } - me.stackDirty = true; // force re-stacking of all items next redraw - me.body.emitter.emit('change'); - } - }); + if (this.popupObj) { + // show popup message window + if (this.popupObj != lastPopupNode) { + var me = this; + if (!me.popup) { + me.popup = new Popup(me.frame, me.constants.tooltip); } - }); - this.touchParams.itemProps = null; - // apply the changes to the data (if there are changes) - if (changes.length) { - dataset.update(changes); + // adjust a small offset such that the mouse cursor is located in the + // bottom left location of the popup, and you can easily move over the + // popup area + me.popup.setPosition(pointer.x - 3, pointer.y - 3); + me.popup.setText(me.popupObj.getTitle()); + me.popup.show(); + } + } + else { + if (this.popup) { + this.popup.hide(); } - - event.stopPropagation(); } }; + /** - * Handle selecting/deselecting an item when tapping it - * @param {Event} event + * Check if the popup must be hided, which is the case when the mouse is no + * longer hovering on the object + * @param {{x:Number, y:Number}} pointer * @private */ - ItemSet.prototype._onSelectItem = function (event) { - if (!this.options.selectable) return; - - var ctrlKey = event.gesture.srcEvent && event.gesture.srcEvent.ctrlKey; - var shiftKey = event.gesture.srcEvent && event.gesture.srcEvent.shiftKey; - if (ctrlKey || shiftKey) { - this._onMultiSelectItem(event); - return; + Network.prototype._checkHidePopup = function (pointer) { + if (!this.popupObj || !this._getNodeAt(pointer) ) { + this.popupObj = undefined; + if (this.popup) { + this.popup.hide(); + } } + }; - var oldSelection = this.getSelection(); - var item = ItemSet.itemFromTarget(event); - var selection = item ? [item.id] : []; - this.setSelection(selection); + /** + * Set a new size for the network + * @param {string} width Width in pixels or percentage (for example '800px' + * or '50%') + * @param {string} height Height in pixels or percentage (for example '400px' + * or '30%') + */ + Network.prototype.setSize = function(width, height) { + this.frame.style.width = width; + this.frame.style.height = height; - var newSelection = this.getSelection(); + this.frame.canvas.style.width = '100%'; + this.frame.canvas.style.height = '100%'; - // emit a select event, - // except when old selection is empty and new selection is still empty - if (newSelection.length > 0 || oldSelection.length > 0) { - this.body.emitter.emit('select', { - items: this.getSelection() - }); + this.frame.canvas.width = this.frame.canvas.clientWidth; + this.frame.canvas.height = this.frame.canvas.clientHeight; + + if (this.manipulationDiv !== undefined) { + this.manipulationDiv.style.width = this.frame.canvas.clientWidth + "px"; + } + if (this.navigationDivs !== undefined) { + if (this.navigationDivs['wrapper'] !== undefined) { + this.navigationDivs['wrapper'].style.width = this.frame.canvas.clientWidth + "px"; + this.navigationDivs['wrapper'].style.height = this.frame.canvas.clientHeight + "px"; + } } - event.stopPropagation(); + this.emit('resize', {width:this.frame.canvas.width,height:this.frame.canvas.height}); }; /** - * Handle creation and updates of an item on double tap - * @param event + * Set a data set with nodes for the network + * @param {Array | DataSet | DataView} nodes The data containing the nodes. * @private */ - ItemSet.prototype._onAddItem = function (event) { - if (!this.options.selectable) return; - if (!this.options.editable.add) return; - - var me = this, - snap = this.body.util.snap || null, - item = ItemSet.itemFromTarget(event); - - if (item) { - // update item + Network.prototype._setNodes = function(nodes) { + var oldNodesData = this.nodesData; - // execute async handler to update the item (or cancel it) - var itemData = me.itemsData.get(item.id); // get a clone of the data from the dataset - this.options.onUpdate(itemData, function (itemData) { - if (itemData) { - me.itemsData.update(itemData); - } - }); + if (nodes instanceof DataSet || nodes instanceof DataView) { + this.nodesData = nodes; + } + else if (nodes instanceof Array) { + this.nodesData = new DataSet(); + this.nodesData.add(nodes); + } + else if (!nodes) { + this.nodesData = new DataSet(); } else { - // add item - var xAbs = util.getAbsoluteLeft(this.dom.frame); - var x = event.gesture.center.pageX - xAbs; - var start = this.body.util.toTime(x); - var newItem = { - start: snap ? snap(start) : start, - content: 'new item' - }; - - // when default type is a range, add a default end date to the new item - if (this.options.type === 'range') { - var end = this.body.util.toTime(x + this.props.width / 5); - newItem.end = snap ? snap(end) : end; - } + throw new TypeError('Array or DataSet expected'); + } - newItem[this.itemsData.fieldId] = util.randomUUID(); + if (oldNodesData) { + // unsubscribe from old dataset + util.forEach(this.nodesListeners, function (callback, event) { + oldNodesData.off(event, callback); + }); + } - var group = ItemSet.groupFromTarget(event); - if (group) { - newItem.group = group.groupId; - } + // remove drawn nodes + this.nodes = {}; - // execute async handler to customize (or cancel) adding an item - this.options.onAdd(newItem, function (item) { - if (item) { - me.itemsData.add(newItem); - // TODO: need to trigger a redraw? - } + if (this.nodesData) { + // subscribe to new dataset + var me = this; + util.forEach(this.nodesListeners, function (callback, event) { + me.nodesData.on(event, callback); }); + + // draw all new nodes + var ids = this.nodesData.getIds(); + this._addNodes(ids); } + this._updateSelection(); }; /** - * Handle selecting/deselecting multiple items when holding an item - * @param {Event} event + * Add nodes + * @param {Number[] | String[]} ids * @private */ - ItemSet.prototype._onMultiSelectItem = function (event) { - if (!this.options.selectable) return; - - var selection, - item = ItemSet.itemFromTarget(event); + Network.prototype._addNodes = function(ids) { + var id; + for (var i = 0, len = ids.length; i < len; i++) { + id = ids[i]; + var data = this.nodesData.get(id); + var node = new Node(data, this.images, this.groups, this.constants); + this.nodes[id] = node; // note: this may replace an existing node - if (item) { - // multi select items - selection = this.getSelection(); // current selection - var index = selection.indexOf(item.id); - if (index == -1) { - // item is not yet selected -> select it - selection.push(item.id); + if ((node.xFixed == false || node.yFixed == false) && (node.x === null || node.y === null)) { + var radius = 10 * 0.1*ids.length; + 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);} } - else { - // item is already selected -> deselect it - selection.splice(index, 1); - } - this.setSelection(selection); - - this.body.emitter.emit('select', { - items: this.getSelection() - }); - - event.stopPropagation(); + this.moving = true; + } + this._updateNodeIndexList(); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); } + this._updateCalculationNodes(); + this._reconnectEdges(); + this._updateValueRange(this.nodes); + this.updateLabels(); }; /** - * 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 + * Update existing nodes, or create them when not yet existing + * @param {Number[] | String[]} ids + * @private */ - ItemSet.itemFromTarget = function(event) { - var target = event.target; - while (target) { - if (target.hasOwnProperty('timeline-item')) { - return target['timeline-item']; + Network.prototype._updateNodes = function(ids) { + var nodes = this.nodes, + nodesData = this.nodesData; + for (var i = 0, len = ids.length; i < len; i++) { + var id = ids[i]; + var node = nodes[id]; + var data = nodesData.get(id); + if (node) { + // update node + node.setProperties(data, this.constants); + } + else { + // create node + node = new Node(properties, this.images, this.groups, this.constants); + nodes[id] = node; } - target = target.parentNode; } - - return null; + this.moving = true; + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } + this._updateNodeIndexList(); + this._reconnectEdges(); + this._updateValueRange(nodes); }; /** - * 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 + * Remove existing nodes. If nodes do not exist, the method will just ignore it. + * @param {Number[] | String[]} ids + * @private */ - ItemSet.groupFromTarget = function(event) { - var target = event.target; - while (target) { - if (target.hasOwnProperty('timeline-group')) { - return target['timeline-group']; - } - target = target.parentNode; + Network.prototype._removeNodes = function(ids) { + var nodes = this.nodes; + for (var i = 0, len = ids.length; i < len; i++) { + var id = ids[i]; + delete nodes[id]; } - - return null; + this._updateNodeIndexList(); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } + this._updateCalculationNodes(); + this._reconnectEdges(); + this._updateSelection(); + this._updateValueRange(nodes); }; /** - * 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 + * Load edges by reading the data table + * @param {Array | DataSet | DataView} edges The data containing the edges. + * @private + * @private */ - ItemSet.itemSetFromTarget = function(event) { - var target = event.target; - while (target) { - if (target.hasOwnProperty('timeline-itemset')) { - return target['timeline-itemset']; - } - target = target.parentNode; + Network.prototype._setEdges = function(edges) { + var oldEdgesData = this.edgesData; + + if (edges instanceof DataSet || edges instanceof DataView) { + this.edgesData = edges; + } + else if (edges instanceof Array) { + this.edgesData = new DataSet(); + this.edgesData.add(edges); + } + else if (!edges) { + this.edgesData = new DataSet(); + } + else { + throw new TypeError('Array or DataSet expected'); } - return null; - }; + if (oldEdgesData) { + // unsubscribe from old dataset + util.forEach(this.edgesListeners, function (callback, event) { + oldEdgesData.off(event, callback); + }); + } - module.exports = ItemSet; + // remove drawn edges + this.edges = {}; + if (this.edgesData) { + // subscribe to new dataset + var me = this; + util.forEach(this.edgesListeners, function (callback, event) { + me.edgesData.on(event, callback); + }); -/***/ }, -/* 29 */ -/***/ function(module, exports, __webpack_require__) { + // draw all new nodes + var ids = this.edgesData.getIds(); + this._addEdges(ids); + } - var util = __webpack_require__(1); - var stack = __webpack_require__(30); - var ItemRange = __webpack_require__(31); + this._reconnectEdges(); + }; /** - * @constructor Group - * @param {Number | String} groupId - * @param {Object} data - * @param {ItemSet} itemSet + * Add edges + * @param {Number[] | String[]} ids + * @private */ - function Group (groupId, data, itemSet) { - this.groupId = groupId; + Network.prototype._addEdges = function (ids) { + var edges = this.edges, + edgesData = this.edgesData; - this.itemSet = itemSet; + for (var i = 0, len = ids.length; i < len; i++) { + var id = ids[i]; - this.dom = {}; - this.props = { - label: { - width: 0, - height: 0 + var oldEdge = edges[id]; + if (oldEdge) { + oldEdge.disconnect(); } - }; - this.className = null; - - this.items = {}; // items filtered by groupId of this group - this.visibleItems = []; // items currently visible in window - this.orderedItems = { // items sorted by start and by end - byStart: [], - byEnd: [] - }; - this._create(); + var data = edgesData.get(id, {"showInternalIds" : true}); + edges[id] = new Edge(data, this, this.constants); + } - this.setData(data); - } + this.moving = true; + this._updateValueRange(edges); + this._createBezierNodes(); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } + this._updateCalculationNodes(); + }; /** - * Create DOM elements for the group + * Update existing edges, or create them when not yet existing + * @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; - - 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'; + Network.prototype._updateEdges = function (ids) { + var edges = this.edges, + edgesData = this.edgesData; + for (var i = 0, len = ids.length; i < len; i++) { + var id = ids[i]; - this.dom.axis = document.createElement('div'); - this.dom.axis.className = 'group'; + var data = edgesData.get(id); + var edge = edges[id]; + if (edge) { + // update edge + edge.disconnect(); + edge.setProperties(data, this.constants); + edge.connect(); + } + else { + // create edge + edge = new Edge(data, this, this.constants); + this.edges[id] = edge; + } + } - // create a hidden marker to detect when the Timelines container is attached - // to the DOM, or the style of a parent of the Timeline is changed from - // display:none is changed to visible. - this.dom.marker = document.createElement('div'); - this.dom.marker.style.visibility = 'hidden'; - this.dom.marker.innerHTML = '?'; - this.dom.background.appendChild(this.dom.marker); + this._createBezierNodes(); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } + this.moving = true; + this._updateValueRange(edges); }; /** - * Set the group data for this group - * @param {Object} data Group data, can contain properties content and className + * Remove existing edges. Non existing ids will be ignored + * @param {Number[] | String[]} ids + * @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; + Network.prototype._removeEdges = function (ids) { + var edges = this.edges; + for (var i = 0, len = ids.length; i < len; i++) { + var id = ids[i]; + var edge = edges[id]; + if (edge) { + if (edge.via != null) { + delete this.sectors['support']['nodes'][edge.via.id]; + } + edge.disconnect(); + delete edges[id]; + } } - else { - this.dom.inner.innerHTML = this.groupId || ''; // groupId can be null + + this.moving = true; + this._updateValueRange(edges); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); } + this._updateCalculationNodes(); + }; - // update title - this.dom.label.title = data && data.title || ''; + /** + * Reconnect all edges + * @private + */ + Network.prototype._reconnectEdges = function() { + var id, + nodes = this.nodes, + edges = this.edges; + for (id in nodes) { + if (nodes.hasOwnProperty(id)) { + nodes[id].edges = []; + } + } - if (!this.dom.inner.firstChild) { - util.addClassName(this.dom.inner, 'hidden'); + for (id in edges) { + if (edges.hasOwnProperty(id)) { + var edge = edges[id]; + edge.from = null; + edge.to = null; + edge.connect(); + } } - 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; + 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); + } + } } - // update className - var className = data && data.className || null; - if (className != this.className) { - if (this.className) { - util.removeClassName(this.dom.label, className); - util.removeClassName(this.dom.foreground, className); - util.removeClassName(this.dom.background, className); - util.removeClassName(this.dom.axis, className); + // adjust the range of all objects + if (valueMin !== undefined && valueMax !== undefined) { + for (id in obj) { + if (obj.hasOwnProperty(id)) { + obj[id].setValueRange(valueMin, valueMax); + } } - util.addClassName(this.dom.label, className); - util.addClassName(this.dom.foreground, className); - util.addClassName(this.dom.background, className); - util.addClassName(this.dom.axis, className); } }; /** - * Get the width of the group label - * @return {number} width + * Redraw the network with the current data + * chart will be resized too. */ - Group.prototype.getLabelWidth = function() { - return this.props.label.width; + Network.prototype.redraw = function() { + this.setSize(this.constants.width, this.constants.height); + this._redraw(); }; - /** - * Repaint this group - * @param {{start: number, end: number}} range - * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin - * @param {boolean} [restack=false] Force restacking of all items - * @return {boolean} Returns true if the group is resized + * Redraw the network with the current data + * @private */ - Group.prototype.redraw = function(range, margin, restack) { - var resized = false; + Network.prototype._redraw = function() { + var ctx = this.frame.canvas.getContext('2d'); + // clear the canvas + var w = this.frame.canvas.width; + var h = this.frame.canvas.height; + ctx.clearRect(0, 0, w, h); - this.visibleItems = this._updateVisibleItems(this.orderedItems, this.visibleItems, range); + // set scaling and translation + ctx.save(); + ctx.translate(this.translation.x, this.translation.y); + ctx.scale(this.scale, this.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; + 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) + }; - util.forEach(this.items, function (item) { - item.dirty = true; - if (item.displayed) item.redraw(); - }); - restack = true; + this._doInAllSectors("_drawAllSectorNodes",ctx); + if (this.drag.dragging == false || this.drag.dragging === undefined || this.constants.hideEdgesOnDrag == false) { + this._doInAllSectors("_drawEdges",ctx); } - // reposition visible items vertically - if (this.itemSet.options.stack) { // TODO: ugly way to access options... - stack.stack(this.visibleItems, margin, restack); - } - else { // no stacking - stack.nostack(this.visibleItems, margin); + if (this.drag.dragging == false || this.drag.dragging === undefined || this.constants.hideNodesOnDrag == false) { + this._doInAllSectors("_drawNodes",ctx,false); } - // recalculate the height of the group - var height; - var visibleItems = this.visibleItems; - if (visibleItems.length) { - var min = visibleItems[0].top; - var max = visibleItems[0].top + visibleItems[0].height; - util.forEach(visibleItems, function (item) { - min = Math.min(min, item.top); - max = Math.max(max, (item.top + item.height)); - }); - if (min > margin.axis) { - // there is an empty gap between the lowest item and the axis - var offset = min - margin.axis; - max -= offset; - util.forEach(visibleItems, function (item) { - item.top -= offset; - }); - } - height = max + margin.item.vertical / 2; - } - else { - height = margin.axis + margin.item.vertical; + if (this.controlNodesActive == true) { + this._doInAllSectors("_drawControlNodes",ctx); } - height = Math.max(height, this.props.label.height); - - // calculate actual size and position - var foreground = this.dom.foreground; - this.top = foreground.offsetTop; - this.left = foreground.offsetLeft; - this.width = foreground.offsetWidth; - resized = util.updateProperty(this, 'height', height) || resized; - - // recalculate size of label - resized = util.updateProperty(this.props.label, 'width', this.dom.inner.clientWidth) || resized; - resized = util.updateProperty(this.props.label, 'height', this.dom.inner.clientHeight) || resized; - - // apply new height - this.dom.background.style.height = height + 'px'; - this.dom.foreground.style.height = height + 'px'; - this.dom.label.style.height = height + 'px'; - // update vertical position of items after they are re-stacked and the height of the group is calculated - for (var i = 0, ii = this.visibleItems.length; i < ii; i++) { - var item = this.visibleItems[i]; - item.repositionY(); - } + // this._doInSupportSector("_drawNodes",ctx,true); + // this._drawTree(ctx,"#F00F0F"); - return resized; + // restore original scaling and translation + ctx.restore(); }; /** - * Show this group: attach to the DOM + * Set the translation of the network + * @param {Number} offsetX Horizontal offset + * @param {Number} offsetY Vertical offset + * @private */ - Group.prototype.show = function() { - if (!this.dom.label.parentNode) { - this.itemSet.dom.labelSet.appendChild(this.dom.label); + Network.prototype._setTranslation = function(offsetX, offsetY) { + if (this.translation === undefined) { + this.translation = { + x: 0, + y: 0 + }; } - if (!this.dom.foreground.parentNode) { - this.itemSet.dom.foreground.appendChild(this.dom.foreground); + if (offsetX !== undefined) { + this.translation.x = offsetX; } - - if (!this.dom.background.parentNode) { - this.itemSet.dom.background.appendChild(this.dom.background); + if (offsetY !== undefined) { + this.translation.y = offsetY; } - if (!this.dom.axis.parentNode) { - this.itemSet.dom.axis.appendChild(this.dom.axis); - } + this.emit('viewChanged'); }; /** - * Hide this group: remove from the DOM + * Get the translation of the network + * @return {Object} translation An object with parameters x and y, both a number + * @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); - } + Network.prototype._getTranslation = function() { + return { + x: this.translation.x, + y: this.translation.y + }; + }; - var axis = this.dom.axis; - if (axis.parentNode) { - axis.parentNode.removeChild(axis); - } + /** + * Scale the network + * @param {Number} scale Scaling factor 1.0 is unscaled + * @private + */ + Network.prototype._setScale = function(scale) { + this.scale = scale; }; /** - * Add an item to the group - * @param {Item} item + * Get the current scale of the network + * @return {Number} scale Scaling factor 1.0 is unscaled + * @private */ - Group.prototype.add = function(item) { - this.items[item.id] = item; - item.setParent(this); - - if (this.visibleItems.indexOf(item) == -1) { - var range = this.itemSet.body.range; // TODO: not nice accessing the range like this - this._checkIfVisible(item, this.visibleItems, range); - } + Network.prototype._getScale = function() { + return this.scale; }; /** - * Remove an item from the group - * @param {Item} item + * 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 */ - Group.prototype.remove = function(item) { - delete this.items[item.id]; - item.setParent(this.itemSet); - - // remove from visible items - var index = this.visibleItems.indexOf(item); - if (index != -1) this.visibleItems.splice(index, 1); - - // TODO: also remove from ordered items? + Network.prototype._XconvertDOMtoCanvas = function(x) { + return (x - this.translation.x) / this.scale; }; /** - * Remove an item from the corresponding DataSet - * @param {Item} item + * 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 */ - Group.prototype.removeFromDataSet = function(item) { - this.itemSet.removeItem(item.id); + Network.prototype._XconvertCanvasToDOM = function(x) { + return x * this.scale + this.translation.x; }; /** - * Reorder the items + * 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 */ - Group.prototype.order = function() { - var array = util.toArray(this.items); - this.orderedItems.byStart = array; - this.orderedItems.byEnd = this._constructByEndArray(array); - - stack.orderByStart(this.orderedItems.byStart); - stack.orderByEnd(this.orderedItems.byEnd); + Network.prototype._YconvertDOMtoCanvas = function(y) { + return (y - this.translation.y) / this.scale; }; /** - * Create an array containing all items being a range (having an end date) - * @param {Item[]} array - * @returns {ItemRange[]} + * 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 */ - Group.prototype._constructByEndArray = function(array) { - var endArray = []; - - for (var i = 0; i < array.length; i++) { - if (array[i] instanceof ItemRange) { - endArray.push(array[i]); - } - } - return endArray; + Network.prototype._YconvertCanvasToDOM = function(y) { + return y * this.scale + this.translation.y ; }; + /** - * 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 + * + * @param {object} pos = {x: number, y: number} + * @returns {{x: number, y: number}} + * @constructor */ - Group.prototype._updateVisibleItems = function(orderedItems, visibleItems, range) { - var initialPosByStart, - newVisibleItems = [], - i; + Network.prototype.canvasToDOM = function(pos) { + return {x:this._XconvertCanvasToDOM(pos.x),y:this._YconvertCanvasToDOM(pos.y)}; + } - // first check if the items that were in view previously are still in view. - // this handles the case for the ItemRange that is both before and after the current one. - if (visibleItems.length > 0) { - for (i = 0; i < visibleItems.length; i++) { - this._checkIfVisible(visibleItems[i], newVisibleItems, range); - } - } + /** + * + * @param {object} pos = {x: number, y: number} + * @returns {{x: number, y: number}} + * @constructor + */ + Network.prototype.DOMtoCanvas = function(pos) { + return {x:this._XconvertDOMtoCanvas(pos.x),y:this._YconvertDOMtoCanvas(pos.y)}; + } - // If there were no visible items previously, use binarySearch to find a visible ItemPoint or ItemRange (based on startTime) - if (newVisibleItems.length == 0) { - initialPosByStart = util.binarySearch(orderedItems.byStart, range, 'data','start'); - } - else { - initialPosByStart = orderedItems.byStart.indexOf(newVisibleItems[0]); + /** + * Redraw all nodes + * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); + * @param {CanvasRenderingContext2D} ctx + * @param {Boolean} [alwaysShow] + * @private + */ + Network.prototype._drawNodes = function(ctx,alwaysShow) { + if (alwaysShow === undefined) { + alwaysShow = false; } - // use visible search to find a visible ItemRange (only based on endTime) - var initialPosByEnd = util.binarySearch(orderedItems.byEnd, range, 'data','end'); + // first draw the unselected nodes + var nodes = this.nodes; + var selected = []; - // if we found a initial ID to use, trace it up and down until we meet an invisible item. - if (initialPosByStart != -1) { - for (i = initialPosByStart; i >= 0; i--) { - if (this._checkIfInvisible(orderedItems.byStart[i], newVisibleItems, range)) {break;} - } - for (i = initialPosByStart + 1; i < orderedItems.byStart.length; i++) { - if (this._checkIfInvisible(orderedItems.byStart[i], newVisibleItems, range)) {break;} + for (var id in nodes) { + if (nodes.hasOwnProperty(id)) { + nodes[id].setScaleAndPos(this.scale,this.canvasTopLeft,this.canvasBottomRight); + if (nodes[id].isSelected()) { + selected.push(id); + } + else { + if (nodes[id].inArea() || alwaysShow) { + nodes[id].draw(ctx); + } + } } } - // if we found a initial ID to use, trace it up and down until we meet an invisible item. - if (initialPosByEnd != -1) { - for (i = initialPosByEnd; i >= 0; i--) { - if (this._checkIfInvisible(orderedItems.byEnd[i], newVisibleItems, range)) {break;} - } - for (i = initialPosByEnd + 1; i < orderedItems.byEnd.length; i++) { - if (this._checkIfInvisible(orderedItems.byEnd[i], newVisibleItems, range)) {break;} + // 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); } } - - return newVisibleItems; }; - - /** - * this function checks if an item is invisible. If it is NOT we make it visible - * and add it to the global visible items. If it is, return true. - * - * @param {Item} item - * @param {Item[]} visibleItems - * @param {{start:number, end:number}} range - * @returns {boolean} + * Redraw all edges + * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); + * @param {CanvasRenderingContext2D} ctx * @private */ - Group.prototype._checkIfInvisible = function(item, visibleItems, range) { - if (item.isVisible(range)) { - if (!item.displayed) item.show(); - item.repositionX(); - if (visibleItems.indexOf(item) == -1) { - visibleItems.push(item); + Network.prototype._drawEdges = function(ctx) { + var edges = this.edges; + for (var id in edges) { + if (edges.hasOwnProperty(id)) { + var edge = edges[id]; + edge.setScale(this.scale); + if (edge.connected) { + edges[id].draw(ctx); + } } - return false; - } - else { - if (item.displayed) item.hide(); - return true; } }; /** - * 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 + * Redraw all edges + * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); + * @param {CanvasRenderingContext2D} ctx * @private */ - Group.prototype._checkIfVisible = function(item, visibleItems, range) { - if (item.isVisible(range)) { - if (!item.displayed) item.show(); - // reposition item horizontally - item.repositionX(); - visibleItems.push(item); - } - else { - if (item.displayed) item.hide(); + Network.prototype._drawControlNodes = function(ctx) { + var edges = this.edges; + for (var id in edges) { + if (edges.hasOwnProperty(id)) { + edges[id]._drawControlNodes(ctx); + } } }; - module.exports = Group; - - -/***/ }, -/* 30 */ -/***/ function(module, exports, __webpack_require__) { - - // Utility functions for ordering and stacking of items - var EPSILON = 0.001; // used when checking collisions, to prevent round-off errors - /** - * Order items by their start data - * @param {Item[]} items + * Find a stable position for all nodes + * @private */ - exports.orderByStart = function(items) { - items.sort(function (a, b) { - return a.data.start - b.data.start; - }); - }; + Network.prototype._stabilize = function() { + if (this.constants.freezeForStabilization == true) { + this._freezeDefinedNodes(); + } - /** - * 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; - - return aTime - bTime; - }); + // find stable position + var count = 0; + while (this.moving && count < this.constants.stabilizationIterations) { + this._physicsTick(); + count++; + } + this.zoomExtent(false,true); + if (this.constants.freezeForStabilization == true) { + this._restoreFrozenNodes(); + } + this.emit("stabilized",{iterations:count}); }; /** - * 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 + * 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 */ - exports.stack = function(items, margin, force) { - var i, iMax; - - if (force) { - // reset top position of all items - for (i = 0, iMax = items.length; i < iMax; i++) { - items[i].top = null; - } - } - - // calculate new, non-overlapping positions - for (i = 0, iMax = items.length; i < iMax; i++) { - var item = items[i]; - if (item.top === null) { - // initialize top position - item.top = margin.axis; - - do { - // TODO: optimize checking for overlap. when there is a gap without items, - // you only need to check for items from the next item on, not from zero - var collidingItem = null; - for (var j = 0, jj = items.length; j < jj; j++) { - var other = items[j]; - if (other.top !== null && other !== item && exports.collision(item, other, margin.item)) { - collidingItem = other; - break; - } - } - - if (collidingItem != null) { - // There is a collision. Reposition the items above the colliding element - item.top = collidingItem.top + collidingItem.height + margin.item.vertical; - } - } while (collidingItem); + Network.prototype._freezeDefinedNodes = function() { + var nodes = this.nodes; + for (var id in nodes) { + if (nodes.hasOwnProperty(id)) { + if (nodes[id].x != null && nodes[id].y != null) { + nodes[id].fixedData.x = nodes[id].xFixed; + nodes[id].fixedData.y = nodes[id].yFixed; + nodes[id].xFixed = true; + nodes[id].yFixed = true; + } } } }; /** - * 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. + * Unfreezes the nodes that have been frozen by _freezeDefinedNodes. + * + * @private */ - exports.nostack = function(items, margin) { - var i, iMax; - - // reset top position of all items - for (i = 0, iMax = items.length; i < iMax; i++) { - items[i].top = margin.axis; + Network.prototype._restoreFrozenNodes = function() { + var nodes = this.nodes; + for (var id in nodes) { + if (nodes.hasOwnProperty(id)) { + if (nodes[id].fixedData.x != null) { + nodes[id].xFixed = nodes[id].fixedData.x; + nodes[id].yFixed = nodes[id].fixedData.y; + } + } } }; + /** - * Test if the two provided items collide - * The items must have parameters left, width, top, and height. - * @param {Item} a The first item - * @param {Item} b The second item - * @param {{horizontal: number, vertical: number}} margin - * An object containing a horizontal and vertical - * minimum required margin. - * @return {boolean} true if a and b collide, else false + * Check if any of the nodes is still moving + * @param {number} vmin the minimum velocity considered as 'moving' + * @return {boolean} true if moving, false if non of the nodes is moving + * @private */ - exports.collision = function(a, b, margin) { - return ((a.left - margin.horizontal + EPSILON) < (b.left + b.width) && - (a.left + a.width + margin.horizontal - EPSILON) > b.left && - (a.top - margin.vertical + EPSILON) < (b.top + b.height) && - (a.top + a.height + margin.vertical - EPSILON) > b.top); + Network.prototype._isMoving = function(vmin) { + var nodes = this.nodes; + for (var id in nodes) { + if (nodes.hasOwnProperty(id) && nodes[id].isMoving(vmin)) { + return true; + } + } + return false; }; -/***/ }, -/* 31 */ -/***/ function(module, exports, __webpack_require__) { - - var Hammer = __webpack_require__(18); - var Item = __webpack_require__(32); - /** - * @constructor ItemRange - * @extends Item - * @param {Object} data Object containing parameters start, end - * content, className. - * @param {{toScreen: function, toTime: function}} conversion - * Conversion functions from time to screen and vice versa - * @param {Object} [options] Configuration options - * // TODO: describe options + * /** + * Perform one discrete step for all nodes + * + * @private */ - function ItemRange (data, conversion, options) { - this.props = { - content: { - width: 0 - } - }; - this.overflow = false; // if contents can overflow (css styling), this flag is set to true + Network.prototype._discreteStepNodes = function() { + var interval = this.physicsDiscreteStepsize; + var nodes = this.nodes; + var nodeId; + var nodesPresent = false; - // validate data - if (data) { - if (data.start == undefined) { - throw new Error('Property "start" missing in item ' + data.id); + if (this.constants.maxVelocity > 0) { + for (nodeId in nodes) { + if (nodes.hasOwnProperty(nodeId)) { + nodes[nodeId].discreteStepLimited(interval, this.constants.maxVelocity); + nodesPresent = true; + } } - if (data.end == undefined) { - throw new Error('Property "end" missing in item ' + data.id); + } + else { + for (nodeId in nodes) { + if (nodes.hasOwnProperty(nodeId)) { + nodes[nodeId].discreteStep(interval); + nodesPresent = true; + } } } - Item.call(this, data, conversion, options); - } - - ItemRange.prototype = new Item (null, null, null); + if (nodesPresent == true) { + var vminCorrected = this.constants.minVelocity / Math.max(this.scale,0.05); + if (vminCorrected > 0.5*this.constants.maxVelocity) { + this.moving = true; + } + else { + this.moving = this._isMoving(vminCorrected); + if (this.moving == false) { + this.emit("stabilized",{iterations:null}); + } + this.moving = this.moving || this.configurePhysics; - ItemRange.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 + * A single simulation step (or "tick") in the physics simulation + * + * @private */ - ItemRange.prototype.isVisible = function(range) { - // determine visibility - return (this.data.start < range.end) && (this.data.end > range.start); + Network.prototype._physicsTick = function() { + if (!this.freezeSimulation) { + if (this.moving == true) { + this._doInAllActiveSectors("_initializeForceCalculation"); + this._doInAllActiveSectors("_discreteStepNodes"); + if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { + this._doInSupportSector("_discreteStepNodes"); + } + this._findCenter(this._getRange()) + } + } }; + /** - * Repaint the item + * This function runs one step of the animation. It calls an x amount of physics ticks and one render tick. + * It reschedules itself at the beginning of the function + * + * @private */ - ItemRange.prototype.redraw = function() { - var dom = this.dom; - if (!dom) { - // create DOM - this.dom = {}; - dom = this.dom; - - // background box - dom.box = document.createElement('div'); - // className is updated in redraw() + Network.prototype._animationStep = function() { + // reset the timer so a new scheduled animation step can be set + this.timer = undefined; + // handle the keyboad movement + this._handleNavigation(); - // contents box - dom.content = document.createElement('div'); - dom.content.className = 'content'; - dom.box.appendChild(dom.content); + // this schedules a new animation step + this.start(); - // attach this item as attribute - dom.box['timeline-item'] = this; + // start the physics simulation + var calculationTime = Date.now(); + var maxSteps = 1; + this._physicsTick(); + var timeRequired = Date.now() - calculationTime; + while (timeRequired < 0.9*(this.renderTimestep - this.renderTime) && maxSteps < this.maxPhysicsTicksPerRender) { + this._physicsTick(); + timeRequired = Date.now() - calculationTime; + maxSteps++; } + // start the rendering process + var renderTime = Date.now(); + this._redraw(); + this.renderTime = Date.now() - renderTime; - // append DOM to parent DOM - if (!this.parent) { - throw new Error('Cannot redraw item: no parent attached'); - } - if (!dom.box.parentNode) { - var foreground = this.parent.dom.foreground; - if (!foreground) { - throw new Error('Cannot redraw time axis: parent has no foreground container element'); - } - foreground.appendChild(dom.box); - } - this.displayed = true; - - // update contents - if (this.data.content != this.content) { - this.content = this.data.content; - if (this.content instanceof Element) { - dom.content.innerHTML = ''; - dom.content.appendChild(this.content); - } - else if (this.data.content != undefined) { - dom.content.innerHTML = this.content; - } - else { - throw new Error('Property "content" missing in item ' + this.data.id); - } + }; - this.dirty = true; - } + if (typeof window !== 'undefined') { + window.requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame || + window.webkitRequestAnimationFrame || window.msRequestAnimationFrame; + } - // update title - if (this.data.title != this.title) { - dom.box.title = this.data.title; - this.title = this.data.title; - } + /** + * Schedule a animation step with the refreshrate interval. + */ + Network.prototype.start = function() { + if (this.moving == true || this.xIncrement != 0 || this.yIncrement != 0 || this.zoomIncrement != 0) { + if (!this.timer) { + var ua = navigator.userAgent.toLowerCase(); - // update class - var className = (this.data.className ? (' ' + this.data.className) : '') + - (this.selected ? ' selected' : ''); - if (this.className != className) { - this.className = className; - dom.box.className = this.baseClassName + className; + var requiresTimeout = false; + if (ua.indexOf('msie 9.0') != -1) { // IE 9 + requiresTimeout = true; + } + else if (ua.indexOf('safari') != -1) { // safari + if (ua.indexOf('chrome') <= -1) { + requiresTimeout = true; + } + } - this.dirty = true; + if (requiresTimeout == true) { + this.timer = window.setTimeout(this._animationStep.bind(this), this.renderTimestep); // wait this.renderTimeStep milliseconds and perform the animation step function + } + else{ + this.timer = window.requestAnimationFrame(this._animationStep.bind(this), this.renderTimestep); // wait this.renderTimeStep milliseconds and perform the animation step function + } + } } - - // recalculate size - if (this.dirty) { - // determine from css whether this box has overflow - this.overflow = window.getComputedStyle(dom.content).overflow !== 'hidden'; - - this.props.content.width = this.dom.content.offsetWidth; - this.height = this.dom.box.offsetHeight; - - this.dirty = false; + else { + this._redraw(); } - - 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. + * Move the network according to the keyboard presses. + * + * @private */ - ItemRange.prototype.show = function() { - if (!this.displayed) { - this.redraw(); + Network.prototype._handleNavigation = function() { + if (this.xIncrement != 0 || this.yIncrement != 0) { + var translation = this._getTranslation(); + this._setTranslation(translation.x+this.xIncrement, translation.y+this.yIncrement); + } + if (this.zoomIncrement != 0) { + var center = { + x: this.frame.canvas.clientWidth / 2, + y: this.frame.canvas.clientHeight / 2 + }; + this._zoom(this.scale*(1 + this.zoomIncrement), center); } }; + /** - * Hide the item from the DOM (when visible) - * @return {Boolean} changed + * Freeze the _animationStep */ - ItemRange.prototype.hide = function() { - if (this.displayed) { - var box = this.dom.box; - - if (box.parentNode) { - box.parentNode.removeChild(box); - } - - this.top = null; - this.left = null; - - this.displayed = false; + Network.prototype.toggleFreeze = function() { + if (this.freezeSimulation == false) { + this.freezeSimulation = true; + } + else { + this.freezeSimulation = false; + this.start(); } }; + /** - * Reposition the item horizontally - * @Override + * This function cleans the support nodes if they are not needed and adds them when they are. + * + * @param {boolean} [disableStart] + * @private */ - ItemRange.prototype.repositionX = function() { - var props = this.props, - parentWidth = this.parent.width, - start = this.conversion.toScreen(this.data.start), - end = this.conversion.toScreen(this.data.end), - padding = this.options.padding, - contentLeft; - - // limit the width of the this, as browsers cannot draw very wide divs - if (start < -parentWidth) { - start = -parentWidth; + Network.prototype._configureSmoothCurves = function(disableStart) { + if (disableStart === undefined) { + disableStart = true; } - if (end > 2 * parentWidth) { - end = 2 * parentWidth; + if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { + this._createBezierNodes(); + // cleanup unused support nodes + for (var nodeId in this.sectors['support']['nodes']) { + if (this.sectors['support']['nodes'].hasOwnProperty(nodeId)) { + if (this.edges[this.sectors['support']['nodes'][nodeId].parentEdgeId] === undefined) { + delete this.sectors['support']['nodes'][nodeId]; + } + } + } + } + else { + // delete the support nodes + this.sectors['support']['nodes'] = {}; + for (var edgeId in this.edges) { + if (this.edges.hasOwnProperty(edgeId)) { + this.edges[edgeId].via = null; + } + } } - var boxWidth = Math.max(end - start, 1); - if (this.overflow) { - // when range exceeds left of the window, position the contents at the left of the visible area - contentLeft = Math.max(-start, 0); - this.left = start; - this.width = boxWidth + this.props.content.width; - // Note: The calculation of width is an optimistic calculation, giving - // a width which will not change when moving the Timeline - // So no restacking needed, which is nicer for the eye; + this._updateCalculationNodes(); + if (!disableStart) { + this.moving = true; + this.start(); } - else { // no overflow - // when range exceeds left of the window, position the contents at the left of the visible area - if (start < 0) { - contentLeft = Math.min(-start, - (end - start - props.content.width - 2 * padding)); - // TODO: remove the need for options.padding. it's terrible. - } - else { - contentLeft = 0; - } + }; - this.left = start; - this.width = boxWidth; - } - this.dom.box.style.left = this.left + 'px'; - this.dom.box.style.width = boxWidth + 'px'; - this.dom.content.style.left = contentLeft + 'px'; + /** + * Bezier curves require an anchor point to calculate the smooth flow. These points are nodes. These nodes are invisible but + * are used for the force calculation. + * + * @private + */ + Network.prototype._createBezierNodes = function() { + if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { + for (var edgeId in this.edges) { + if (this.edges.hasOwnProperty(edgeId)) { + var edge = this.edges[edgeId]; + if (edge.via == null) { + var nodeId = "edgeId:".concat(edge.id); + this.sectors['support']['nodes'][nodeId] = new Node( + {id:nodeId, + mass:1, + shape:'circle', + image:"", + internalMultiplier:1 + },{},{},this.constants); + edge.via = this.sectors['support']['nodes'][nodeId]; + edge.via.parentEdgeId = edge.id; + edge.positionBezierNode(); + } + } + } + } }; /** - * Reposition the item vertically - * @Override + * load the functions that load the mixins into the prototype. + * + * @private */ - ItemRange.prototype.repositionY = function() { - var orientation = this.options.orientation, - box = this.dom.box; - - if (orientation == 'top') { - box.style.top = this.top + 'px'; - } - else { - box.style.top = (this.parent.height - this.top - this.height) + 'px'; + Network.prototype._initializeMixinLoaders = function () { + for (var mixin in MixinLoader) { + if (MixinLoader.hasOwnProperty(mixin)) { + Network.prototype[mixin] = MixinLoader[mixin]; + } } }; /** - * Repaint a drag area on the left side of the range when the range is selected - * @protected + * Load the XY positions of the nodes into the dataset. */ - ItemRange.prototype._repaintDragLeft = function () { - if (this.selected && this.options.editable.updateTime && !this.dom.dragLeft) { - // create and show drag area - var dragLeft = document.createElement('div'); - dragLeft.className = 'drag-left'; - dragLeft.dragLeftItem = this; - - // TODO: this should be redundant? - Hammer(dragLeft, { - preventDefault: true - }).on('drag', function () { - //console.log('drag left') - }); - - this.dom.box.appendChild(dragLeft); - this.dom.dragLeft = dragLeft; - } - else if (!this.selected && this.dom.dragLeft) { - // delete drag area - if (this.dom.dragLeft.parentNode) { - this.dom.dragLeft.parentNode.removeChild(this.dom.dragLeft); + Network.prototype.storePosition = function() { + var dataArray = []; + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + var node = this.nodes[nodeId]; + var allowedToMoveX = !this.nodes.xFixed; + var allowedToMoveY = !this.nodes.yFixed; + if (this.nodesData._data[nodeId].x != Math.round(node.x) || this.nodesData._data[nodeId].y != Math.round(node.y)) { + dataArray.push({id:nodeId,x:Math.round(node.x),y:Math.round(node.y),allowedToMoveX:allowedToMoveX,allowedToMoveY:allowedToMoveY}); + } } - this.dom.dragLeft = null; } + this.nodesData.update(dataArray); }; + /** - * Repaint a drag area on the right side of the range when the range is selected - * @protected + * Center a node in view. + * + * @param {Number} nodeId + * @param {Number} [zoomLevel] */ - ItemRange.prototype._repaintDragRight = function () { - if (this.selected && this.options.editable.updateTime && !this.dom.dragRight) { - // create and show drag area - var dragRight = document.createElement('div'); - dragRight.className = 'drag-right'; - dragRight.dragRightItem = this; + Network.prototype.focusOnNode = function (nodeId, zoomLevel) { + if (this.nodes.hasOwnProperty(nodeId)) { + if (zoomLevel === undefined) { + zoomLevel = this._getScale(); + } + var nodePosition= {x: this.nodes[nodeId].x, y: this.nodes[nodeId].y}; - // TODO: this should be redundant? - Hammer(dragRight, { - preventDefault: true - }).on('drag', function () { - //console.log('drag right') - }); + var requiredScale = zoomLevel; + this._setScale(requiredScale); - this.dom.box.appendChild(dragRight); - this.dom.dragRight = dragRight; + var canvasCenter = this.DOMtoCanvas({x:0.5 * this.frame.canvas.width,y:0.5 * this.frame.canvas.height}); + var translation = this._getTranslation(); + + var distanceFromCenter = {x:canvasCenter.x - nodePosition.x, + y:canvasCenter.y - nodePosition.y}; + + this._setTranslation(translation.x + requiredScale * distanceFromCenter.x, + translation.y + requiredScale * distanceFromCenter.y); + this.redraw(); } - else if (!this.selected && this.dom.dragRight) { - // delete drag area - if (this.dom.dragRight.parentNode) { - this.dom.dragRight.parentNode.removeChild(this.dom.dragRight); - } - this.dom.dragRight = null; + else { + console.log("This nodeId cannot be found.") } }; - module.exports = ItemRange; + module.exports = Network; /***/ }, -/* 32 */ +/* 33 */ /***/ function(module, exports, __webpack_require__) { - var Hammer = __webpack_require__(18); + var util = __webpack_require__(2); + var Node = __webpack_require__(36); /** - * @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 + * @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 Item (data, conversion, options) { - this.id = null; - this.parent = null; - this.data = data; - this.dom = null; - this.conversion = conversion || {}; - this.options = options || {}; + function Edge (properties, network, networkConstants) { + if (!network) { + throw "No network provided"; + } + var fields = ['edges','physics']; + var constants = util.selectiveBridgeObject(fields,networkConstants); + this.options = constants.edges; + this.physics = constants.physics; + this.options['smoothCurves'] = networkConstants['smoothCurves']; + + this.network = network; + + // initialize variables + this.id = undefined; + this.fromId = undefined; + this.toId = undefined; + this.title = undefined; + this.widthSelected = this.options.width * this.options.widthSelectionMultiplier; + this.value = undefined; this.selected = false; - this.displayed = false; - this.dirty = true; + this.hover = false; - this.top = null; - this.left = null; - this.width = null; - this.height = null; + this.from = null; // a node + this.to = null; // a node + this.via = null; // a temp node + + // we use this to be able to reconnect the edge to a cluster if its node is put into a cluster + // by storing the original information we can revert to the original connection when the cluser is opened. + this.originalFromId = []; + this.originalToId = []; + + this.connected = false; + + this.widthFixed = false; + this.lengthFixed = false; + + this.setProperties(properties); + + this.controlNodesEnabled = false; + this.controlNodes = {from:null, to:null, positions:{}}; + this.connectedNode = null; } /** - * Select current item + * Set or overwrite properties for the edge + * @param {Object} properties an object with properties + * @param {Object} constants and object with default, global properties */ - Item.prototype.select = function() { - this.selected = true; - if (this.displayed) this.redraw(); - }; + Edge.prototype.setProperties = function(properties) { + if (!properties) { + return; + } - /** - * Unselect current item - */ - Item.prototype.unselect = function() { - this.selected = false; - if (this.displayed) this.redraw(); - }; + var fields = ['style','fontSize','fontFace','fontColor','fontFill','width', + 'widthSelectionMultiplier','hoverWidth','arrowScaleFactor','dash' + ]; + util.selectiveDeepExtend(fields, this.options, properties); - /** - * Set a parent for the item - * @param {ItemSet | Group} parent - */ - Item.prototype.setParent = function(parent) { - if (this.displayed) { - this.hide(); - this.parent = parent; - if (this.parent) { - this.show(); + if (properties.from !== undefined) {this.fromId = properties.from;} + if (properties.to !== undefined) {this.toId = properties.to;} + + if (properties.id !== undefined) {this.id = properties.id;} + if (properties.label !== undefined) {this.label = properties.label;} + + if (properties.title !== undefined) {this.title = properties.title;} + if (properties.value !== undefined) {this.value = properties.value;} + if (properties.length !== undefined) {this.physics.springLength = properties.length;} + + // scale the arrow + if (properties.arrowScaleFactor !== undefined) {this.options.arrowScaleFactor = properties.arrowScaleFactor;} + + if (properties.inheritColor !== undefined) {this.options.inheritColor = properties.inheritColor;} + + if (properties.color !== undefined) { + this.options.inheritColor = false; + if (util.isString(properties.color)) { + this.options.color.color = properties.color; + this.options.color.highlight = properties.color; + } + else { + if (properties.color.color !== undefined) {this.options.color.color = properties.color.color;} + if (properties.color.highlight !== undefined) {this.options.color.highlight = properties.color.highlight;} + if (properties.color.hover !== undefined) {this.options.color.hover = properties.color.hover;} } } - else { - this.parent = parent; + + // A node is connected when it has a from and to node. + this.connect(); + + this.widthFixed = this.widthFixed || (properties.width !== undefined); + this.lengthFixed = this.lengthFixed || (properties.length !== undefined); + + 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; } }; /** - * 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 + * Connect an edge to its nodes */ - Item.prototype.isVisible = function(range) { - // Should be implemented by Item implementations - return false; - }; + Edge.prototype.connect = function () { + this.disconnect(); - /** - * Show the Item in the DOM (when not already visible) - * @return {Boolean} changed - */ - Item.prototype.show = function() { - return false; + this.from = this.network.nodes[this.fromId] || null; + this.to = this.network.nodes[this.toId] || null; + this.connected = (this.from && this.to); + + if (this.connected) { + this.from.attachEdge(this); + this.to.attachEdge(this); + } + else { + if (this.from) { + this.from.detachEdge(this); + } + if (this.to) { + this.to.detachEdge(this); + } + } }; /** - * Hide the Item from the DOM (when visible) - * @return {Boolean} changed + * Disconnect an edge from its nodes */ - Item.prototype.hide = function() { - return false; + Edge.prototype.disconnect = function () { + if (this.from) { + this.from.detachEdge(this); + this.from = null; + } + if (this.to) { + this.to.detachEdge(this); + this.to = null; + } + + this.connected = false; }; /** - * Repaint the item + * get the title of this edge. + * @return {string} title The title of the edge, or undefined when no title + * has been set. */ - Item.prototype.redraw = function() { - // should be implemented by the item + Edge.prototype.getTitle = function() { + return typeof this.title === "function" ? this.title() : this.title; }; + /** - * Reposition the Item horizontally + * Retrieve the value of the edge. Can be undefined + * @return {Number} value */ - Item.prototype.repositionX = function() { - // should be implemented by the item + Edge.prototype.getValue = function() { + return this.value; }; /** - * Reposition the Item vertically + * Adjust the value range of the edge. The edge will adjust it's width + * based on its value. + * @param {Number} min + * @param {Number} max */ - Item.prototype.repositionY = function() { - // should be implemented by the item + Edge.prototype.setValueRange = function(min, max) { + if (!this.widthFixed && this.value !== undefined) { + var scale = (this.options.widthMax - this.options.widthMin) / (max - min); + this.options.width= (this.value - min) * scale + this.options.widthMin; + this.widthSelected = this.options.width* this.options.widthSelectionMultiplier; + } }; /** - * Repaint a delete button on the top right of the item when the item is selected - * @param {HTMLElement} anchor - * @protected + * 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 */ - Item.prototype._repaintDeleteButton = function (anchor) { - if (this.selected && this.options.editable.remove && !this.dom.deleteButton) { - // create and show button - var me = this; + Edge.prototype.draw = function(ctx) { + throw "Method draw not initialized in edge"; + }; - var deleteButton = document.createElement('div'); - deleteButton.className = 'delete'; - deleteButton.title = 'Delete this 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 + */ + 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; - Hammer(deleteButton, { - preventDefault: true - }).on('tap', function (event) { - me.parent.removeFromDataSet(me); - event.stopPropagation(); - }); + var dist = this._getDistanceToEdge(xFrom, yFrom, xTo, yTo, xObj, yObj); - anchor.appendChild(deleteButton); - this.dom.deleteButton = deleteButton; + return (dist < distMax); } - 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; + else { + return false } }; - module.exports = Item; - - -/***/ }, -/* 33 */ -/***/ function(module, exports, __webpack_require__) { - - var Item = __webpack_require__(32); - - /** - * @constructor ItemBox - * @extends Item - * @param {Object} data Object containing parameters start - * content, className. - * @param {{toScreen: function, toTime: function}} conversion - * Conversion functions from time to screen and vice versa - * @param {Object} [options] Configuration options - * // TODO: describe available options - */ - function ItemBox (data, conversion, options) { - this.props = { - dot: { - width: 0, - height: 0 - }, - line: { - width: 0, - height: 0 - } - }; - - // validate data - if (data) { - if (data.start == undefined) { - throw new Error('Property "start" missing in item ' + data); - } + Edge.prototype._getColor = function() { + var colorObj = this.options.color; + if (this.options.inheritColor == "to") { + colorObj = { + highlight: this.to.options.color.highlight.border, + hover: this.to.options.color.hover.border, + color: this.to.options.color.border + }; + } + else if (this.options.inheritColor == "from" || this.options.inheritColor == true) { + colorObj = { + highlight: this.from.options.color.highlight.border, + hover: this.from.options.color.hover.border, + color: this.from.options.color.border + }; } - Item.call(this, data, conversion, options); + if (this.selected == true) {return colorObj.highlight;} + else if (this.hover == true) {return colorObj.hover;} + else {return colorObj.color;} } - ItemBox.prototype = new Item (null, null, null); - - /** - * Check whether this item is visible inside given range - * @returns {{start: Number, end: Number}} range with a timestamp for start and end - * @returns {boolean} True if visible - */ - ItemBox.prototype.isVisible = function(range) { - // determine visibility - // TODO: account for the real width of the item. Right now we just add 1/4 to the window - var interval = (range.end - range.start) / 4; - return (this.data.start > range.start - interval) && (this.data.start < range.end + interval); - }; /** - * Repaint the item + * 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 */ - ItemBox.prototype.redraw = function() { - var dom = this.dom; - if (!dom) { - // create DOM - this.dom = {}; - dom = this.dom; - - // create main box - dom.box = document.createElement('DIV'); - - // contents box (inside the background box). used for making margins - dom.content = document.createElement('DIV'); - dom.content.className = 'content'; - dom.box.appendChild(dom.content); - - // line to axis - dom.line = document.createElement('DIV'); - dom.line.className = 'line'; - - // dot on axis - dom.dot = document.createElement('DIV'); - dom.dot.className = 'dot'; + Edge.prototype._drawLine = function(ctx) { + // set style + ctx.strokeStyle = this._getColor(); + ctx.lineWidth = this._getLineWidth(); - // attach this item as attribute - dom.box['timeline-item'] = this; - } + if (this.from != this.to) { + // draw line + var via = this._line(ctx); - // append DOM to parent DOM - if (!this.parent) { - throw new Error('Cannot redraw item: no parent attached'); - } - if (!dom.box.parentNode) { - var foreground = this.parent.dom.foreground; - if (!foreground) throw new Error('Cannot redraw time axis: parent has no foreground container element'); - foreground.appendChild(dom.box); - } - if (!dom.line.parentNode) { - var background = this.parent.dom.background; - if (!background) throw new Error('Cannot redraw time axis: parent has no background container element'); - background.appendChild(dom.line); - } - if (!dom.dot.parentNode) { - var axis = this.parent.dom.axis; - if (!background) throw new Error('Cannot redraw time axis: parent has no axis container element'); - axis.appendChild(dom.dot); + // 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); + } } - this.displayed = true; - - // update contents - if (this.data.content != this.content) { - this.content = this.data.content; - if (this.content instanceof Element) { - dom.content.innerHTML = ''; - dom.content.appendChild(this.content); + else { + var x, y; + var radius = this.physics.springLength / 4; + var node = this.from; + if (!node.width) { + node.resize(ctx); } - else if (this.data.content != undefined) { - dom.content.innerHTML = this.content; + if (node.width > node.height) { + x = node.x + node.width / 2; + y = node.y - radius; } else { - throw new Error('Property "content" missing in item ' + this.data.id); + x = node.x + radius; + y = node.y - node.height / 2; } - - this.dirty = true; + this._circle(ctx, x, y, radius); + point = this._pointOnCircle(x, y, radius, 0.5); + this._label(ctx, this.label, point.x, point.y); } - - // update title - if (this.data.title != this.title) { - dom.box.title = this.data.title; - this.title = this.data.title; - } - - // update class - var className = (this.data.className? ' ' + this.data.className : '') + - (this.selected ? ' selected' : ''); - if (this.className != className) { - this.className = className; - dom.box.className = 'item box' + className; - dom.line.className = 'item line' + className; - dom.dot.className = 'item dot' + className; - - this.dirty = true; - } - - // recalculate size - if (this.dirty) { - this.props.dot.height = dom.dot.offsetHeight; - this.props.dot.width = dom.dot.offsetWidth; - this.props.line.width = dom.line.offsetWidth; - this.width = dom.box.offsetWidth; - this.height = dom.box.offsetHeight; - - this.dirty = false; - } - - this._repaintDeleteButton(dom.box); }; /** - * Show the item in the DOM (when not already displayed). The items DOM will - * be created when needed. + * Get the line width of the edge. Depends on width and whether one of the + * connected nodes is selected. + * @return {Number} width + * @private */ - ItemBox.prototype.show = function() { - if (!this.displayed) { - this.redraw(); + Edge.prototype._getLineWidth = function() { + if (this.selected == true) { + return Math.min(this.widthSelected, this.options.widthMax)*this.networkScaleInv; } - }; - - /** - * Hide the item from the DOM (when visible) - */ - ItemBox.prototype.hide = function() { - if (this.displayed) { - var dom = this.dom; - - if (dom.box.parentNode) dom.box.parentNode.removeChild(dom.box); - if (dom.line.parentNode) dom.line.parentNode.removeChild(dom.line); - if (dom.dot.parentNode) dom.dot.parentNode.removeChild(dom.dot); - - this.top = null; - this.left = null; - - this.displayed = false; + else { + if (this.hover == true) { + return Math.min(this.options.hoverWidth, this.options.widthMax)*this.networkScaleInv; + } + else { + return this.options.width*this.networkScaleInv; + } } }; - /** - * Reposition the item horizontally - * @Override - */ - ItemBox.prototype.repositionX = function() { - var start = this.conversion.toScreen(this.data.start), - align = this.options.align, - left, - box = this.dom.box, - line = this.dom.line, - dot = this.dom.dot; + Edge.prototype._getViaCoordinates = function () { + var xVia = null; + var yVia = null; + var factor = this.options.smoothCurves.roundness; + var type = this.options.smoothCurves.type; - // calculate left position of the box - if (align == 'right') { - this.left = start - this.width; + 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 (align == 'left') { - this.left = start; + 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 { - // default or 'center' - this.left = start - this.width / 2; + else if (type == 'horizontal') { + if (this.from.x < this.to.x) { + xVia = this.to.x - (1-factor) * dx; + } + else { + xVia = this.to.x + (1-factor) * dx; + } + yVia = this.from.y; + } + else if (type == 'vertical') { + xVia = this.from.x; + if (this.from.y < this.to.y) { + yVia = this.to.y - (1-factor) * dy; + } + else { + yVia = this.to.y + (1-factor) * dy; + } + } + else { // continuous + if (Math.abs(this.from.x - this.to.x) < Math.abs(this.from.y - this.to.y)) { + if (this.from.y > this.to.y) { + if (this.from.x < this.to.x) { + // console.log(1) + xVia = this.from.x + factor * dy; + yVia = this.from.y - factor * dy; + xVia = this.to.x < xVia ? this.to.x : xVia; + } + else if (this.from.x > this.to.x) { + // console.log(2) + xVia = this.from.x - factor * dy; + yVia = this.from.y - factor * dy; + xVia = this.to.x > xVia ? this.to.x :xVia; + } + } + else if (this.from.y < this.to.y) { + if (this.from.x < this.to.x) { + // console.log(3) + xVia = this.from.x + factor * dy; + yVia = this.from.y + factor * dy; + xVia = this.to.x < xVia ? this.to.x : xVia; + } + else if (this.from.x > this.to.x) { + // console.log(4, this.from.x, this.to.x) + xVia = this.from.x - factor * dy; + yVia = this.from.y + factor * dy; + xVia = this.to.x > xVia ? this.to.x : xVia; + } + } + } + else if (Math.abs(this.from.x - this.to.x) > Math.abs(this.from.y - this.to.y)) { + if (this.from.y > this.to.y) { + if (this.from.x < this.to.x) { + // console.log(5) + xVia = this.from.x + factor * dx; + yVia = this.from.y - factor * dx; + yVia = this.to.y > yVia ? this.to.y : yVia; + } + else if (this.from.x > this.to.x) { + // console.log(6) + xVia = this.from.x - factor * dx; + yVia = this.from.y - factor * dx; + yVia = this.to.y > yVia ? this.to.y : yVia; + } + } + else if (this.from.y < this.to.y) { + if (this.from.x < this.to.x) { + // console.log(7) + xVia = this.from.x + factor * dx; + yVia = this.from.y + factor * dx; + yVia = this.to.y < yVia ? this.to.y : yVia; + } + else if (this.from.x > this.to.x) { + // console.log(8) + xVia = this.from.x - factor * dx; + yVia = this.from.y + factor * dx; + yVia = this.to.y < yVia ? this.to.y : yVia; + } + } + } } - // 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'; - }; + return {x:xVia, y:yVia}; + } /** - * Reposition the item vertically - * @Override - */ - ItemBox.prototype.repositionY = function() { - var orientation = this.options.orientation, - box = this.dom.box, - line = this.dom.line, - dot = this.dom.dot; - - if (orientation == 'top') { - box.style.top = (this.top || 0) + 'px'; - - line.style.top = '0'; - line.style.height = (this.parent.top + this.top + 1) + 'px'; - line.style.bottom = ''; + * Draw a line between two nodes + * @param {CanvasRenderingContext2D} ctx + * @private + */ + Edge.prototype._line = function (ctx) { + // draw a straight line + ctx.beginPath(); + ctx.moveTo(this.from.x, this.from.y); + if (this.options.smoothCurves.enabled == true) { + if (this.options.smoothCurves.dynamic == false) { + var via = this._getViaCoordinates(); + if (via.x == null) { + ctx.lineTo(this.to.x, this.to.y); + ctx.stroke(); + return null; + } + else { + // this.via.x = via.x; + // this.via.y = via.y; + ctx.quadraticCurveTo(via.x,via.y,this.to.x, this.to.y); + ctx.stroke(); + return via; + } + } + else { + ctx.quadraticCurveTo(this.via.x,this.via.y,this.to.x, this.to.y); + ctx.stroke(); + return this.via; + } } - else { // 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'; + else { + ctx.lineTo(this.to.x, this.to.y); + ctx.stroke(); + return null; } - - dot.style.top = (-this.props.dot.height / 2) + 'px'; }; - module.exports = ItemBox; - - -/***/ }, -/* 34 */ -/***/ function(module, exports, __webpack_require__) { - - var Item = __webpack_require__(32); - /** - * @constructor ItemPoint - * @extends Item - * @param {Object} data Object containing parameters start - * content, className. - * @param {{toScreen: function, toTime: function}} conversion - * Conversion functions from time to screen and vice versa - * @param {Object} [options] Configuration options - * // TODO: describe available options + * Draw a line from a node to itself, a circle + * @param {CanvasRenderingContext2D} ctx + * @param {Number} x + * @param {Number} y + * @param {Number} radius + * @private */ - function ItemPoint (data, conversion, options) { - this.props = { - dot: { - top: 0, - width: 0, - height: 0 - }, - content: { - height: 0, - marginLeft: 0 - } - }; - - // validate data - if (data) { - if (data.start == undefined) { - throw new Error('Property "start" missing in item ' + data); - } - } - - Item.call(this, data, conversion, options); - } - - ItemPoint.prototype = new Item (null, null, 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(); + }; /** - * 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 + * 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 */ - ItemPoint.prototype.isVisible = function(range) { - // determine visibility - // TODO: account for the real width of the item. Right now we just add 1/4 to the window - var interval = (range.end - range.start) / 4; - return (this.data.start > range.start - interval) && (this.data.start < range.end + interval); + Edge.prototype._label = function (ctx, text, x, y) { + if (text) { + // TODO: cache the calculated size + ctx.font = ((this.from.selected || this.to.selected) ? "bold " : "") + + this.options.fontSize + "px " + this.options.fontFace; + ctx.fillStyle = this.options.fontFill; + var width = ctx.measureText(text).width; + var height = this.options.fontSize; + var left = x - width / 2; + var top = y - height / 2; + + ctx.fillRect(left, top, width, height); + + // draw text + ctx.fillStyle = this.options.fontColor || "black"; + ctx.textAlign = "left"; + ctx.textBaseline = "top"; + ctx.fillText(text, left, top); + } }; /** - * Repaint the item + * 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 */ - ItemPoint.prototype.redraw = function() { - var dom = this.dom; - if (!dom) { - // create DOM - this.dom = {}; - dom = this.dom; + Edge.prototype._drawDashLine = function(ctx) { + // set style + if (this.selected == true) {ctx.strokeStyle = this.options.color.highlight;} + else if (this.hover == true) {ctx.strokeStyle = this.options.color.hover;} + else {ctx.strokeStyle = this.options.color.color;} - // background box - dom.point = document.createElement('div'); - // className is updated in redraw() + ctx.lineWidth = this._getLineWidth(); - // contents box, right from the dot - dom.content = document.createElement('div'); - dom.content.className = 'content'; - dom.point.appendChild(dom.content); + var via = null; + // only firefox and chrome support this method, else we use the legacy one. + if (ctx.mozDash !== undefined || ctx.setLineDash !== undefined) { + // configure the dash pattern + var pattern = [0]; + if (this.options.dash.length !== undefined && this.options.dash.gap !== undefined) { + pattern = [this.options.dash.length,this.options.dash.gap]; + } + else { + pattern = [5,5]; + } - // dot at start - dom.dot = document.createElement('div'); - dom.point.appendChild(dom.dot); + // set dash settings for chrome or firefox + if (typeof ctx.setLineDash !== 'undefined') { //Chrome + ctx.setLineDash(pattern); + ctx.lineDashOffset = 0; - // attach this item as attribute - dom.point['timeline-item'] = this; - } + } else { //Firefox + ctx.mozDash = pattern; + ctx.mozDashOffset = 0; + } - // append DOM to parent DOM - if (!this.parent) { - throw new Error('Cannot redraw item: no parent attached'); + // draw the line + via = this._line(ctx); + + // restore the dash settings. + if (typeof ctx.setLineDash !== 'undefined') { //Chrome + ctx.setLineDash([0]); + ctx.lineDashOffset = 0; + + } else { //Firefox + ctx.mozDash = [0]; + ctx.mozDashOffset = 0; + } } - if (!dom.point.parentNode) { - var foreground = this.parent.dom.foreground; - if (!foreground) { - throw new Error('Cannot redraw time axis: parent has no foreground container element'); + else { // 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]); } - foreground.appendChild(dom.point); + else if (this.options.dash.length !== undefined && this.options.dash.gap !== undefined) //If a dash and gap value has been set add to the array this value + { + ctx.dashedLine(this.from.x,this.from.y,this.to.x,this.to.y, + [this.options.dash.length,this.options.dash.gap]); + } + else //If all else fails draw a line + { + ctx.moveTo(this.from.x, this.from.y); + ctx.lineTo(this.to.x, this.to.y); + } + ctx.stroke(); } - this.displayed = true; - // update contents - if (this.data.content != this.content) { - this.content = this.data.content; - if (this.content instanceof Element) { - dom.content.innerHTML = ''; - dom.content.appendChild(this.content); - } - else if (this.data.content != undefined) { - dom.content.innerHTML = this.content; + // 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 { - throw new Error('Property "content" missing in item ' + this.data.id); + point = this._pointOnLine(0.5); } - - this.dirty = true; + this._label(ctx, this.label, point.x, point.y); } - - // update title - if (this.data.title != this.title) { - dom.point.title = this.data.title; - this.title = this.data.title; - } - - // update class - var className = (this.data.className? ' ' + this.data.className : '') + - (this.selected ? ' selected' : ''); - if (this.className != className) { - this.className = className; - dom.point.className = 'item point' + className; - dom.dot.className = 'item dot' + className; - - this.dirty = true; - } - - // recalculate size - if (this.dirty) { - this.width = dom.point.offsetWidth; - this.height = dom.point.offsetHeight; - this.props.dot.width = dom.dot.offsetWidth; - this.props.dot.height = dom.dot.offsetHeight; - this.props.content.height = dom.content.offsetHeight; - - // resize contents - dom.content.style.marginLeft = 2 * this.props.dot.width + 'px'; - //dom.content.style.marginRight = ... + 'px'; // TODO: margin right - - dom.dot.style.top = ((this.height - this.props.dot.height) / 2) + 'px'; - dom.dot.style.left = (this.props.dot.width / 2) + 'px'; - - this.dirty = false; - } - - this._repaintDeleteButton(dom.point); - }; + }; /** - * Show the item in the DOM (when not already visible). The items DOM will - * be created when needed. + * Get a point on a line + * @param {Number} percentage. Value between 0 (line start) and 1 (line end) + * @return {Object} point + * @private */ - ItemPoint.prototype.show = function() { - if (!this.displayed) { - this.redraw(); + 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 } }; /** - * Hide the item from the DOM (when visible) + * 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 */ - ItemPoint.prototype.hide = function() { - if (this.displayed) { - if (this.dom.point.parentNode) { - this.dom.point.parentNode.removeChild(this.dom.point); - } - - this.top = null; - this.left = null; - - this.displayed = false; + 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) } }; /** - * Reposition the item horizontally - * @Override + * 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 */ - ItemPoint.prototype.repositionX = function() { - var start = this.conversion.toScreen(this.data.start); + Edge.prototype._drawArrowCenter = function(ctx) { + var point; + // set style + if (this.selected == true) {ctx.strokeStyle = this.options.color.highlight; ctx.fillStyle = this.options.color.highlight;} + else if (this.hover == true) {ctx.strokeStyle = this.options.color.hover; ctx.fillStyle = this.options.color.hover;} + else {ctx.strokeStyle = this.options.color.color; ctx.fillStyle = this.options.color.color;} + ctx.lineWidth = this._getLineWidth(); - this.left = start - this.props.dot.width; + if (this.from != this.to) { + // draw line + var via = this._line(ctx); - // reposition point - this.dom.point.style.left = this.left + 'px'; - }; + 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); + } - /** - * Reposition the item vertically - * @Override - */ - ItemPoint.prototype.repositionY = function() { - var orientation = this.options.orientation, - point = this.dom.point; + ctx.arrow(point.x, point.y, angle, length); + ctx.fill(); + ctx.stroke(); - if (orientation == 'top') { - point.style.top = this.top + 'px'; + // draw label + if (this.label) { + this._label(ctx, this.label, point.x, point.y); + } } else { - point.style.top = (this.parent.height - this.top - this.height) + 'px'; - } - }; + // 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); - module.exports = ItemPoint; + // draw all arrows + var angle = 0.2 * Math.PI; + var length = (10 + 5 * this.options.width) * this.options.arrowScaleFactor; + point = this._pointOnCircle(x, y, radius, 0.5); + ctx.arrow(point.x, point.y, angle, length); + ctx.fill(); + ctx.stroke(); + // draw label + if (this.label) { + point = this._pointOnCircle(x, y, radius, 0.5); + this._label(ctx, this.label, point.x, point.y); + } + } + }; -/***/ }, -/* 35 */ -/***/ function(module, exports, __webpack_require__) { - var Emitter = __webpack_require__(10); - var Hammer = __webpack_require__(18); - var util = __webpack_require__(1); - var DataSet = __webpack_require__(7); - var DataView = __webpack_require__(8); - var Range = __webpack_require__(20); - var Core = __webpack_require__(23); - var TimeAxis = __webpack_require__(24); - var CurrentTime = __webpack_require__(26); - var CustomTime = __webpack_require__(27); - var LineGraph = __webpack_require__(36); /** - * 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 + * Redraw a edge as a line with an arrow + * Draw this edge in the given canvas + * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); + * @param {CanvasRenderingContext2D} ctx + * @private */ - function Graph2d (container, items, options, groups) { - for (var coreProp in Core.prototype) { - if (Core.prototype.hasOwnProperty(coreProp) && !Graph2d.prototype.hasOwnProperty(coreProp)) { - Graph2d.prototype[coreProp] = Core.prototype[coreProp]; - } - } - - var me = this; - this.defaultOptions = { - start: null, - end: null, - - autoResize: true, + Edge.prototype._drawArrow = function(ctx) { + // set style + if (this.selected == true) {ctx.strokeStyle = this.options.color.highlight; ctx.fillStyle = this.options.color.highlight;} + else if (this.hover == true) {ctx.strokeStyle = this.options.color.hover; ctx.fillStyle = this.options.color.hover;} + else {ctx.strokeStyle = this.options.color.color; ctx.fillStyle = this.options.color.color;} - orientation: 'bottom', - width: null, - height: null, - maxHeight: null, - minHeight: null - }; - this.options = util.deepExtend({}, this.defaultOptions); + ctx.lineWidth = this._getLineWidth(); - // Create the DOM, props, and emitter - this._create(container); + var angle, length; + //draw a line + if (this.from != this.to) { + angle = Math.atan2((this.to.y - this.from.y), (this.to.x - this.from.x)); + var dx = (this.to.x - this.from.x); + var dy = (this.to.y - this.from.y); + var edgeSegmentLength = Math.sqrt(dx * dx + dy * dy); - // all components listed here will be repainted automatically - this.components = []; + var fromBorderDist = this.from.distanceToBorder(ctx, angle + Math.PI); + var fromBorderPoint = (edgeSegmentLength - fromBorderDist) / edgeSegmentLength; + var xFrom = (fromBorderPoint) * this.from.x + (1 - fromBorderPoint) * this.to.x; + var yFrom = (fromBorderPoint) * this.from.y + (1 - fromBorderPoint) * this.to.y; - this.body = { - dom: this.dom, - domProps: this.props, - emitter: { - on: this.on.bind(this), - off: this.off.bind(this), - emit: this.emit.bind(this) - }, - util: { - snap: null, // will be specified after TimeAxis is created - toScreen: me._toScreen.bind(me), - toGlobalScreen: me._toGlobalScreen.bind(me), // this refers to the root.width - toTime: me._toTime.bind(me), - toGlobalTime : me._toGlobalTime.bind(me) + var via; + if (this.options.smoothCurves.dynamic == true && this.options.smoothCurves.enabled == true ) { + via = this.via; + } + else if (this.options.smoothCurves.enabled == true) { + via = this._getViaCoordinates(); } - }; - // range - this.range = new Range(this.body); - this.components.push(this.range); - this.body.range = this.range; + if (this.options.smoothCurves.enabled == true && via.x != null) { + angle = Math.atan2((this.to.y - via.y), (this.to.x - via.x)); + dx = (this.to.x - via.x); + dy = (this.to.y - via.y); + edgeSegmentLength = Math.sqrt(dx * dx + dy * dy); + } + var toBorderDist = this.to.distanceToBorder(ctx, angle); + var toBorderPoint = (edgeSegmentLength - toBorderDist) / edgeSegmentLength; - // time axis - this.timeAxis = new TimeAxis(this.body); - this.components.push(this.timeAxis); - this.body.util.snap = this.timeAxis.snap.bind(this.timeAxis); + var xTo,yTo; + if (this.options.smoothCurves.enabled == true && via.x != null) { + xTo = (1 - toBorderPoint) * via.x + toBorderPoint * this.to.x; + yTo = (1 - toBorderPoint) * via.y + toBorderPoint * this.to.y; + } + else { + xTo = (1 - toBorderPoint) * this.from.x + toBorderPoint * this.to.x; + yTo = (1 - toBorderPoint) * this.from.y + toBorderPoint * this.to.y; + } - // current time bar - this.currentTime = new CurrentTime(this.body); - this.components.push(this.currentTime); + ctx.beginPath(); + ctx.moveTo(xFrom,yFrom); + if (this.options.smoothCurves.enabled == true && via.x != null) { + ctx.quadraticCurveTo(via.x,via.y,xTo, yTo); + } + else { + ctx.lineTo(xTo, yTo); + } + ctx.stroke(); - // 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); + // draw arrow at the end of the line + length = (10 + 5 * this.options.width) * this.options.arrowScaleFactor; + ctx.arrow(xTo, yTo, angle, length); + ctx.fill(); + ctx.stroke(); - // item set - this.linegraph = new LineGraph(this.body); - this.components.push(this.linegraph); + // draw label + if (this.label) { + var point; + if (this.options.smoothCurves.enabled == true && via != null) { + var midpointX = 0.5*(0.5*(this.from.x + via.x) + 0.5*(this.to.x + via.x)); + var midpointY = 0.5*(0.5*(this.from.y + via.y) + 0.5*(this.to.y + via.y)); + point = {x:midpointX, y:midpointY}; + } + else { + point = this._pointOnLine(0.5); + } + this._label(ctx, this.label, point.x, point.y); + } + } + else { + // draw circle + var node = this.from; + var x, y, arrow; + var radius = 0.25 * Math.max(100,this.physics.springLength); + if (!node.width) { + node.resize(ctx); + } + if (node.width > node.height) { + x = node.x + node.width * 0.5; + y = node.y - radius; + arrow = { + x: x, + y: node.y, + angle: 0.9 * Math.PI + }; + } + else { + x = node.x + radius; + y = node.y - node.height * 0.5; + arrow = { + x: node.x, + y: y, + angle: 0.6 * Math.PI + }; + } + ctx.beginPath(); + // TODO: similarly, for a line without arrows, draw to the border of the nodes instead of the center + ctx.arc(x, y, radius, 0, 2 * Math.PI, false); + ctx.stroke(); - this.itemsData = null; // DataSet - this.groupsData = null; // DataSet + // 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(); - // apply options - if (options) { - this.setOptions(options); + // draw label + if (this.label) { + point = this._pointOnCircle(x, y, radius, 0.5); + this._label(ctx, this.label, point.x, point.y); + } } + }; - // IMPORTANT: THIS HAPPENS BEFORE SET ITEMS! - if (groups) { - this.setGroups(groups); - } - // create itemset - if (items) { - this.setItems(items); - } - else { - this.redraw(); - } - } /** - * Set options. Options will be passed to all components loaded in the Graph2d. - * @param {Object} [options] - * {String} orientation - * Vertical orientation for the Graph2d, - * can be 'bottom' (default) or 'top'. - * {String | Number} width - * Width for the timeline, a number in pixels or - * a css string like '1000px' or '75%'. '100%' by default. - * {String | Number} height - * Fixed height for the Graph2d, a number in pixels or - * a css string like '400px' or '75%'. If undefined, - * The Graph2d will automatically size such that - * its contents fit. - * {String | Number} minHeight - * Minimum height for the Graph2d, a number in pixels or - * a css string like '400px' or '75%'. - * {String | Number} maxHeight - * Maximum height for the Graph2d, a number in pixels or - * a css string like '400px' or '75%'. - * {Number | Date | String} start - * Start date for the visible window - * {Number | Date | String} end - * End date for the visible window + * 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 */ - Graph2d.prototype.setOptions = function (options) { - if (options) { - // copy the known options - var fields = ['width', 'height', 'minHeight', 'maxHeight', 'autoResize', 'start', 'end', 'orientation']; - util.selectiveExtend(fields, this.options, options); - - // enable/disable autoResize - this._initAutoResize(); + Edge.prototype._getDistanceToEdge = function (x1,y1, x2,y2, x3,y3) { // x3,y3 is the point + if (this.from != this.to) { + if (this.options.smoothCurves.enabled == true) { + var xVia, yVia; + if (this.options.smoothCurves.enabled == true && this.options.smoothCurves.dynamic == true) { + xVia = this.via.x; + yVia = this.via.y; + } + else { + var via = this._getViaCoordinates(); + xVia = via.x; + yVia = via.y; + } + var minDistance = 1e9; + var distance; + var i,t,x,y, lastX, lastY; + for (i = 0; i < 10; i++) { + t = 0.1*i; + x = Math.pow(1-t,2)*x1 + (2*t*(1 - t))*xVia + Math.pow(t,2)*x2; + y = Math.pow(1-t,2)*y1 + (2*t*(1 - t))*yVia + Math.pow(t,2)*y2; + if (i > 0) { + distance = this._getDistanceToLine(lastX,lastY,x,y, x3,y3); + minDistance = distance < minDistance ? distance : minDistance; + } + lastX = x; lastY = y; + } + return minDistance + } + else { + return this._getDistanceToLine(x1,y1,x2,y2,x3,y3); + } } - - // propagate options to all components - this.components.forEach(function (component) { - component.setOptions(options); - }); - - // TODO: remove deprecation error one day (deprecated since version 0.8.0) - if (options && options.order) { - throw new Error('Option order is deprecated. There is no replacement for this feature.'); + else { + var x, y, dx, dy; + var radius = this.physics.springLength / 4; + var node = this.from; + if (!node.width) { + node.resize(ctx); + } + if (node.width > node.height) { + x = node.x + node.width / 2; + y = node.y - radius; + } + else { + x = node.x + radius; + y = node.y - node.height / 2; + } + dx = x - x3; + dy = y - y3; + return Math.abs(Math.sqrt(dx*dx + dy*dy) - radius); } - - // redraw everything - this.redraw(); }; + 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; - /** - * Set items - * @param {vis.DataSet | Array | google.visualization.DataTable | null} items - */ - Graph2d.prototype.setItems = function(items) { - var initialLoad = (this.itemsData == null); - - // convert to type DataSet when needed - var newDataSet; - if (!items) { - newDataSet = null; - } - else if (items instanceof DataSet || items instanceof DataView) { - newDataSet = items; + if (u > 1) { + u = 1; } - else { - // turn an array into a dataset - newDataSet = new DataSet(items, { - type: { - start: 'Date', - end: 'Date' - } - }); + else if (u < 0) { + u = 0; } - // set items - this.itemsData = newDataSet; - this.linegraph && this.linegraph.setItems(newDataSet); - - if (initialLoad && ('start' in this.options || 'end' in this.options)) { - this.fit(); + var x = x1 + u * px, + y = y1 + u * py, + dx = x - x3, + dy = y - y3; - var start = ('start' in this.options) ? util.convert(this.options.start, 'Date') : null; - var end = ('end' in this.options) ? util.convert(this.options.end, 'Date') : null; + //# 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.setWindow(start, end); - } - }; + return Math.sqrt(dx*dx + dy*dy); + } /** - * Set groups - * @param {vis.DataSet | Array | google.visualization.DataTable} groups + * This allows the zoom level of the network to influence the rendering + * + * @param scale */ - Graph2d.prototype.setGroups = function(groups) { - // convert to type DataSet when needed - var newDataSet; - if (!groups) { - newDataSet = null; + Edge.prototype.setScale = function(scale) { + this.networkScaleInv = 1.0/scale; + }; + + + Edge.prototype.select = function() { + this.selected = true; + }; + + Edge.prototype.unselect = function() { + this.selected = false; + }; + + Edge.prototype.positionBezierNode = function() { + if (this.via !== null && this.from !== null && this.to !== null) { + this.via.x = 0.5 * (this.from.x + this.to.x); + this.via.y = 0.5 * (this.from.y + this.to.y); } - else if (groups instanceof DataSet || groups instanceof DataView) { - newDataSet = groups; + }; + + /** + * This function draws the control nodes for the manipulator. In order to enable this, only set the this.controlNodesEnabled to true. + * @param ctx + */ + Edge.prototype._drawControlNodes = function(ctx) { + if (this.controlNodesEnabled == true) { + if (this.controlNodes.from === null && this.controlNodes.to === null) { + var nodeIdFrom = "edgeIdFrom:".concat(this.id); + var nodeIdTo = "edgeIdTo:".concat(this.id); + var constants = { + nodes:{group:'', radius:8}, + physics:{damping:0}, + clustering: {maxNodeSizeIncrements: 0 ,nodeScaling: {width:0, height: 0, radius:0}} + }; + this.controlNodes.from = new Node( + {id:nodeIdFrom, + shape:'dot', + color:{background:'#ff4e00', border:'#3c3c3c', highlight: {background:'#07f968'}} + },{},{},constants); + this.controlNodes.to = new Node( + {id:nodeIdTo, + shape:'dot', + color:{background:'#ff4e00', border:'#3c3c3c', highlight: {background:'#07f968'}} + },{},{},constants); + } + + if (this.controlNodes.from.selected == false && this.controlNodes.to.selected == false) { + this.controlNodes.positions = this.getControlNodePositions(ctx); + this.controlNodes.from.x = this.controlNodes.positions.from.x; + this.controlNodes.from.y = this.controlNodes.positions.from.y; + this.controlNodes.to.x = this.controlNodes.positions.to.x; + this.controlNodes.to.y = this.controlNodes.positions.to.y; + } + + this.controlNodes.from.draw(ctx); + this.controlNodes.to.draw(ctx); } else { - // turn an array into a dataset - newDataSet = new DataSet(groups); + this.controlNodes = {from:null, to:null, positions:{}}; } + }; - this.groupsData = newDataSet; - this.linegraph.setGroups(newDataSet); + /** + * Enable control nodes. + * @private + */ + Edge.prototype._enableControlNodes = function() { + this.controlNodesEnabled = true; }; /** - * 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 + * disable control nodes + * @private */ - Graph2d.prototype.getLegend = function(groupId, width, height) { - if (width === undefined) {width = 15;} - if (height === undefined) {height = 15;} - if (this.linegraph.groups[groupId] !== undefined) { - return this.linegraph.groups[groupId].getLegend(width,height); + Edge.prototype._disableControlNodes = function() { + this.controlNodesEnabled = false; + }; + + /** + * 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)); + + 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 "cannot find group:" + groupId; + return null; } - } + }; + /** - * This checks if the visible option of the supplied group (by ID) is true or false. - * @param groupId - * @returns {*} + * this resets the control nodes to their original position. + * @private */ - Graph2d.prototype.isGroupVisible = function(groupId) { - if (this.linegraph.groups[groupId] !== undefined) { - return this.linegraph.groups[groupId].visible; + Edge.prototype._restoreControlNodes = function() { + if (this.controlNodes.from.selected == true) { + this.from = this.connectedNode; + this.connectedNode = null; + this.controlNodes.from.unselect(); } - else { - return false; + if (this.controlNodes.to.selected == true) { + this.to = this.connectedNode; + this.connectedNode = null; + this.controlNodes.to.unselect(); } - } - + }; /** - * 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 + * 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: *}}} */ - Graph2d.prototype.getItemRange = function() { - var min = null; - var max = null; + Edge.prototype.getControlNodePositions = function(ctx) { + var angle = Math.atan2((this.to.y - this.from.y), (this.to.x - this.from.x)); + var dx = (this.to.x - this.from.x); + var dy = (this.to.y - this.from.y); + var edgeSegmentLength = Math.sqrt(dx * dx + dy * dy); + var fromBorderDist = this.from.distanceToBorder(ctx, angle + Math.PI); + var fromBorderPoint = (edgeSegmentLength - fromBorderDist) / edgeSegmentLength; + var xFrom = (fromBorderPoint) * this.from.x + (1 - fromBorderPoint) * this.to.x; + var yFrom = (fromBorderPoint) * this.from.y + (1 - fromBorderPoint) * this.to.y; - // 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 via; + if (this.options.smoothCurves.dynamic == true && this.options.smoothCurves.enabled == true) { + via = this.via; + } + else if (this.options.smoothCurves.enabled == true) { + via = this._getViaCoordinates(); } - return { - min: (min != null) ? new Date(min) : null, - max: (max != null) ? new Date(max) : null - }; - }; - + if (this.options.smoothCurves.enabled == true && via.x != null) { + angle = Math.atan2((this.to.y - via.y), (this.to.x - via.x)); + dx = (this.to.x - via.x); + dy = (this.to.y - via.y); + edgeSegmentLength = Math.sqrt(dx * dx + dy * dy); + } + var toBorderDist = this.to.distanceToBorder(ctx, angle); + var toBorderPoint = (edgeSegmentLength - toBorderDist) / edgeSegmentLength; + var xTo,yTo; + if (this.options.smoothCurves.enabled == true && via.x != null) { + xTo = (1 - toBorderPoint) * via.x + toBorderPoint * this.to.x; + yTo = (1 - toBorderPoint) * via.y + toBorderPoint * this.to.y; + } + else { + xTo = (1 - toBorderPoint) * this.from.x + toBorderPoint * this.to.x; + yTo = (1 - toBorderPoint) * this.from.y + toBorderPoint * this.to.y; + } - module.exports = Graph2d; + return {from:{x:xFrom,y:yFrom},to:{x:xTo,y:yTo}}; + }; + module.exports = Edge; /***/ }, -/* 36 */ +/* 34 */ /***/ function(module, exports, __webpack_require__) { - var util = __webpack_require__(1); - var DOMutil = __webpack_require__(6); - var DataSet = __webpack_require__(7); - var DataView = __webpack_require__(8); - var Component = __webpack_require__(22); - var DataAxis = __webpack_require__(38); - var GraphGroup = __webpack_require__(39); - var Legend = __webpack_require__(40); + var util = __webpack_require__(2); + + /** + * @class Groups + * This class can store groups and properties specific for groups. + */ + function Groups() { + this.clear(); + this.defaultIndex = 0; + } - 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 + * default constants for group colors */ - function LineGraph(body, options) { - this.id = util.randomUUID(); - this.body = body; + Groups.DEFAULT = [ + {border: "#2B7CE9", background: "#97C2FC", highlight: {border: "#2B7CE9", background: "#D2E5FF"}, hover: {border: "#2B7CE9", background: "#D2E5FF"}}, // blue + {border: "#FFA500", background: "#FFFF00", highlight: {border: "#FFA500", background: "#FFFFA3"}, hover: {border: "#FFA500", background: "#FFFFA3"}}, // yellow + {border: "#FA0A10", background: "#FB7E81", highlight: {border: "#FA0A10", background: "#FFAFB1"}, hover: {border: "#FA0A10", background: "#FFAFB1"}}, // red + {border: "#41A906", background: "#7BE141", highlight: {border: "#41A906", background: "#A1EC76"}, hover: {border: "#41A906", background: "#A1EC76"}}, // green + {border: "#E129F0", background: "#EB7DF4", highlight: {border: "#E129F0", background: "#F0B3F5"}, hover: {border: "#E129F0", background: "#F0B3F5"}}, // magenta + {border: "#7C29F0", background: "#AD85E4", highlight: {border: "#7C29F0", background: "#D3BDF0"}, hover: {border: "#7C29F0", background: "#D3BDF0"}}, // purple + {border: "#C37F00", background: "#FFA807", highlight: {border: "#C37F00", background: "#FFCA66"}, hover: {border: "#C37F00", background: "#FFCA66"}}, // orange + {border: "#4220FB", background: "#6E6EFD", highlight: {border: "#4220FB", background: "#9B9BFD"}, hover: {border: "#4220FB", background: "#9B9BFD"}}, // darkblue + {border: "#FD5A77", background: "#FFC0CB", highlight: {border: "#FD5A77", background: "#FFD1D9"}, hover: {border: "#FD5A77", background: "#FFD1D9"}}, // pink + {border: "#4AD63A", background: "#C2FABC", highlight: {border: "#4AD63A", background: "#E6FFE3"}, hover: {border: "#4AD63A", background: "#E6FFE3"}} // mint + ]; - this.defaultOptions = { - yAxisOrientation: 'left', - defaultGroup: 'default', - sort: true, - sampling: true, - graphHeight: '400px', - shaded: { - enabled: false, - orientation: 'bottom' // top, bottom - }, - style: 'line', // line, bar - barChart: { - width: 50, - allowOverlap: true, - align: 'center' // left, center, right - }, - catmullRom: { - enabled: true, - parametrization: 'centripetal', // uniform (alpha = 0.0), chordal (alpha = 1.0), centripetal (alpha = 0.5) - alpha: 0.5 - }, - drawPoints: { - enabled: true, - size: 6, - style: 'square' // square, circle - }, - dataAxis: { - showMinorLabels: true, - showMajorLabels: true, - icons: false, - width: '40px', - visible: true - }, - legend: { - enabled: false, - icons: true, - left: { - visible: true, - position: 'top-left' // top/bottom - left,right - }, - right: { - visible: true, - position: 'top-right' // top/bottom - left,right - } - } - }; - // options is shared by this ItemSet and all its items - this.options = util.extend({}, this.defaultOptions); - this.dom = {}; - this.props = {}; - this.hammer = null; + /** + * Clear all groups + */ + Groups.prototype.clear = function () { this.groups = {}; - - var me = this; - this.itemsData = null; // DataSet - this.groupsData = null; // DataSet - - // listeners for the DataSet of the items - this.itemListeners = { - 'add': function (event, params, senderId) { - me._onAdd(params.items); - }, - 'update': function (event, params, senderId) { - me._onUpdate(params.items); - }, - 'remove': function (event, params, senderId) { - me._onRemove(params.items); - } - }; - - // listeners for the DataSet of the groups - this.groupListeners = { - 'add': function (event, params, senderId) { - me._onAddGroups(params.items); - }, - 'update': function (event, params, senderId) { - me._onUpdateGroups(params.items); - }, - 'remove': function (event, params, senderId) { - me._onRemoveGroups(params.items); - } - }; - - this.items = {}; // object with an Item for every data item - this.selection = []; // list with the ids of all selected nodes - this.lastStart = this.body.range.start; - this.touchParams = {}; // stores properties while dragging - - this.svgElements = {}; - this.setOptions(options); - this.groupsUsingDefaultStyles = [0]; - - this.body.emitter.on("rangechange",function() { - if (me.lastStart != 0) { - var offset = me.body.range.start - me.lastStart; - var range = me.body.range.end - me.body.range.start; - if (me.width != 0) { - var rangePerPixelInv = me.width/range; - var xOffset = offset * rangePerPixelInv; - me.svg.style.left = (-me.width - xOffset) + "px"; - } + this.groups.length = function() + { + var i = 0; + for ( var p in this ) { + if (this.hasOwnProperty(p)) { + i++; } - }); - this.body.emitter.on("rangechanged", function() { - me.lastStart = me.body.range.start; - me.svg.style.left = util.option.asSize(-me.width); - me._updateGraph.apply(me); - }); - - // create the HTML DOM - this._create(); - this.body.emitter.emit("change"); - } + } + return i; + } + }; - LineGraph.prototype = new Component(); /** - * Create the HTML DOM for the ItemSet + * 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 */ - LineGraph.prototype._create = function(){ - var frame = document.createElement('div'); - frame.className = 'LineGraph'; - this.dom.frame = frame; - - // create svg element for graph drawing. - this.svg = document.createElementNS('http://www.w3.org/2000/svg',"svg"); - this.svg.style.position = "relative"; - this.svg.style.height = ('' + this.options.graphHeight).replace("px",'') + 'px'; - this.svg.style.display = "block"; - frame.appendChild(this.svg); - - // data axis - this.options.dataAxis.orientation = 'left'; - this.yAxisLeft = new DataAxis(this.body, this.options.dataAxis, this.svg); - - this.options.dataAxis.orientation = 'right'; - this.yAxisRight = new DataAxis(this.body, this.options.dataAxis, this.svg); - delete this.options.dataAxis.orientation; - - // legends - this.legendLeft = new Legend(this.body, this.options.legend, 'left'); - this.legendRight = new Legend(this.body, this.options.legend, 'right'); + Groups.prototype.get = function (groupname) { + var group = this.groups[groupname]; + if (group == undefined) { + // create new group + var index = this.defaultIndex % Groups.DEFAULT.length; + this.defaultIndex++; + group = {}; + group.color = Groups.DEFAULT[index]; + this.groups[groupname] = group; + } - this.show(); + return group; }; /** - * set the options of the LineGraph. the mergeOptions is used for subObjects that have an enabled element. - * @param options + * Add a custom group style + * @param {String} groupname + * @param {Object} style An object containing borderColor, + * backgroundColor, etc. + * @return {Object} group The created group object */ - LineGraph.prototype.setOptions = function(options) { - if (options) { - var fields = ['sampling','defaultGroup','graphHeight','yAxisOrientation','style','barChart','dataAxis','sort']; - util.selectiveDeepExtend(fields, this.options, options); - util.mergeOptions(this.options, options,'catmullRom'); - util.mergeOptions(this.options, options,'drawPoints'); - util.mergeOptions(this.options, options,'shaded'); - util.mergeOptions(this.options, options,'legend'); + Groups.prototype.add = function (groupname, style) { + this.groups[groupname] = style; + if (style.color) { + style.color = util.parseColor(style.color); + } + return style; + }; - if (options.catmullRom) { - if (typeof options.catmullRom == 'object') { - if (options.catmullRom.parametrization) { - if (options.catmullRom.parametrization == 'uniform') { - this.options.catmullRom.alpha = 0; - } - else if (options.catmullRom.parametrization == 'chordal') { - this.options.catmullRom.alpha = 1.0; - } - else { - this.options.catmullRom.parametrization = 'centripetal'; - this.options.catmullRom.alpha = 0.5; - } - } - } - } + module.exports = Groups; - if (this.yAxisLeft) { - if (options.dataAxis !== undefined) { - this.yAxisLeft.setOptions(this.options.dataAxis); - this.yAxisRight.setOptions(this.options.dataAxis); - } - } - if (this.legendLeft) { - if (options.legend !== undefined) { - this.legendLeft.setOptions(this.options.legend); - this.legendRight.setOptions(this.options.legend); - } - } +/***/ }, +/* 35 */ +/***/ function(module, exports, __webpack_require__) { - if (this.groups.hasOwnProperty(UNGROUPED)) { - this.groups[UNGROUPED].setOptions(options); - } - } - if (this.dom.frame) { - this._updateGraph(); - } - }; + /** + * @class Images + * This class loads images and keeps them stored. + */ + function Images() { + this.images = {}; + + this.callback = undefined; + } /** - * Hide the component from the DOM + * Set an onload callback function. This will be called each time an image + * is loaded + * @param {function} callback */ - LineGraph.prototype.hide = function() { - // remove the frame containing the items - if (this.dom.frame.parentNode) { - this.dom.frame.parentNode.removeChild(this.dom.frame); - } + Images.prototype.setOnloadCallback = function(callback) { + this.callback = callback; }; /** - * Show the component in the DOM (when not already visible). - * @return {Boolean} changed + * + * @param {string} url Url of the image + * @return {Image} img The image object */ - LineGraph.prototype.show = function() { - // show frame containing the items - if (!this.dom.frame.parentNode) { - this.body.dom.center.appendChild(this.dom.frame); + Images.prototype.load = function(url) { + var img = this.images[url]; + if (img == undefined) { + // create the image + var images = this; + img = new Image(); + this.images[url] = img; + img.onload = function() { + if (images.callback) { + images.callback(this); + } + }; + img.src = url; } + + return img; }; + module.exports = Images; + + +/***/ }, +/* 36 */ +/***/ function(module, exports, __webpack_require__) { + + var util = __webpack_require__(2); /** - * Set items - * @param {vis.DataSet | null} items + * @class Node + * A node. A node can be connected to other nodes via one or multiple edges. + * @param {object} properties An object containing properties for the node. All + * properties are optional, except for the id. + * {number} id Id of the node. Required + * {string} label Text label for the node + * {number} x Horizontal position of the node + * {number} y Vertical position of the node + * {string} shape Node shape, available: + * "database", "circle", "ellipse", + * "box", "image", "text", "dot", + * "star", "triangle", "triangleDown", + * "square" + * {string} image An image url + * {string} title An title text, can be HTML + * {anytype} group A group name or number + * @param {Network.Images} imagelist A list with images. Only needed + * when the node has an image + * @param {Network.Groups} grouplist A list with groups. Needed for + * retrieving group properties + * @param {Object} constants An object with default values for + * example for the color + * */ - LineGraph.prototype.setItems = function(items) { - var me = this, - ids, - oldItemsData = this.itemsData; + function Node(properties, imagelist, grouplist, networkConstants) { + var constants = util.selectiveBridgeObject(['nodes'],networkConstants); + this.options = constants.nodes; - // 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.selected = false; + this.hover = false; - if (oldItemsData) { - // unsubscribe from old dataset - util.forEach(this.itemListeners, function (callback, event) { - oldItemsData.off(event, callback); - }); + this.edges = []; // all edges connected to this node + this.dynamicEdges = []; + this.reroutedEdges = {}; - // remove all drawn items - ids = oldItemsData.getIds(); - this._onRemove(ids); - } + this.fontDrawThreshold = 3; - if (this.itemsData) { - // subscribe to new dataset - var id = this.id; - util.forEach(this.itemListeners, function (callback, event) { - me.itemsData.on(event, callback, id); - }); + // set defaults for the properties + this.id = undefined; + this.x = null; + this.y = null; + this.xFixed = false; + this.yFixed = false; + this.horizontalAlignLeft = true; // these are for the navigation controls + this.verticalAlignTop = true; // these are for the navigation controls + this.baseRadiusValue = networkConstants.nodes.radius; + this.radiusFixed = false; + this.level = -1; + this.preassignedLevel = false; - // add all new items - ids = this.itemsData.getIds(); - this._onAdd(ids); - } - this._updateUngrouped(); - this._updateGraph(); - this.redraw(); - }; - /** - * Set groups - * @param {vis.DataSet} groups - */ - LineGraph.prototype.setGroups = function(groups) { - var me = this, - ids; + this.imagelist = imagelist; + this.grouplist = grouplist; - // unsubscribe from current dataset - if (this.groupsData) { - util.forEach(this.groupListeners, function (callback, event) { - me.groupsData.unsubscribe(event, callback); - }); + // physics properties + this.fx = 0.0; // external force x + this.fy = 0.0; // external force y + this.vx = 0.0; // velocity x + this.vy = 0.0; // velocity y + this.damping = networkConstants.physics.damping; // written every time gravity is calculated + this.fixedData = {x:null,y:null}; - // remove all drawn groups - ids = this.groupsData.getIds(); - this.groupsData = null; - this._onRemoveGroups(ids); // note: this will cause a redraw - } - // replace the dataset - if (!groups) { - this.groupsData = null; + this.setProperties(properties, constants); + + // creating the variables for clustering + this.resetCluster(); + this.dynamicEdgesLength = 0; + this.clusterSession = 0; + this.clusterSizeWidthFactor = networkConstants.clustering.nodeScaling.width; + this.clusterSizeHeightFactor = networkConstants.clustering.nodeScaling.height; + this.clusterSizeRadiusFactor = networkConstants.clustering.nodeScaling.radius; + this.maxNodeSizeIncrements = networkConstants.clustering.maxNodeSizeIncrements; + this.growthIndicator = 0; + + // variables to tell the node about the network. + this.networkScaleInv = 1; + this.networkScale = 1; + this.canvasTopLeft = {"x": -300, "y": -300}; + this.canvasBottomRight = {"x": 300, "y": 300}; + this.parentEdgeId = null; + } + + /** + * (re)setting the clustering variables and objects + */ + Node.prototype.resetCluster = function() { + // clustering variables + this.formationScale = undefined; // this is used to determine when to open the cluster + this.clusterSize = 1; // this signifies the total amount of nodes in this cluster + this.containedNodes = {}; + this.containedEdges = {}; + this.clusterSessions = []; + }; + + /** + * Attach a edge to the node + * @param {Edge} edge + */ + Node.prototype.attachEdge = function(edge) { + if (this.edges.indexOf(edge) == -1) { + this.edges.push(edge); } - else if (groups instanceof DataSet || groups instanceof DataView) { - this.groupsData = groups; + if (this.dynamicEdges.indexOf(edge) == -1) { + this.dynamicEdges.push(edge); } - else { - throw new TypeError('Data must be an instance of DataSet or DataView'); + this.dynamicEdgesLength = this.dynamicEdges.length; + }; + + /** + * Detach a edge from the node + * @param {Edge} edge + */ + Node.prototype.detachEdge = function(edge) { + var index = this.edges.indexOf(edge); + if (index != -1) { + this.edges.splice(index, 1); + this.dynamicEdges.splice(index, 1); } + this.dynamicEdgesLength = this.dynamicEdges.length; + }; - 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); + /** + * 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._onUpdate(); - }; + var fields = ['borderWidth','borderWidthSelected','shape','image','radius','fontColor', + 'fontSize','fontFace','group','mass' + ]; + util.selectiveDeepExtend(fields, this.options, properties); + + this.originalLabel = undefined; + // basic properties + if (properties.id !== undefined) {this.id = properties.id;} + if (properties.label !== undefined) {this.label = properties.label; this.originalLabel = properties.label;} + if (properties.title !== undefined) {this.title = properties.title;} + if (properties.x !== undefined) {this.x = properties.x;} + if (properties.y !== undefined) {this.y = properties.y;} + if (properties.value !== undefined) {this.value = properties.value;} + if (properties.level !== undefined) {this.level = properties.level; this.preassignedLevel = true;} + // navigation controls properties + if (properties.horizontalAlignLeft !== undefined) {this.horizontalAlignLeft = properties.horizontalAlignLeft;} + if (properties.verticalAlignTop !== undefined) {this.verticalAlignTop = properties.verticalAlignTop;} + if (properties.triggerFunction !== undefined) {this.triggerFunction = properties.triggerFunction;} - LineGraph.prototype._onUpdate = function(ids) { - this._updateUngrouped(); - this._updateAllGroupData(); - this._updateGraph(); - this.redraw(); - }; - LineGraph.prototype._onAdd = function (ids) {this._onUpdate(ids);}; - LineGraph.prototype._onRemove = function (ids) {this._onUpdate(ids);}; - LineGraph.prototype._onUpdateGroups = function (groupIds) { - for (var i = 0; i < groupIds.length; i++) { - var group = this.groupsData.get(groupIds[i]); - this._updateGroup(group, groupIds[i]); + if (this.id === undefined) { + throw "Node must have an id"; } - this._updateGraph(); - this.redraw(); - }; - LineGraph.prototype._onAddGroups = function (groupIds) {this._onUpdateGroups(groupIds);}; - - LineGraph.prototype._onRemoveGroups = function (groupIds) { - for (var i = 0; i < groupIds.length; i++) { - if (!this.groups.hasOwnProperty(groupIds[i])) { - if (this.groups[groupIds[i]].options.yAxisOrientation == 'right') { - this.yAxisRight.removeGroup(groupIds[i]); - this.legendRight.removeGroup(groupIds[i]); - this.legendRight.redraw(); - } - else { - this.yAxisLeft.removeGroup(groupIds[i]); - this.legendLeft.removeGroup(groupIds[i]); - this.legendLeft.redraw(); + // copy group properties + if (typeof this.options.group === 'number' || (typeof this.options.group === 'string' && this.options.group != '')) { + var groupObj = this.grouplist.get(this.options.group); + for (var prop in groupObj) { + if (groupObj.hasOwnProperty(prop)) { + this.options[prop] = groupObj[prop]; } - delete this.groups[groupIds[i]]; } } - this._updateUngrouped(); - this._updateGraph(); - this.redraw(); - }; - /** - * update a group object - * - * @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]); + + // individual shape properties + if (properties.radius !== undefined) {this.baseRadiusValue = this.options.radius;} + if (properties.color !== undefined) {this.options.color = util.parseColor(properties.color);} + + if (this.options.image!== undefined && this.options.image!= "") { + if (this.imagelist) { + this.imageObj = this.imagelist.load(this.options.image); } else { - this.yAxisLeft.addGroup(groupId, this.groups[groupId]); - this.legendLeft.addGroup(groupId, this.groups[groupId]); + throw "No imagelist provided"; } } - else { - this.groups[groupId].update(group); - if (this.groups[groupId].options.yAxisOrientation == 'right') { - this.yAxisRight.updateGroup(groupId, this.groups[groupId]); - this.legendRight.updateGroup(groupId, this.groups[groupId]); - } - else { - this.yAxisLeft.updateGroup(groupId, this.groups[groupId]); - this.legendLeft.updateGroup(groupId, this.groups[groupId]); - } + + this.xFixed = this.xFixed || (properties.x !== undefined && !properties.allowedToMoveX); + this.yFixed = this.yFixed || (properties.y !== undefined && !properties.allowedToMoveY); + this.radiusFixed = this.radiusFixed || (properties.radius !== undefined); + + if (this.options.shape == 'image') { + this.options.radiusMin = constants.nodes.widthMin; + this.options.radiusMax = constants.nodes.widthMax; } - this.legendLeft.redraw(); - this.legendRight.redraw(); - }; - LineGraph.prototype._updateAllGroupData = function () { - if (this.itemsData != null) { - var groupsContent = {}; - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - groupsContent[groupId] = []; - } - } - for (var itemId in this.itemsData._data) { - if (this.itemsData._data.hasOwnProperty(itemId)) { - var item = this.itemsData._data[itemId]; - item.x = util.convert(item.x,"Date"); - groupsContent[item.group].push(item); - } - } - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - this.groups[groupId].setItems(groupsContent[groupId]); - } - } + + // choose draw method depending on the shape + switch (this.options.shape) { + case 'database': this.draw = this._drawDatabase; this.resize = this._resizeDatabase; break; + case 'box': this.draw = this._drawBox; this.resize = this._resizeBox; break; + case 'circle': this.draw = this._drawCircle; this.resize = this._resizeCircle; break; + case 'ellipse': this.draw = this._drawEllipse; this.resize = this._resizeEllipse; break; + // TODO: add diamond shape + case 'image': this.draw = this._drawImage; this.resize = this._resizeImage; break; + case 'text': this.draw = this._drawText; this.resize = this._resizeText; break; + case 'dot': this.draw = this._drawDot; this.resize = this._resizeShape; break; + case 'square': this.draw = this._drawSquare; this.resize = this._resizeShape; break; + case 'triangle': this.draw = this._drawTriangle; this.resize = this._resizeShape; break; + case 'triangleDown': this.draw = this._drawTriangleDown; this.resize = this._resizeShape; break; + case 'star': this.draw = this._drawStar; this.resize = this._resizeShape; break; + default: this.draw = this._drawEllipse; this.resize = this._resizeEllipse; break; } + // reset the size of the node, this can be changed + this._reset(); }; /** - * 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 + * select this node */ - LineGraph.prototype._updateUngrouped = function() { - if (this.itemsData != null) { - // var t0 = new Date(); - var group = {id: UNGROUPED, content: this.options.defaultGroup}; - this._updateGroup(group, UNGROUPED); - var ungroupedCounter = 0; - if (this.itemsData) { - for (var itemId in this.itemsData._data) { - if (this.itemsData._data.hasOwnProperty(itemId)) { - var item = this.itemsData._data[itemId]; - if (item != undefined) { - if (item.hasOwnProperty('group')) { - if (item.group === undefined) { - item.group = UNGROUPED; - } - } - else { - item.group = UNGROUPED; - } - ungroupedCounter = item.group == UNGROUPED ? ungroupedCounter + 1 : ungroupedCounter; - } - } - } - } + Node.prototype.select = function() { + this.selected = true; + this._reset(); + }; - // much much slower - // var datapoints = this.itemsData.get({ - // filter: function (item) {return item.group === undefined;}, - // showInternalIds:true - // }); - // if (datapoints.length > 0) { - // var updateQuery = []; - // for (var i = 0; i < datapoints.length; i++) { - // updateQuery.push({id:datapoints[i].id, group: UNGROUPED}); - // } - // this.itemsData.update(updateQuery, true); - // } - // var t1 = new Date(); - // var pointInUNGROUPED = this.itemsData.get({filter: function (item) {return item.group == UNGROUPED;}}); - if (ungroupedCounter == 0) { - delete this.groups[UNGROUPED]; - this.legendLeft.removeGroup(UNGROUPED); - this.legendRight.removeGroup(UNGROUPED); - this.yAxisLeft.removeGroup(UNGROUPED); - this.yAxisRight.removeGroup(UNGROUPED); - } - // console.log("getting amount ungrouped",new Date() - t1); - // console.log("putting in ungrouped",new Date() - t0); - } - else { - delete this.groups[UNGROUPED]; - this.legendLeft.removeGroup(UNGROUPED); - this.legendRight.removeGroup(UNGROUPED); - this.yAxisLeft.removeGroup(UNGROUPED); - this.yAxisRight.removeGroup(UNGROUPED); - } + /** + * unselect this node + */ + Node.prototype.unselect = function() { + this.selected = false; + this._reset(); + }; - this.legendLeft.redraw(); - this.legendRight.redraw(); + + /** + * Reset the calculated size of the node, forces it to recalculate its size + */ + Node.prototype.clearSizeCache = function() { + this._reset(); + }; + + /** + * Reset the calculated size of the node, forces it to recalculate its size + * @private + */ + Node.prototype._reset = function() { + this.width = undefined; + this.height = undefined; }; + /** + * get the title of this node. + * @return {string} title The title of the node, or undefined when no title + * has been set. + */ + Node.prototype.getTitle = function() { + return typeof this.title === "function" ? this.title() : this.title; + }; /** - * Redraw the component, mandatory function - * @return {boolean} Returns true if the component is resized + * Calculate the distance to the border of the Node + * @param {CanvasRenderingContext2D} ctx + * @param {Number} angle Angle in radians + * @returns {number} distance Distance to the border in pixels */ - LineGraph.prototype.redraw = function() { - var resized = false; + Node.prototype.distanceToBorder = function (ctx, angle) { + var borderWidth = 1; - this.svg.style.height = ('' + this.options.graphHeight).replace('px','') + 'px'; - if (this.lastWidth === undefined && this.width || this.lastWidth != this.width) { - resized = true; + if (!this.width) { + this.resize(ctx); } - // check if this component is resized - resized = this._isResized() || resized; - // check whether zoomed (in that case we need to re-stack everything) - var visibleInterval = this.body.range.end - this.body.range.start; - var zoomed = (visibleInterval != this.lastVisibleInterval) || (this.width != this.lastWidth); - this.lastVisibleInterval = visibleInterval; - this.lastWidth = this.width; - // calculate actual size and position - this.width = this.dom.frame.offsetWidth; + switch (this.options.shape) { + case 'circle': + case 'dot': + return this.options.radius+ borderWidth; - // the svg element is three times as big as the width, this allows for fully dragging left and right - // without reloading the graph. the controls for this are bound to events in the constructor - if (resized == true) { - this.svg.style.width = util.option.asSize(3*this.width); - this.svg.style.left = util.option.asSize(-this.width); - } - if (zoomed == true) { - this._updateGraph(); - } + 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); - this.legendLeft.redraw(); - this.legendRight.redraw(); + // TODO: implement distanceToBorder for database + // TODO: implement distanceToBorder for triangle + // TODO: implement distanceToBorder for triangleDown - return resized; + case 'box': + case 'image': + case 'text': + default: + if (this.width) { + return Math.min( + Math.abs(this.width / 2 / Math.cos(angle)), + Math.abs(this.height / 2 / Math.sin(angle))) + borderWidth; + // TODO: reckon with border radius too in case of box + } + else { + return 0; + } + + } + // TODO: implement calculation of distance to border for all shapes }; /** - * Update and redraw the graph. - * + * Set forces acting on the node + * @param {number} fx Force in horizontal direction + * @param {number} fy Force in vertical direction */ - LineGraph.prototype._updateGraph = function () { - // reset the svg elements - DOMutil.prepareElements(this.svgElements); - - if (this.width != 0 && this.itemsData != null) { - var group, groupData, preprocessedGroup, i; - var preprocessedGroupData = []; - var processedGroupData = []; - var groupRanges = []; - var changeCalled = false; - - // getting group Ids - var groupIds = []; - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - groupIds.push(groupId); - } - } - - // 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); - - // first select and preprocess the data from the datasets. - // the groups have their preselection of data, we now loop over this data to see - // what data we need to draw. Sorted data is much faster. - // more optimization is possible by doing the sampling before and using the binary search - // to find the end date to determine the increment. - if (groupIds.length > 0) { - for (i = 0; i < groupIds.length; i++) { - group = this.groups[groupIds[i]]; - if (group.visible == true) { - groupData = []; - // optimization for sorted data - if (group.options.sort == true) { - var guess = Math.max(0,util.binarySearchGeneric(group.itemsData, minDate, 'x', 'before')); - - for (var j = guess; j < group.itemsData.length; j++) { - var item = group.itemsData[j]; - if (item !== undefined) { - if (item.x > maxDate) { - groupData.push(item); - break; - } - else { - groupData.push(item); - } - } - } - } - else { - for (var j = 0; j < group.itemsData.length; j++) { - var item = group.itemsData[j]; - if (item !== undefined) { - if (item.x > minDate && item.x < maxDate) { - groupData.push(item); - } - } - } - } - // preprocess, split into ranges and data - if (groupData.length > 0) { - preprocessedGroup = this._preprocessData(groupData, group); - groupRanges.push({min: preprocessedGroup.min, max: preprocessedGroup.max}); - preprocessedGroupData.push(preprocessedGroup.data); - } - else { - groupRanges.push({}); - preprocessedGroupData.push([]); - } - } - else { - groupRanges.push({}); - preprocessedGroupData.push([]); - } - } - - // update the Y axis first, we use this data to draw at the correct Y points - // changeCalled is required to clean the SVG on a change emit. - changeCalled = this._updateYAxis(groupIds, groupRanges); - if (changeCalled == true) { - DOMutil.cleanupElements(this.svgElements); - this.body.emitter.emit("change"); - return; - } - - // with the yAxis scaled correctly, use this to get the Y values of the points. - for (i = 0; i < groupIds.length; i++) { - group = this.groups[groupIds[i]]; - processedGroupData.push(this._convertYvalues(preprocessedGroupData[i],group)) - } - - // draw the groups - for (i = 0; i < groupIds.length; i++) { - group = this.groups[groupIds[i]]; - if (group.visible == true) { - if (group.options.style == 'line') { - this._drawLineGraph(processedGroupData[i], group); - } - else { - this._drawBarGraph (processedGroupData[i], group); - } - } - } - } - } - - // cleanup unused svg elements - DOMutil.cleanupElements(this.svgElements); - }; + Node.prototype._setForce = function(fx, fy) { + this.fx = fx; + this.fy = fy; + }; /** - * this sets the Y ranges for the Y axis. It also determines which of the axis should be shown or hidden. - * @param {array} groupIds + * Add forces acting on the node + * @param {number} fx Force in horizontal direction + * @param {number} fy Force in vertical direction * @private */ - LineGraph.prototype._updateYAxis = function (groupIds, groupRanges) { - var changeCalled = false; - var yAxisLeftUsed = false; - var yAxisRightUsed = false; - var minLeft = 1e9, minRight = 1e9, maxLeft = -1e9, maxRight = -1e9, minVal, maxVal; - var orientation = 'left'; - - // if groups are present - if (groupIds.length > 0) { - for (var i = 0; i < groupIds.length; i++) { - orientation = 'left'; - var group = this.groups[groupIds[i]]; - if (group.visible == true) { - if (group.options.yAxisOrientation == 'right') { - orientation = 'right'; - } + Node.prototype._addForce = function(fx, fy) { + this.fx += fx; + this.fy += fy; + }; - minVal = groupRanges[i].min; - maxVal = groupRanges[i].max; + /** + * Perform one discrete step for the node + * @param {number} interval Time interval in seconds + */ + Node.prototype.discreteStep = function(interval) { + if (!this.xFixed) { + var dx = this.damping * this.vx; // damping force + var ax = (this.fx - dx) / this.options.mass; // acceleration + this.vx += ax * interval; // velocity + this.x += this.vx * interval; // position + } - if (orientation == 'left') { - yAxisLeftUsed = true; - minLeft = minLeft > minVal ? minVal : minLeft; - maxLeft = maxLeft < maxVal ? maxVal : maxLeft; - } - else { - yAxisRightUsed = true; - minRight = minRight > minVal ? minVal : minRight; - maxRight = maxRight < maxVal ? maxVal : maxRight; - } - } - } - if (yAxisLeftUsed == true) { - this.yAxisLeft.setRange(minLeft, maxLeft); - } - if (yAxisRightUsed == true) { - this.yAxisRight.setRange(minRight, maxRight); - } + if (!this.yFixed) { + var dy = this.damping * this.vy; // damping force + var ay = (this.fy - dy) / this.options.mass; // acceleration + this.vy += ay * interval; // velocity + this.y += this.vy * interval; // position } + }; - changeCalled = this._toggleAxisVisiblity(yAxisLeftUsed , this.yAxisLeft) || changeCalled; - changeCalled = this._toggleAxisVisiblity(yAxisRightUsed, this.yAxisRight) || changeCalled; - if (yAxisRightUsed == true && yAxisLeftUsed == true) { - this.yAxisLeft.drawIcons = true; - this.yAxisRight.drawIcons = true; + + /** + * Perform one discrete step for the node + * @param {number} interval Time interval in seconds + * @param {number} maxVelocity The speed limit imposed on the velocity + */ + Node.prototype.discreteStepLimited = function(interval, maxVelocity) { + if (!this.xFixed) { + var dx = this.damping * this.vx; // damping force + var ax = (this.fx - dx) / this.options.mass; // acceleration + this.vx += ax * interval; // velocity + this.vx = (Math.abs(this.vx) > maxVelocity) ? ((this.vx > 0) ? maxVelocity : -maxVelocity) : this.vx; + this.x += this.vx * interval; // position } else { - this.yAxisLeft.drawIcons = false; - this.yAxisRight.drawIcons = false; + this.fx = 0; } - this.yAxisRight.master = !yAxisLeftUsed; - - if (this.yAxisRight.master == false) { - if (yAxisRightUsed == true) {this.yAxisLeft.lineOffset = this.yAxisRight.width;} - else {this.yAxisLeft.lineOffset = 0;} - - changeCalled = this.yAxisLeft.redraw() || changeCalled; - this.yAxisRight.stepPixelsForced = this.yAxisLeft.stepPixels; - changeCalled = this.yAxisRight.redraw() || changeCalled; + if (!this.yFixed) { + var dy = this.damping * this.vy; // damping force + var ay = (this.fy - dy) / this.options.mass; // acceleration + this.vy += ay * interval; // velocity + this.vy = (Math.abs(this.vy) > maxVelocity) ? ((this.vy > 0) ? maxVelocity : -maxVelocity) : this.vy; + this.y += this.vy * interval; // position } else { - changeCalled = this.yAxisRight.redraw() || changeCalled; + this.fy = 0; } - return changeCalled; }; /** - * 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 + * Check if this node has a fixed x and y position + * @return {boolean} true if fixed, false if not */ - LineGraph.prototype._toggleAxisVisiblity = function (axisUsed, axis) { - var changed = false; - if (axisUsed == false) { - if (axis.dom.frame.parentNode) { - axis.hide(); - changed = true; - } - } - else { - if (!axis.dom.frame.parentNode) { - axis.show(); - changed = true; - } - } - return changed; + Node.prototype.isFixed = function() { + return (this.xFixed && this.yFixed); }; - /** - * draw a bar graph - * @param datapoints - * @param group + * Check if this node is moving + * @param {number} vmin the minimum velocity considered as "moving" + * @return {boolean} true if moving, false if it has no velocity */ - LineGraph.prototype._drawBarGraph = function (dataset, group) { - if (dataset != null) { - if (dataset.length > 0) { - var coreDistance; - var minWidth = 0.1 * group.options.barChart.width; - var offset = 0; + // TODO: replace this method with calculating the kinetic energy + Node.prototype.isMoving = function(vmin) { + return (Math.abs(this.vx) > vmin || Math.abs(this.vy) > vmin); + }; - // check for intersections - var intersections = {}; + /** + * check if this node is selecte + * @return {boolean} selected True if node is selected, else false + */ + Node.prototype.isSelected = function() { + return this.selected; + }; - for (var i = 0; i < dataset.length; i++) { - if (i+1 < dataset.length) {coreDistance = Math.abs(dataset[i+1].x - dataset[i].x);} - if (i > 0) {coreDistance = Math.min(coreDistance,Math.abs(dataset[i-1].x - dataset[i].x));} - if (coreDistance == 0) { - if (intersections[dataset[i].x] === undefined) { - intersections[dataset[i].x] = {amount:0, resolved:0}; - } - intersections[dataset[i].x].amount += 1; - } - } - - // plot the bargraph - var key; - for (var i = 0; i < dataset.length; i++) { - key = dataset[i].x; - if (intersections[key] === undefined) { - if (i+1 < dataset.length) {coreDistance = Math.abs(dataset[i+1].x - key);} - if (i > 0) {coreDistance = Math.min(coreDistance,Math.abs(dataset[i-1].x - key));} - var drawData = this._getSafeDrawData(coreDistance, group, minWidth); - } - else { - var nextKey = i + (intersections[key].amount - intersections[key].resolved); - var prevKey = i - (intersections[key].resolved + 1); - if (nextKey < dataset.length) {coreDistance = Math.abs(dataset[nextKey].x - key);} - if (prevKey > 0) {coreDistance = Math.min(coreDistance,Math.abs(dataset[prevKey].x - key));} - var drawData = this._getSafeDrawData(coreDistance, group, minWidth); - intersections[key].resolved += 1; - - if (group.options.barChart.allowOverlap == false) { - drawData.width = drawData.width / intersections[key].amount; - drawData.offset += (intersections[key].resolved) * drawData.width - (0.5*drawData.width * (intersections[key].amount+1)); - if (group.options.barChart.align == 'left') {offset -= 0.5*drawData.width;} - else if (group.options.barChart.align == 'right') {offset += 0.5*drawData.width;} - } - } - DOMutil.drawBar(dataset[i].x + drawData.offset, dataset[i].y, drawData.width, group.zeroPosition - dataset[i].y, group.className + ' bar', this.svgElements, this.svg); - } + /** + * Retrieve the value of the node. Can be undefined + * @return {Number} value + */ + Node.prototype.getValue = function() { + return this.value; + }; - // draw points - if (group.options.drawPoints.enabled == true) { - this._drawPoints(dataset, group, this.svgElements, this.svg, offset); - } - } - } + /** + * 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); }; - LineGraph.prototype._getSafeDrawData = function (coreDistance, group, minWidth) { - var width, offset; - if (coreDistance < group.options.barChart.width && coreDistance > 0) { - width = coreDistance < minWidth ? minWidth : coreDistance; - offset = 0; // recalculate offset with the new width; - if (group.options.slots) { // recalculate the shared width and offset if these options are set. - width = (width / group.options.slots.total); - offset = group.options.slots.slot * width - (0.5*width * (group.options.slots.total+1)); + /** + * Adjust the value range of the node. The node will adjust it's radius + * based on its value. + * @param {Number} min + * @param {Number} max + */ + Node.prototype.setValueRange = function(min, max) { + if (!this.radiusFixed && this.value !== undefined) { + if (max == min) { + this.options.radius= (this.options.radiusMin + this.options.radiusMax) / 2; } - if (group.options.barChart.align == 'left') {offset -= 0.5*coreDistance;} - else if (group.options.barChart.align == 'right') {offset += 0.5*coreDistance;} - } - else { - // no collisions, plot with default settings - width = group.options.barChart.width; - offset = 0; - if (group.options.slots) { - // if the groups are sharing the same points, this allows them to be plotted side by side - width = width / group.options.slots.total; - offset = group.options.slots.slot * width - (0.5*width * (group.options.slots.total+1)); + else { + var scale = (this.options.radiusMax - this.options.radiusMin) / (max - min); + this.options.radius= (this.value - min) * scale + this.options.radiusMin; } - if (group.options.barChart.align == 'left') {offset -= 0.5*group.options.barChart.width;} - else if (group.options.barChart.align == 'right') {offset += 0.5*group.options.barChart.width;} } + this.baseRadiusValue = this.options.radius; + }; - return {width: width, offset: offset}; - } + /** + * 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"; + }; /** - * draw a line graph - * - * @param datapoints - * @param group + * 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 */ - LineGraph.prototype._drawLineGraph = function (dataset, group) { - if (dataset != null) { - if (dataset.length > 0) { - var path, d; - var svgHeight = Number(this.svg.style.height.replace("px","")); - path = DOMutil.getSVGElement('path', this.svgElements, this.svg); - path.setAttributeNS(null, "class", group.className); + 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); + }; - // construct path from dataset - if (group.options.catmullRom.enabled == true) { - d = this._catmullRom(dataset, group); + 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 { - d = this._linear(dataset); - } - - // append with points for fill and finalize the path - if (group.options.shaded.enabled == true) { - var fillPath = DOMutil.getSVGElement('path',this.svgElements, this.svg); - var dFill; - if (group.options.shaded.orientation == 'top') { - dFill = "M" + dataset[0].x + "," + 0 + " " + d + "L" + dataset[dataset.length - 1].x + "," + 0; - } - else { - dFill = "M" + dataset[0].x + "," + svgHeight + " " + d + "L" + dataset[dataset.length - 1].x + "," + svgHeight; - } - fillPath.setAttributeNS(null, "class", group.className + " fill"); - fillPath.setAttributeNS(null, "d", dFill); + width = 0; + height = 0; } - // copy properties to path for drawing. - path.setAttributeNS(null, "d", "M" + d); + } + else { + width = this.imageObj.width; + height = this.imageObj.height; + } + this.width = width; + this.height = height; - // draw points - if (group.options.drawPoints.enabled == true) { - this._drawPoints(dataset, group, this.svgElements, this.svg); - } + this.growthIndicator = 0; + if (this.width > 0 && this.height > 0) { + this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; + this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; + this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeRadiusFactor; + this.growthIndicator = this.width - width; } } - }; - /** - * draw the data points - * - * @param dataset - * @param JSONcontainer - * @param svg - * @param group - */ - LineGraph.prototype._drawPoints = function (dataset, group, JSONcontainer, svg, offset) { - if (offset === undefined) {offset = 0;} - for (var i = 0; i < dataset.length; i++) { - DOMutil.drawPoint(dataset[i].x + offset, dataset[i].y, group, JSONcontainer, svg); - } }; + Node.prototype._drawImage = function (ctx) { + this._resizeImage(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - /** - * This uses the DataAxis object to generate the correct X coordinate on the SVG window. It uses the - * util function toScreen to get the x coordinate from the timestamp. It also pre-filters the data and get the minMax ranges for - * the yAxis. - * - * @param datapoints - * @returns {Array} - * @private - */ - LineGraph.prototype._preprocessData = function (datapoints, group) { - var extractedData = []; - var xValue, yValue; - var toScreen = this.body.util.toScreen; - - var increment = 1; - var amountOfPoints = datapoints.length; + var yLabel; + if (this.imageObj.width != 0 ) { + // draw the shade + if (this.clusterSize > 1) { + var lineWidth = ((this.clusterSize > 1) ? 10 : 0.0); + lineWidth *= this.networkScaleInv; + lineWidth = Math.min(0.2 * this.width,lineWidth); - var yMin = datapoints[0].y; - var yMax = datapoints[0].y; + ctx.globalAlpha = 0.5; + ctx.drawImage(this.imageObj, this.left - lineWidth, this.top - lineWidth, this.width + 2*lineWidth, this.height + 2*lineWidth); + } - // the global screen is used because changing the width of the yAxis may affect the increment, resulting in an endless loop - // of width changing of the yAxis. - if (group.options.sampling == true) { - var xDistance = this.body.util.toGlobalScreen(datapoints[datapoints.length-1].x) - this.body.util.toGlobalScreen(datapoints[0].x); - var pointsPerPixel = amountOfPoints/xDistance; - increment = Math.min(Math.ceil(0.2 * amountOfPoints), Math.max(1,Math.round(pointsPerPixel))); + // draw the image + ctx.globalAlpha = 1.0; + ctx.drawImage(this.imageObj, this.left, this.top, this.width, this.height); + yLabel = this.y + this.height / 2; } - - for (var i = 0; i < amountOfPoints; i += increment) { - xValue = toScreen(datapoints[i].x) + this.width - 1; - yValue = datapoints[i].y; - extractedData.push({x: xValue, y: yValue}); - yMin = yMin > yValue ? yValue : yMin; - yMax = yMax < yValue ? yValue : yMax; + else { + // image still loading... just draw the label for now + yLabel = this.y; } - // extractedData.sort(function (a,b) {return a.x - b.x;}); - return {min: yMin, max: yMax, data: extractedData}; + this._label(ctx, this.label, this.x, yLabel, undefined, "top"); }; - /** - * This uses the DataAxis object to generate the correct Y coordinate on the SVG window. It uses the - * util function toScreen to get the x coordinate from the timestamp. - * - * @param datapoints - * @param options - * @returns {Array} - * @private - */ - LineGraph.prototype._convertYvalues = function (datapoints, group) { - var extractedData = []; - var xValue, yValue; - var axis = this.yAxisLeft; - var svgHeight = Number(this.svg.style.height.replace("px","")); - if (group.options.yAxisOrientation == 'right') { - axis = this.yAxisRight; + Node.prototype._resizeBox = function (ctx) { + if (!this.width) { + var margin = 5; + var textSize = this.getTextSize(ctx); + this.width = textSize.width + 2 * margin; + this.height = textSize.height + 2 * margin; + + this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeWidthFactor; + this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeHeightFactor; + this.growthIndicator = this.width - (textSize.width + 2 * margin); + // this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeRadiusFactor; + } + }; - for (var i = 0; i < datapoints.length; i++) { - xValue = datapoints[i].x; - yValue = Math.round(axis.convertValue(datapoints[i].y)); - extractedData.push({x: xValue, y: yValue}); + Node.prototype._drawBox = function (ctx) { + this._resizeBox(ctx); + + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; + + var clusterLineWidth = 2.5; + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + + // draw the outer border + if (this.clusterSize > 1) { + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + + ctx.roundRect(this.left-2*ctx.lineWidth, this.top-2*ctx.lineWidth, this.width+4*ctx.lineWidth, this.height+4*ctx.lineWidth, this.options.radius); + ctx.stroke(); } + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - group.setZeroPosition(Math.min(svgHeight, axis.convertValue(0))); + ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.options.color.background; - // extractedData.sort(function (a,b) {return a.x - b.x;}); - return extractedData; + ctx.roundRect(this.left, this.top, this.width, this.height, this.options.radius); + ctx.fill(); + ctx.stroke(); + + this._label(ctx, this.label, this.x, this.y); }; - /** - * This uses an uniform parametrization of the CatmullRom algorithm: - * "On the Parameterization of Catmull-Rom Curves" by Cem Yuksel et al. - * @param data - * @returns {string} - * @private - */ - LineGraph.prototype._catmullRomUniform = function(data) { - // catmull rom - var p0, p1, p2, p3, bp1, bp2; - var d = Math.round(data[0].x) + "," + Math.round(data[0].y) + " "; - var normalization = 1/6; - var length = data.length; - for (var i = 0; i < length - 1; i++) { + Node.prototype._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; - p0 = (i == 0) ? data[0] : data[i-1]; - p1 = data[i]; - p2 = data[i+1]; - p3 = (i + 2 < length) ? data[i+2] : p2; + // scaling used for clustering + this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; + this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; + this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeRadiusFactor; + this.growthIndicator = this.width - size; + } + }; + Node.prototype._drawDatabase = function (ctx) { + this._resizeDatabase(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - // Catmull-Rom to Cubic Bezier conversion matrix - // 0 1 0 0 - // -1/6 1 1/6 0 - // 0 1/6 1 -1/6 - // 0 0 1 0 + var clusterLineWidth = 2.5; + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - // bp0 = { x: p1.x, y: p1.y }; - bp1 = { x: ((-p0.x + 6*p1.x + p2.x) *normalization), y: ((-p0.y + 6*p1.y + p2.y) *normalization)}; - bp2 = { x: (( p1.x + 6*p2.x - p3.x) *normalization), y: (( p1.y + 6*p2.y - p3.y) *normalization)}; - // bp0 = { x: p2.x, y: p2.y }; + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - d += "C" + - bp1.x + "," + - bp1.y + " " + - bp2.x + "," + - bp2.y + " " + - p2.x + "," + - p2.y + " "; + // draw the outer border + if (this.clusterSize > 1) { + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + + ctx.database(this.x - this.width/2 - 2*ctx.lineWidth, this.y - this.height*0.5 - 2*ctx.lineWidth, this.width + 4*ctx.lineWidth, this.height + 4*ctx.lineWidth); + ctx.stroke(); } + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - return d; + ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; + ctx.database(this.x - this.width/2, this.y - this.height*0.5, this.width, this.height); + ctx.fill(); + ctx.stroke(); + + this._label(ctx, this.label, this.x, this.y); }; - /** - * This uses either the chordal or centripetal parameterization of the catmull-rom algorithm. - * By default, the centripetal parameterization is used because this gives the nicest results. - * These parameterizations are relatively heavy because the distance between 4 points have to be calculated. - * - * One optimization can be used to reuse distances since this is a sliding window approach. - * @param data - * @returns {string} - * @private - */ - LineGraph.prototype._catmullRom = function(data, group) { - var alpha = group.options.catmullRom.alpha; - if (alpha == 0 || alpha === undefined) { - return this._catmullRomUniform(data); + + Node.prototype._resizeCircle = function (ctx) { + if (!this.width) { + var margin = 5; + var textSize = this.getTextSize(ctx); + var diameter = Math.max(textSize.width, textSize.height) + 2 * margin; + this.options.radius = diameter / 2; + + this.width = diameter; + this.height = diameter; + + // scaling used for clustering + // this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeWidthFactor; + // this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeHeightFactor; + this.options.radius += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeRadiusFactor; + this.growthIndicator = this.options.radius- 0.5*diameter; } - else { - var p0, p1, p2, p3, bp1, bp2, d1,d2,d3, A, B, N, M; - var d3powA, d2powA, d3pow2A, d2pow2A, d1pow2A, d1powA; - var d = Math.round(data[0].x) + "," + Math.round(data[0].y) + " "; - var length = data.length; - for (var i = 0; i < length - 1; i++) { + }; - p0 = (i == 0) ? data[0] : data[i-1]; - p1 = data[i]; - p2 = data[i+1]; - p3 = (i + 2 < length) ? data[i+2] : p2; + Node.prototype._drawCircle = function (ctx) { + this._resizeCircle(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - d1 = Math.sqrt(Math.pow(p0.x - p1.x,2) + Math.pow(p0.y - p1.y,2)); - d2 = Math.sqrt(Math.pow(p1.x - p2.x,2) + Math.pow(p1.y - p2.y,2)); - d3 = Math.sqrt(Math.pow(p2.x - p3.x,2) + Math.pow(p2.y - p3.y,2)); + var clusterLineWidth = 2.5; + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - // Catmull-Rom to Cubic Bezier conversion matrix - // - // A = 2d1^2a + 3d1^a * d2^a + d3^2a - // B = 2d3^2a + 3d3^a * d2^a + d2^2a - // - // [ 0 1 0 0 ] - // [ -d2^2a/N A/N d1^2a/N 0 ] - // [ 0 d3^2a/M B/M -d2^2a/M ] - // [ 0 0 1 0 ] + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - // [ 0 1 0 0 ] - // [ -d2pow2a/N A/N d1pow2a/N 0 ] - // [ 0 d3pow2a/M B/M -d2pow2a/M ] - // [ 0 0 1 0 ] + // draw the outer border + if (this.clusterSize > 1) { + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - d3powA = Math.pow(d3, alpha); - d3pow2A = Math.pow(d3,2*alpha); - d2powA = Math.pow(d2, alpha); - d2pow2A = Math.pow(d2,2*alpha); - d1powA = Math.pow(d1, alpha); - d1pow2A = Math.pow(d1,2*alpha); + ctx.circle(this.x, this.y, this.options.radius+2*ctx.lineWidth); + ctx.stroke(); + } + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - A = 2*d1pow2A + 3*d1powA * d2powA + d2pow2A; - B = 2*d3pow2A + 3*d3powA * d2powA + d2pow2A; - N = 3*d1powA * (d1powA + d2powA); - if (N > 0) {N = 1 / N;} - M = 3*d3powA * (d3powA + d2powA); - if (M > 0) {M = 1 / M;} + ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; + ctx.circle(this.x, this.y, this.options.radius); + ctx.fill(); + ctx.stroke(); - bp1 = { x: ((-d2pow2A * p0.x + A*p1.x + d1pow2A * p2.x) * N), - y: ((-d2pow2A * p0.y + A*p1.y + d1pow2A * p2.y) * N)}; + this._label(ctx, this.label, this.x, this.y); + }; - bp2 = { x: (( d3pow2A * p1.x + B*p2.x - d2pow2A * p3.x) * M), - y: (( d3pow2A * p1.y + B*p2.y - d2pow2A * p3.y) * M)}; + Node.prototype._resizeEllipse = function (ctx) { + if (!this.width) { + var textSize = this.getTextSize(ctx); - if (bp1.x == 0 && bp1.y == 0) {bp1 = p1;} - if (bp2.x == 0 && bp2.y == 0) {bp2 = p2;} - d += "C" + - bp1.x + "," + - bp1.y + " " + - bp2.x + "," + - bp2.y + " " + - p2.x + "," + - p2.y + " "; + 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 d; + // scaling used for clustering + this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; + this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; + this.options.radius += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeRadiusFactor; + this.growthIndicator = this.width - defaultSize; } }; - /** - * this generates the SVG path for a linear drawing between datapoints. - * @param data - * @returns {string} - * @private - */ - LineGraph.prototype._linear = function(data) { - // linear - var d = ""; - for (var i = 0; i < data.length; i++) { - if (i == 0) { - d += data[i].x + "," + data[i].y; - } - else { - d += " " + data[i].x + "," + data[i].y; - } - } - return d; - }; + Node.prototype._drawEllipse = function (ctx) { + this._resizeEllipse(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - module.exports = LineGraph; + var clusterLineWidth = 2.5; + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; -/***/ }, -/* 37 */ -/***/ function(module, exports, __webpack_require__) { + // draw the outer border + if (this.clusterSize > 1) { + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - /** - * @constructor DataStep - * The class DataStep is an iterator for data for the lineGraph. You provide a start data point and an - * end data point. The class itself determines the best scale (step size) based on the - * provided start Date, end Date, and minimumStep. - * - * If minimumStep is provided, the step size is chosen as close as possible - * to the minimumStep but larger than minimumStep. If minimumStep is not - * provided, the scale is set to 1 DAY. - * The minimumStep should correspond with the onscreen size of about 6 characters - * - * Alternatively, you can set a scale by hand. - * After creation, you can initialize the class by executing first(). Then you - * can iterate from the start date to the end date via next(). You can check if - * the end date is reached with the function hasNext(). After each step, you can - * retrieve the current date via getCurrent(). - * The DataStep has scales ranging from milliseconds, seconds, minutes, hours, - * days, to years. - * - * Version: 1.2 - * - * @param {Date} [start] The start date, for example new Date(2010, 9, 21) - * or new Date(2010, 9, 21, 23, 45, 00) - * @param {Date} [end] The end date - * @param {Number} [minimumStep] Optional. Minimum step size in milliseconds - */ - function DataStep(start, end, minimumStep, containerHeight, forcedStepSize) { - // variables - this.current = 0; + ctx.ellipse(this.left-2*ctx.lineWidth, this.top-2*ctx.lineWidth, this.width+4*ctx.lineWidth, this.height+4*ctx.lineWidth); + ctx.stroke(); + } + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - this.autoScale = true; - this.stepIndex = 0; - this.step = 1; - this.scale = 1; + ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; - this.marginStart; - this.marginEnd; + ctx.ellipse(this.left, this.top, this.width, this.height); + ctx.fill(); + ctx.stroke(); + this._label(ctx, this.label, this.x, this.y); + }; - this.majorSteps = [1, 2, 5, 10]; - this.minorSteps = [0.25, 0.5, 1, 2]; + Node.prototype._drawDot = function (ctx) { + this._drawShape(ctx, 'circle'); + }; - this.setRange(start, end, minimumStep, containerHeight, forcedStepSize); - } + Node.prototype._drawTriangle = function (ctx) { + this._drawShape(ctx, 'triangle'); + }; + Node.prototype._drawTriangleDown = function (ctx) { + this._drawShape(ctx, 'triangleDown'); + }; + Node.prototype._drawSquare = function (ctx) { + this._drawShape(ctx, 'square'); + }; - /** - * Set a new range - * If minimumStep is provided, the step size is chosen as close as possible - * to the minimumStep but larger than minimumStep. If minimumStep is not - * provided, the scale is set to 1 DAY. - * The minimumStep should correspond with the onscreen size of about 6 characters - * @param {Number} [start] The start date and time. - * @param {Number} [end] The end date and time. - * @param {Number} [minimumStep] Optional. Minimum step size in milliseconds - */ - DataStep.prototype.setRange = function(start, end, minimumStep, containerHeight, forcedStepSize) { - this._start = start; - this._end = end; + Node.prototype._drawStar = function (ctx) { + this._drawShape(ctx, 'star'); + }; - if (start == end) { - this._start = start - 0.75; - this._end = end + 1; - } + 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; - if (this.autoScale) { - this.setMinimumStep(minimumStep, containerHeight, forcedStepSize); + // scaling used for clustering + this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; + this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; + this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeRadiusFactor; + this.growthIndicator = this.width - size; } - this.setFirst(); }; - /** - * Automatically determine the scale that bests fits the provided minimum step - * @param {Number} [minimumStep] The minimum step size in milliseconds - */ - DataStep.prototype.setMinimumStep = function(minimumStep, containerHeight) { - // round to floor - var size = this._end - this._start; - var safeSize = size * 1.1; - var minimumStepValue = minimumStep * (safeSize / containerHeight); - var orderOfMagnitude = Math.round(Math.log(safeSize)/Math.LN10); + Node.prototype._drawShape = function (ctx, shape) { + this._resizeShape(ctx); - var minorStepIdx = -1; - var magnitudefactor = Math.pow(10,orderOfMagnitude); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - var start = 0; - if (orderOfMagnitude < 0) { - start = orderOfMagnitude; - } + var clusterLineWidth = 2.5; + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + var radiusMultiplier = 2; - 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; - } + // 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; } - this.stepIndex = minorStepIdx; - this.scale = magnitudefactor; - this.step = magnitudefactor * this.minorSteps[minorStepIdx]; - }; - - - /** - * Set the range iterator to the start date. - */ - DataStep.prototype.first = function() { - this.setFirst(); - }; - /** - * Round the current date to the first minor date value - * This must be executed once when the current date is set to start Date - */ - DataStep.prototype.setFirst = function() { - var niceStart = this._start - (this.scale * this.minorSteps[this.stepIndex]); - var niceEnd = this._end + (this.scale * this.minorSteps[this.stepIndex]); + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + // draw the outer border + if (this.clusterSize > 1) { + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - this.marginEnd = this.roundToMinor(niceEnd); - this.marginStart = this.roundToMinor(niceStart); - this.marginRange = this.marginEnd - this.marginStart; + ctx[shape](this.x, this.y, this.options.radius+ radiusMultiplier * ctx.lineWidth); + ctx.stroke(); + } + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - this.current = this.marginEnd; + 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(); + if (this.label) { + this._label(ctx, this.label, this.x, this.y + this.height / 2, undefined, 'top',true); + } }; - 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; + Node.prototype._resizeText = function (ctx) { + if (!this.width) { + var margin = 5; + var textSize = this.getTextSize(ctx); + this.width = textSize.width + 2 * margin; + this.height = textSize.height + 2 * margin; + + // scaling used for clustering + this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; + this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; + this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeRadiusFactor; + this.growthIndicator = this.width - (textSize.width + 2 * margin); } - } + }; + Node.prototype._drawText = function (ctx) { + this._resizeText(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - /** - * 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._label(ctx, this.label, this.x, this.y); }; - /** - * Do the next step - */ - DataStep.prototype.next = function() { - var prev = this.current; - this.current -= this.step; - // safety mechanism: if current time is still unchanged, move to the end - if (this.current == prev) { - this.current = this._end; + Node.prototype._label = function (ctx, text, x, y, align, baseline, labelUnderNode) { + if (text && Number(this.options.fontSize) * this.networkScale > this.fontDrawThreshold) { + ctx.font = (this.selected ? "bold " : "") + this.options.fontSize + "px " + this.options.fontFace; + ctx.fillStyle = this.options.fontColor || "black"; + ctx.textAlign = align || "center"; + ctx.textBaseline = baseline || "middle"; + + var lines = text.split('\n'); + var lineCount = lines.length; + var fontSize = (Number(this.options.fontSize) + 4); + var yLine = y + (1 - lineCount) / 2 * fontSize; + if (labelUnderNode == true) { + yLine = y + (1 - lineCount) / (2 * fontSize); + } + + for (var i = 0; i < lineCount; i++) { + ctx.fillText(lines[i], x, yLine); + yLine += fontSize; + } } }; - /** - * Do the next step - */ - DataStep.prototype.previous = function() { - this.current += this.step; - this.marginEnd += this.step; - this.marginRange = this.marginEnd - this.marginStart; - }; + Node.prototype.getTextSize = function(ctx) { + if (this.label !== undefined) { + ctx.font = (this.selected ? "bold " : "") + this.options.fontSize + "px " + this.options.fontFace; + var lines = this.label.split('\n'), + height = (Number(this.options.fontSize) + 4) * lines.length, + width = 0; - /** - * Get the current datetime - * @return {String} current The current date - */ - DataStep.prototype.getCurrent = function() { - var toPrecision = '' + Number(this.current).toPrecision(5); - for (var i = toPrecision.length-1; i > 0; i--) { - if (toPrecision[i] == "0") { - toPrecision = toPrecision.slice(0,i); - } - else if (toPrecision[i] == "." || toPrecision[i] == ",") { - toPrecision = toPrecision.slice(0,i); - break; - } - else{ - break; + for (var i = 0, iMax = lines.length; i < iMax; i++) { + width = Math.max(width, ctx.measureText(lines[i]).width); } - } - return toPrecision; + return {"width": width, "height": height}; + } + else { + return {"width": 0, "height": 0}; + } }; - - /** - * Snap a date to a rounded value. - * The snap intervals are dependent on the current scale and step. - * @param {Date} date the date to be snapped. - * @return {Date} snappedDate + * 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} */ - DataStep.prototype.snap = function(date) { - + 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; + } }; /** - * 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. + * checks if the core of the node is in the display area, this is used for opening clusters around zoom + * @returns {boolean} */ - DataStep.prototype.isMajor = function() { - return (this.current % (this.scale * this.majorSteps[this.stepIndex]) == 0); + Node.prototype.inView = function() { + return (this.x >= this.canvasTopLeft.x && + this.x < this.canvasBottomRight.x && + this.y >= this.canvasTopLeft.y && + this.y < this.canvasBottomRight.y); }; - module.exports = DataStep; - - -/***/ }, -/* 38 */ -/***/ function(module, exports, __webpack_require__) { - - var util = __webpack_require__(1); - var DOMutil = __webpack_require__(6); - var Component = __webpack_require__(22); - var DataStep = __webpack_require__(37); - /** - * A horizontal time axis - * @param {Object} [options] See DataAxis.setOptions for the available - * options. - * @constructor DataAxis - * @extends Component - * @param body + * 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 */ - function DataAxis (body, options, svg) { - this.id = util.randomUUID(); - this.body = body; - - this.defaultOptions = { - orientation: 'left', // supported: 'left', 'right' - showMinorLabels: true, - showMajorLabels: true, - icons: true, - majorLinesOffset: 7, - minorLinesOffset: 4, - labelOffsetX: 10, - labelOffsetY: 2, - iconWidth: 20, - width: '40px', - visible: true - }; - - this.linegraphSVG = svg; - this.props = {}; - this.DOMelements = { // dynamic elements - lines: {}, - labels: {} - }; + Node.prototype.setScaleAndPos = function(scale,canvasTopLeft,canvasBottomRight) { + this.networkScaleInv = 1.0/scale; + this.networkScale = scale; + this.canvasTopLeft = canvasTopLeft; + this.canvasBottomRight = canvasBottomRight; + }; - this.dom = {}; - this.range = {start:0, end:0}; + /** + * This allows the zoom level of the network to influence the rendering + * + * @param scale + */ + Node.prototype.setScale = function(scale) { + this.networkScaleInv = 1.0/scale; + this.networkScale = scale; + }; - this.options = util.extend({}, this.defaultOptions); - this.conversionFactor = 1; - this.setOptions(options); - this.width = Number(('' + this.options.width).replace("px","")); - this.minWidth = this.width; - this.height = this.linegraphSVG.offsetHeight; - this.stepPixels = 25; - this.stepPixelsForced = 25; - this.lineOffset = 0; - this.master = true; - this.svgElements = {}; + /** + * 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; + }; - this.groups = {}; - this.amountOfGroups = 0; + /** + * 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); + }; - // create the HTML DOM - this._create(); - } + module.exports = Node; - DataAxis.prototype = new Component(); +/***/ }, +/* 37 */ +/***/ function(module, exports, __webpack_require__) { + /** + * 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; + } - DataAxis.prototype.addGroup = function(label, graphOptions) { - if (!this.groups.hasOwnProperty(label)) { - this.groups[label] = graphOptions; + // 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' + } + } + } } - this.amountOfGroups += 1; - }; - DataAxis.prototype.updateGroup = function(label, graphOptions) { - this.groups[label] = graphOptions; - }; + this.x = 0; + this.y = 0; + this.padding = 5; - DataAxis.prototype.removeGroup = function(label) { - if (this.groups.hasOwnProperty(label)) { - delete this.groups[label]; - this.amountOfGroups -= 1; + if (x !== undefined && y !== undefined ) { + this.setPosition(x, y); + } + if (text !== undefined) { + this.setText(text); } - }; - - DataAxis.prototype.setOptions = function (options) { - if (options) { - var redraw = false; - if (this.options.orientation != options.orientation && options.orientation !== undefined) { - redraw = true; - } - var fields = [ - 'orientation', - 'showMinorLabels', - 'showMajorLabels', - 'icons', - 'majorLinesOffset', - 'minorLinesOffset', - 'labelOffsetX', - 'labelOffsetY', - 'iconWidth', - 'width', - 'visible']; - util.selectiveExtend(fields, this.options, options); - - this.minWidth = Number(('' + this.options.width).replace("px","")); + // create the frame + this.frame = document.createElement("div"); + var styleAttr = this.frame.style; + styleAttr.position = "absolute"; + styleAttr.visibility = "hidden"; + styleAttr.border = "1px solid " + style.color.border; + styleAttr.color = style.fontColor; + styleAttr.fontSize = style.fontSize + "px"; + styleAttr.fontFamily = style.fontFace; + styleAttr.padding = this.padding + "px"; + styleAttr.backgroundColor = style.color.background; + styleAttr.borderRadius = "3px"; + styleAttr.MozBorderRadius = "3px"; + styleAttr.WebkitBorderRadius = "3px"; + styleAttr.boxShadow = "3px 3px 10px rgba(128, 128, 128, 0.5)"; + styleAttr.whiteSpace = "nowrap"; + this.container.appendChild(this.frame); + } - if (redraw == true && this.dom.frame) { - this.hide(); - this.show(); - } - } + /** + * @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); }; - /** - * Create the HTML DOM for the DataAxis + * Set the text for the popup window. This can be HTML code + * @param {string} text */ - 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; + Popup.prototype.setText = function(text) { + this.frame.innerHTML = text; + }; - this.dom.lineContainer = document.createElement('div'); - this.dom.lineContainer.style.width = '100%'; - this.dom.lineContainer.style.height = this.height; + /** + * Show the popup window + * @param {boolean} show Optional. Show or hide the window + */ + Popup.prototype.show = function (show) { + if (show === undefined) { + show = true; + } - // create svg element for graph drawing. - this.svg = document.createElementNS('http://www.w3.org/2000/svg',"svg"); - this.svg.style.position = "absolute"; - this.svg.style.top = '0px'; - this.svg.style.height = '100%'; - this.svg.style.width = '100%'; - this.svg.style.display = "block"; - this.dom.frame.appendChild(this.svg); - }; + if (show) { + var height = this.frame.clientHeight; + var width = this.frame.clientWidth; + var maxHeight = this.frame.parentNode.clientHeight; + var maxWidth = this.frame.parentNode.clientWidth; - DataAxis.prototype._redrawGroupIcons = function () { - DOMutil.prepareElements(this.svgElements); + var top = (this.y - height); + if (top + height + this.padding > maxHeight) { + top = maxHeight - height - this.padding; + } + if (top < this.padding) { + top = this.padding; + } - var x; - var iconWidth = this.options.iconWidth; - var iconHeight = 15; - var iconOffset = 4; - var y = iconOffset + 0.5 * iconHeight; + var left = this.x; + if (left + width + this.padding > maxWidth) { + left = maxWidth - width - this.padding; + } + if (left < this.padding) { + left = this.padding; + } - if (this.options.orientation == 'left') { - x = iconOffset; + this.frame.style.left = left + "px"; + this.frame.style.top = top + "px"; + this.frame.style.visibility = "visible"; } else { - x = this.width - iconWidth - iconOffset; - } - - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - if (this.groups[groupId].visible == true) { - this.groups[groupId].drawIcon(x, y, this.svgElements, this.svg, iconWidth, iconHeight); - y += iconHeight + iconOffset; - } - } + this.hide(); } - - DOMutil.cleanupElements(this.svgElements); }; /** - * Create the HTML DOM for the DataAxis + * Hide the popup window */ - DataAxis.prototype.show = function() { - if (!this.dom.frame.parentNode) { - if (this.options.orientation == 'left') { - this.body.dom.left.appendChild(this.dom.frame); - } - else { - this.body.dom.right.appendChild(this.dom.frame); - } - } - - if (!this.dom.lineContainer.parentNode) { - this.body.dom.backgroundHorizontal.appendChild(this.dom.lineContainer); - } + Popup.prototype.hide = function () { + this.frame.style.visibility = "hidden"; }; + module.exports = Popup; + + +/***/ }, +/* 38 */ +/***/ function(module, exports, __webpack_require__) { + /** - * Create the HTML DOM for the DataAxis + * 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 */ - DataAxis.prototype.hide = function() { - if (this.dom.frame.parentNode) { - this.dom.frame.parentNode.removeChild(this.dom.frame); - } + function parseDOT (data) { + dot = data; + return parseGraph(); + } - if (this.dom.lineContainer.parentNode) { - this.dom.lineContainer.parentNode.removeChild(this.dom.lineContainer); - } + // token types enumeration + var TOKENTYPE = { + NULL : 0, + DELIMITER : 1, + IDENTIFIER: 2, + UNKNOWN : 3 + }; + + // map with all delimiters + var DELIMITERS = { + '{': true, + '}': true, + '[': true, + ']': true, + ';': true, + '=': true, + ',': true, + + '->': true, + '--': true }; + var dot = ''; // current dot file + var index = 0; // current index in dot file + var c = ''; // current token character in expr + var token = ''; // current token + var tokenType = TOKENTYPE.NULL; // type of the token + /** - * Set a range (start and end) - * @param end - * @param start - * @param end + * 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. */ - DataAxis.prototype.setRange = function (start, end) { - this.range.start = start; - this.range.end = end; - }; + function first() { + index = 0; + c = dot.charAt(0); + } /** - * Repaint the component - * @return {boolean} Returns true if the component is resized + * 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. */ - DataAxis.prototype.redraw = function () { - var changeCalled = false; - var activeGroups = 0; - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - if (this.groups[groupId].visible == true) { - activeGroups++; - } - } - } - if (this.amountOfGroups == 0 || activeGroups == 0) { - this.hide(); - } - else { - this.show(); - this.height = Number(this.linegraphSVG.style.height.replace("px","")); - // svg offsetheight did not work in firefox and explorer... + function next() { + index++; + c = dot.charAt(index); + } - this.dom.lineContainer.style.height = this.height + 'px'; - this.width = this.options.visible == true ? Number(('' + this.options.width).replace("px","")) : 0; + /** + * Preview the next character from the dot file. + * @return {String} cNext + */ + function nextPreview() { + return dot.charAt(index + 1); + } - var props = this.props; - var frame = this.dom.frame; + /** + * 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); + } - // update classname - frame.className = 'dataaxis'; - - // calculate character width and height - this._calculateCharSize(); - - var orientation = this.options.orientation; - var showMinorLabels = this.options.showMinorLabels; - var showMajorLabels = this.options.showMajorLabels; - - // determine the width and height of the elemens for the axis - props.minorLabelHeight = showMinorLabels ? props.minorCharHeight : 0; - props.majorLabelHeight = showMajorLabels ? props.majorCharHeight : 0; - - props.minorLineWidth = this.body.dom.backgroundHorizontal.offsetWidth - this.lineOffset - this.width + 2 * this.options.minorLinesOffset; - props.minorLineHeight = 1; - props.majorLineWidth = this.body.dom.backgroundHorizontal.offsetWidth - this.lineOffset - this.width + 2 * this.options.majorLinesOffset; - props.majorLineHeight = 1; + /** + * 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 = {}; + } - // take frame offline while updating (is almost twice as fast) - if (orientation == 'left') { - frame.style.top = '0'; - frame.style.left = '0'; - frame.style.bottom = ''; - frame.style.width = this.width + 'px'; - frame.style.height = this.height + "px"; + if (b) { + for (var name in b) { + if (b.hasOwnProperty(name)) { + a[name] = b[name]; + } } - 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"; + } + 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]; } - changeCalled = this._redrawLabels(); - if (this.options.icons == true) { - this._redrawGroupIcons(); + else { + // this is the end point + o[key] = value; } } - return changeCalled; - }; + } /** - * Repaint major and minor text labels and vertical grid lines - * @private + * 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 */ - DataAxis.prototype._redrawLabels = function () { - 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; - var step = new DataStep(this.range.start, this.range.end, minimumStep, this.dom.frame.offsetHeight); - this.step = step; - step.first(); - // get the distance in pixels for a step - var stepPixels = this.dom.frame.offsetHeight / ((step.marginRange / step.step) + 1); - this.stepPixels = stepPixels; + function addNode(graph, node) { + var i, len; + var current = null; - var amountOfSteps = this.height / stepPixels; - var stepDifference = 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; + } - if (this.master == false) { - stepPixels = this.stepPixelsForced; - stepDifference = Math.round((this.height / stepPixels) - amountOfSteps); - for (var i = 0; i < 0.5 * stepDifference; i++) { - step.previous(); + // 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; + } } - amountOfSteps = this.height / stepPixels; } - - this.valueAtZero = step.marginEnd; - var marginStartPos = 0; - - // do not draw the first label - var max = 1; - step.next(); - - this.maxLabelSize = 0; - var y = 0; - while (max < Math.round(amountOfSteps)) { - - y = Math.round(max * stepPixels); - marginStartPos = max * stepPixels; - var isMajor = step.isMajor(); - - if (this.options['showMinorLabels'] && isMajor == false || this.master == false && this.options['showMinorLabels'] == true) { - this._redrawLabel(y - 2, step.getCurrent(), orientation, 'yAxis minor', this.props.minorCharHeight); + if (!current) { + // this is a new node + current = { + id: node.id + }; + if (graph.node) { + // clone default attributes + current.attr = merge(current.attr, graph.node); } + } - if (isMajor && this.options['showMajorLabels'] && this.master == true || - this.options['showMinorLabels'] == false && this.master == false && isMajor == true) { - if (y >= 0) { - this._redrawLabel(y - 2, step.getCurrent(), orientation, 'yAxis major', this.props.majorCharHeight); - } - this._redrawLine(y, orientation, 'grid horizontal major', this.options.majorLinesOffset, this.props.majorLineWidth); + // add node to this (sub)graph and all its parent graphs + for (i = graphs.length - 1; i >= 0; i--) { + var g = graphs[i]; + + if (!g.nodes) { + g.nodes = []; } - else { - this._redrawLine(y, orientation, 'grid horizontal minor', this.options.minorLinesOffset, this.props.minorLineWidth); + if (g.nodes.indexOf(current) == -1) { + g.nodes.push(current); } - - step.next(); - max++; } - this.conversionFactor = marginStartPos/((amountOfSteps-1) * step.step); - - var offset = this.options.icons == true ? this.options.iconWidth + this.options.labelOffsetX + 15 : this.options.labelOffsetX + 15; - // this will resize the yAxis to accomodate the labels. - if (this.maxLabelSize > (this.width - offset) && this.options.visible == true) { - this.width = this.maxLabelSize + offset; - this.options.width = this.width + "px"; - DOMutil.cleanupElements(this.DOMelements.lines); - DOMutil.cleanupElements(this.DOMelements.labels); - this.redraw(); - return true; - } - // this will resize the yAxis if it is too big for the labels. - else if (this.maxLabelSize < (this.width - offset) && this.options.visible == true && this.width > this.minWidth) { - this.width = Math.max(this.minWidth,this.maxLabelSize + offset); - this.options.width = this.width + "px"; - DOMutil.cleanupElements(this.DOMelements.lines); - DOMutil.cleanupElements(this.DOMelements.labels); - this.redraw(); - return true; - } - else { - DOMutil.cleanupElements(this.DOMelements.lines); - DOMutil.cleanupElements(this.DOMelements.labels); - return false; + // merge attributes + if (node.attr) { + current.attr = merge(current.attr, node.attr); } - }; + } /** - * Create a label for the axis at position x - * @private - * @param y - * @param text - * @param orientation - * @param className - * @param characterHeight + * Add an edge to a graph object + * @param {Object} graph + * @param {Object} edge */ - 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 addEdge(graph, edge) { + if (!graph.edges) { + graph.edges = []; } - - label.style.top = y - 0.5 * characterHeight + this.options.labelOffsetY + 'px'; - - text += ''; - - var largestWidth = Math.max(this.props.majorCharWidth,this.props.minorCharWidth); - if (this.maxLabelSize < text.length * largestWidth) { - this.maxLabelSize = text.length * largestWidth; + graph.edges.push(edge); + if (graph.edge) { + var attr = merge({}, graph.edge); // clone default attributes + edge.attr = merge(attr, edge.attr); // merge attributes } - }; + } /** - * Create a minor line for the axis at position y - * @param y - * @param orientation - * @param className - * @param offset - * @param width + * 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 */ - 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'; - } + function createEdge(graph, from, to, type, attr) { + var edge = { + from: from, + to: to, + type: type + }; - line.style.width = width + 'px'; - line.style.top = y + 'px'; + if (graph.edge) { + edge.attr = merge({}, graph.edge); // clone default attributes } - }; - - - DataAxis.prototype.convertValue = function (value) { - var invertedValue = this.valueAtZero - value; - var convertedValue = invertedValue * this.conversionFactor; - return convertedValue; // the -2 is to compensate for the borders - }; + edge.attr = merge(edge.attr || {}, attr); // merge attributes + return edge; + } /** - * 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 + * Get next token in the current dot file. + * The token and token type are available as token and tokenType */ - DataAxis.prototype._calculateCharSize = function () { - // determine the char width and height on the minor axis - if (!('minorCharHeight' in this.props)) { - var textMinor = document.createTextNode('0'); - var measureCharMinor = document.createElement('DIV'); - measureCharMinor.className = 'yAxis minor measure'; - measureCharMinor.appendChild(textMinor); - this.dom.frame.appendChild(measureCharMinor); - - this.props.minorCharHeight = measureCharMinor.clientHeight; - this.props.minorCharWidth = measureCharMinor.clientWidth; + function getToken() { + tokenType = TOKENTYPE.NULL; + token = ''; - this.dom.frame.removeChild(measureCharMinor); + // skip over whitespaces + while (c == ' ' || c == '\t' || c == '\n' || c == '\r') { // space, tab, enter + next(); } - if (!('majorCharHeight' in this.props)) { - var textMajor = document.createTextNode('0'); - var measureCharMajor = document.createElement('DIV'); - measureCharMajor.className = 'yAxis major measure'; - measureCharMajor.appendChild(textMajor); - this.dom.frame.appendChild(measureCharMajor); + do { + var isComment = false; - this.props.majorCharHeight = measureCharMajor.clientHeight; - this.props.majorCharWidth = measureCharMajor.clientWidth; + // 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.dom.frame.removeChild(measureCharMajor); + // skip over whitespaces + while (c == ' ' || c == '\t' || c == '\n' || c == '\r') { // space, tab, enter + next(); + } } - }; - - /** - * Snap a date to a rounded value. - * The snap intervals are dependent on the current scale and step. - * @param {Date} date the date to be snapped. - * @return {Date} snappedDate - */ - DataAxis.prototype.snap = function(date) { - return this.step.snap(date); - }; + while (isComment); - module.exports = DataAxis; + // check for end of dot file + if (c == '') { + // token is still empty + tokenType = TOKENTYPE.DELIMITER; + return; + } + // check for delimiters consisting of 2 characters + var c2 = c + nextPreview(); + if (DELIMITERS[c2]) { + tokenType = TOKENTYPE.DELIMITER; + token = c2; + next(); + next(); + return; + } -/***/ }, -/* 39 */ -/***/ function(module, exports, __webpack_require__) { + // check for delimiters consisting of 1 character + if (DELIMITERS[c]) { + tokenType = TOKENTYPE.DELIMITER; + token = c; + next(); + return; + } - var util = __webpack_require__(1); - var DOMutil = __webpack_require__(6); + // 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(); - /** - * @constructor Group - * @param {Number | String} groupId - * @param {Object} data - * @param {ItemSet} itemSet - */ - function GraphGroup (group, groupId, options, groupsUsingDefaultStyles) { - this.id = groupId; - var fields = ['sampling','style','sort','yAxisOrientation','barChart','drawPoints','shaded','catmullRom','slots'] - this.options = util.selectiveBridgeObject(fields,options); - this.usingDefaultStyle = group.className === undefined; - this.groupsUsingDefaultStyles = groupsUsingDefaultStyles; - this.zeroPosition = 0; - this.update(group); - if (this.usingDefaultStyle == true) { - this.groupsUsingDefaultStyles[0] += 1; + 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; } - this.itemsData = []; - this.visible = group.visible === undefined ? true : group.visible; - } - GraphGroup.prototype.setItems = function(items) { - if (items != null) { - this.itemsData = items; - if (this.options.sort == true) { - this.itemsData.sort(function (a,b) {return a.x - b.x;}) + // 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; } - else { - this.itemsData = []; - } - }; - GraphGroup.prototype.setZeroPosition = function(pos) { - this.zeroPosition = pos; - }; + // 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) + '"'); + } - GraphGroup.prototype.setOptions = function(options) { - if (options !== undefined) { - var fields = ['sampling','style','sort','yAxisOrientation','barChart','slots']; - util.selectiveDeepExtend(fields, this.options, options); + /** + * Parse a graph. + * @returns {Object} graph + */ + function parseGraph() { + var graph = {}; - util.mergeOptions(this.options, options,'catmullRom'); - util.mergeOptions(this.options, options,'drawPoints'); - util.mergeOptions(this.options, options,'shaded'); + first(); + getToken(); - if (options.catmullRom) { - if (typeof options.catmullRom == 'object') { - if (options.catmullRom.parametrization) { - if (options.catmullRom.parametrization == 'uniform') { - this.options.catmullRom.alpha = 0; - } - else if (options.catmullRom.parametrization == 'chordal') { - this.options.catmullRom.alpha = 1.0; - } - else { - this.options.catmullRom.parametrization = 'centripetal'; - this.options.catmullRom.alpha = 0.5; - } - } - } - } + // optional strict keyword + if (token == 'strict') { + graph.strict = true; + getToken(); } - }; - GraphGroup.prototype.update = function(group) { - this.group = group; - this.content = group.content || 'graph'; - this.className = group.className || this.className || "graphGroup" + this.groupsUsingDefaultStyles[0] % 10; - this.visible = group.visible === undefined ? true : group.visible; - this.setOptions(group.options); - }; + // graph or digraph keyword + if (token == 'graph' || token == 'digraph') { + graph.type = token; + getToken(); + } - GraphGroup.prototype.drawIcon = function(x, y, JSONcontainer, SVGcontainer, iconWidth, iconHeight) { - var fillHeight = iconHeight * 0.5; - var path, fillPath; + // optional graph id + if (tokenType == TOKENTYPE.IDENTIFIER) { + graph.id = token; + getToken(); + } - 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"); + // open angle bracket + if (token != '{') { + throw newSyntaxError('Angle bracket { expected'); + } + getToken(); - if (this.options.style == 'line') { - path = DOMutil.getSVGElement("path", JSONcontainer, SVGcontainer); - path.setAttributeNS(null, "class", this.className); - path.setAttributeNS(null, "d", "M" + x + ","+y+" L" + (x + iconWidth) + ","+y+""); - if (this.options.shaded.enabled == true) { - fillPath = DOMutil.getSVGElement("path", JSONcontainer, SVGcontainer); - if (this.options.shaded.orientation == 'top') { - fillPath.setAttributeNS(null, "d", "M"+x+", " + (y - fillHeight) + - "L"+x+","+y+" L"+ (x + iconWidth) + ","+y+" L"+ (x + iconWidth) + "," + (y - fillHeight)); - } - else { - fillPath.setAttributeNS(null, "d", "M"+x+","+y+" " + - "L"+x+"," + (y + fillHeight) + " " + - "L"+ (x + iconWidth) + "," + (y + fillHeight) + - "L"+ (x + iconWidth) + ","+y); - } - fillPath.setAttributeNS(null, "class", this.className + " iconFill"); - } + // statements + parseStatements(graph); - if (this.options.drawPoints.enabled == true) { - DOMutil.drawPoint(x + 0.5 * iconWidth,y, this, JSONcontainer, SVGcontainer); - } + // close angle bracket + if (token != '}') { + throw newSyntaxError('Angle bracket } expected'); } - 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); + getToken(); - 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); + // end of file + if (token !== '') { + throw newSyntaxError('End of file expected'); } - }; + getToken(); + + // remove temporary default properties + delete graph.node; + delete graph.edge; + delete graph.graph; + + return graph; + } /** - * - * @param iconWidth - * @param iconHeight - * @returns {{icon: HTMLElement, label: (group.content|*|string), orientation: (.options.yAxisOrientation|*)}} + * Parse a list with statements. + * @param {Object} graph */ - GraphGroup.prototype.getLegend = function(iconWidth, iconHeight) { - var svg = document.createElementNS('http://www.w3.org/2000/svg',"svg"); - this.drawIcon(0,0.5*iconHeight,[],svg,iconWidth,iconHeight); - return {icon: svg, label: this.content, orientation:this.options.yAxisOrientation}; + function parseStatements (graph) { + while (token !== '' && token != '}') { + parseStatement(graph); + if (token == ';') { + getToken(); + } + } } - module.exports = GraphGroup; + /** + * 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; + } -/***/ }, -/* 40 */ -/***/ function(module, exports, __webpack_require__) { + // parse an attribute statement + var attr = parseAttributeStatement(graph); + if (attr) { + return; + } - var util = __webpack_require__(1); - var DOMutil = __webpack_require__(6); - var Component = __webpack_require__(22); + // parse node + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Identifier expected'); + } + var id = token; // id can be a string or a number + getToken(); - /** - * Legend for Graph2d - */ - function Legend(body, options, side) { - this.body = body; - this.defaultOptions = { - enabled: true, - icons: true, - iconSize: 20, - iconSpacing: 6, - left: { - visible: true, - position: 'top-left' // top/bottom - left,center,right - }, - right: { - visible: true, - position: 'top-left' // top/bottom - left,center,right + if (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.side = side; - this.options = util.extend({},this.defaultOptions); - - this.svgElements = {}; - this.dom = {}; - this.groups = {}; - this.amountOfGroups = 0; - this._create(); - - this.setOptions(options); } - Legend.prototype = new Component(); + /** + * Parse a subgraph + * @param {Object} graph parent graph object + * @return {Object | null} subgraph + */ + function parseSubgraph (graph) { + var subgraph = null; + // optional subgraph keyword + if (token == 'subgraph') { + subgraph = {}; + subgraph.type = 'subgraph'; + getToken(); - Legend.prototype.addGroup = function(label, graphOptions) { - if (!this.groups.hasOwnProperty(label)) { - this.groups[label] = graphOptions; + // optional graph id + if (tokenType == TOKENTYPE.IDENTIFIER) { + subgraph.id = token; + getToken(); + } } - 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; - } - }; + // open angle bracket + if (token == '{') { + getToken(); - Legend.prototype._create = function() { - this.dom.frame = document.createElement('div'); - this.dom.frame.className = 'legend'; - this.dom.frame.style.position = "absolute"; - this.dom.frame.style.top = "10px"; - this.dom.frame.style.display = "block"; + if (!subgraph) { + subgraph = {}; + } + subgraph.parent = graph; + subgraph.node = graph.node; + subgraph.edge = graph.edge; + subgraph.graph = graph.graph; - this.dom.textArea = document.createElement('div'); - this.dom.textArea.className = 'legendText'; - this.dom.textArea.style.position = "relative"; - this.dom.textArea.style.top = "0px"; + // statements + parseStatements(subgraph); - 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'; + // close angle bracket + if (token != '}') { + throw newSyntaxError('Angle bracket } expected'); + } + getToken(); - this.dom.frame.appendChild(this.svg); - this.dom.frame.appendChild(this.dom.textArea); - }; + // remove temporary default properties + delete subgraph.node; + delete subgraph.edge; + delete subgraph.graph; + delete subgraph.parent; - /** - * Hide the component from the DOM - */ - Legend.prototype.hide = function() { - // remove the frame containing the items - if (this.dom.frame.parentNode) { - this.dom.frame.parentNode.removeChild(this.dom.frame); + // register at the parent graph + if (!graph.subgraphs) { + graph.subgraphs = []; + } + graph.subgraphs.push(subgraph); } - }; + + return subgraph; + } /** - * 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); + * parse an attribute statement like "node [shape=circle fontSize=16]". + * Available keywords are 'node', 'edge', 'graph'. + * The previous list with default attributes will be replaced + * @param {Object} graph + * @returns {String | null} keyword Returns the name of the parsed attribute + * (node, edge, graph), or null if nothing + * is parsed. + */ + function parseAttributeStatement (graph) { + // attribute statements + if (token == 'node') { + getToken(); + + // node attributes + graph.node = parseAttributeList(); + return 'node'; } - }; + else if (token == 'edge') { + getToken(); - Legend.prototype.setOptions = function(options) { - var fields = ['enabled','orientation','icons','left','right']; - util.selectiveDeepExtend(fields, this.options, options); - }; + // edge attributes + graph.edge = parseAttributeList(); + return 'edge'; + } + else if (token == 'graph') { + getToken(); - Legend.prototype.redraw = function() { - var activeGroups = 0; - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - if (this.groups[groupId].visible == true) { - activeGroups++; - } - } + // graph attributes + graph.graph = parseAttributeList(); + return 'graph'; } - if (this.options[this.side].visible == false || this.amountOfGroups == 0 || this.options.enabled == false || activeGroups == 0) { - this.hide(); + return null; + } + + /** + * parse a node statement + * @param {Object} graph + * @param {String | Number} id + */ + function parseNodeStatement(graph, id) { + // node statement + var node = { + id: id + }; + var attr = parseAttributeList(); + if (attr) { + node.attr = attr; } - 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 = ''; - } + addNode(graph, node); - if (this.options[this.side].position == 'top-left' || this.options[this.side].position == 'top-right') { - this.dom.frame.style.top = 4 - Number(this.body.dom.center.style.top.replace("px","")) + 'px'; - this.dom.frame.style.bottom = ''; - } - else { - this.dom.frame.style.bottom = 4 - Number(this.body.dom.center.style.top.replace("px","")) + 'px'; - this.dom.frame.style.top = ''; - } + // edge statements + parseEdge(graph, id); + } - 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'; + /** + * 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 { - 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) { - content += this.groups[groupId].content + '
'; - } + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Identifier or subgraph expected'); } + to = token; + addNode(graph, { + id: to + }); + getToken(); } - 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'; + // parse edge attributes + var attr = parseAttributeList(); - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - if (this.groups[groupId].visible == true) { - this.groups[groupId].drawIcon(x, y, this.svgElements, this.svg, iconWidth, iconHeight); - y += iconHeight + this.options.iconSpacing; - } - } - } + // create edge + var edge = createEdge(graph, from, to, type, attr); + addEdge(graph, edge); - DOMutil.cleanupElements(this.svgElements); + from = to; } - }; + } - module.exports = Legend; + /** + * Parse a set with attributes, + * for example [label="1.000", shape=solid] + * @return {Object | null} attr + */ + function parseAttributeList() { + var attr = null; + while (token == '[') { + getToken(); + attr = {}; + while (token !== '' && token != ']') { + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Attribute name expected'); + } + var name = token; -/***/ }, -/* 41 */ -/***/ function(module, exports, __webpack_require__) { + getToken(); + if (token != '=') { + throw newSyntaxError('Equal sign = expected'); + } + getToken(); - var Emitter = __webpack_require__(10); - var Hammer = __webpack_require__(18); - var mousetrap = __webpack_require__(42); - var util = __webpack_require__(1); - var hammerUtil = __webpack_require__(21); - var DataSet = __webpack_require__(7); - var DataView = __webpack_require__(8); - var dotparser = __webpack_require__(43); - var gephiParser = __webpack_require__(44); - var Groups = __webpack_require__(45); - var Images = __webpack_require__(46); - var Node = __webpack_require__(47); - var Edge = __webpack_require__(48); - var Popup = __webpack_require__(49); - var MixinLoader = __webpack_require__(50); + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Attribute value expected'); + } + var value = token; + setValue(attr, name, value); // name can be a path - // Load custom shapes into CanvasRenderingContext2D - __webpack_require__(61); + getToken(); + if (token ==',') { + getToken(); + } + } - /** - * @constructor Network - * Create a network visualization, displaying nodes and edges. - * - * @param {Element} container The DOM element in which the Network will - * be created. Normally a div element. - * @param {Object} data An object containing parameters - * {Array} nodes - * {Array} edges - * @param {Object} options Options - */ - function Network (container, data, options) { - if (!(this instanceof Network)) { - throw new SyntaxError('Constructor must be called with the new operator'); + if (token != ']') { + throw newSyntaxError('Bracket ] expected'); + } + getToken(); } - this._initializeMixinLoaders(); - - // create variables and set default values - this.containerElement = container; - - // render and calculation settings - this.renderRefreshRate = 60; // hz (fps) - this.renderTimestep = 1000 / this.renderRefreshRate; // ms -- saves calculation later on - this.renderTime = 0.5 * this.renderTimestep; // measured time it takes to render a frame - this.maxPhysicsTicksPerRender = 3; // max amount of physics ticks per render step. - this.physicsDiscreteStepsize = 0.50; // discrete stepsize of the simulation + return attr; + } - this.initializing = true; + /** + * Create a syntax error with extra information on current token and index. + * @param {String} message + * @returns {SyntaxError} err + */ + function newSyntaxError(message) { + return new SyntaxError(message + ', got "' + chop(token, 30) + '" (char ' + index + ')'); + } - this.triggerFunctions = {add:null,edit:null,editEdge:null,connect:null,del:null}; + /** + * 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) + '...'); + } - // set constant values - this.defaultOptions = { - nodes: { - mass: 1, - radiusMin: 10, - radiusMax: 30, - radius: 10, - shape: 'ellipse', - image: undefined, - widthMin: 16, // px - widthMax: 64, // px - fixed: false, - fontColor: 'black', - fontSize: 14, // px - fontFace: 'verdana', - level: -1, - color: { - border: '#2B7CE9', - background: '#97C2FC', - highlight: { - border: '#2B7CE9', - background: '#D2E5FF' - }, - hover: { - border: '#2B7CE9', - background: '#D2E5FF' - } - }, - borderColor: '#2B7CE9', - backgroundColor: '#97C2FC', - highlightColor: '#D2E5FF', - group: undefined, - borderWidth: 1 - }, - edges: { - widthMin: 1, - widthMax: 15, - width: 1, - widthSelectionMultiplier: 2, - hoverWidth: 1.5, - style: 'line', - color: { - color:'#848484', - highlight:'#848484', - hover: '#848484' - }, - fontColor: '#343434', - fontSize: 14, // px - fontFace: 'arial', - fontFill: 'white', - arrowScaleFactor: 1, - dash: { - length: 10, - gap: 5, - altLength: undefined - }, - inheritColor: "from" // to, from, false, true (== from) - }, - configurePhysics:false, - physics: { - barnesHut: { - enabled: true, - theta: 1 / 0.6, // inverted to save time during calculation - gravitationalConstant: -2000, - centralGravity: 0.3, - springLength: 95, - springConstant: 0.04, - damping: 0.09 - }, - repulsion: { - centralGravity: 0.0, - springLength: 200, - springConstant: 0.05, - nodeDistance: 100, - damping: 0.09 - }, - hierarchicalRepulsion: { - enabled: false, - centralGravity: 0.0, - springLength: 100, - springConstant: 0.01, - nodeDistance: 150, - damping: 0.09 - }, - damping: null, - centralGravity: null, - springLength: null, - springConstant: null - }, - clustering: { // Per Node in Cluster = PNiC - enabled: false, // (Boolean) | global on/off switch for clustering. - initialMaxNodes: 100, // (# nodes) | if the initial amount of nodes is larger than this, we cluster until the total number is less than this threshold. - clusterThreshold:500, // (# nodes) | during calculate forces, we check if the total number of nodes is larger than this. If it is, cluster until reduced to reduceToNodes - reduceToNodes:300, // (# nodes) | during calculate forces, we check if the total number of nodes is larger than clusterThreshold. If it is, cluster until reduced to this - chainThreshold: 0.4, // (% of all drawn nodes)| maximum percentage of allowed chainnodes (long strings of connected nodes) within all nodes. (lower means less chains). - clusterEdgeThreshold: 20, // (px) | edge length threshold. if smaller, this node is clustered. - sectorThreshold: 100, // (# nodes in cluster) | cluster size threshold. If larger, expanding in own sector. - screenSizeThreshold: 0.2, // (% of canvas) | relative size threshold. If the width or height of a clusternode takes up this much of the screen, decluster node. - fontSizeMultiplier: 4.0, // (px PNiC) | how much the cluster font size grows per node in cluster (in px). - maxFontSize: 1000, - forceAmplification: 0.1, // (multiplier PNiC) | factor of increase fo the repulsion force of a cluster (per node in cluster). - distanceAmplification: 0.1, // (multiplier PNiC) | factor how much the repulsion distance of a cluster increases (per node in cluster). - edgeGrowth: 20, // (px PNiC) | amount of clusterSize connected to the edge is multiplied with this and added to edgeLength. - nodeScaling: {width: 1, // (px PNiC) | growth of the width per node in cluster. - height: 1, // (px PNiC) | growth of the height per node in cluster. - radius: 1}, // (px PNiC) | growth of the radius per node in cluster. - maxNodeSizeIncrements: 600, // (# increments) | max growth of the width per node in cluster. - activeAreaBoxSize: 80, // (px) | box area around the curser where clusters are popped open. - clusterLevelDifference: 2 - }, - navigation: { - enabled: false - }, - keyboard: { - enabled: false, - speed: {x: 10, y: 10, zoom: 0.02} - }, - dataManipulation: { - enabled: false, - initiallyVisible: false - }, - hierarchicalLayout: { - enabled:false, - levelSeparation: 150, - nodeSpacing: 100, - direction: "UD" // UD, DU, LR, RL - }, - freezeForStabilization: false, - smoothCurves: { - enabled: true, - dynamic: true, - type: "continuous", - roundness: 0.5 - }, - dynamicSmoothCurves: true, - maxVelocity: 30, - minVelocity: 0.1, // px/s - stabilize: true, // stabilize before displaying the network - stabilizationIterations: 1000, // maximum number of iteration to stabilize - labels:{ - add:"Add Node", - edit:"Edit", - link:"Add Link", - del:"Delete selected", - editNode:"Edit Node", - editEdge:"Edit Edge", - back:"Back", - addDescription:"Click in an empty space to place a new node.", - linkDescription:"Click on a node and drag the edge to another node to connect them.", - editEdgeDescription:"Click on the control points and drag them to a node to connect to it.", - addError:"The function for add does not support two arguments (data,callback).", - linkError:"The function for connect does not support two arguments (data,callback).", - editError:"The function for edit does not support two arguments (data, callback).", - editBoundError:"No edit function has been bound to this button.", - deleteError:"The function for delete does not support two arguments (data, callback).", - deleteClusterError:"Clusters cannot be deleted." - }, - tooltip: { - delay: 300, - fontColor: 'black', - fontSize: 14, // px - fontFace: 'verdana', - color: { - border: '#666', - background: '#FFFFC6' + /** + * Execute a function fn for each pair of elements in two arrays + * @param {Array | *} array1 + * @param {Array | *} array2 + * @param {function} fn + */ + function forEach2(array1, array2, fn) { + if (array1 instanceof Array) { + array1.forEach(function (elem1) { + if (array2 instanceof Array) { + array2.forEach(function (elem2) { + fn(elem1, elem2); + }); } - }, - dragNetwork: true, - dragNodes: true, - zoomable: true, - hover: false, - hideEdgesOnDrag: false, - hideNodesOnDrag: false, - width : '100%', - height : '100%', - selectable: true + else { + fn(elem1, array2); + } + }); + } + else { + if (array2 instanceof Array) { + array2.forEach(function (elem2) { + fn(array1, elem2); + }); + } + else { + fn(array1, array2); + } + } + } + + /** + * Convert a string containing a graph in DOT language into a map containing + * with nodes and edges in the format of graph. + * @param {String} data Text containing a graph in DOT-notation + * @return {Object} graphData + */ + function DOTToGraph (data) { + // parse the DOT file + var dotData = parseDOT(data); + var graphData = { + nodes: [], + edges: [], + options: {} }; - this.constants = util.extend({}, this.defaultOptions); - this.hoverObj = {nodes:{},edges:{}}; - this.controlNodesActive = false; + // 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); + }); + } - // Node variables - var network = this; - this.groups = new Groups(); // object with groups - this.images = new Images(); // object with images - this.images.setOnloadCallback(function () { - network._redraw(); - }); + // copy the edges + if (dotData.edges) { + /** + * Convert an edge in DOT format to an edge with VisGraph format + * @param {Object} dotEdge + * @returns {Object} graphEdge + */ + function convertEdge(dotEdge) { + var graphEdge = { + from: dotEdge.from, + to: dotEdge.to + }; + merge(graphEdge, dotEdge.attr); + graphEdge.style = (dotEdge.type == '->') ? 'arrow' : 'line'; + return graphEdge; + } - // keyboard navigation variables - this.xIncrement = 0; - this.yIncrement = 0; - this.zoomIncrement = 0; + dotData.edges.forEach(function (dotEdge) { + var from, to; + if (dotEdge.from instanceof Object) { + from = dotEdge.from.nodes; + } + else { + from = { + id: dotEdge.from + } + } - // loading all the mixins: - // load the force calculation functions, grouped under the physics system. - this._loadPhysicsSystem(); - // create a frame and canvas - this._create(); - // load the sector system. (mandatory, fully integrated with Network) - this._loadSectorSystem(); - // load the cluster system. (mandatory, even when not using the cluster system, there are function calls to it) - this._loadClusterSystem(); - // load the selection system. (mandatory, required by Network) - this._loadSelectionSystem(); - // load the selection system. (mandatory, required by Network) - this._loadHierarchySystem(); + if (dotEdge.to instanceof Object) { + to = dotEdge.to.nodes; + } + else { + to = { + id: dotEdge.to + } + } - // apply options - this._setTranslation(this.frame.clientWidth / 2, this.frame.clientHeight / 2); - this._setScale(1); - this.setOptions(options); + if (dotEdge.from instanceof Object && dotEdge.from.edges) { + dotEdge.from.edges.forEach(function (subEdge) { + var graphEdge = convertEdge(subEdge); + graphData.edges.push(graphEdge); + }); + } - // other vars - this.freezeSimulation = false;// freeze the simulation - this.cachedFunctions = {}; + 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); + }); - // containers for nodes and edges - this.calculationNodes = {}; - this.calculationNodeIndices = []; - this.nodeIndices = []; // array with all the indices of the nodes. Used to speed up forces calculation - this.nodes = {}; // object with Node objects - this.edges = {}; // object with Edge objects + if (dotEdge.to instanceof Object && dotEdge.to.edges) { + dotEdge.to.edges.forEach(function (subEdge) { + var graphEdge = convertEdge(subEdge); + graphData.edges.push(graphEdge); + }); + } + }); + } - // position and scale variables and objects - this.canvasTopLeft = {"x": 0,"y": 0}; // coordinates of the top left of the canvas. they will be set during _redraw. - this.canvasBottomRight = {"x": 0,"y": 0}; // coordinates of the bottom right of the canvas. they will be set during _redraw - this.pointerPosition = {"x": 0,"y": 0}; // coordinates of the bottom right of the canvas. they will be set during _redraw - this.areaCenter = {}; // object with x and y elements used for determining the center of the zoom action - this.scale = 1; // defining the global scale variable in the constructor - this.previousScale = this.scale; // this is used to check if the zoom operation is zooming in or out + // copy the options + if (dotData.attr) { + graphData.options = dotData.attr; + } - // datasets or dataviews - this.nodesData = null; // A DataSet or DataView - this.edgesData = null; // A DataSet or DataView + return graphData; + } - // create event listeners used to subscribe on the DataSets of the nodes and edges - this.nodesListeners = { - 'add': function (event, params) { - network._addNodes(params.items); - network.start(); - }, - 'update': function (event, params) { - network._updateNodes(params.items); - network.start(); - }, - 'remove': function (event, params) { - network._removeNodes(params.items); - network.start(); - } - }; - this.edgesListeners = { - 'add': function (event, params) { - network._addEdges(params.items); - network.start(); - }, - 'update': function (event, params) { - network._updateEdges(params.items); - network.start(); + // exports + exports.parseDOT = parseDOT; + exports.DOTToGraph = DOTToGraph; + + +/***/ }, +/* 39 */ +/***/ function(module, exports, __webpack_require__) { + + + function parseGephi(gephiJSON, options) { + var edges = []; + var nodes = []; + this.options = { + edges: { + inheritColor: true }, - 'remove': function (event, params) { - network._removeEdges(params.items); - network.start(); + nodes: { + allowedToMove: false, + parseColor: false } }; - // properties for the animation - this.moving = true; - this.timer = undefined; // Scheduling function. Is definded in this.start(); - - // load data (the disable start variable will be the same as the enabled clustering) - this.setData(data,this.constants.clustering.enabled || this.constants.hierarchicalLayout.enabled); + if (options !== undefined) { + this.options.nodes['allowedToMove'] = options.allowedToMove | false; + this.options.nodes['parseColor'] = options.parseColor | false; + this.options.edges['inheritColor'] = options.inheritColor | true; + } - // hierarchical layout - this.initializing = false; - if (this.constants.hierarchicalLayout.enabled == true) { - this._setupHierarchicalLayout(); + var gEdges = gephiJSON.edges; + var gNodes = gephiJSON.nodes; + for (var i = 0; i < gEdges.length; i++) { + var edge = {}; + var gEdge = gEdges[i]; + edge['id'] = gEdge.id; + edge['from'] = gEdge.source; + edge['to'] = gEdge.target; + edge['attributes'] = gEdge.attributes; + // edge['value'] = gEdge.attributes !== undefined ? gEdge.attributes.Weight : undefined; + // edge['width'] = edge['value'] !== undefined ? undefined : edgegEdge.size; + edge['color'] = gEdge.color; + edge['inheritColor'] = edge['color'] !== undefined ? false : this.options.inheritColor; + edges.push(edge); } - else { - // zoom so all data will fit on the screen, if clustering is enabled, we do not want start to be called here. - if (this.constants.stabilize == false) { - this.zoomExtent(true,this.constants.clustering.enabled); + + 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); } - // if clustering is disabled, the simulation will have started in the setData function - if (this.constants.clustering.enabled) { - this.startWithClustering(); + return {nodes:nodes, edges:edges}; + } + + exports.parseGephi = parseGephi; + +/***/ }, +/* 40 */ +/***/ function(module, exports, __webpack_require__) { + + // Only load hammer.js when in a browser environment + // (loading hammer.js in a node.js environment gives errors) + if (typeof window !== 'undefined') { + module.exports = window['Hammer'] || __webpack_require__(48); + } + else { + module.exports = function () { + throw Error('hammer.js is only available in a browser, not in node.js.'); } } - // Extend Network with an Emitter mixin - Emitter(Network.prototype); - /** - * Get the script path where the vis.js library is located - * - * @returns {string | null} path Path or null when not found. Path does not - * end with a slash. - * @private - */ - Network.prototype._getScriptPath = function() { - var scripts = document.getElementsByTagName( 'script' ); +/***/ }, +/* 41 */ +/***/ function(module, exports, __webpack_require__) { + + // first check if moment.js is already loaded in the browser window, if so, + // use this instance. Else, load via commonjs. + module.exports = (typeof window !== 'undefined') && window['moment'] || __webpack_require__(49); - // find script named vis.js or vis.min.js - for (var i = 0; i < scripts.length; i++) { - var src = scripts[i].src; - var match = src && /\/?vis(.min)?\.js$/.exec(src); - if (match) { - // return path without the script name - return src.substring(0, src.length - match[0].length); - } - } - return null; - }; +/***/ }, +/* 42 */ +/***/ function(module, exports, __webpack_require__) { + var Emitter = __webpack_require__(46); + var Hammer = __webpack_require__(40); + var util = __webpack_require__(2); + var DataSet = __webpack_require__(3); + var DataView = __webpack_require__(4); + var Range = __webpack_require__(15); + var TimeAxis = __webpack_require__(27); + var CurrentTime = __webpack_require__(18); + var CustomTime = __webpack_require__(20); + var ItemSet = __webpack_require__(24); /** - * Find the center position of the network - * @private + * Create a timeline visualization + * @param {HTMLElement} container + * @param {vis.DataSet | Array | google.visualization.DataTable} [items] + * @param {Object} [options] See Core.setOptions for the available options. + * @constructor */ - Network.prototype._getRange = function() { - var minY = 1e9, maxY = -1e9, minX = 1e9, maxX = -1e9, node; - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - node = this.nodes[nodeId]; - if (minX > (node.x)) {minX = node.x;} - if (maxX < (node.x)) {maxX = node.x;} - if (minY > (node.y)) {minY = node.y;} - if (maxY < (node.y)) {maxY = node.y;} - } - } - if (minX == 1e9 && maxX == -1e9 && minY == 1e9 && maxY == -1e9) { - minY = 0, maxY = 0, minX = 0, maxX = 0; - } - return {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; - }; + function Core () {} + // turn Core into an event emitter + Emitter(Core.prototype); /** - * @param {object} range = {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; - * @returns {{x: number, y: number}} + * Create the main DOM for the Core: a root panel containing left, right, + * top, bottom, content, and background panel. + * @param {Element} container The container element where the Core will + * be attached. * @private */ - Network.prototype._findCenter = function(range) { - return {x: (0.5 * (range.maxX + range.minX)), - y: (0.5 * (range.maxY + range.minY))}; - }; + Core.prototype._create = function (container) { + this.dom = {}; + this.dom.root = document.createElement('div'); + this.dom.background = document.createElement('div'); + this.dom.backgroundVertical = document.createElement('div'); + this.dom.backgroundHorizontal = document.createElement('div'); + this.dom.centerContainer = document.createElement('div'); + this.dom.leftContainer = document.createElement('div'); + this.dom.rightContainer = document.createElement('div'); + this.dom.center = document.createElement('div'); + this.dom.left = document.createElement('div'); + this.dom.right = document.createElement('div'); + this.dom.top = document.createElement('div'); + this.dom.bottom = document.createElement('div'); + this.dom.shadowTop = document.createElement('div'); + this.dom.shadowBottom = document.createElement('div'); + this.dom.shadowTopLeft = document.createElement('div'); + this.dom.shadowBottomLeft = document.createElement('div'); + this.dom.shadowTopRight = document.createElement('div'); + this.dom.shadowBottomRight = document.createElement('div'); - /** - * center the network - * - * @param {object} range = {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; - */ - Network.prototype._centerNetwork = function(range) { - var center = this._findCenter(range); + 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'; - center.x *= this.scale; - center.y *= this.scale; - center.x -= 0.5 * this.frame.canvas.clientWidth; - center.y -= 0.5 * this.frame.canvas.clientHeight; + this.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._setTranslation(-center.x,-center.y); // set at 0,0 - }; + this.dom.centerContainer.appendChild(this.dom.center); + this.dom.leftContainer.appendChild(this.dom.left); + this.dom.rightContainer.appendChild(this.dom.right); + + this.dom.centerContainer.appendChild(this.dom.shadowTop); + this.dom.centerContainer.appendChild(this.dom.shadowBottom); + this.dom.leftContainer.appendChild(this.dom.shadowTopLeft); + this.dom.leftContainer.appendChild(this.dom.shadowBottomLeft); + this.dom.rightContainer.appendChild(this.dom.shadowTopRight); + this.dom.rightContainer.appendChild(this.dom.shadowBottomRight); + + this.on('rangechange', this.redraw.bind(this)); + this.on('change', this.redraw.bind(this)); + this.on('touch', this._onTouch.bind(this)); + this.on('pinch', this._onPinch.bind(this)); + this.on('dragstart', this._onDragStart.bind(this)); + this.on('drag', this._onDrag.bind(this)); + + // create event listeners for all interesting events, these events will be + // emitted via emitter + this.hammer = Hammer(this.dom.root, { + prevent_default: true + }); + this.listeners = {}; + + var me = this; + var events = [ + 'touch', 'pinch', + 'tap', 'doubletap', 'hold', + 'dragstart', 'drag', 'dragend', + 'mousewheel', 'DOMMouseScroll' // DOMMouseScroll is needed for Firefox + ]; + events.forEach(function (event) { + var listener = function () { + var args = [event].concat(Array.prototype.slice.call(arguments, 0)); + me.emit.apply(me, args); + }; + me.hammer.on(event, listener); + me.listeners[event] = listener; + }); + + // size properties of each of the panels + this.props = { + root: {}, + background: {}, + centerContainer: {}, + leftContainer: {}, + rightContainer: {}, + center: {}, + left: {}, + right: {}, + top: {}, + bottom: {}, + border: {}, + scrollTop: 0, + scrollTopMin: 0 + }; + this.touch = {}; // store state information needed for touch events + // attach the root panel to the provided container + if (!container) throw new Error('No container provided'); + container.appendChild(this.dom.root); + }; /** - * This function zooms out to fit all data on screen based on amount of nodes - * - * @param {Boolean} [initialZoom] | zoom based on fitted formula or range, true = fitted, default = false; - * @param {Boolean} [disableStart] | If true, start is not called. + * Destroy the Core, clean up all DOM elements and event listeners. */ - Network.prototype.zoomExtent = function(initialZoom, disableStart) { - if (initialZoom === undefined) { - initialZoom = false; - } - if (disableStart === undefined) { - disableStart = false; - } + Core.prototype.destroy = function () { + // unbind datasets + this.clear(); - var range = this._getRange(); - var zoomLevel; + // remove all event listeners + this.off(); - if (initialZoom == true) { - var numberOfNodes = this.nodeIndices.length; - if (this.constants.smoothCurves == true) { - if (this.constants.clustering.enabled == true && - numberOfNodes >= this.constants.clustering.initialMaxNodes) { - zoomLevel = 49.07548 / (numberOfNodes + 142.05338) + 9.1444e-04; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. - } - else { - zoomLevel = 12.662 / (numberOfNodes + 7.4147) + 0.0964822; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. - } - } - else { - if (this.constants.clustering.enabled == true && - numberOfNodes >= this.constants.clustering.initialMaxNodes) { - zoomLevel = 77.5271985 / (numberOfNodes + 187.266146) + 4.76710517e-05; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. - } - else { - zoomLevel = 30.5062972 / (numberOfNodes + 19.93597763) + 0.08413486; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. - } - } + // stop checking for changed size + this._stopAutoResize(); - // correct for larger canvasses. - var factor = Math.min(this.frame.canvas.clientWidth / 600, this.frame.canvas.clientHeight / 600); - zoomLevel *= factor; + // remove from DOM + if (this.dom.root.parentNode) { + this.dom.root.parentNode.removeChild(this.dom.root); } - else { - var xDistance = (Math.abs(range.minX) + Math.abs(range.maxX)) * 1.1; - var yDistance = (Math.abs(range.minY) + Math.abs(range.maxY)) * 1.1; - - var xZoomLevel = this.frame.canvas.clientWidth / xDistance; - var yZoomLevel = this.frame.canvas.clientHeight / yDistance; + this.dom = null; - zoomLevel = (xZoomLevel <= yZoomLevel) ? xZoomLevel : yZoomLevel; + // cleanup hammer touch events + for (var event in this.listeners) { + if (this.listeners.hasOwnProperty(event)) { + delete this.listeners[event]; + } } + this.listeners = null; + this.hammer = null; - if (zoomLevel > 1.0) { - zoomLevel = 1.0; + // give all components the opportunity to cleanup + this.components.forEach(function (component) { + component.destroy(); + }); + + this.body = null; + }; + + + /** + * Set a custom time bar + * @param {Date} time + */ + Core.prototype.setCustomTime = function (time) { + if (!this.customTime) { + throw new Error('Cannot get custom time: Custom time bar is not enabled'); } + this.customTime.setCustomTime(time); + }; - this._setScale(zoomLevel); - this._centerNetwork(range); - if (disableStart == false) { - this.moving = true; - this.start(); + /** + * Retrieve the current custom time. + * @return {Date} customTime + */ + Core.prototype.getCustomTime = function() { + if (!this.customTime) { + throw new Error('Cannot get custom time: Custom time bar is not enabled'); } + + return this.customTime.getCustomTime(); }; /** - * Update the this.nodeIndices with the most recent node index list - * @private + * Get the id's of the currently visible items. + * @returns {Array} The ids of the visible items */ - Network.prototype._updateNodeIndexList = function() { - this._clearNodeIndexList(); - for (var idx in this.nodes) { - if (this.nodes.hasOwnProperty(idx)) { - this.nodeIndices.push(idx); - } - } + Core.prototype.getVisibleItems = function() { + return this.itemSet && this.itemSet.getVisibleItems() || []; }; + /** - * Set nodes and edges, and optionally options as well. + * Clear the Core. By Default, items, groups and options are cleared. + * Example usage: * - * @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. + * timeline.clear(); // clear items, groups, and options + * timeline.clear({options: true}); // clear options only + * + * @param {Object} [what] Optionally specify what to clear. By default: + * {items: true, groups: true, options: true} */ - Network.prototype.setData = function(data, disableStart) { - if (disableStart === undefined) { - disableStart = false; + Core.prototype.clear = function(what) { + // clear items + if (!what || what.items) { + this.setItems(null); } - if (data && data.dot && (data.nodes || data.edges)) { - throw new SyntaxError('Data must contain either parameter "dot" or ' + - ' parameter pair "nodes" and "edges", but not both.'); + // clear groups + if (!what || what.groups) { + this.setGroups(null); } - // 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); - } + // clear options of timeline and of each of the components + if (!what || what.options) { + this.components.forEach(function (component) { + component.setOptions(component.defaultOptions); + }); - this._putDataInSector(); - if (!disableStart) { - // find a stable position or start animating to a stable position - if (this.constants.stabilize) { - var me = this; - setTimeout(function() {me._stabilize(); me.start();},0) - } - else { - this.start(); - } + this.setOptions(this.defaultOptions); // this will also do a redraw } }; /** - * Set options - * @param {Object} options - * @param {Boolean} [initializeView] | set zoom and translation to default. + * Set Core window such that it fits all items */ - Network.prototype.setOptions = function (options) { - if (options) { - var prop; - - var fields = ['nodes','edges','smoothCurves','hierarchicalLayout','clustering','navigation','keyboard','dataManipulation', - 'onAdd','onEdit','onEditEdge','onConnect','onDelete' - ]; - util.selectiveNotDeepExtend(fields,this.constants, options); - util.selectiveNotDeepExtend(['color'],this.constants.nodes, options.nodes); - util.selectiveNotDeepExtend(['color','length'],this.constants.edges, options.edges); - - if (options.physics) { - util.mergeOptions(this.constants.physics, options.physics,'barnesHut'); - util.mergeOptions(this.constants.physics, options.physics,'repulsion'); - - if (options.physics.hierarchicalRepulsion) { - this.constants.hierarchicalLayout.enabled = true; - this.constants.physics.hierarchicalRepulsion.enabled = true; - this.constants.physics.barnesHut.enabled = false; - for (prop in options.physics.hierarchicalRepulsion) { - if (options.physics.hierarchicalRepulsion.hasOwnProperty(prop)) { - this.constants.physics.hierarchicalRepulsion[prop] = options.physics.hierarchicalRepulsion[prop]; - } - } - } - } - - if (options.onAdd) {this.triggerFunctions.add = options.onAdd;} - if (options.onEdit) {this.triggerFunctions.edit = options.onEdit;} - if (options.onEditEdge) {this.triggerFunctions.editEdge = options.onEditEdge;} - if (options.onConnect) {this.triggerFunctions.connect = options.onConnect;} - if (options.onDelete) {this.triggerFunctions.del = options.onDelete;} - - util.mergeOptions(this.constants, options,'smoothCurves'); - util.mergeOptions(this.constants, options,'hierarchicalLayout'); - util.mergeOptions(this.constants, options,'clustering'); - util.mergeOptions(this.constants, options,'navigation'); - util.mergeOptions(this.constants, options,'keyboard'); - util.mergeOptions(this.constants, options,'dataManipulation'); - - - if (options.dataManipulation) { - this.editMode = this.constants.dataManipulation.initiallyVisible; - } - - - // TODO: work out these options and document them - if (options.edges) { - if (options.edges.color !== undefined) { - if (util.isString(options.edges.color)) { - this.constants.edges.color = {}; - this.constants.edges.color.color = options.edges.color; - this.constants.edges.color.highlight = options.edges.color; - this.constants.edges.color.hover = options.edges.color; - } - else { - if (options.edges.color.color !== undefined) {this.constants.edges.color.color = options.edges.color.color;} - if (options.edges.color.highlight !== undefined) {this.constants.edges.color.highlight = options.edges.color.highlight;} - if (options.edges.color.hover !== undefined) {this.constants.edges.color.hover = options.edges.color.hover;} - } - } - - if (!options.edges.fontColor) { - if (options.edges.color !== undefined) { - if (util.isString(options.edges.color)) {this.constants.edges.fontColor = options.edges.color;} - else if (options.edges.color.color !== undefined) {this.constants.edges.fontColor = options.edges.color.color;} - } - } - } + Core.prototype.fit = function() { + // apply the data range as range + var dataRange = this.getItemRange(); - 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); - } - } + // 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); + } - 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); - } - } + // skip range set if there is no start and end date + if (start === null && end === null) { + return; } - // (Re)loading the mixins that can be enabled or disabled in the options. - // load the force calculation functions, grouped under the physics system. - this._loadPhysicsSystem(); - // load the navigation system. - this._loadNavigationControls(); - // load the data manipulation system - this._loadManipulationSystem(); - // configure the smooth curves - this._configureSmoothCurves(); + this.range.setRange(start, end); + }; - // bind keys. If disabled, this will not do anything; - this._createKeyBinds(); - this.setSize(this.constants.width, this.constants.height); - this.moving = true; - this.start(); + /** + * Set the visible window. Both parameters are optional, you can change only + * start or only end. Syntax: + * + * TimeLine.setWindow(start, end) + * TimeLine.setWindow(range) + * + * Where start and end can be a Date, number, or string, and range is an + * object with properties start and end. + * + * @param {Date | Number | String | Object} [start] Start date of visible window + * @param {Date | Number | String} [end] End date of visible window + */ + Core.prototype.setWindow = function(start, end) { + if (arguments.length == 1) { + var range = arguments[0]; + this.range.setRange(range.start, range.end); + } + else { + this.range.setRange(start, end); + } + }; + /** + * Get the visible window + * @return {{start: Date, end: Date}} Visible range + */ + Core.prototype.getWindow = function() { + var range = this.range.getRange(); + return { + start: new Date(range.start), + end: new Date(range.end) + }; }; /** - * 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 + * Force a redraw of the Core. Can be useful to manually redraw when + * option autoResize=false */ - Network.prototype._create = function () { - // remove all elements from the container element. - while (this.containerElement.hasChildNodes()) { - this.containerElement.removeChild(this.containerElement.firstChild); - } + Core.prototype.redraw = function() { + var resized = false, + options = this.options, + props = this.props, + dom = this.dom; - this.frame = document.createElement('div'); - this.frame.className = 'network-frame'; - this.frame.style.position = 'relative'; - this.frame.style.overflow = 'hidden'; + if (!dom) return; // when destroyed - // create the network canvas (HTML canvas element) - this.frame.canvas = document.createElement( 'canvas' ); - this.frame.canvas.style.position = 'relative'; - this.frame.appendChild(this.frame.canvas); - if (!this.frame.canvas.getContext) { - var noCanvas = document.createElement( 'DIV' ); - noCanvas.style.color = 'red'; - noCanvas.style.fontWeight = 'bold' ; - noCanvas.style.padding = '10px'; - noCanvas.innerHTML = 'Error: your browser does not support HTML canvas'; - this.frame.canvas.appendChild(noCanvas); - } + // update class names + dom.root.className = 'vis timeline root ' + options.orientation; - var me = this; - this.drag = {}; - this.pinch = {}; - this.hammer = Hammer(this.frame.canvas, { - prevent_default: true - }); - this.hammer.on('tap', me._onTap.bind(me) ); - this.hammer.on('doubletap', me._onDoubleTap.bind(me) ); - this.hammer.on('hold', me._onHold.bind(me) ); - this.hammer.on('pinch', me._onPinch.bind(me) ); - this.hammer.on('touch', me._onTouch.bind(me) ); - this.hammer.on('dragstart', me._onDragStart.bind(me) ); - this.hammer.on('drag', me._onDrag.bind(me) ); - this.hammer.on('dragend', me._onDragEnd.bind(me) ); - this.hammer.on('release', me._onRelease.bind(me) ); - this.hammer.on('mousewheel',me._onMouseWheel.bind(me) ); - this.hammer.on('DOMMouseScroll',me._onMouseWheel.bind(me) ); // for FF - this.hammer.on('mousemove', me._onMouseMoveTitle.bind(me) ); + // 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, ''); - // add the frame to the container element - this.containerElement.appendChild(this.frame); + // calculate border widths + props.border.left = (dom.centerContainer.offsetWidth - dom.centerContainer.clientWidth) / 2; + props.border.right = props.border.left; + props.border.top = (dom.centerContainer.offsetHeight - dom.centerContainer.clientHeight) / 2; + props.border.bottom = props.border.top; + var borderRootHeight= dom.root.offsetHeight - dom.root.clientHeight; + var borderRootWidth = dom.root.offsetWidth - dom.root.clientWidth; - }; + // calculate the heights. If any of the side panels is empty, we set the height to + // minus the border width, such that the border will be invisible + props.center.height = dom.center.offsetHeight; + props.left.height = dom.left.offsetHeight; + props.right.height = dom.right.offsetHeight; + props.top.height = dom.top.clientHeight || -props.border.top; + props.bottom.height = dom.bottom.clientHeight || -props.border.bottom; + // TODO: compensate borders when any of the panels is empty. - /** - * Binding the keys for keyboard navigation. These functions are defined in the NavigationMixin - * @private - */ - Network.prototype._createKeyBinds = function() { - var me = this; - this.mousetrap = mousetrap; + // apply auto height + // TODO: only calculate autoHeight when needed (else we cause an extra reflow/repaint of the DOM) + var contentHeight = Math.max(props.left.height, props.center.height, props.right.height); + var autoHeight = props.top.height + contentHeight + props.bottom.height + + borderRootHeight + props.border.top + props.border.bottom; + dom.root.style.height = util.option.asSize(options.height, autoHeight + 'px'); - this.mousetrap.reset(); + // calculate heights of the content panels + props.root.height = dom.root.offsetHeight; + props.background.height = props.root.height - borderRootHeight; + var containerHeight = props.root.height - props.top.height - props.bottom.height - + borderRootHeight; + props.centerContainer.height = containerHeight; + props.leftContainer.height = containerHeight; + props.rightContainer.height = props.leftContainer.height; - if (this.constants.keyboard.enabled == true) { - this.mousetrap.bind("up", this._moveUp.bind(me) , "keydown"); - this.mousetrap.bind("up", this._yStopMoving.bind(me), "keyup"); - this.mousetrap.bind("down", this._moveDown.bind(me) , "keydown"); - this.mousetrap.bind("down", this._yStopMoving.bind(me), "keyup"); - this.mousetrap.bind("left", this._moveLeft.bind(me) , "keydown"); - this.mousetrap.bind("left", this._xStopMoving.bind(me), "keyup"); - this.mousetrap.bind("right",this._moveRight.bind(me), "keydown"); - this.mousetrap.bind("right",this._xStopMoving.bind(me), "keyup"); - this.mousetrap.bind("=", this._zoomIn.bind(me), "keydown"); - this.mousetrap.bind("=", this._stopZoom.bind(me), "keyup"); - this.mousetrap.bind("-", this._zoomOut.bind(me), "keydown"); - this.mousetrap.bind("-", this._stopZoom.bind(me), "keyup"); - this.mousetrap.bind("[", this._zoomIn.bind(me), "keydown"); - this.mousetrap.bind("[", this._stopZoom.bind(me), "keyup"); - this.mousetrap.bind("]", this._zoomOut.bind(me), "keydown"); - this.mousetrap.bind("]", this._stopZoom.bind(me), "keyup"); - this.mousetrap.bind("pageup",this._zoomIn.bind(me), "keydown"); - this.mousetrap.bind("pageup",this._stopZoom.bind(me), "keyup"); - this.mousetrap.bind("pagedown",this._zoomOut.bind(me),"keydown"); - this.mousetrap.bind("pagedown",this._stopZoom.bind(me), "keyup"); + // calculate the widths of the panels + props.root.width = dom.root.offsetWidth; + props.background.width = props.root.width - borderRootWidth; + props.left.width = dom.leftContainer.clientWidth || -props.border.left; + props.leftContainer.width = props.left.width; + props.right.width = dom.rightContainer.clientWidth || -props.border.right; + props.rightContainer.width = props.right.width; + var centerWidth = props.root.width - props.left.width - props.right.width - borderRootWidth; + props.center.width = centerWidth; + props.centerContainer.width = centerWidth; + props.top.width = centerWidth; + props.bottom.width = centerWidth; + + // resize the panels + dom.background.style.height = props.background.height + 'px'; + dom.backgroundVertical.style.height = props.background.height + 'px'; + dom.backgroundHorizontal.style.height = props.centerContainer.height + 'px'; + dom.centerContainer.style.height = props.centerContainer.height + 'px'; + dom.leftContainer.style.height = props.leftContainer.height + 'px'; + dom.rightContainer.style.height = props.rightContainer.height + 'px'; + + dom.background.style.width = props.background.width + 'px'; + dom.backgroundVertical.style.width = props.centerContainer.width + 'px'; + dom.backgroundHorizontal.style.width = props.background.width + 'px'; + dom.centerContainer.style.width = props.center.width + 'px'; + dom.top.style.width = props.top.width + 'px'; + dom.bottom.style.width = props.bottom.width + 'px'; + + // reposition the panels + dom.background.style.left = '0'; + dom.background.style.top = '0'; + dom.backgroundVertical.style.left = props.left.width + 'px'; + dom.backgroundVertical.style.top = '0'; + dom.backgroundHorizontal.style.left = '0'; + dom.backgroundHorizontal.style.top = props.top.height + 'px'; + dom.centerContainer.style.left = props.left.width + 'px'; + dom.centerContainer.style.top = props.top.height + 'px'; + dom.leftContainer.style.left = '0'; + dom.leftContainer.style.top = props.top.height + 'px'; + dom.rightContainer.style.left = (props.left.width + props.center.width) + 'px'; + dom.rightContainer.style.top = props.top.height + 'px'; + dom.top.style.left = props.left.width + 'px'; + dom.top.style.top = '0'; + dom.bottom.style.left = props.left.width + 'px'; + dom.bottom.style.top = (props.top.height + props.centerContainer.height) + 'px'; + + // update the scrollTop, feasible range for the offset can be changed + // when the height of the Core or of the contents of the center changed + this._updateScrollTop(); + + // reposition the scrollable contents + var offset = this.props.scrollTop; + if (options.orientation == 'bottom') { + offset += Math.max(this.props.centerContainer.height - this.props.center.height - + this.props.border.top - this.props.border.bottom, 0); } + dom.center.style.left = '0'; + dom.center.style.top = offset + 'px'; + dom.left.style.left = '0'; + dom.left.style.top = offset + 'px'; + dom.right.style.left = '0'; + dom.right.style.top = offset + 'px'; - if (this.constants.dataManipulation.enabled == true) { - this.mousetrap.bind("escape",this._createManipulatorBar.bind(me)); - this.mousetrap.bind("del",this._deleteSelected.bind(me)); + // show shadows when vertical scrolling is available + var visibilityTop = this.props.scrollTop == 0 ? 'hidden' : ''; + var visibilityBottom = this.props.scrollTop == this.props.scrollTopMin ? 'hidden' : ''; + dom.shadowTop.style.visibility = visibilityTop; + dom.shadowBottom.style.visibility = visibilityBottom; + dom.shadowTopLeft.style.visibility = visibilityTop; + dom.shadowBottomLeft.style.visibility = visibilityBottom; + dom.shadowTopRight.style.visibility = visibilityTop; + dom.shadowBottomRight.style.visibility = visibilityBottom; + + // redraw all components + this.components.forEach(function (component) { + resized = component.redraw() || resized; + }); + if (resized) { + // keep repainting until all sizes are settled + this.redraw(); } }; - /** - * Get the pointer location from a touch location - * @param {{pageX: Number, pageY: Number}} touch - * @return {{x: Number, y: Number}} pointer - * @private - */ - Network.prototype._getPointer = function (touch) { - return { - x: touch.pageX - util.getAbsoluteLeft(this.frame.canvas), - y: touch.pageY - util.getAbsoluteTop(this.frame.canvas) - }; + // TODO: deprecated since version 1.1.0, remove some day + Core.prototype.repaint = function () { + throw new Error('Function repaint is deprecated. Use redraw instead.'); }; /** - * On start of a touch gesture, store the pointer - * @param event + * Convert a position on screen (pixels) to a datetime + * @param {int} x Position on the screen in pixels + * @return {Date} time The datetime the corresponds with given position x * @private */ - Network.prototype._onTouch = function (event) { - this.drag.pointer = this._getPointer(event.gesture.center); - this.drag.pinched = false; - this.pinch.scale = this._getScale(); - - this._handleTouch(this.drag.pointer); + // TODO: move this function to Range + Core.prototype._toTime = function(x) { + var conversion = this.range.conversion(this.props.center.width); + return new Date(x / conversion.scale + conversion.offset); }; + /** - * handle drag start event + * Convert a position on the global screen (pixels) to a datetime + * @param {int} x Position on the screen in pixels + * @return {Date} time The datetime the corresponds with given position x * @private */ - Network.prototype._onDragStart = function () { - this._handleDragStart(); + // TODO: move this function to Range + Core.prototype._toGlobalTime = function(x) { + var conversion = this.range.conversion(this.props.root.width); + return new Date(x / conversion.scale + conversion.offset); }; - /** - * This function is called by _onDragStart. - * It is separated out because we can then overload it for the datamanipulation system. - * + * Convert a datetime (Date object) into a position on the screen + * @param {Date} time A date + * @return {int} x The position on the screen in pixels which corresponds + * with the given date. * @private */ - Network.prototype._handleDragStart = function() { - var drag = this.drag; - var node = this._getNodeAt(drag.pointer); - // note: drag.pointer is set in _onTouch to get the initial touch location - - drag.dragging = true; - drag.selection = []; - drag.translation = this._getTranslation(); - drag.nodeId = null; - - if (node != null) { - drag.nodeId = node.id; - // select the clicked node if not yet selected - if (!node.isSelected()) { - this._selectObject(node,false); - } - - // create an array with the selected nodes and their original location and status - for (var objectId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(objectId)) { - var object = this.selectionObj.nodes[objectId]; - var s = { - id: object.id, - node: object, - - // store original x, y, xFixed and yFixed, make the node temporarily Fixed - x: object.x, - y: object.y, - xFixed: object.xFixed, - yFixed: object.yFixed - }; - - object.xFixed = true; - object.yFixed = true; - - drag.selection.push(s); - } - } - } + // TODO: move this function to Range + Core.prototype._toScreen = function(time) { + var conversion = this.range.conversion(this.props.center.width); + return (time.valueOf() - conversion.offset) * conversion.scale; }; /** - * handle drag event + * Convert a datetime (Date object) into a position on the root + * This is used to get the pixel density estimate for the screen, not the center panel + * @param {Date} time A date + * @return {int} x The position on root in pixels which corresponds + * with the given date. * @private */ - Network.prototype._onDrag = function (event) { - this._handleOnDrag(event) + // TODO: move this function to Range + Core.prototype._toGlobalScreen = function(time) { + var conversion = this.range.conversion(this.props.root.width); + return (time.valueOf() - conversion.offset) * conversion.scale; }; /** - * This function is called by _onDrag. - * It is separated out because we can then overload it for the datamanipulation system. - * + * Initialize watching when option autoResize is true * @private */ - Network.prototype._handleOnDrag = function(event) { - if (this.drag.pinched) { - return; + Core.prototype._initAutoResize = function () { + if (this.options.autoResize == true) { + this._startAutoResize(); } + else { + this._stopAutoResize(); + } + }; - var pointer = this._getPointer(event.gesture.center); - + /** + * 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; - 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); - } + this._stopAutoResize(); - if (!s.yFixed) { - node.y = me._YconvertDOMtoCanvas(me._YconvertCanvasToDOM(s.y) + deltaY); - } - }); + this._onResize = function() { + if (me.options.autoResize != true) { + // stop watching when the option autoResize is changed to false + me._stopAutoResize(); + return; + } + if (me.dom.root) { + // check whether the frame is resized + if ((me.dom.root.clientWidth != me.props.lastWidth) || + (me.dom.root.clientHeight != me.props.lastHeight)) { + me.props.lastWidth = me.dom.root.clientWidth; + me.props.lastHeight = me.dom.root.clientHeight; - // start _animationStep if not yet running - if (!this.moving) { - this.moving = true; - this.start(); + me.emit('change'); + } } - } - else { - if (this.constants.dragNetwork == true) { - // move the network - var diffX = pointer.x - this.drag.pointer.x; - var diffY = pointer.y - this.drag.pointer.y; + }; - this._setTranslation( - this.drag.translation.x + diffX, - this.drag.translation.y + diffY - ); - this._redraw(); - // this.moving = true; - // this.start(); - } - } + // add event listener to window resize + util.addEventListener(window, 'resize', this._onResize); + + this.watchTimer = setInterval(this._onResize, 1000); }; /** - * handle drag start event + * Stop watching for a resize of the frame. * @private */ - Network.prototype._onDragEnd = function () { - this.drag.dragging = false; - var selection = this.drag.selection; - if (selection && selection.length) { - selection.forEach(function (s) { - // restore original xFixed and yFixed - s.node.xFixed = s.xFixed; - s.node.yFixed = s.yFixed; - }); - this.moving = true; - this.start(); - } - else { - this._redraw(); + 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; }; /** - * handle tap/click event: select/unselect a node + * Start moving the timeline vertically + * @param {Event} event * @private */ - Network.prototype._onTap = function (event) { - var pointer = this._getPointer(event.gesture.center); - this.pointerPosition = pointer; - this._handleTap(pointer); - + Core.prototype._onTouch = function (event) { + this.touch.allowDragging = true; }; - /** - * handle doubletap event + * Start moving the timeline vertically + * @param {Event} event * @private */ - Network.prototype._onDoubleTap = function (event) { - var pointer = this._getPointer(event.gesture.center); - this._handleDoubleTap(pointer); + Core.prototype._onPinch = function (event) { + this.touch.allowDragging = false; }; - /** - * handle long tap event: multi select nodes + * Start moving the timeline vertically + * @param {Event} event * @private */ - Network.prototype._onHold = function (event) { - var pointer = this._getPointer(event.gesture.center); - this.pointerPosition = pointer; - this._handleOnHold(pointer); + Core.prototype._onDragStart = function (event) { + this.touch.initialScrollTop = this.props.scrollTop; }; /** - * handle the release of the screen - * + * Move the timeline vertically + * @param {Event} event * @private */ - Network.prototype._onRelease = function (event) { - var pointer = this._getPointer(event.gesture.center); - this._handleOnRelease(pointer); + Core.prototype._onDrag = function (event) { + // refuse to drag when we where pinching to prevent the timeline make a jump + // when releasing the fingers in opposite order from the touch screen + if (!this.touch.allowDragging) return; + + var delta = event.gesture.deltaY; + + var oldScrollTop = this._getScrollTop(); + var newScrollTop = this._setScrollTop(this.touch.initialScrollTop + delta); + + if (newScrollTop != oldScrollTop) { + this.redraw(); // TODO: this causes two redraws when dragging, the other is triggered by rangechange already + } }; /** - * Handle pinch event - * @param event + * Apply a scrollTop + * @param {Number} scrollTop + * @returns {Number} scrollTop Returns the applied scrollTop * @private */ - Network.prototype._onPinch = function (event) { - 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) + Core.prototype._setScrollTop = function (scrollTop) { + this.props.scrollTop = scrollTop; + this._updateScrollTop(); + return this.props.scrollTop; }; /** - * 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 + * Update the current scrollTop when the height of the containers has been changed + * @returns {Number} scrollTop Returns the applied scrollTop * @private */ - Network.prototype._zoom = function(scale, pointer) { - if (this.constants.zoomable == true) { - var scaleOld = this._getScale(); - if (scale < 0.00001) { - scale = 0.00001; - } - if (scale > 10) { - scale = 10; - } - - var preScaleDragPointer = null; - if (this.drag !== undefined) { - if (this.drag.dragging == true) { - preScaleDragPointer = this.DOMtoCanvas(this.drag.pointer); - } + 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.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.props.scrollTopMin = scrollTopMin; + } - this.areaCenter = {"x" : this._XconvertDOMtoCanvas(pointer.x), - "y" : this._YconvertDOMtoCanvas(pointer.y)}; + // 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; - this._setScale(scale); - this._setTranslation(tx, ty); - this.updateClustersDefault(); + return this.props.scrollTop; + }; - if (preScaleDragPointer != null) { - var postScaleDragPointer = this.canvasToDOM(preScaleDragPointer); - this.drag.pointer.x = postScaleDragPointer.x; - this.drag.pointer.y = postScaleDragPointer.y; - } + /** + * Get the current scrollTop + * @returns {number} scrollTop + * @private + */ + Core.prototype._getScrollTop = function () { + return this.props.scrollTop; + }; - this._redraw(); + module.exports = Core; - if (scaleOld < scale) { - this.emit("zoom", {direction:"+"}); - } - else { - this.emit("zoom", {direction:"-"}); - } - return scale; - } - }; +/***/ }, +/* 43 */ +/***/ function(module, exports, __webpack_require__) { + var Hammer = __webpack_require__(40); /** - * 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 + * Fake a hammer.js gesture. Event can be a ScrollEvent or MouseMoveEvent + * @param {Element} element + * @param {Event} event */ - Network.prototype._onMouseWheel = function(event) { - // retrieve delta - var delta = 0; - if (event.wheelDelta) { /* IE/Opera. */ - delta = event.wheelDelta/120; - } else if (event.detail) { /* Mozilla case. */ - // In Mozilla, sign of delta is different than in IE. - // Also, delta is multiple of 3. - delta = -event.detail/3; - } - - // If delta is nonzero, handle it. - // Basically, delta is now positive if wheel was scrolled up, - // and negative, if wheel was scrolled down. - if (delta) { + exports.fakeGesture = function(element, event) { + var eventType = null; - // calculate the new scale - var scale = this._getScale(); - var zoom = delta / 10; - if (delta < 0) { - zoom = zoom / (1 - zoom); - } - scale *= (1 + zoom); + // for hammer.js 1.0.5 + // var gesture = Hammer.event.collectEventData(this, eventType, event); - // calculate the pointer location - var gesture = hammerUtil.fakeGesture(this, event); - var pointer = this._getPointer(gesture.center); + // for hammer.js 1.0.6+ + var touches = Hammer.event.getTouchList(event, eventType); + var gesture = Hammer.event.collectEventData(this, eventType, touches, event); - // apply the new scale - this._zoom(scale, pointer); + // on IE in standards mode, no touches are recognized by hammer.js, + // resulting in NaN values for center.pageX and center.pageY + if (isNaN(gesture.center.pageX)) { + gesture.center.pageX = event.pageX; + } + if (isNaN(gesture.center.pageY)) { + gesture.center.pageY = event.pageY; } - // Prevent default actions caused by mouse wheel. - event.preventDefault(); + return gesture; }; +/***/ }, +/* 44 */ +/***/ function(module, exports, __webpack_require__) { + /** - * Mouse move handler for checking whether the title moves over a node with a title. - * @param {Event} event - * @private + * Canvas shapes used by Network */ - Network.prototype._onMouseMoveTitle = function (event) { - var gesture = hammerUtil.fakeGesture(this, event); - var pointer = this._getPointer(gesture.center); + if (typeof CanvasRenderingContext2D !== 'undefined') { - // check if the previously selected node is still selected - if (this.popupObj) { - this._checkHidePopup(pointer); - } + /** + * Draw a circle shape + */ + CanvasRenderingContext2D.prototype.circle = function(x, y, r) { + this.beginPath(); + this.arc(x, y, r, 0, 2*Math.PI, false); + }; - // start a timeout that will check if the mouse is positioned above - // an element - var me = this; - var checkShow = function() { - me._checkShowPopup(pointer); + /** + * 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); }; - if (this.popupTimer) { - clearInterval(this.popupTimer); // stop any running calculationTimer - } - if (!this.drag.dragging) { - this.popupTimer = setTimeout(checkShow, this.constants.tooltip.delay); - } + /** + * Draw a triangle shape + * @param {Number} x horizontal center + * @param {Number} y vertical center + * @param {Number} r radius, half the length of the sides of the triangle + */ + CanvasRenderingContext2D.prototype.triangle = function(x, y, r) { + // http://en.wikipedia.org/wiki/Equilateral_triangle + this.beginPath(); + + var s = r * 2; + var s2 = s / 2; + var ir = Math.sqrt(3) / 6 * s; // radius of inner circle + var h = Math.sqrt(s * s - s2 * s2); // height + + this.moveTo(x, y - (h - ir)); + this.lineTo(x + s2, y + ir); + this.lineTo(x - s2, y + ir); + this.lineTo(x, y - (h - ir)); + this.closePath(); + }; /** - * Adding hover highlights + * Draw a triangle shape in downward orientation + * @param {Number} x horizontal center + * @param {Number} y vertical center + * @param {Number} r radius */ - 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]; - } - } + CanvasRenderingContext2D.prototype.triangleDown = function(x, y, r) { + // http://en.wikipedia.org/wiki/Equilateral_triangle + this.beginPath(); - // adding hover highlights - var obj = this._getNodeAt(pointer); - if (obj == null) { - obj = this._getEdgeAt(pointer); - } - if (obj != null) { - this._hoverObject(obj); - } + 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 - // 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.moveTo(x, y + (h - ir)); + this.lineTo(x + s2, y - ir); + this.lineTo(x - s2, y - ir); + this.lineTo(x, y + (h - ir)); + this.closePath(); + }; + + /** + * Draw a star shape, a star with 5 points + * @param {Number} x horizontal center + * @param {Number} y vertical center + * @param {Number} r radius, half the length of the sides of the triangle + */ + CanvasRenderingContext2D.prototype.star = function(x, y, r) { + // http://www.html5canvastutorials.com/labs/html5-canvas-star-spinner/ + this.beginPath(); + + for (var n = 0; n < 10; n++) { + var radius = (n % 2 === 0) ? r * 1.3 : r * 0.5; + this.lineTo( + x + radius * Math.sin(n * 2 * Math.PI / 10), + y - radius * Math.cos(n * 2 * Math.PI / 10) + ); } - this.redraw(); - } - }; - /** - * Check if there is an element on the given position in the network - * (a node or edge). If so, and if this element has a title, - * show a popup window with its title. - * - * @param {{x:Number, y:Number}} pointer - * @private - */ - Network.prototype._checkShowPopup = function (pointer) { - var obj = { - left: this._XconvertDOMtoCanvas(pointer.x), - top: this._YconvertDOMtoCanvas(pointer.y), - right: this._XconvertDOMtoCanvas(pointer.x), - bottom: this._YconvertDOMtoCanvas(pointer.y) + this.closePath(); + }; + + /** + * http://stackoverflow.com/questions/1255512/how-to-draw-a-rounded-rectangle-on-html-canvas + */ + CanvasRenderingContext2D.prototype.roundRect = function(x, y, w, h, r) { + var r2d = Math.PI/180; + if( w - ( 2 * r ) < 0 ) { r = ( w / 2 ); } //ensure that the radius isn't too large for x + if( h - ( 2 * r ) < 0 ) { r = ( h / 2 ); } //ensure that the radius isn't too large for y + this.beginPath(); + this.moveTo(x+r,y); + this.lineTo(x+w-r,y); + this.arc(x+w-r,y+r,r,r2d*270,r2d*360,false); + this.lineTo(x+w,y+h-r); + this.arc(x+w-r,y+h-r,r,0,r2d*90,false); + this.lineTo(x+r,y+h); + this.arc(x+r,y+h-r,r,r2d*90,r2d*180,false); + this.lineTo(x,y+r); + this.arc(x+r,y+r,r,r2d*180,r2d*270,false); + }; + + /** + * http://stackoverflow.com/questions/2172798/how-to-draw-an-oval-in-html5-canvas + */ + CanvasRenderingContext2D.prototype.ellipse = function(x, y, w, h) { + var kappa = .5522848, + ox = (w / 2) * kappa, // control point offset horizontal + oy = (h / 2) * kappa, // control point offset vertical + xe = x + w, // x-end + ye = y + h, // y-end + xm = x + w / 2, // x-middle + ym = y + h / 2; // y-middle + + this.beginPath(); + this.moveTo(x, ym); + this.bezierCurveTo(x, ym - oy, xm - ox, y, xm, y); + this.bezierCurveTo(xm + ox, y, xe, ym - oy, xe, ym); + this.bezierCurveTo(xe, ym + oy, xm + ox, ye, xm, ye); + this.bezierCurveTo(xm - ox, ye, x, ym + oy, x, ym); }; - var id; - var lastPopupNode = this.popupObj; - if (this.popupObj == undefined) { - // search the nodes for overlap, select the top one in case of multiple nodes - var nodes = this.nodes; - for (id in nodes) { - if (nodes.hasOwnProperty(id)) { - var node = nodes[id]; - if (node.getTitle() !== undefined && node.isOverlappingWith(obj)) { - this.popupObj = node; - break; - } - } - } - } - if (this.popupObj === undefined) { - // search the edges for overlap - var edges = this.edges; - for (id in edges) { - if (edges.hasOwnProperty(id)) { - var edge = edges[id]; - if (edge.connected && (edge.getTitle() !== undefined) && - edge.isOverlappingWith(obj)) { - this.popupObj = edge; - break; - } - } - } - } + /** + * 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; - if (this.popupObj) { - // show popup message window - if (this.popupObj != lastPopupNode) { - var me = this; - if (!me.popup) { - me.popup = new Popup(me.frame, me.constants.tooltip); - } + var kappa = .5522848, + ox = (wEllipse / 2) * kappa, // control point offset horizontal + oy = (hEllipse / 2) * kappa, // control point offset vertical + xe = x + wEllipse, // x-end + ye = y + hEllipse, // y-end + xm = x + wEllipse / 2, // x-middle + ym = y + hEllipse / 2, // y-middle + ymb = y + (h - hEllipse/2), // y-midlle, bottom ellipse + yeb = y + h; // y-end, bottom ellipse - // adjust a small offset such that the mouse cursor is located in the - // bottom left location of the popup, and you can easily move over the - // popup area - me.popup.setPosition(pointer.x - 3, pointer.y - 3); - me.popup.setText(me.popupObj.getTitle()); - me.popup.show(); - } - } - else { - if (this.popup) { - this.popup.hide(); - } - } - }; + 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); - /** - * Check if the popup must be hided, which is the case when the mouse is no - * longer hovering on the object - * @param {{x:Number, y:Number}} pointer - * @private - */ - Network.prototype._checkHidePopup = function (pointer) { - if (!this.popupObj || !this._getNodeAt(pointer) ) { - this.popupObj = undefined; - if (this.popup) { - this.popup.hide(); - } - } - }; + this.bezierCurveTo(x, ym - oy, xm - ox, y, xm, y); + this.bezierCurveTo(xm + ox, y, xe, ym - oy, xe, ym); + this.lineTo(xe, ymb); - /** - * Set a new size for the network - * @param {string} width Width in pixels or percentage (for example '800px' - * or '50%') - * @param {string} height Height in pixels or percentage (for example '400px' - * or '30%') - */ - Network.prototype.setSize = function(width, height) { - this.frame.style.width = width; - this.frame.style.height = height; + this.bezierCurveTo(xe, ymb + oy, xm + ox, yeb, xm, yeb); + this.bezierCurveTo(xm - ox, yeb, x, ymb + oy, x, ymb); - this.frame.canvas.style.width = '100%'; - this.frame.canvas.style.height = '100%'; + this.lineTo(x, ym); + }; - this.frame.canvas.width = this.frame.canvas.clientWidth; - this.frame.canvas.height = this.frame.canvas.clientHeight; - if (this.manipulationDiv !== undefined) { - this.manipulationDiv.style.width = this.frame.canvas.clientWidth + "px"; - } - if (this.navigationDivs !== undefined) { - if (this.navigationDivs['wrapper'] !== undefined) { - this.navigationDivs['wrapper'].style.width = this.frame.canvas.clientWidth + "px"; - this.navigationDivs['wrapper'].style.height = this.frame.canvas.clientHeight + "px"; - } - } + /** + * Draw an arrow point (no line) + */ + CanvasRenderingContext2D.prototype.arrow = function(x, y, angle, length) { + // tail + var xt = x - length * Math.cos(angle); + var yt = y - length * Math.sin(angle); - this.emit('resize', {width:this.frame.canvas.width,height:this.frame.canvas.height}); - }; + // inner tail + // TODO: allow to customize different shapes + var xi = x - length * 0.9 * Math.cos(angle); + var yi = y - length * 0.9 * Math.sin(angle); - /** - * Set a data set with nodes for the network - * @param {Array | DataSet | DataView} nodes The data containing the nodes. - * @private - */ - Network.prototype._setNodes = function(nodes) { - var oldNodesData = this.nodesData; + // 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); - if (nodes instanceof DataSet || nodes instanceof DataView) { - this.nodesData = nodes; - } - else if (nodes instanceof Array) { - this.nodesData = new DataSet(); - this.nodesData.add(nodes); - } - else if (!nodes) { - this.nodesData = new DataSet(); - } - else { - throw new TypeError('Array or DataSet expected'); - } + // 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); - if (oldNodesData) { - // unsubscribe from old dataset - util.forEach(this.nodesListeners, function (callback, event) { - oldNodesData.off(event, callback); - }); - } + this.beginPath(); + this.moveTo(x, y); + this.lineTo(xl, yl); + this.lineTo(xi, yi); + this.lineTo(xr, yr); + this.closePath(); + }; - // remove drawn nodes - this.nodes = {}; + /** + * 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; + } + }; - if (this.nodesData) { - // subscribe to new dataset - var me = this; - util.forEach(this.nodesListeners, function (callback, event) { - me.nodesData.on(event, callback); - }); + // TODO: add diamond shape + } - // draw all new nodes - var ids = this.nodesData.getIds(); - this._addNodes(ids); - } - this._updateSelection(); - }; - /** - * Add nodes - * @param {Number[] | String[]} ids - * @private - */ - Network.prototype._addNodes = function(ids) { - var id; - for (var i = 0, len = ids.length; i < len; i++) { - id = ids[i]; - var data = this.nodesData.get(id); - var node = new Node(data, this.images, this.groups, this.constants); - this.nodes[id] = node; // note: this may replace an existing node +/***/ }, +/* 45 */ +/***/ function(module, exports, __webpack_require__) { - if ((node.xFixed == false || node.yFixed == false) && (node.x === null || node.y === null)) { - var radius = 10 * 0.1*ids.length; - 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);} + var PhysicsMixin = __webpack_require__(56); + var ClusterMixin = __webpack_require__(50); + var SectorsMixin = __webpack_require__(51); + var SelectionMixin = __webpack_require__(52); + var ManipulationMixin = __webpack_require__(53); + var NavigationMixin = __webpack_require__(54); + var HierarchicalLayoutMixin = __webpack_require__(55); + + /** + * 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]; } - this.moving = true; - } - this._updateNodeIndexList(); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); } - this._updateCalculationNodes(); - this._reconnectEdges(); - this._updateValueRange(this.nodes); - this.updateLabels(); }; + /** - * Update existing nodes, or create them when not yet existing - * @param {Number[] | String[]} ids + * removes a mixin from the network object. + * + * @param {Object} sourceVariable | this object has to contain functions. * @private */ - Network.prototype._updateNodes = function(ids) { - var nodes = this.nodes, - nodesData = this.nodesData; - for (var i = 0, len = ids.length; i < len; i++) { - var id = ids[i]; - var node = nodes[id]; - var data = nodesData.get(id); - if (node) { - // update node - node.setProperties(data, this.constants); - } - else { - // create node - node = new Node(properties, this.images, this.groups, this.constants); - nodes[id] = node; + exports._clearMixin = function (sourceVariable) { + for (var mixinFunction in sourceVariable) { + if (sourceVariable.hasOwnProperty(mixinFunction)) { + this[mixinFunction] = undefined; } } - this.moving = true; - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); - } - this._updateNodeIndexList(); - this._reconnectEdges(); - this._updateValueRange(nodes); }; + /** - * Remove existing nodes. If nodes do not exist, the method will just ignore it. - * @param {Number[] | String[]} ids + * Mixin the physics system and initialize the parameters required. + * * @private */ - Network.prototype._removeNodes = function(ids) { - var nodes = this.nodes; - for (var i = 0, len = ids.length; i < len; i++) { - var id = ids[i]; - delete nodes[id]; - } - this._updateNodeIndexList(); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); + exports._loadPhysicsSystem = function () { + this._loadMixin(PhysicsMixin); + this._loadSelectedForceSolver(); + if (this.constants.configurePhysics == true) { + this._loadPhysicsConfiguration(); } - this._updateCalculationNodes(); - this._reconnectEdges(); - this._updateSelection(); - this._updateValueRange(nodes); }; + /** - * Load edges by reading the data table - * @param {Array | DataSet | DataView} edges The data containing the edges. - * @private + * Mixin the cluster system and initialize the parameters required. + * * @private */ - Network.prototype._setEdges = function(edges) { - var oldEdgesData = this.edgesData; - - if (edges instanceof DataSet || edges instanceof DataView) { - this.edgesData = edges; - } - else if (edges instanceof Array) { - this.edgesData = new DataSet(); - this.edgesData.add(edges); - } - else if (!edges) { - this.edgesData = new DataSet(); - } - else { - throw new TypeError('Array or DataSet expected'); - } - - if (oldEdgesData) { - // unsubscribe from old dataset - util.forEach(this.edgesListeners, function (callback, event) { - oldEdgesData.off(event, callback); - }); - } + exports._loadClusterSystem = function () { + this.clusterSession = 0; + this.hubThreshold = 5; + this._loadMixin(ClusterMixin); + }; - // remove drawn edges - this.edges = {}; - if (this.edgesData) { - // subscribe to new dataset - var me = this; - util.forEach(this.edgesListeners, function (callback, event) { - me.edgesData.on(event, callback); - }); + /** + * Mixin the sector system and initialize the parameters required + * + * @private + */ + exports._loadSectorSystem = function () { + this.sectors = {}; + this.activeSector = ["default"]; + this.sectors["active"] = {}; + this.sectors["active"]["default"] = {"nodes": {}, + "edges": {}, + "nodeIndices": [], + "formationScale": 1.0, + "drawingNode": undefined }; + this.sectors["frozen"] = {}; + this.sectors["support"] = {"nodes": {}, + "edges": {}, + "nodeIndices": [], + "formationScale": 1.0, + "drawingNode": undefined }; - // draw all new nodes - var ids = this.edgesData.getIds(); - this._addEdges(ids); - } + this.nodeIndices = this.sectors["active"]["default"]["nodeIndices"]; // the node indices list is used to speed up the computation of the repulsion fields - this._reconnectEdges(); + this._loadMixin(SectorsMixin); }; + /** - * Add edges - * @param {Number[] | String[]} ids + * Mixin the selection system and initialize the parameters required + * * @private */ - Network.prototype._addEdges = function (ids) { - var edges = this.edges, - edgesData = this.edgesData; - - for (var i = 0, len = ids.length; i < len; i++) { - var id = ids[i]; - - var oldEdge = edges[id]; - if (oldEdge) { - oldEdge.disconnect(); - } - - var data = edgesData.get(id, {"showInternalIds" : true}); - edges[id] = new Edge(data, this, this.constants); - } + exports._loadSelectionSystem = function () { + this.selectionObj = {nodes: {}, edges: {}}; - this.moving = true; - this._updateValueRange(edges); - this._createBezierNodes(); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); - } - this._updateCalculationNodes(); + this._loadMixin(SelectionMixin); }; + /** - * Update existing edges, or create them when not yet existing - * @param {Number[] | String[]} ids + * Mixin the navigationUI (User Interface) system and initialize the parameters required + * * @private */ - Network.prototype._updateEdges = function (ids) { - var edges = this.edges, - edgesData = this.edgesData; - for (var i = 0, len = ids.length; i < len; i++) { - var id = ids[i]; + exports._loadManipulationSystem = function () { + // reset global variables -- these are used by the selection of nodes and edges. + this.blockConnectingEdgeSelection = false; + this.forceAppendSelection = false; - var data = edgesData.get(id); - var edge = edges[id]; - if (edge) { - // update edge - edge.disconnect(); - edge.setProperties(data, this.constants); - edge.connect(); + if (this.constants.dataManipulation.enabled == true) { + // load the manipulator HTML elements. All styling done in css. + if (this.manipulationDiv === undefined) { + this.manipulationDiv = document.createElement('div'); + this.manipulationDiv.className = 'network-manipulationDiv'; + this.manipulationDiv.id = 'network-manipulationDiv'; + if (this.editMode == true) { + this.manipulationDiv.style.display = "block"; + } + else { + this.manipulationDiv.style.display = "none"; + } + this.containerElement.insertBefore(this.manipulationDiv, this.frame); } - else { - // create edge - edge = new Edge(data, this, this.constants); - this.edges[id] = edge; + + if (this.editModeDiv === undefined) { + this.editModeDiv = document.createElement('div'); + this.editModeDiv.className = 'network-manipulation-editMode'; + this.editModeDiv.id = 'network-manipulation-editMode'; + if (this.editMode == true) { + this.editModeDiv.style.display = "none"; + } + else { + this.editModeDiv.style.display = "block"; + } + this.containerElement.insertBefore(this.editModeDiv, this.frame); + } + + if (this.closeDiv === undefined) { + this.closeDiv = document.createElement('div'); + this.closeDiv.className = 'network-manipulation-closeDiv'; + this.closeDiv.id = 'network-manipulation-closeDiv'; + this.closeDiv.style.display = this.manipulationDiv.style.display; + this.containerElement.insertBefore(this.closeDiv, this.frame); } + + // load the manipulation functions + this._loadMixin(ManipulationMixin); + + // create the manipulator toolbar + this._createManipulatorBar(); } + else { + if (this.manipulationDiv !== undefined) { + // removes all the bindings and overloads + this._createManipulatorBar(); + // remove the manipulation divs + this.containerElement.removeChild(this.manipulationDiv); + this.containerElement.removeChild(this.editModeDiv); + this.containerElement.removeChild(this.closeDiv); - this._createBezierNodes(); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); + this.manipulationDiv = undefined; + this.editModeDiv = undefined; + this.closeDiv = undefined; + // remove the mixin functions + this._clearMixin(ManipulationMixin); + } } - this.moving = true; - this._updateValueRange(edges); }; + /** - * Remove existing edges. Non existing ids will be ignored - * @param {Number[] | String[]} ids + * Mixin the navigation (User Interface) system and initialize the parameters required + * * @private */ - Network.prototype._removeEdges = function (ids) { - var edges = this.edges; - for (var i = 0, len = ids.length; i < len; i++) { - var id = ids[i]; - var edge = edges[id]; - if (edge) { - if (edge.via != null) { - delete this.sectors['support']['nodes'][edge.via.id]; - } - edge.disconnect(); - delete edges[id]; - } - } + exports._loadNavigationControls = function () { + this._loadMixin(NavigationMixin); - this.moving = true; - this._updateValueRange(edges); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); + // the clean function removes the button divs, this is done to remove the bindings. + this._cleanNavigation(); + if (this.constants.navigation.enabled == true) { + this._loadNavigationElements(); } - this._updateCalculationNodes(); }; + /** - * Reconnect all edges + * Mixin the hierarchical layout system. + * * @private */ - Network.prototype._reconnectEdges = function() { - var id, - nodes = this.nodes, - edges = this.edges; - for (id in nodes) { - if (nodes.hasOwnProperty(id)) { - nodes[id].edges = []; - } - } - - for (id in edges) { - if (edges.hasOwnProperty(id)) { - var edge = edges[id]; - edge.from = null; - edge.to = null; - edge.connect(); - } - } + exports._loadHierarchySystem = function () { + this._loadMixin(HierarchicalLayoutMixin); }; + +/***/ }, +/* 46 */ +/***/ function(module, exports, __webpack_require__) { + + /** - * 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 + * Expose `Emitter`. */ - Network.prototype._updateValueRange = function(obj) { - var id; - // determine the range of the objects - var valueMin = undefined; - var valueMax = undefined; - for (id in obj) { - if (obj.hasOwnProperty(id)) { - var value = obj[id].getValue(); - if (value !== undefined) { - valueMin = (valueMin === undefined) ? value : Math.min(value, valueMin); - valueMax = (valueMax === undefined) ? value : Math.max(value, valueMax); - } - } - } + module.exports = Emitter; - // adjust the range of all objects - if (valueMin !== undefined && valueMax !== undefined) { - for (id in obj) { - if (obj.hasOwnProperty(id)) { - obj[id].setValueRange(valueMin, valueMax); - } - } - } + /** + * Initialize a new `Emitter`. + * + * @api public + */ + + function Emitter(obj) { + if (obj) return mixin(obj); }; /** - * Redraw the network with the current data - * chart will be resized too. + * Mixin the emitter properties. + * + * @param {Object} obj + * @return {Object} + * @api private */ - Network.prototype.redraw = function() { - this.setSize(this.constants.width, this.constants.height); - this._redraw(); - }; + + function mixin(obj) { + for (var key in Emitter.prototype) { + obj[key] = Emitter.prototype[key]; + } + return obj; + } /** - * Redraw the network with the current data - * @private + * Listen on the given `event` with `fn`. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public */ - Network.prototype._redraw = function() { - var ctx = this.frame.canvas.getContext('2d'); - // clear the canvas - var w = this.frame.canvas.width; - var h = this.frame.canvas.height; - ctx.clearRect(0, 0, w, h); - // set scaling and translation - ctx.save(); - ctx.translate(this.translation.x, this.translation.y); - ctx.scale(this.scale, this.scale); + Emitter.prototype.on = + Emitter.prototype.addEventListener = function(event, fn){ + this._callbacks = this._callbacks || {}; + (this._callbacks[event] = this._callbacks[event] || []) + .push(fn); + return this; + }; - 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) - }; + /** + * Adds an `event` listener that will be invoked a single + * time then automatically removed. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public + */ + Emitter.prototype.once = function(event, fn){ + var self = this; + this._callbacks = this._callbacks || {}; - this._doInAllSectors("_drawAllSectorNodes",ctx); - if (this.drag.dragging == false || this.drag.dragging === undefined || this.constants.hideEdgesOnDrag == false) { - this._doInAllSectors("_drawEdges",ctx); + function on() { + self.off(event, on); + fn.apply(this, arguments); } - if (this.drag.dragging == false || this.drag.dragging === undefined || this.constants.hideNodesOnDrag == false) { - this._doInAllSectors("_drawNodes",ctx,false); - } + on.fn = fn; + this.on(event, on); + return this; + }; - if (this.controlNodesActive == true) { - this._doInAllSectors("_drawControlNodes",ctx); + /** + * Remove the given callback for `event` or all + * registered callbacks. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public + */ + + Emitter.prototype.off = + Emitter.prototype.removeListener = + Emitter.prototype.removeAllListeners = + Emitter.prototype.removeEventListener = function(event, fn){ + this._callbacks = this._callbacks || {}; + + // all + if (0 == arguments.length) { + this._callbacks = {}; + return this; } - // this._doInSupportSector("_drawNodes",ctx,true); - // this._drawTree(ctx,"#F00F0F"); + // specific event + var callbacks = this._callbacks[event]; + if (!callbacks) return this; - // restore original scaling and translation - ctx.restore(); + // remove all handlers + if (1 == arguments.length) { + delete this._callbacks[event]; + return this; + } + + // remove specific handler + var cb; + for (var i = 0; i < callbacks.length; i++) { + cb = callbacks[i]; + if (cb === fn || cb.fn === fn) { + callbacks.splice(i, 1); + break; + } + } + return this; }; /** - * Set the translation of the network - * @param {Number} offsetX Horizontal offset - * @param {Number} offsetY Vertical offset - * @private + * Emit `event` with the given args. + * + * @param {String} event + * @param {Mixed} ... + * @return {Emitter} */ - Network.prototype._setTranslation = function(offsetX, offsetY) { - if (this.translation === undefined) { - this.translation = { - x: 0, - y: 0 - }; - } - if (offsetX !== undefined) { - this.translation.x = offsetX; - } - if (offsetY !== undefined) { - this.translation.y = offsetY; + Emitter.prototype.emit = function(event){ + this._callbacks = this._callbacks || {}; + var args = [].slice.call(arguments, 1) + , callbacks = this._callbacks[event]; + + if (callbacks) { + callbacks = callbacks.slice(0); + for (var i = 0, len = callbacks.length; i < len; ++i) { + callbacks[i].apply(this, args); + } } - this.emit('viewChanged'); + return this; }; /** - * Get the translation of the network - * @return {Object} translation An object with parameters x and y, both a number - * @private + * Return array of callbacks for `event`. + * + * @param {String} event + * @return {Array} + * @api public */ - Network.prototype._getTranslation = function() { - return { - x: this.translation.x, - y: this.translation.y - }; - }; - /** - * Scale the network - * @param {Number} scale Scaling factor 1.0 is unscaled - * @private - */ - Network.prototype._setScale = function(scale) { - this.scale = scale; + Emitter.prototype.listeners = function(event){ + this._callbacks = this._callbacks || {}; + return this._callbacks[event] || []; }; /** - * Get the current scale of the network - * @return {Number} scale Scaling factor 1.0 is unscaled - * @private + * Check if this emitter has `event` handlers. + * + * @param {String} event + * @return {Boolean} + * @api public */ - Network.prototype._getScale = function() { - return this.scale; - }; - /** - * Convert the X coordinate in DOM-space (coordinate point in browser relative to the container div) to - * the X coordinate in canvas-space (the simulation sandbox, which the camera looks upon) - * @param {number} x - * @returns {number} - * @private - */ - Network.prototype._XconvertDOMtoCanvas = function(x) { - return (x - this.translation.x) / this.scale; + Emitter.prototype.hasListeners = function(event){ + return !! this.listeners(event).length; }; - /** - * Convert the X coordinate in canvas-space (the simulation sandbox, which the camera looks upon) to - * the X coordinate in DOM-space (coordinate point in browser relative to the container div) - * @param {number} x - * @returns {number} - * @private - */ - Network.prototype._XconvertCanvasToDOM = function(x) { - return x * this.scale + this.translation.x; - }; - /** - * Convert the Y coordinate in DOM-space (coordinate point in browser relative to the container div) to - * the Y coordinate in canvas-space (the simulation sandbox, which the camera looks upon) - * @param {number} y - * @returns {number} - * @private - */ - Network.prototype._YconvertDOMtoCanvas = function(y) { - return (y - this.translation.y) / this.scale; - }; +/***/ }, +/* 47 */ +/***/ function(module, exports, __webpack_require__) { /** - * 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 + * Copyright 2012 Craig Campbell + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * Mousetrap is a simple keyboard shortcut library for Javascript with + * no external dependencies + * + * @version 1.1.2 + * @url craig.is/killing/mice */ - Network.prototype._YconvertCanvasToDOM = function(y) { - return y * this.scale + this.translation.y ; - }; + /** + * mapping of special keycodes to their corresponding keys + * + * everything in this dictionary cannot use keypress events + * so it has to be here to map to the correct keycodes for + * keyup/keydown events + * + * @type {Object} + */ + var _MAP = { + 8: 'backspace', + 9: 'tab', + 13: 'enter', + 16: 'shift', + 17: 'ctrl', + 18: 'alt', + 20: 'capslock', + 27: 'esc', + 32: 'space', + 33: 'pageup', + 34: 'pagedown', + 35: 'end', + 36: 'home', + 37: 'left', + 38: 'up', + 39: 'right', + 40: 'down', + 45: 'ins', + 46: 'del', + 91: 'meta', + 93: 'meta', + 224: 'meta' + }, + + /** + * mapping for special characters so they can support + * + * this dictionary is only used incase you want to bind a + * keyup or keydown event to one of these keys + * + * @type {Object} + */ + _KEYCODE_MAP = { + 106: '*', + 107: '+', + 109: '-', + 110: '.', + 111 : '/', + 186: ';', + 187: '=', + 188: ',', + 189: '-', + 190: '.', + 191: '/', + 192: '`', + 219: '[', + 220: '\\', + 221: ']', + 222: '\'' + }, + + /** + * this is a mapping of keys that require shift on a US keypad + * back to the non shift equivelents + * + * this is so you can use keyup events with these keys + * + * note that this will only work reliably on US keyboards + * + * @type {Object} + */ + _SHIFT_MAP = { + '~': '`', + '!': '1', + '@': '2', + '#': '3', + '$': '4', + '%': '5', + '^': '6', + '&': '7', + '*': '8', + '(': '9', + ')': '0', + '_': '-', + '+': '=', + ':': ';', + '\"': '\'', + '<': ',', + '>': '.', + '?': '/', + '|': '\\' + }, + + /** + * this is a list of special strings you can use to map + * to modifier keys when you specify your keyboard shortcuts + * + * @type {Object} + */ + _SPECIAL_ALIASES = { + 'option': 'alt', + 'command': 'meta', + 'return': 'enter', + 'escape': 'esc' + }, + + /** + * variable to store the flipped version of _MAP from above + * needed to check if we should use keypress or not when no action + * is specified + * + * @type {Object|undefined} + */ + _REVERSE_MAP, + + /** + * a list of all the callbacks setup via Mousetrap.bind() + * + * @type {Object} + */ + _callbacks = {}, + + /** + * direct map of string combinations to callbacks used for trigger() + * + * @type {Object} + */ + _direct_map = {}, + + /** + * keeps track of what level each sequence is at since multiple + * sequences can start out with the same sequence + * + * @type {Object} + */ + _sequence_levels = {}, + + /** + * variable to store the setTimeout call + * + * @type {null|number} + */ + _reset_timer, + + /** + * temporary state where we will ignore the next keyup + * + * @type {boolean|string} + */ + _ignore_next_keyup = false, + + /** + * are we currently inside of a sequence? + * type of action ("keyup" or "keydown" or "keypress") or false + * + * @type {boolean|string} + */ + _inside_sequence = false; + + /** + * loop through the f keys, f1 to f19 and add them to the map + * programatically + */ + for (var i = 1; i < 20; ++i) { + _MAP[111 + i] = 'f' + i; + } - /** - * - * @param {object} pos = {x: number, y: number} - * @returns {{x: number, y: number}} - * @constructor - */ - Network.prototype.canvasToDOM = function(pos) { - return {x:this._XconvertCanvasToDOM(pos.x),y:this._YconvertCanvasToDOM(pos.y)}; - } + /** + * loop through to map numbers on the numeric keypad + */ + for (i = 0; i <= 9; ++i) { + _MAP[i + 96] = i; + } - /** - * - * @param {object} pos = {x: number, y: number} - * @returns {{x: number, y: number}} - * @constructor - */ - Network.prototype.DOMtoCanvas = function(pos) { - return {x:this._XconvertDOMtoCanvas(pos.x),y:this._YconvertDOMtoCanvas(pos.y)}; - } + /** + * cross browser add event method + * + * @param {Element|HTMLDocument} object + * @param {string} type + * @param {Function} callback + * @returns void + */ + function _addEvent(object, type, callback) { + if (object.addEventListener) { + return object.addEventListener(type, callback, false); + } - /** - * Redraw all nodes - * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); - * @param {CanvasRenderingContext2D} ctx - * @param {Boolean} [alwaysShow] - * @private - */ - Network.prototype._drawNodes = function(ctx,alwaysShow) { - if (alwaysShow === undefined) { - alwaysShow = false; + object.attachEvent('on' + type, callback); } - // first draw the unselected nodes - var nodes = this.nodes; - var selected = []; + /** + * takes the event and returns the key character + * + * @param {Event} e + * @return {string} + */ + function _characterFromEvent(e) { - 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); + // for keypress events we should return the character as is + if (e.type == 'keypress') { + return String.fromCharCode(e.which); } - else { - if (nodes[id].inArea() || alwaysShow) { - nodes[id].draw(ctx); - } + + // for non keypress events the special maps are needed + if (_MAP[e.which]) { + return _MAP[e.which]; } - } - } - // 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); - } + if (_KEYCODE_MAP[e.which]) { + return _KEYCODE_MAP[e.which]; + } + + // if it is not in the special map + return String.fromCharCode(e.which).toLowerCase(); } - }; - /** - * Redraw all edges - * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); - * @param {CanvasRenderingContext2D} ctx - * @private - */ - Network.prototype._drawEdges = function(ctx) { - var edges = this.edges; - for (var id in edges) { - if (edges.hasOwnProperty(id)) { - var edge = edges[id]; - edge.setScale(this.scale); - if (edge.connected) { - edges[id].draw(ctx); + /** + * should we stop this event before firing off callbacks + * + * @param {Event} e + * @return {boolean} + */ + function _stop(e) { + var element = e.target || e.srcElement, + tag_name = element.tagName; + + // if the element has the class "mousetrap" then no need to stop + if ((' ' + element.className + ' ').indexOf(' mousetrap ') > -1) { + return false; } - } - } - }; - /** - * Redraw all edges - * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); - * @param {CanvasRenderingContext2D} ctx - * @private - */ - Network.prototype._drawControlNodes = function(ctx) { - var edges = this.edges; - for (var id in edges) { - if (edges.hasOwnProperty(id)) { - edges[id]._drawControlNodes(ctx); - } + // stop for input, select, and textarea + return tag_name == 'INPUT' || tag_name == 'SELECT' || tag_name == 'TEXTAREA' || (element.contentEditable && element.contentEditable == 'true'); } - }; - /** - * Find a stable position for all nodes - * @private - */ - Network.prototype._stabilize = function() { - if (this.constants.freezeForStabilization == true) { - this._freezeDefinedNodes(); + /** + * checks if two arrays are equal + * + * @param {Array} modifiers1 + * @param {Array} modifiers2 + * @returns {boolean} + */ + function _modifiersMatch(modifiers1, modifiers2) { + return modifiers1.sort().join(',') === modifiers2.sort().join(','); } - // find stable position - var count = 0; - while (this.moving && count < this.constants.stabilizationIterations) { - this._physicsTick(); - count++; - } - this.zoomExtent(false,true); - if (this.constants.freezeForStabilization == true) { - this._restoreFrozenNodes(); + /** + * resets all sequence counters except for the ones passed in + * + * @param {Object} do_not_reset + * @returns void + */ + function _resetSequences(do_not_reset) { + do_not_reset = do_not_reset || {}; + + var active_sequences = false, + key; + + for (key in _sequence_levels) { + if (do_not_reset[key]) { + active_sequences = true; + continue; + } + _sequence_levels[key] = 0; + } + + if (!active_sequences) { + _inside_sequence = false; + } } - this.emit("stabilized",{iterations:count}); - }; - /** - * When initializing and stabilizing, we can freeze nodes with a predefined position. This greatly speeds up stabilization - * because only the supportnodes for the smoothCurves have to settle. - * - * @private - */ - Network.prototype._freezeDefinedNodes = function() { - var nodes = this.nodes; - for (var id in nodes) { - if (nodes.hasOwnProperty(id)) { - if (nodes[id].x != null && nodes[id].y != null) { - nodes[id].fixedData.x = nodes[id].xFixed; - nodes[id].fixedData.y = nodes[id].yFixed; - nodes[id].xFixed = true; - nodes[id].yFixed = true; + /** + * finds all callbacks that match based on the keycode, modifiers, + * and action + * + * @param {string} character + * @param {Array} modifiers + * @param {string} action + * @param {boolean=} remove - should we remove any matches + * @param {string=} combination + * @returns {Array} + */ + function _getMatches(character, modifiers, action, remove, combination) { + var i, + callback, + matches = []; + + // if there are no events related to this keycode + if (!_callbacks[character]) { + return []; + } + + // if a modifier key is coming up on its own we should allow it + if (action == 'keyup' && _isModifier(character)) { + modifiers = [character]; + } + + // loop through all callbacks for the key that was pressed + // and see if any of them match + for (i = 0; i < _callbacks[character].length; ++i) { + callback = _callbacks[character][i]; + + // if this is a sequence but it is not at the right level + // then move onto the next match + if (callback.seq && _sequence_levels[callback.seq] != callback.level) { + continue; + } + + // if the action we are looking for doesn't match the action we got + // then we should keep going + if (action != callback.action) { + continue; + } + + // if this is a keypress event that means that we need to only + // look at the character, otherwise check the modifiers as + // well + if (action == 'keypress' || _modifiersMatch(modifiers, callback.modifiers)) { + + // remove is used so if you change your mind and call bind a + // second time with a new function the first one is overwritten + if (remove && callback.combo == combination) { + _callbacks[character].splice(i, 1); + } + + matches.push(callback); + } } - } + + return matches; } - }; - /** - * Unfreezes the nodes that have been frozen by _freezeDefinedNodes. - * - * @private - */ - Network.prototype._restoreFrozenNodes = function() { - var nodes = this.nodes; - for (var id in nodes) { - if (nodes.hasOwnProperty(id)) { - if (nodes[id].fixedData.x != null) { - nodes[id].xFixed = nodes[id].fixedData.x; - nodes[id].yFixed = nodes[id].fixedData.y; + /** + * takes a key event and figures out what the modifiers are + * + * @param {Event} e + * @returns {Array} + */ + function _eventModifiers(e) { + var modifiers = []; + + if (e.shiftKey) { + modifiers.push('shift'); } - } - } - }; + if (e.altKey) { + modifiers.push('alt'); + } - /** - * Check if any of the nodes is still moving - * @param {number} vmin the minimum velocity considered as 'moving' - * @return {boolean} true if moving, false if non of the nodes is moving - * @private - */ - Network.prototype._isMoving = function(vmin) { - var nodes = this.nodes; - for (var id in nodes) { - if (nodes.hasOwnProperty(id) && nodes[id].isMoving(vmin)) { - return true; - } + if (e.ctrlKey) { + modifiers.push('ctrl'); + } + + if (e.metaKey) { + modifiers.push('meta'); + } + + return modifiers; } - return false; - }; + /** + * actually calls the callback function + * + * if your callback function returns false this will use the jquery + * convention - prevent default and stop propogation on the event + * + * @param {Function} callback + * @param {Event} e + * @returns void + */ + function _fireCallback(callback, e) { + if (callback(e) === false) { + if (e.preventDefault) { + e.preventDefault(); + } - /** - * /** - * Perform one discrete step for all nodes - * - * @private - */ - Network.prototype._discreteStepNodes = function() { - var interval = this.physicsDiscreteStepsize; - var nodes = this.nodes; - var nodeId; - var nodesPresent = false; + if (e.stopPropagation) { + e.stopPropagation(); + } - if (this.constants.maxVelocity > 0) { - for (nodeId in nodes) { - if (nodes.hasOwnProperty(nodeId)) { - nodes[nodeId].discreteStepLimited(interval, this.constants.maxVelocity); - nodesPresent = true; + e.returnValue = false; + e.cancelBubble = true; } - } } - else { - for (nodeId in nodes) { - if (nodes.hasOwnProperty(nodeId)) { - nodes[nodeId].discreteStep(interval); - nodesPresent = true; + + /** + * handles a character key event + * + * @param {string} character + * @param {Event} e + * @returns void + */ + function _handleCharacter(character, e) { + + // if this event should not happen stop here + if (_stop(e)) { + return; } - } - } - if (nodesPresent == true) { - var vminCorrected = this.constants.minVelocity / Math.max(this.scale,0.05); - if (vminCorrected > 0.5*this.constants.maxVelocity) { - this.moving = true; - } - else { - this.moving = this._isMoving(vminCorrected); - if (this.moving == false) { - this.emit("stabilized",{iterations:null}); + var callbacks = _getMatches(character, _eventModifiers(e), e.type), + i, + do_not_reset = {}, + processed_sequence_callback = false; + + // loop through matching callbacks for this key event + for (i = 0; i < callbacks.length; ++i) { + + // fire for all sequence callbacks + // this is because if for example you have multiple sequences + // bound such as "g i" and "g t" they both need to fire the + // callback for matching g cause otherwise you can only ever + // match the first one + if (callbacks[i].seq) { + processed_sequence_callback = true; + + // keep a list of which sequences were matches for later + do_not_reset[callbacks[i].seq] = 1; + _fireCallback(callbacks[i].callback, e); + continue; + } + + // if there were no sequence matches but we are still here + // that means this is a regular match so we should fire that + if (!processed_sequence_callback && !_inside_sequence) { + _fireCallback(callbacks[i].callback, e); + } } - this.moving = this.moving || this.configurePhysics; - } + // if you are inside of a sequence and the key you are pressing + // is not a modifier key then we should reset all sequences + // that were not matched by this key event + if (e.type == _inside_sequence && !_isModifier(character)) { + _resetSequences(do_not_reset); + } } - }; - /** - * A single simulation step (or "tick") in the physics simulation - * - * @private - */ - Network.prototype._physicsTick = function() { - if (!this.freezeSimulation) { - if (this.moving == true) { - this._doInAllActiveSectors("_initializeForceCalculation"); - this._doInAllActiveSectors("_discreteStepNodes"); - if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { - this._doInSupportSector("_discreteStepNodes"); + /** + * handles a keydown event + * + * @param {Event} e + * @returns void + */ + function _handleKey(e) { + + // normalize e.which for key events + // @see http://stackoverflow.com/questions/4285627/javascript-keycode-vs-charcode-utter-confusion + e.which = typeof e.which == "number" ? e.which : e.keyCode; + + var character = _characterFromEvent(e); + + // no character found then stop + if (!character) { + return; } - this._findCenter(this._getRange()) - } - } - }; + if (e.type == 'keyup' && _ignore_next_keyup == character) { + _ignore_next_keyup = false; + return; + } - /** - * This function runs one step of the animation. It calls an x amount of physics ticks and one render tick. - * It reschedules itself at the beginning of the function - * - * @private - */ - Network.prototype._animationStep = function() { - // reset the timer so a new scheduled animation step can be set - this.timer = undefined; - // handle the keyboad movement - this._handleNavigation(); + _handleCharacter(character, e); + } - // this schedules a new animation step - this.start(); + /** + * determines if the keycode specified is a modifier key or not + * + * @param {string} key + * @returns {boolean} + */ + function _isModifier(key) { + return key == 'shift' || key == 'ctrl' || key == 'alt' || key == 'meta'; + } - // start the physics simulation - var calculationTime = Date.now(); - var maxSteps = 1; - this._physicsTick(); - var timeRequired = Date.now() - calculationTime; - while (timeRequired < 0.9*(this.renderTimestep - this.renderTime) && maxSteps < this.maxPhysicsTicksPerRender) { - this._physicsTick(); - timeRequired = Date.now() - calculationTime; - maxSteps++; + /** + * called to set a 1 second timeout on the specified sequence + * + * this is so after each key press in the sequence you have 1 second + * to press the next key before you have to start over + * + * @returns void + */ + function _resetSequenceTimer() { + clearTimeout(_reset_timer); + _reset_timer = setTimeout(_resetSequences, 1000); } - // start the rendering process - var renderTime = Date.now(); - this._redraw(); - this.renderTime = Date.now() - renderTime; - }; + /** + * reverses the map lookup so that we can look for specific keys + * to see what can and can't use keypress + * + * @return {Object} + */ + function _getReverseMap() { + if (!_REVERSE_MAP) { + _REVERSE_MAP = {}; + for (var key in _MAP) { + + // pull out the numeric keypad from here cause keypress should + // be able to detect the keys from the character + if (key > 95 && key < 112) { + continue; + } - if (typeof window !== 'undefined') { - window.requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame || - window.webkitRequestAnimationFrame || window.msRequestAnimationFrame; - } + if (_MAP.hasOwnProperty(key)) { + _REVERSE_MAP[_MAP[key]] = key; + } + } + } + return _REVERSE_MAP; + } - /** - * Schedule a animation step with the refreshrate interval. - */ - Network.prototype.start = function() { - if (this.moving == true || this.xIncrement != 0 || this.yIncrement != 0 || this.zoomIncrement != 0) { - if (!this.timer) { - var ua = navigator.userAgent.toLowerCase(); + /** + * picks the best action based on the key combination + * + * @param {string} key - character for key + * @param {Array} modifiers + * @param {string=} action passed in + */ + function _pickBestAction(key, modifiers, action) { - var requiresTimeout = false; - if (ua.indexOf('msie 9.0') != -1) { // IE 9 - requiresTimeout = true; - } - else if (ua.indexOf('safari') != -1) { // safari - if (ua.indexOf('chrome') <= -1) { - requiresTimeout = true; - } + // if no action was picked in we should try to pick the one + // that we think would work best for this key + if (!action) { + action = _getReverseMap()[key] ? 'keydown' : 'keypress'; } - if (requiresTimeout == true) { - this.timer = window.setTimeout(this._animationStep.bind(this), this.renderTimestep); // wait this.renderTimeStep milliseconds and perform the animation step function - } - else{ - this.timer = window.requestAnimationFrame(this._animationStep.bind(this), this.renderTimestep); // wait this.renderTimeStep milliseconds and perform the animation step function + // modifier keys don't work as expected with keypress, + // switch to keydown + if (action == 'keypress' && modifiers.length) { + action = 'keydown'; } - } - } - else { - this._redraw(); - } - }; - - /** - * 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); + return action; } - }; - - /** - * Freeze the _animationStep - */ - Network.prototype.toggleFreeze = function() { - if (this.freezeSimulation == false) { - this.freezeSimulation = true; - } - else { - this.freezeSimulation = false; - this.start(); - } - }; + /** + * binds a key sequence to an event + * + * @param {string} combo - combo specified in bind call + * @param {Array} keys + * @param {Function} callback + * @param {string=} action + * @returns void + */ + function _bindSequence(combo, keys, callback, action) { + // start off by adding a sequence level record for this combination + // and setting the level to 0 + _sequence_levels[combo] = 0; - /** - * This function cleans the support nodes if they are not needed and adds them when they are. - * - * @param {boolean} [disableStart] - * @private - */ - Network.prototype._configureSmoothCurves = function(disableStart) { - if (disableStart === undefined) { - disableStart = true; - } - if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { - this._createBezierNodes(); - // cleanup unused support nodes - for (var nodeId in this.sectors['support']['nodes']) { - if (this.sectors['support']['nodes'].hasOwnProperty(nodeId)) { - if (this.edges[this.sectors['support']['nodes'][nodeId].parentEdgeId] === undefined) { - delete this.sectors['support']['nodes'][nodeId]; - } - } - } - } - else { - // delete the support nodes - this.sectors['support']['nodes'] = {}; - for (var edgeId in this.edges) { - if (this.edges.hasOwnProperty(edgeId)) { - this.edges[edgeId].via = null; + // if there is no action pick the best one for the first key + // in the sequence + if (!action) { + action = _pickBestAction(keys[0], []); } - } - } + /** + * callback to increase the sequence level for this sequence and reset + * all other sequences that were active + * + * @param {Event} e + * @returns void + */ + var _increaseSequence = function(e) { + _inside_sequence = action; + ++_sequence_levels[combo]; + _resetSequenceTimer(); + }, - this._updateCalculationNodes(); - if (!disableStart) { - this.moving = true; - this.start(); - } - }; + /** + * wraps the specified callback inside of another function in order + * to reset all sequence counters as soon as this sequence is done + * + * @param {Event} e + * @returns void + */ + _callbackAndReset = function(e) { + _fireCallback(callback, e); + // we should ignore the next key up if the action is key down + // or keypress. this is so if you finish a sequence and + // release the key the final key will not trigger a keyup + if (action !== 'keyup') { + _ignore_next_keyup = _characterFromEvent(e); + } - /** - * Bezier curves require an anchor point to calculate the smooth flow. These points are nodes. These nodes are invisible but - * are used for the force calculation. - * - * @private - */ - Network.prototype._createBezierNodes = function() { - if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { - for (var edgeId in this.edges) { - if (this.edges.hasOwnProperty(edgeId)) { - var edge = this.edges[edgeId]; - if (edge.via == null) { - var nodeId = "edgeId:".concat(edge.id); - this.sectors['support']['nodes'][nodeId] = new Node( - {id:nodeId, - mass:1, - shape:'circle', - image:"", - internalMultiplier:1 - },{},{},this.constants); - edge.via = this.sectors['support']['nodes'][nodeId]; - edge.via.parentEdgeId = edge.id; - edge.positionBezierNode(); - } + // weird race condition if a sequence ends with the key + // another sequence begins with + setTimeout(_resetSequences, 10); + }, + i; + + // loop through keys one at a time and bind the appropriate callback + // function. for any key leading up to the final one it should + // increase the sequence. after the final, it should reset all sequences + for (i = 0; i < keys.length; ++i) { + _bindSingle(keys[i], i < keys.length - 1 ? _increaseSequence : _callbackAndReset, action, combo, i); } - } } - }; - /** - * 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]; - } - } - }; + /** + * binds a single keyboard combination + * + * @param {string} combination + * @param {Function} callback + * @param {string=} action + * @param {string=} sequence_name - name of sequence if part of sequence + * @param {number=} level - what part of the sequence the command is + * @returns void + */ + function _bindSingle(combination, callback, action, sequence_name, level) { - /** - * Load the XY positions of the nodes into the dataset. - */ - Network.prototype.storePosition = function() { - var dataArray = []; - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - var node = this.nodes[nodeId]; - var allowedToMoveX = !this.nodes.xFixed; - var allowedToMoveY = !this.nodes.yFixed; - if (this.nodesData._data[nodeId].x != Math.round(node.x) || this.nodesData._data[nodeId].y != Math.round(node.y)) { - dataArray.push({id:nodeId,x:Math.round(node.x),y:Math.round(node.y),allowedToMoveX:allowedToMoveX,allowedToMoveY:allowedToMoveY}); - } - } - } - this.nodesData.update(dataArray); - }; + // make sure multiple spaces in a row become a single space + combination = combination.replace(/\s+/g, ' '); + + var sequence = combination.split(' '), + i, + key, + keys, + modifiers = []; + // if this pattern is a sequence of keys then run through this method + // to reprocess each pattern one key at a time + if (sequence.length > 1) { + return _bindSequence(combination, sequence, callback, action); + } - /** - * Center a node in view. - * - * @param {Number} nodeId - * @param {Number} [zoomLevel] - */ - Network.prototype.focusOnNode = function (nodeId, zoomLevel) { - if (this.nodes.hasOwnProperty(nodeId)) { - if (zoomLevel === undefined) { - zoomLevel = this._getScale(); - } - var nodePosition= {x: this.nodes[nodeId].x, y: this.nodes[nodeId].y}; + // take the keys from this pattern and figure out what the actual + // pattern is all about + keys = combination === '+' ? ['+'] : combination.split('+'); - var requiredScale = zoomLevel; - this._setScale(requiredScale); + for (i = 0; i < keys.length; ++i) { + key = keys[i]; - var canvasCenter = this.DOMtoCanvas({x:0.5 * this.frame.canvas.width,y:0.5 * this.frame.canvas.height}); - var translation = this._getTranslation(); + // normalize key names + if (_SPECIAL_ALIASES[key]) { + key = _SPECIAL_ALIASES[key]; + } - var distanceFromCenter = {x:canvasCenter.x - nodePosition.x, - y:canvasCenter.y - nodePosition.y}; + // if this is not a keypress event then we should + // be smart about using shift keys + // this will only work for US keyboards however + if (action && action != 'keypress' && _SHIFT_MAP[key]) { + key = _SHIFT_MAP[key]; + modifiers.push('shift'); + } - this._setTranslation(translation.x + requiredScale * distanceFromCenter.x, - translation.y + requiredScale * distanceFromCenter.y); - this.redraw(); - } - else { - console.log("This nodeId cannot be found.") - } - }; + // if this key is a modifier then add it to the list of modifiers + if (_isModifier(key)) { + modifiers.push(key); + } + } - module.exports = Network; + // depending on what the key combination is + // we will try to pick the best event for it + action = _pickBestAction(key, modifiers, action); + // make sure to initialize array if this is the first time + // a callback is added for this key + if (!_callbacks[key]) { + _callbacks[key] = []; + } -/***/ }, -/* 42 */ -/***/ function(module, exports, __webpack_require__) { + // remove an existing match if there is one + _getMatches(key, modifiers, action, !sequence_name, combination); - /** - * Copyright 2012 Craig Campbell - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * Mousetrap is a simple keyboard shortcut library for Javascript with - * no external dependencies - * - * @version 1.1.2 - * @url craig.is/killing/mice - */ + // add this call back to the array + // if it is a sequence put it at the beginning + // if not put it at the end + // + // this is important because the way these are processed expects + // the sequence ones to come first + _callbacks[key][sequence_name ? 'unshift' : 'push']({ + callback: callback, + modifiers: modifiers, + action: action, + seq: sequence_name, + level: level, + combo: combination + }); + } /** - * mapping of special keycodes to their corresponding keys - * - * everything in this dictionary cannot use keypress events - * so it has to be here to map to the correct keycodes for - * keyup/keydown events + * binds multiple combinations to the same callback * - * @type {Object} + * @param {Array} combinations + * @param {Function} callback + * @param {string|undefined} action + * @returns void */ - var _MAP = { - 8: 'backspace', - 9: 'tab', - 13: 'enter', - 16: 'shift', - 17: 'ctrl', - 18: 'alt', - 20: 'capslock', - 27: 'esc', - 32: 'space', - 33: 'pageup', - 34: 'pagedown', - 35: 'end', - 36: 'home', - 37: 'left', - 38: 'up', - 39: 'right', - 40: 'down', - 45: 'ins', - 46: 'del', - 91: 'meta', - 93: 'meta', - 224: 'meta' - }, + function _bindMultiple(combinations, callback, action) { + for (var i = 0; i < combinations.length; ++i) { + _bindSingle(combinations[i], callback, action); + } + } - /** - * mapping for special characters so they can support - * - * this dictionary is only used incase you want to bind a - * keyup or keydown event to one of these keys - * - * @type {Object} - */ - _KEYCODE_MAP = { - 106: '*', - 107: '+', - 109: '-', - 110: '.', - 111 : '/', - 186: ';', - 187: '=', - 188: ',', - 189: '-', - 190: '.', - 191: '/', - 192: '`', - 219: '[', - 220: '\\', - 221: ']', - 222: '\'' - }, + // start! + _addEvent(document, 'keypress', _handleKey); + _addEvent(document, 'keydown', _handleKey); + _addEvent(document, 'keyup', _handleKey); - /** - * this is a mapping of keys that require shift on a US keypad - * back to the non shift equivelents - * - * this is so you can use keyup events with these keys - * - * note that this will only work reliably on US keyboards - * - * @type {Object} - */ - _SHIFT_MAP = { - '~': '`', - '!': '1', - '@': '2', - '#': '3', - '$': '4', - '%': '5', - '^': '6', - '&': '7', - '*': '8', - '(': '9', - ')': '0', - '_': '-', - '+': '=', - ':': ';', - '\"': '\'', - '<': ',', - '>': '.', - '?': '/', - '|': '\\' - }, + var mousetrap = { /** - * this is a list of special strings you can use to map - * to modifier keys when you specify your keyboard shortcuts + * binds an event to mousetrap * - * @type {Object} - */ - _SPECIAL_ALIASES = { - 'option': 'alt', - 'command': 'meta', - 'return': 'enter', - 'escape': 'esc' - }, - - /** - * variable to store the flipped version of _MAP from above - * needed to check if we should use keypress or not when no action - * is specified + * can be a single key, a combination of keys separated with +, + * a comma separated list of keys, an array of keys, or + * a sequence of keys separated by spaces * - * @type {Object|undefined} - */ - _REVERSE_MAP, - - /** - * a list of all the callbacks setup via Mousetrap.bind() + * be sure to list the modifier keys first to make sure that the + * correct key ends up getting bound (the last key in the pattern) * - * @type {Object} + * @param {string|Array} keys + * @param {Function} callback + * @param {string=} action - 'keypress', 'keydown', or 'keyup' + * @returns void */ - _callbacks = {}, + bind: function(keys, callback, action) { + _bindMultiple(keys instanceof Array ? keys : [keys], callback, action); + _direct_map[keys + ':' + action] = callback; + return this; + }, /** - * direct map of string combinations to callbacks used for trigger() + * unbinds an event to mousetrap * - * @type {Object} - */ - _direct_map = {}, - - /** - * keeps track of what level each sequence is at since multiple - * sequences can start out with the same sequence + * the unbinding sets the callback function of the specified key combo + * to an empty function and deletes the corresponding key in the + * _direct_map dict. * - * @type {Object} - */ - _sequence_levels = {}, - - /** - * variable to store the setTimeout call + * the keycombo+action has to be exactly the same as + * it was defined in the bind method * - * @type {null|number} + * TODO: actually remove this from the _callbacks dictionary instead + * of binding an empty function + * + * @param {string|Array} keys + * @param {string} action + * @returns void */ - _reset_timer, + unbind: function(keys, action) { + if (_direct_map[keys + ':' + action]) { + delete _direct_map[keys + ':' + action]; + this.bind(keys, function() {}, action); + } + return this; + }, /** - * temporary state where we will ignore the next keyup + * triggers an event that has already been bound * - * @type {boolean|string} + * @param {string} keys + * @param {string=} action + * @returns void */ - _ignore_next_keyup = false, + trigger: function(keys, action) { + _direct_map[keys + ':' + action](); + return this; + }, /** - * are we currently inside of a sequence? - * type of action ("keyup" or "keydown" or "keypress") or false + * resets the library back to its initial state. this is useful + * if you want to clear out the current keyboard shortcuts and bind + * new ones - for example if you switch to another page * - * @type {boolean|string} + * @returns void */ - _inside_sequence = false; - - /** - * loop through the f keys, f1 to f19 and add them to the map - * programatically - */ - for (var i = 1; i < 20; ++i) { - _MAP[111 + i] = 'f' + i; - } - - /** - * loop through to map numbers on the numeric keypad - */ - for (i = 0; i <= 9; ++i) { - _MAP[i + 96] = i; - } - - /** - * cross browser add event method - * - * @param {Element|HTMLDocument} object - * @param {string} type - * @param {Function} callback - * @returns void - */ - function _addEvent(object, type, callback) { - if (object.addEventListener) { - return object.addEventListener(type, callback, false); - } - - object.attachEvent('on' + type, callback); - } - - /** - * takes the event and returns the key character - * - * @param {Event} e - * @return {string} - */ - function _characterFromEvent(e) { - - // for keypress events we should return the character as is - if (e.type == 'keypress') { - return String.fromCharCode(e.which); + reset: function() { + _callbacks = {}; + _direct_map = {}; + return this; } + }; - // for non keypress events the special maps are needed - if (_MAP[e.which]) { - return _MAP[e.which]; - } + module.exports = mousetrap; - if (_KEYCODE_MAP[e.which]) { - return _KEYCODE_MAP[e.which]; - } - // if it is not in the special map - return String.fromCharCode(e.which).toLowerCase(); - } - /** - * should we stop this event before firing off callbacks - * - * @param {Event} e - * @return {boolean} - */ - function _stop(e) { - var element = e.target || e.srcElement, - tag_name = element.tagName; +/***/ }, +/* 48 */ +/***/ function(module, exports, __webpack_require__) { - // if the element has the class "mousetrap" then no need to stop - if ((' ' + element.className + ' ').indexOf(' mousetrap ') > -1) { - return false; - } + 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 */ - // stop for input, select, and textarea - return tag_name == 'INPUT' || tag_name == 'SELECT' || tag_name == 'TEXTAREA' || (element.contentEditable && element.contentEditable == 'true'); - } + (function(window, undefined) { + 'use strict'; - /** - * checks if two arrays are equal - * - * @param {Array} modifiers1 - * @param {Array} modifiers2 - * @returns {boolean} - */ - function _modifiersMatch(modifiers1, modifiers2) { - return modifiers1.sort().join(',') === modifiers2.sort().join(','); - } + /** + * @main + * @module hammer + * + * @class Hammer + * @static + */ - /** - * resets all sequence counters except for the ones passed in - * - * @param {Object} do_not_reset - * @returns void - */ - function _resetSequences(do_not_reset) { - do_not_reset = do_not_reset || {}; + /** + * Hammer, use this to create instances + * ```` + * var hammertime = new Hammer(myElement); + * ```` + * + * @method Hammer + * @param {HTMLElement} element + * @param {Object} [options={}] + * @return {Hammer.Instance} + */ + var Hammer = function Hammer(element, options) { + return new Hammer.Instance(element, options || {}); + }; - var active_sequences = false, - key; + /** + * version, as defined in package.json + * the value will be set at each build + * @property VERSION + * @final + * @type {String} + */ + Hammer.VERSION = '1.1.3'; - for (key in _sequence_levels) { - if (do_not_reset[key]) { - active_sequences = true; - continue; - } - _sequence_levels[key] = 0; - } + /** + * 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', - if (!active_sequences) { - _inside_sequence = false; - } - } + /** + * 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', - /** - * finds all callbacks that match based on the keycode, modifiers, - * and action - * - * @param {string} character - * @param {Array} modifiers - * @param {string} action - * @param {boolean=} remove - should we remove any matches - * @param {string=} combination - * @returns {Array} - */ - function _getMatches(character, modifiers, action, remove, combination) { - var i, - callback, - matches = []; + /** + * 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', - // if there are no events related to this keycode - if (!_callbacks[character]) { - return []; - } + /** + * Specifies whether zooming is enabled. Used by IE10> + * @property defaults.behavior.contentZooming + * @type {String} + * @default 'none' + */ + contentZooming: 'none', - // if a modifier key is coming up on its own we should allow it - if (action == 'keyup' && _isModifier(character)) { - modifiers = [character]; - } + /** + * 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', - // loop through all callbacks for the key that was pressed - // and see if any of them match - for (i = 0; i < _callbacks[character].length; ++i) { - callback = _callbacks[character][i]; + /** + * Overrides the highlight color shown when the user taps a link or a JavaScript + * clickable element in Safari on iPhone. This property obeys the alpha value, if specified. + * + * If you don't specify an alpha value, Safari on iPhone applies a default alpha value + * to the color. To disable tap highlighting, set the alpha value to 0 (invisible). + * If you set the alpha value to 1.0 (opaque), the element is not visible when tapped. + * @property defaults.behavior.tapHighlightColor + * @type {String} + * @default 'rgba(0,0,0,0)' + */ + tapHighlightColor: 'rgba(0,0,0,0)' + } + }; - // if this is a sequence but it is not at the right level - // then move onto the next match - if (callback.seq && _sequence_levels[callback.seq] != callback.level) { - continue; - } + /** + * hammer document where the base events are added at + * @property DOCUMENT + * @type {HTMLElement} + * @default window.document + */ + Hammer.DOCUMENT = document; - // if the action we are looking for doesn't match the action we got - // then we should keep going - if (action != callback.action) { - continue; - } + /** + * detect support for pointer events + * @property HAS_POINTEREVENTS + * @type {Boolean} + */ + Hammer.HAS_POINTEREVENTS = navigator.pointerEnabled || navigator.msPointerEnabled; - // if this is a keypress event that means that we need to only - // look at the character, otherwise check the modifiers as - // well - if (action == 'keypress' || _modifiersMatch(modifiers, callback.modifiers)) { + /** + * detect support for touch events + * @property HAS_TOUCHEVENTS + * @type {Boolean} + */ + Hammer.HAS_TOUCHEVENTS = ('ontouchstart' in window); - // remove is used so if you change your mind and call bind a - // second time with a new function the first one is overwritten - if (remove && callback.combo == combination) { - _callbacks[character].splice(i, 1); - } + /** + * detect mobile browsers + * @property IS_MOBILE + * @type {Boolean} + */ + Hammer.IS_MOBILE = /mobile|tablet|ip(ad|hone|od)|android|silk/i.test(navigator.userAgent); - matches.push(callback); - } - } + /** + * detect if we want to support mouseevents at all + * @property NO_MOUSEEVENTS + * @type {Boolean} + */ + Hammer.NO_MOUSEEVENTS = (Hammer.HAS_TOUCHEVENTS && Hammer.IS_MOBILE) || Hammer.HAS_POINTEREVENTS; - return matches; - } + /** + * interval in which Hammer recalculates current velocity/direction/angle in ms + * @property CALCULATE_INTERVAL + * @type {Number} + * @default 25 + */ + Hammer.CALCULATE_INTERVAL = 25; - /** - * takes a key event and figures out what the modifiers are - * - * @param {Event} e - * @returns {Array} - */ - function _eventModifiers(e) { - var modifiers = []; + /** + * eventtypes per touchevent (start, move, end) are filled by `Event.determineEventTypes` on `setup` + * the object contains the DOM event names per type (`EVENT_START`, `EVENT_MOVE`, `EVENT_END`) + * @property EVENT_TYPES + * @private + * @writeOnce + * @type {Object} + */ + var EVENT_TYPES = {}; - if (e.shiftKey) { - modifiers.push('shift'); - } + /** + * direction strings, for safe comparisons + * @property DIRECTION_DOWN|LEFT|UP|RIGHT + * @final + * @type {String} + * @default 'down' 'left' 'up' 'right' + */ + var DIRECTION_DOWN = Hammer.DIRECTION_DOWN = 'down'; + var DIRECTION_LEFT = Hammer.DIRECTION_LEFT = 'left'; + var DIRECTION_UP = Hammer.DIRECTION_UP = 'up'; + var DIRECTION_RIGHT = Hammer.DIRECTION_RIGHT = 'right'; - if (e.altKey) { - modifiers.push('alt'); - } + /** + * 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 (e.ctrlKey) { - modifiers.push('ctrl'); - } + /** + * 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'; - if (e.metaKey) { - modifiers.push('meta'); - } + /** + * if the window events are set... + * @property READY + * @writeOnce + * @type {Boolean} + * @default false + */ + Hammer.READY = false; - return modifiers; - } + /** + * plugins namespace + * @property plugins + * @type {Object} + */ + Hammer.plugins = Hammer.plugins || {}; - /** - * actually calls the callback function - * - * if your callback function returns false this will use the jquery - * convention - prevent default and stop propogation on the event - * - * @param {Function} callback - * @param {Event} e - * @returns void - */ - function _fireCallback(callback, e) { - if (callback(e) === false) { - if (e.preventDefault) { - e.preventDefault(); - } + /** + * gestures namespace + * see `/gestures` for the definitions + * @property gestures + * @type {Object} + */ + Hammer.gestures = Hammer.gestures || {}; - if (e.stopPropagation) { - e.stopPropagation(); - } + /** + * setup events to detect gestures on the document + * this function is called when creating an new instance + * @private + */ + function setup() { + if(Hammer.READY) { + return; + } - e.returnValue = false; - e.cancelBubble = true; - } - } + // find what eventtypes we add listeners to + Event.determineEventTypes(); - /** - * handles a character key event - * - * @param {string} character - * @param {Event} e - * @returns void - */ - function _handleCharacter(character, e) { + // Register all gestures inside Hammer.gestures + Utils.each(Hammer.gestures, function(gesture) { + Detection.register(gesture); + }); - // if this event should not happen stop here - if (_stop(e)) { - return; - } + // Add touch events on the document + Event.onTouch(Hammer.DOCUMENT, EVENT_MOVE, Detection.detect); + Event.onTouch(Hammer.DOCUMENT, EVENT_END, Detection.detect); - var callbacks = _getMatches(character, _eventModifiers(e), e.type), - i, - do_not_reset = {}, - processed_sequence_callback = false; + // Hammer is ready...! + Hammer.READY = true; + } - // loop through matching callbacks for this key event - for (i = 0; i < callbacks.length; ++i) { + /** + * @module hammer + * + * @class Utils + * @static + */ + var Utils = Hammer.utils = { + /** + * extend method, could also be used for cloning when `dest` is an empty object. + * changes the dest object + * @method extend + * @param {Object} dest + * @param {Object} src + * @param {Boolean} [merge=false] do a merge + * @return {Object} dest + */ + extend: function extend(dest, src, merge) { + for(var key in src) { + if(!src.hasOwnProperty(key) || (dest[key] !== undefined && merge)) { + continue; + } + dest[key] = src[key]; + } + return dest; + }, - // fire for all sequence callbacks - // this is because if for example you have multiple sequences - // bound such as "g i" and "g t" they both need to fire the - // callback for matching g cause otherwise you can only ever - // match the first one - if (callbacks[i].seq) { - processed_sequence_callback = true; + /** + * 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); + }, - // keep a list of which sequences were matches for later - do_not_reset[callbacks[i].seq] = 1; - _fireCallback(callbacks[i].callback, e); - continue; - } + /** + * 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); + }, - // if there were no sequence matches but we are still here - // that means this is a regular match so we should fire that - if (!processed_sequence_callback && !_inside_sequence) { - _fireCallback(callbacks[i].callback, e); - } - } + /** + * 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; - // if you are inside of a sequence and the key you are pressing - // is not a modifier key then we should reset all sequences - // that were not matched by this key event - if (e.type == _inside_sequence && !_isModifier(character)) { - _resetSequences(do_not_reset); - } - } + // 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; + } + } + } + }, - /** - * handles a keydown event - * - * @param {Event} e - * @returns void - */ - function _handleKey(e) { + /** + * 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; + }, - // normalize e.which for key events - // @see http://stackoverflow.com/questions/4285627/javascript-keycode-vs-charcode-utter-confusion - e.which = typeof e.which == "number" ? e.which : e.keyCode; + /** + * 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; + } + }, - var character = _characterFromEvent(e); + /** + * 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); + }, - // no character found then stop - if (!character) { - return; - } + /** + * find if a node is in the given parent + * @method hasParent + * @param {HTMLElement} node + * @param {HTMLElement} parent + * @return {Boolean} found + */ + hasParent: function hasParent(node, parent) { + while(node) { + if(node == parent) { + return true; + } + node = node.parentNode; + } + return false; + }, - if (e.type == 'keyup' && _ignore_next_keyup == character) { - _ignore_next_keyup = false; - return; - } + /** + * get the center of all the touches + * @method getCenter + * @param {Array} touches + * @return {Object} center contains `pageX`, `pageY`, `clientX` and `clientY` properties + */ + getCenter: function getCenter(touches) { + var pageX = [], + pageY = [], + clientX = [], + clientY = [], + min = Math.min, + max = Math.max; - _handleCharacter(character, e); - } + // 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 + }; + } - /** - * determines if the keycode specified is a modifier key or not - * - * @param {string} key - * @returns {boolean} - */ - function _isModifier(key) { - return key == 'shift' || key == 'ctrl' || key == 'alt' || key == 'meta'; - } + Utils.each(touches, function(touch) { + pageX.push(touch.pageX); + pageY.push(touch.pageY); + clientX.push(touch.clientX); + clientY.push(touch.clientY); + }); - /** - * called to set a 1 second timeout on the specified sequence - * - * this is so after each key press in the sequence you have 1 second - * to press the next key before you have to start over - * - * @returns void - */ - function _resetSequenceTimer() { - clearTimeout(_reset_timer); - _reset_timer = setTimeout(_resetSequences, 1000); - } + 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 + }; + }, - /** - * reverses the map lookup so that we can look for specific keys - * to see what can and can't use keypress - * - * @return {Object} - */ - function _getReverseMap() { - if (!_REVERSE_MAP) { - _REVERSE_MAP = {}; - for (var key in _MAP) { + /** + * 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 + }; + }, - // pull out the numeric keypad from here cause keypress should - // be able to detect the keys from the character - if (key > 95 && key < 112) { - continue; - } + /** + * calculate the angle between two coordinates + * @method getAngle + * @param {Touch} touch1 + * @param {Touch} touch2 + * @return {Number} angle + */ + getAngle: function getAngle(touch1, touch2) { + var x = touch2.clientX - touch1.clientX, + y = touch2.clientY - touch1.clientY; - if (_MAP.hasOwnProperty(key)) { - _REVERSE_MAP[_MAP[key]] = key; - } - } - } - return _REVERSE_MAP; - } + return Math.atan2(y, x) * 180 / Math.PI; + }, - /** - * picks the best action based on the key combination - * - * @param {string} key - character for key - * @param {Array} modifiers - * @param {string=} action passed in - */ - function _pickBestAction(key, modifiers, action) { + /** + * do a small comparision to get the direction between two touches. + * @method getDirection + * @param {Touch} touch1 + * @param {Touch} touch2 + * @return {String} direction matches `DIRECTION_LEFT|RIGHT|UP|DOWN` + */ + getDirection: function getDirection(touch1, touch2) { + var x = Math.abs(touch1.clientX - touch2.clientX), + y = Math.abs(touch1.clientY - touch2.clientY); - // if no action was picked in we should try to pick the one - // that we think would work best for this key - if (!action) { - action = _getReverseMap()[key] ? 'keydown' : 'keypress'; - } + if(x >= y) { + return touch1.clientX - touch2.clientX > 0 ? DIRECTION_LEFT : DIRECTION_RIGHT; + } + return touch1.clientY - touch2.clientY > 0 ? DIRECTION_UP : DIRECTION_DOWN; + }, - // modifier keys don't work as expected with keypress, - // switch to keydown - if (action == 'keypress' && modifiers.length) { - action = 'keydown'; - } + /** + * 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; - return action; - } + return Math.sqrt((x * x) + (y * y)); + }, - /** - * binds a key sequence to an event - * - * @param {string} combo - combo specified in bind call - * @param {Array} keys - * @param {Function} callback - * @param {string=} action - * @returns void - */ - function _bindSequence(combo, keys, callback, action) { + /** + * 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; + }, - // start off by adding a sequence level record for this combination - // and setting the level to 0 - _sequence_levels[combo] = 0; + /** + * calculate the rotation degrees between two touchLists + * @method getRotation + * @param {Array} start array of touches + * @param {Array} end array of touches + * @return {Number} rotation + */ + getRotation: function getRotation(start, end) { + // need two fingers + if(start.length >= 2 && end.length >= 2) { + return this.getAngle(end[1], end[0]) - this.getAngle(start[1], start[0]); + } + return 0; + }, - // if there is no action pick the best one for the first key - // in the sequence - if (!action) { - action = _pickBestAction(keys[0], []); - } + /** + * 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; + }, - /** - * callback to increase the sequence level for this sequence and reset - * all other sequences that were active - * - * @param {Event} e - * @returns void - */ - var _increaseSequence = function(e) { - _inside_sequence = action; - ++_sequence_levels[combo]; - _resetSequenceTimer(); - }, + /** + * 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); - /** - * wraps the specified callback inside of another function in order - * to reset all sequence counters as soon as this sequence is done - * - * @param {Event} e - * @returns void - */ - _callbackAndReset = function(e) { - _fireCallback(callback, e); + 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); + } - // we should ignore the next key up if the action is key down - // or keypress. this is so if you finish a sequence and - // release the key the final key will not trigger a keyup - if (action !== 'keyup') { - _ignore_next_keyup = _characterFromEvent(e); - } + // test the style + if(p in element.style) { + element.style[p] = (toggle == null || toggle) && value || ''; + break; + } + } + }, - // weird race condition if a sequence ends with the key - // another sequence begins with - setTimeout(_resetSequences, 10); - }, - i; + /** + * 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; + } - // loop through keys one at a time and bind the appropriate callback - // function. for any key leading up to the final one it should - // increase the sequence. after the final, it should reset all sequences - for (i = 0; i < keys.length; ++i) { - _bindSingle(keys[i], i < keys.length - 1 ? _increaseSequence : _callbackAndReset, action, combo, i); - } - } + // set the css properties + Utils.each(props, function(value, prop) { + Utils.setPrefixedCss(element, prop, value, toggle); + }); - /** - * binds a single keyboard combination - * - * @param {string} combination - * @param {Function} callback - * @param {string=} action - * @param {string=} sequence_name - name of sequence if part of sequence - * @param {number=} level - what part of the sequence the command is - * @returns void - */ - function _bindSingle(combination, callback, action, sequence_name, level) { + var falseFn = toggle && function() { + return false; + }; - // make sure multiple spaces in a row become a single space - combination = combination.replace(/\s+/g, ' '); + // also the disable onselectstart + if(props.userSelect == 'none') { + element.onselectstart = falseFn; + } + // and disable ondragstart + if(props.userDrag == 'none') { + element.ondragstart = falseFn; + } + }, - var sequence = combination.split(' '), - i, - key, - keys, - modifiers = []; + /** + * convert a string with underscores to camelCase + * so prevent_default becomes preventDefault + * @param {String} str + * @return {String} camelCaseStr + */ + toCamelCase: function toCamelCase(str) { + return str.replace(/[_-]([a-z])/g, function(s) { + return s[1].toUpperCase(); + }); + } + }; - // if this pattern is a sequence of keys then run through this method - // to reprocess each pattern one key at a time - if (sequence.length > 1) { - return _bindSequence(combination, sequence, callback, action); - } - // take the keys from this pattern and figure out what the actual - // pattern is all about - keys = combination === '+' ? ['+'] : combination.split('+'); + /** + * @module hammer + */ + /** + * @class Event + * @static + */ + var Event = Hammer.event = { + /** + * when touch events have been fired, this is true + * this is used to stop mouse events + * @property prevent_mouseevents + * @private + * @type {Boolean} + */ + preventMouseEvents: false, - for (i = 0; i < keys.length; ++i) { - key = keys[i]; + /** + * if EVENT_START has been fired + * @property started + * @private + * @type {Boolean} + */ + started: false, - // normalize key names - if (_SPECIAL_ALIASES[key]) { - key = _SPECIAL_ALIASES[key]; - } + /** + * when the mouse is hold down, this is true + * @property should_detect + * @private + * @type {Boolean} + */ + shouldDetect: false, - // if this is not a keypress event then we should - // be smart about using shift keys - // this will only work for US keyboards however - if (action && action != 'keypress' && _SHIFT_MAP[key]) { - key = _SHIFT_MAP[key]; - modifiers.push('shift'); - } + /** + * simple event binder with a hook and support for multiple types + * @method on + * @param {HTMLElement} element + * @param {String} type + * @param {Function} handler + * @param {Function} [hook] + * @param {Object} hook.type + */ + on: function on(element, type, handler, hook) { + var types = type.split(' '); + Utils.each(types, function(type) { + Utils.on(element, type, handler); + hook && hook(type); + }); + }, - // if this key is a modifier then add it to the list of modifiers - if (_isModifier(key)) { - modifiers.push(key); - } - } + /** + * 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); + }); + }, - // depending on what the key combination is - // we will try to pick the best event for it - action = _pickBestAction(key, modifiers, action); + /** + * 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; - // make sure to initialize array if this is the first time - // a callback is added for this key - if (!_callbacks[key]) { - _callbacks[key] = []; - } + var onTouchHandler = function onTouchHandler(ev) { + var srcType = ev.type.toLowerCase(), + isPointer = Hammer.HAS_POINTEREVENTS, + isMouse = Utils.inStr(srcType, 'mouse'), + triggerType; - // remove an existing match if there is one - _getMatches(key, modifiers, action, !sequence_name, combination); + // 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; - // add this call back to the array - // if it is a sequence put it at the beginning - // if not put it at the end - // - // this is important because the way these are processed expects - // the sequence ones to come first - _callbacks[key][sequence_name ? 'unshift' : 'push']({ - callback: callback, - modifiers: modifiers, - action: action, - seq: sequence_name, - level: level, - combo: combination - }); - } + // 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; + } - /** - * binds multiple combinations to the same callback - * - * @param {Array} combinations - * @param {Function} callback - * @param {string|undefined} action - * @returns void - */ - function _bindMultiple(combinations, callback, action) { - for (var i = 0; i < combinations.length; ++i) { - _bindSingle(combinations[i], callback, action); - } - } + // update the pointer event before entering the detection + if(isPointer && eventType != EVENT_END) { + PointerEvent.updatePointer(eventType, ev); + } - // start! - _addEvent(document, 'keypress', _handleKey); - _addEvent(document, 'keydown', _handleKey); - _addEvent(document, 'keyup', _handleKey); + // we are in a touch/down state, so allowed detection of gestures + if(self.shouldDetect) { + triggerType = self.doDetect.call(self, ev, eventType, element, handler); + } - var mousetrap = { + // ...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 + } - /** - * binds an event to mousetrap - * - * can be a single key, a combination of keys separated with +, - * a comma separated list of keys, an array of keys, or - * a sequence of keys separated by spaces - * - * be sure to list the modifier keys first to make sure that the - * correct key ends up getting bound (the last key in the pattern) - * - * @param {string|Array} keys - * @param {Function} callback - * @param {string=} action - 'keypress', 'keydown', or 'keyup' - * @returns void - */ - bind: function(keys, callback, action) { - _bindMultiple(keys instanceof Array ? keys : [keys], callback, action); - _direct_map[keys + ':' + action] = callback; - return this; - }, + if(isPointer && eventType == EVENT_END) { + PointerEvent.updatePointer(eventType, ev); + } + }; - /** - * unbinds an event to mousetrap - * - * the unbinding sets the callback function of the specified key combo - * to an empty function and deletes the corresponding key in the - * _direct_map dict. - * - * the keycombo+action has to be exactly the same as - * it was defined in the bind method - * - * TODO: actually remove this from the _callbacks dictionary instead - * of binding an empty function - * - * @param {string|Array} keys - * @param {string} action - * @returns void - */ - unbind: function(keys, action) { - if (_direct_map[keys + ':' + action]) { - delete _direct_map[keys + ':' + action]; - this.bind(keys, function() {}, action); - } - return this; - }, + this.on(element, EVENT_TYPES[eventType], onTouchHandler); + return onTouchHandler; + }, - /** - * triggers an event that has already been bound - * - * @param {string} keys - * @param {string=} action - * @returns void - */ - trigger: function(keys, action) { - _direct_map[keys + ':' + action](); - return this; - }, + /** + * 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; - /** - * resets the library back to its initial state. this is useful - * if you want to clear out the current keyboard shortcuts and bind - * new ones - for example if you switch to another page - * - * @returns void - */ - reset: function() { - _callbacks = {}; - _direct_map = {}; - return this; - } - }; + // 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; - module.exports = mousetrap; + // keep track of how many touches have been removed + changedLength = touchList.length - ((ev.changedTouches) ? ev.changedTouches.length : 1); + } + // 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; + } + // detection has been started, we keep track of this, see above + this.started = true; -/***/ }, -/* 43 */ -/***/ function(module, exports, __webpack_require__) { + // generate some event data, some basic information + var evData = this.collectEventData(element, triggerType, touchList, ev); - /** - * 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(); - } + // 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); + } - // token types enumeration - var TOKENTYPE = { - NULL : 0, - DELIMITER : 1, - IDENTIFIER: 2, - UNKNOWN : 3 - }; + // trigger a change (TOUCH, RELEASE) event, this means the length of the touches changed + if(triggerChange) { + evData.changedLength = changedLength; + evData.eventType = triggerChange; - // map with all delimiters - var DELIMITERS = { - '{': true, - '}': true, - '[': true, - ']': true, - ';': true, - '=': true, - ',': true, + handler.call(Detection, evData); - '->': true, - '--': true - }; + evData.eventType = triggerType; + delete evData.changedLength; + } - 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 + // trigger the END event + if(triggerType == EVENT_END) { + handler.call(Detection, evData); - /** - * 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); - } + // ...and we are done with the detection + // so reset everything to start each detection totally fresh + this.started = false; + } - /** - * Get the next character from the dot file. - * The character is stored into the char c. If the end of the dot file is - * reached, the function puts an empty string in c. - */ - function next() { - index++; - c = dot.charAt(index); - } + return triggerType; + }, - /** - * Preview the next character from the dot file. - * @return {String} cNext - */ - function nextPreview() { - return dot.charAt(index + 1); - } + /** + * 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' + ]; + } - /** - * 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); - } + EVENT_TYPES[EVENT_START] = types[0]; + EVENT_TYPES[EVENT_MOVE] = types[1]; + EVENT_TYPES[EVENT_END] = types[2]; + return EVENT_TYPES; + }, - /** - * 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 = {}; - } + /** + * create touchList depending on the event + * @method getTouchList + * @param {Object} ev + * @param {String} eventType + * @return {Array} touches + */ + getTouchList: function getTouchList(ev, eventType) { + // get the fake pointerEvent touchlist + if(Hammer.HAS_POINTEREVENTS) { + return PointerEvent.getTouchList(); + } - if (b) { - for (var name in b) { - if (b.hasOwnProperty(name)) { - a[name] = b[name]; - } - } - } - return a; - } + // get the touchlist + if(ev.touches) { + if(eventType == EVENT_MOVE) { + return ev.touches; + } - /** - * 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; - } - } - } + var identifiers = []; + var concat = [].concat(Utils.toArray(ev.touches), Utils.toArray(ev.changedTouches)); + var touchList = []; - /** - * 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; + Utils.each(concat, function(touch) { + if(Utils.inArray(identifiers, touch.identifier) === false) { + touchList.push(touch); + } + identifiers.push(touch.identifier); + }); - // 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; - } + return touchList; + } + + // make fake touchList from mouse position + ev.identifier = 1; + return [ev]; + }, + + /** + * 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; + } - // 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; - } - } - } + return { + center: Utils.getCenter(touches), + timeStamp: Date.now(), + target: ev.target, + touches: touches, + eventType: eventType, + pointerType: pointerType, + srcEvent: ev, - if (!current) { - // this is a new node - current = { - id: node.id - }; - if (graph.node) { - // clone default attributes - current.attr = merge(current.attr, graph.node); - } - } + /** + * 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(); + }, - // add node to this (sub)graph and all its parent graphs - for (i = graphs.length - 1; i >= 0; i--) { - var g = graphs[i]; + /** + * stop bubbling the event up to its parents + */ + stopPropagation: function() { + this.srcEvent.stopPropagation(); + }, - if (!g.nodes) { - g.nodes = []; - } - if (g.nodes.indexOf(current) == -1) { - g.nodes.push(current); + /** + * immediately stop gesture detection + * might be useful after a swipe was detected + * @return {*} + */ + stopDetect: function() { + return Detection.stopDetect(); + } + }; } - } + }; - // merge attributes - if (node.attr) { - current.attr = merge(current.attr, node.attr); - } - } /** - * Add an edge to a graph object - * @param {Object} graph - * @param {Object} edge + * @module hammer + * + * @class PointerEvent + * @static */ - 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 - } - } + var PointerEvent = Hammer.PointerEvent = { + /** + * holds all pointers, by `identifier` + * @property pointers + * @type {Object} + */ + pointers: {}, - /** - * 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 - }; + /** + * 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; + }, - if (graph.edge) { - edge.attr = merge({}, graph.edge); // clone default attributes - } - edge.attr = merge(edge.attr || {}, attr); // merge attributes + /** + * update the position of a pointer + * @method updatePointer + * @param {String} eventType matches `EVENT_START|MOVE|END` + * @param {Object} pointerEvent + */ + updatePointer: function updatePointer(eventType, pointerEvent) { + if(eventType == EVENT_END || (eventType != EVENT_END && pointerEvent.buttons !== 1)) { + delete this.pointers[pointerEvent.pointerId]; + } else { + pointerEvent.identifier = pointerEvent.pointerId; + this.pointers[pointerEvent.pointerId] = pointerEvent; + } + }, + + /** + * check if ev matches pointertype + * @method matchType + * @param {String} pointerType matches `POINTER_MOUSE|TOUCH|PEN` + * @param {PointerEvent} ev + */ + matchType: function matchType(pointerType, ev) { + if(!ev.pointerType) { + return false; + } + + var pt = ev.pointerType, + types = {}; + + types[POINTER_MOUSE] = (pt === (ev.MSPOINTER_TYPE_MOUSE || POINTER_MOUSE)); + types[POINTER_TOUCH] = (pt === (ev.MSPOINTER_TYPE_TOUCH || POINTER_TOUCH)); + types[POINTER_PEN] = (pt === (ev.MSPOINTER_TYPE_PEN || POINTER_PEN)); + return types[pointerType]; + }, + + /** + * reset the stored pointers + * @method reset + */ + reset: function resetList() { + this.pointers = {}; + } + }; - return edge; - } /** - * Get next token in the current dot file. - * The token and token type are available as token and tokenType + * @module hammer + * + * @class Detection + * @static */ - function getToken() { - tokenType = TOKENTYPE.NULL; - token = ''; - - // skip over whitespaces - while (c == ' ' || c == '\t' || c == '\n' || c == '\r') { // space, tab, enter - next(); - } + var Detection = Hammer.detection = { + // contains all registred Hammer.gestures in the correct order + gestures: [], - do { - var isComment = false; + // data of the current Hammer.gesture detection session + current: null, - // skip comment - if (c == '#') { - // find the previous non-space character - var i = index - 1; - while (dot.charAt(i) == ' ' || dot.charAt(i) == '\t') { - i--; - } - if (dot.charAt(i) == '\n' || dot.charAt(i) == '') { - // the # is at the start of a line, this is indeed a line comment - while (c != '' && c != '\n') { - next(); - } - isComment = true; - } - } - if (c == '/' && nextPreview() == '/') { - // skip line comment - while (c != '' && c != '\n') { - next(); - } - isComment = true; - } - if (c == '/' && nextPreview() == '*') { - // skip block comment - while (c != '') { - if (c == '*' && nextPreview() == '/') { - // end of block comment found. skip these last two characters - next(); - next(); - break; - } - else { - next(); - } - } - isComment = true; - } + // the previous Hammer.gesture session data + // is a full clone of the previous gesture.current object + previous: null, - // skip over whitespaces - while (c == ' ' || c == '\t' || c == '\n' || c == '\r') { // space, tab, enter - next(); - } - } - while (isComment); + // when this becomes true, no gestures are fired + stopped: false, - // check for end of dot file - if (c == '') { - // token is still empty - tokenType = TOKENTYPE.DELIMITER; - return; - } + /** + * 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; + } - // check for delimiters consisting of 2 characters - var c2 = c + nextPreview(); - if (DELIMITERS[c2]) { - tokenType = TOKENTYPE.DELIMITER; - token = c2; - next(); - next(); - return; - } + this.stopped = false; - // check for delimiters consisting of 1 character - if (DELIMITERS[c]) { - tokenType = TOKENTYPE.DELIMITER; - token = c; - next(); - return; - } + // 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 + }; - // check for an identifier (number or string) - // TODO: more precise parsing of numbers/strings (and the port separator ':') - if (isAlphaNumeric(c) || c == '-') { - token += c; - next(); + this.detect(eventData); + }, - 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; - } + /** + * Hammer.gesture detection + * @method detect + * @param {Object} eventData + * @return {any} + */ + detect: function detect(eventData) { + if(!this.current || this.stopped) { + return; + } - // check for a string enclosed by double quotes - if (c == '"') { - next(); - while (c != '' && (c != '"' || (c == '"' && nextPreview() == '"'))) { - token += c; - if (c == '"') { // skip the escape character - next(); - } - next(); - } - if (c != '"') { - throw newSyntaxError('End of string " expected'); - } - next(); - tokenType = TOKENTYPE.IDENTIFIER; - return; - } + // extend event data with calculations about scale, distance etc + eventData = this.extendEventData(eventData); - // 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) + '"'); - } + // hammer instance and instance options + var inst = this.current.inst, + instOptions = inst.options; - /** - * Parse a graph. - * @returns {Object} graph - */ - function parseGraph() { - var graph = {}; + // 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); - first(); - getToken(); + // store as previous event event + if(this.current) { + this.current.lastEvent = eventData; + } - // optional strict keyword - if (token == 'strict') { - graph.strict = true; - getToken(); - } + if(eventData.eventType == EVENT_END) { + this.stopDetect(); + } - // graph or digraph keyword - if (token == 'graph' || token == 'digraph') { - graph.type = token; - getToken(); - } + return eventData; + }, - // optional graph id - if (tokenType == TOKENTYPE.IDENTIFIER) { - graph.id = token; - getToken(); - } + /** + * clear the Hammer.gesture vars + * this is called on endDetect, but can also be used when a final Hammer.gesture has been detected + * to stop other Hammer.gestures from being fired + * @method stopDetect + */ + stopDetect: function stopDetect() { + // clone current data to the store as the previous gesture + // used for the double tap gesture, since this is an other gesture detect session + this.previous = Utils.extend({}, this.current); - // open angle bracket - if (token != '{') { - throw newSyntaxError('Angle bracket { expected'); - } - getToken(); + // reset the current + this.current = null; + this.stopped = true; + }, - // statements - parseStatements(graph); + /** + * 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; - // close angle bracket - if (token != '}') { - throw newSyntaxError('Angle bracket } expected'); - } - getToken(); + 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; + } - // end of file - if (token !== '') { - throw newSyntaxError('End of file expected'); - } - getToken(); + if(ev.eventType == EVENT_TOUCH || ev.eventType == EVENT_RELEASE) { + cur.futureCalcEvent = ev; + } - // remove temporary default properties - delete graph.node; - delete graph.edge; - delete graph.graph; + 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); - return graph; - } + cur.lastCalcEvent = cur.futureCalcEvent || ev; + cur.futureCalcEvent = ev; + } - /** - * Parse a list with statements. - * @param {Object} graph - */ - function parseStatements (graph) { - while (token !== '' && token != '}') { - parseStatement(graph); - if (token == ';') { - getToken(); - } - } - } + ev.velocityX = calcData.velocity.x; + ev.velocityY = calcData.velocity.y; + ev.interimAngle = calcData.angle; + ev.interimDirection = calcData.direction; + }, - /** - * 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); + /** + * 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; - return; - } + // 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 + }); + }); + } - // parse an attribute statement - var attr = parseAttributeStatement(graph); - if (attr) { - return; - } + var deltaTime = ev.timeStamp - startEv.timeStamp, + deltaX = ev.center.clientX - startEv.center.clientX, + deltaY = ev.center.clientY - startEv.center.clientY; - // parse node - if (tokenType != TOKENTYPE.IDENTIFIER) { - throw newSyntaxError('Identifier expected'); - } - var id = token; // id can be a string or a number - getToken(); + this.getCalculatedData(ev, lastEv.center, deltaTime, deltaX, deltaY); - 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); - } - } + Utils.extend(ev, { + startEvent: startEv, - /** - * Parse a subgraph - * @param {Object} graph parent graph object - * @return {Object | null} subgraph - */ - function parseSubgraph (graph) { - var subgraph = null; + deltaTime: deltaTime, + deltaX: deltaX, + deltaY: deltaY, - // optional subgraph keyword - if (token == 'subgraph') { - subgraph = {}; - subgraph.type = 'subgraph'; - getToken(); + 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) + }); - // optional graph id - if (tokenType == TOKENTYPE.IDENTIFIER) { - subgraph.id = token; - getToken(); - } - } + return ev; + }, - // open angle bracket - if (token == '{') { - getToken(); + /** + * 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; + } - if (!subgraph) { - subgraph = {}; - } - subgraph.parent = graph; - subgraph.node = graph.node; - subgraph.edge = graph.edge; - subgraph.graph = graph.graph; + // extend Hammer default options with the Hammer.gesture options + Utils.extend(Hammer.defaults, options, true); - // statements - parseStatements(subgraph); + // set its index + gesture.index = gesture.index || 1000; - // close angle bracket - if (token != '}') { - throw newSyntaxError('Angle bracket } expected'); - } - getToken(); + // add Hammer.gesture to the list + this.gestures.push(gesture); - // remove temporary default properties - delete subgraph.node; - delete subgraph.edge; - delete subgraph.graph; - delete subgraph.parent; + // 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; + }); - // register at the parent graph - if (!graph.subgraphs) { - graph.subgraphs = []; + return this.gestures; } - graph.subgraphs.push(subgraph); - } + }; - return subgraph; - } /** - * parse an attribute statement like "node [shape=circle fontSize=16]". - * Available keywords are 'node', 'edge', 'graph'. - * The previous list with default attributes will be replaced - * @param {Object} graph - * @returns {String | null} keyword Returns the name of the parsed attribute - * (node, edge, graph), or null if nothing - * is parsed. + * @module hammer */ - function parseAttributeStatement (graph) { - // attribute statements - if (token == 'node') { - getToken(); - // node attributes - graph.node = parseAttributeList(); - return 'node'; - } - else if (token == 'edge') { - getToken(); + /** + * create new hammer instance + * all methods should return the instance itself, so it is chainable. + * + * @class Instance + * @constructor + * @param {HTMLElement} element + * @param {Object} [options={}] options are merged with `Hammer.defaults` + * @return {Hammer.Instance} + */ + Hammer.Instance = function(element, options) { + var self = this; - // edge attributes - graph.edge = parseAttributeList(); - return 'edge'; - } - else if (token == 'graph') { - getToken(); + // setup HammerJS window events and register all gestures + // this also sets up the default options + setup(); - // graph attributes - graph.graph = parseAttributeList(); - return 'graph'; - } + /** + * @property element + * @type {HTMLElement} + */ + this.element = element; - return null; - } + /** + * @property enabled + * @type {Boolean} + * @protected + */ + this.enabled = 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); + /** + * options, merged with the defaults + * options with an _ are converted to camelCase + * @property options + * @type {Object} + */ + Utils.each(options, function(value, name) { + delete options[name]; + options[Utils.toCamelCase(name)] = value; + }); + + this.options = Utils.extend(Utils.extend({}, Hammer.defaults), options || {}); + + // add some css to the element to prevent the browser from doing its native behavoir + if(this.options.behavior) { + Utils.toggleBehavior(this.element, this.options.behavior, true); + } + + /** + * event start handler on the element to start the detection + * @property eventStartHandler + * @type {Object} + */ + this.eventStartHandler = Event.onTouch(element, EVENT_START, function(ev) { + if(self.enabled && ev.eventType == EVENT_START) { + Detection.startDetect(self, ev); + } else if(ev.eventType == EVENT_TOUCH) { + Detection.detect(ev); + } + }); + + /** + * keep a list of user event handlers which needs to be removed when calling 'dispose' + * @property eventHandlers + * @type {Array} + */ + this.eventHandlers = []; + }; + + Hammer.Instance.prototype = { + /** + * bind events to the instance + * @method on + * @chainable + * @param {String} gestures multiple gestures by splitting with a space + * @param {Function} handler + * @param {Object} handler.ev event object + */ + on: function onEvent(gestures, handler) { + var self = this; + Event.on(self.element, gestures, handler, function(type) { + self.eventHandlers.push({ gesture: type, handler: handler }); + }); + return self; + }, + + /** + * unbind events to the instance + * @method off + * @chainable + * @param {String} gestures + * @param {Function} handler + */ + off: function offEvent(gestures, handler) { + var self = this; - // edge statements - parseEdge(graph, id); - } + 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; + }, - /** - * 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(); + /** + * trigger gesture event + * @method trigger + * @chainable + * @param {String} gesture + * @param {Object} [eventData] + */ + trigger: function triggerEvent(gesture, eventData) { + // optional + if(!eventData) { + eventData = {}; + } - var subgraph = parseSubgraph(graph); - if (subgraph) { - to = subgraph; - } - else { - if (tokenType != TOKENTYPE.IDENTIFIER) { - throw newSyntaxError('Identifier or subgraph expected'); - } - to = token; - addNode(graph, { - id: to - }); - getToken(); - } + // create DOM event + var event = Hammer.DOCUMENT.createEvent('Event'); + event.initEvent(gesture, true, true); + event.gesture = eventData; - // parse edge attributes - var attr = parseAttributeList(); + // trigger on the target if it is in the instance element, + // this is for event delegation tricks + var element = this.element; + if(Utils.hasParent(eventData.target, element)) { + element = eventData.target; + } - // create edge - var edge = createEdge(graph, from, to, type, attr); - addEdge(graph, edge); + element.dispatchEvent(event); + return this; + }, - from = to; - } - } + /** + * enable of disable hammer.js detection + * @method enable + * @chainable + * @param {Boolean} state + */ + enable: function enable(state) { + this.enabled = state; + return this; + }, - /** - * Parse a set with attributes, - * for example [label="1.000", shape=solid] - * @return {Object | null} attr - */ - function parseAttributeList() { - var attr = null; + /** + * dispose this hammer instance + * @method dispose + * @return {Null} + */ + dispose: function dispose() { + var i, eh; - while (token == '[') { - getToken(); - attr = {}; - while (token !== '' && token != ']') { - if (tokenType != TOKENTYPE.IDENTIFIER) { - throw newSyntaxError('Attribute name expected'); - } - var name = token; + // undo all changes made by stop_browser_behavior + Utils.toggleBehavior(this.element, this.options.behavior, false); - getToken(); - if (token != '=') { - throw newSyntaxError('Equal sign = expected'); - } - getToken(); + // unbind all custom event handlers + for(i = -1; (eh = this.eventHandlers[++i]);) { + Utils.off(this.element, eh.gesture, eh.handler); + } - if (tokenType != TOKENTYPE.IDENTIFIER) { - throw newSyntaxError('Attribute value expected'); - } - var value = token; - setValue(attr, name, value); // name can be a path + this.eventHandlers = []; - getToken(); - if (token ==',') { - getToken(); - } - } + // unbind the start event listener + Event.off(this.element, EVENT_TYPES[EVENT_START], this.eventStartHandler); - if (token != ']') { - throw newSyntaxError('Bracket ] expected'); + return null; } - getToken(); - } + }; - return attr; - } /** - * Create a syntax error with extra information on current token and index. - * @param {String} message - * @returns {SyntaxError} err + * @module gestures */ - function newSyntaxError(message) { - return new SyntaxError(message + ', got "' + chop(token, 30) + '" (char ' + index + ')'); - } - /** - * Chop off text after a maximum length - * @param {String} text - * @param {Number} maxLength - * @returns {String} + * Move with x fingers (default 1) around on the page. + * Preventing the default browser behavior is a good way to improve feel and working. + * ```` + * hammertime.on("drag", function(ev) { + * console.log(ev); + * ev.gesture.preventDefault(); + * }); + * ```` + * + * @class Drag + * @static */ - function chop (text, maxLength) { - return (text.length <= maxLength) ? text : (text.substr(0, 27) + '...'); - } - /** - * Execute a function fn for each pair of elements in two arrays - * @param {Array | *} array1 - * @param {Array | *} array2 - * @param {function} fn + * @event drag + * @param {Object} ev */ - function forEach2(array1, array2, fn) { - if (array1 instanceof Array) { - array1.forEach(function (elem1) { - if (array2 instanceof Array) { - array2.forEach(function (elem2) { - fn(elem1, elem2); - }); - } - else { - fn(elem1, array2); - } - }); - } - else { - if (array2 instanceof Array) { - array2.forEach(function (elem2) { - fn(array1, elem2); - }); - } - else { - fn(array1, array2); - } - } - } - /** - * Convert a string containing a graph in DOT language into a map containing - * with nodes and edges in the format of graph. - * @param {String} data Text containing a graph in DOT-notation - * @return {Object} graphData + * @event 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 */ - function DOTToGraph (data) { - // parse the DOT file - var dotData = parseDOT(data); - var graphData = { - nodes: [], - edges: [], - options: {} - }; - - // copy the nodes - if (dotData.nodes) { - dotData.nodes.forEach(function (dotNode) { - var graphNode = { - id: dotNode.id, - label: String(dotNode.label || dotNode.id) - }; - merge(graphNode, dotNode.attr); - if (graphNode.image) { - graphNode.shape = 'image'; - } - graphData.nodes.push(graphNode); - }); - } - - // copy the edges - if (dotData.edges) { - /** - * Convert an edge in DOT format to an edge with VisGraph format - * @param {Object} dotEdge - * @returns {Object} graphEdge - */ - function convertEdge(dotEdge) { - var graphEdge = { - from: dotEdge.from, - to: dotEdge.to - }; - merge(graphEdge, dotEdge.attr); - graphEdge.style = (dotEdge.type == '->') ? 'arrow' : 'line'; - return graphEdge; - } - dotData.edges.forEach(function (dotEdge) { - var from, to; - if (dotEdge.from instanceof Object) { - from = dotEdge.from.nodes; - } - else { - from = { - id: dotEdge.from - } - } + /** + * @param {String} name + */ + (function(name) { + var triggered = false; - if (dotEdge.to instanceof Object) { - to = dotEdge.to.nodes; - } - else { - to = { - id: dotEdge.to - } - } + function dragGesture(ev, inst) { + var cur = Detection.current; - if (dotEdge.from instanceof Object && dotEdge.from.edges) { - dotEdge.from.edges.forEach(function (subEdge) { - var graphEdge = convertEdge(subEdge); - graphData.edges.push(graphEdge); - }); - } + // max touches + if(inst.options.dragMaxTouches > 0 && + ev.touches.length > inst.options.dragMaxTouches) { + return; + } - 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); - }); + switch(ev.eventType) { + case EVENT_START: + triggered = false; + break; - if (dotEdge.to instanceof Object && dotEdge.to.edges) { - dotEdge.to.edges.forEach(function (subEdge) { - var graphEdge = convertEdge(subEdge); - graphData.edges.push(graphEdge); - }); - } - }); - } + case EVENT_MOVE: + // when the distance we moved is too small we skip this gesture + // or we can be already in dragging + if(ev.distance < inst.options.dragMinDistance && + cur.name != name) { + return; + } - // copy the options - if (dotData.attr) { - graphData.options = dotData.attr; - } + var startCenter = cur.startEvent.center; - return graphData; - } + // 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; - // exports - exports.parseDOT = parseDOT; - exports.DOTToGraph = DOTToGraph; + // recalculate event data using new start point + ev = Detection.extendEventData(ev); + } + } + // lock drag to axis? + if(cur.lastEvent.dragLockToAxis || + ( inst.options.dragLockToAxis && + inst.options.dragLockMinDistance <= ev.distance + )) { + ev.dragLockToAxis = true; + } -/***/ }, -/* 44 */ -/***/ function(module, exports, __webpack_require__) { + // 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; + } + } - - function parseGephi(gephiJSON, options) { - var edges = []; - var nodes = []; - this.options = { - edges: { - inheritColor: true - }, - nodes: { - allowedToMove: false, - parseColor: false - } - }; + // first time, trigger dragstart event + if(!triggered) { + inst.trigger(name + 'start', ev); + triggered = true; + } - if (options !== undefined) { - this.options.nodes['allowedToMove'] = options.allowedToMove | false; - this.options.nodes['parseColor'] = options.parseColor | false; - this.options.edges['inheritColor'] = options.inheritColor | true; - } + // trigger events + inst.trigger(name, ev); + inst.trigger(name + ev.direction, ev); - var gEdges = gephiJSON.edges; - var gNodes = gephiJSON.nodes; - for (var i = 0; i < gEdges.length; i++) { - var edge = {}; - var gEdge = gEdges[i]; - edge['id'] = gEdge.id; - edge['from'] = gEdge.source; - edge['to'] = gEdge.target; - edge['attributes'] = gEdge.attributes; - // edge['value'] = gEdge.attributes !== undefined ? gEdge.attributes.Weight : undefined; - // edge['width'] = edge['value'] !== undefined ? undefined : edgegEdge.size; - edge['color'] = gEdge.color; - edge['inheritColor'] = edge['color'] !== undefined ? false : this.options.inheritColor; - edges.push(edge); - } + var isVertical = Utils.isVertical(ev.direction); - 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); - } + // block the browser events + if((inst.options.dragBlockVertical && isVertical) || + (inst.options.dragBlockHorizontal && !isVertical)) { + ev.preventDefault(); + } + break; - return {nodes:nodes, edges:edges}; - } + case EVENT_RELEASE: + if(triggered && ev.changedLength <= inst.options.dragMaxTouches) { + inst.trigger(name + 'end', ev); + triggered = false; + } + break; - exports.parseGephi = parseGephi; + case EVENT_END: + triggered = false; + break; + } + } -/***/ }, -/* 45 */ -/***/ function(module, exports, __webpack_require__) { + Hammer.gestures.Drag = { + name: name, + index: 50, + handler: dragGesture, + defaults: { + /** + * minimal movement that have to be made before the drag event gets triggered + * @property dragMinDistance + * @type {Number} + * @default 10 + */ + dragMinDistance: 10, - var util = __webpack_require__(1); + /** + * 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, - /** - * @class Groups - * This class can store groups and properties specific for groups. - */ - function Groups() { - this.clear(); - this.defaultIndex = 0; - } + /** + * 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, - /** - * default constants for group colors - */ - Groups.DEFAULT = [ - {border: "#2B7CE9", background: "#97C2FC", highlight: {border: "#2B7CE9", background: "#D2E5FF"}, hover: {border: "#2B7CE9", background: "#D2E5FF"}}, // blue - {border: "#FFA500", background: "#FFFF00", highlight: {border: "#FFA500", background: "#FFFFA3"}, hover: {border: "#FFA500", background: "#FFFFA3"}}, // yellow - {border: "#FA0A10", background: "#FB7E81", highlight: {border: "#FA0A10", background: "#FFAFB1"}, hover: {border: "#FA0A10", background: "#FFAFB1"}}, // red - {border: "#41A906", background: "#7BE141", highlight: {border: "#41A906", background: "#A1EC76"}, hover: {border: "#41A906", background: "#A1EC76"}}, // green - {border: "#E129F0", background: "#EB7DF4", highlight: {border: "#E129F0", background: "#F0B3F5"}, hover: {border: "#E129F0", background: "#F0B3F5"}}, // magenta - {border: "#7C29F0", background: "#AD85E4", highlight: {border: "#7C29F0", background: "#D3BDF0"}, hover: {border: "#7C29F0", background: "#D3BDF0"}}, // purple - {border: "#C37F00", background: "#FFA807", highlight: {border: "#C37F00", background: "#FFCA66"}, hover: {border: "#C37F00", background: "#FFCA66"}}, // orange - {border: "#4220FB", background: "#6E6EFD", highlight: {border: "#4220FB", background: "#9B9BFD"}, hover: {border: "#4220FB", background: "#9B9BFD"}}, // darkblue - {border: "#FD5A77", background: "#FFC0CB", highlight: {border: "#FD5A77", background: "#FFD1D9"}, hover: {border: "#FD5A77", background: "#FFD1D9"}}, // pink - {border: "#4AD63A", background: "#C2FABC", highlight: {border: "#4AD63A", background: "#E6FFE3"}, hover: {border: "#4AD63A", background: "#E6FFE3"}} // mint - ]; + /** + * 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'); /** - * Clear all groups + * @module gestures */ - 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; - } - }; - - /** - * 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 + * trigger a simple gesture event, so you can do anything in your handler. + * only usable if you know what your doing... + * + * @class Gesture + * @static */ - Groups.prototype.get = function (groupname) { - var group = this.groups[groupname]; - if (group == undefined) { - // create new group - var index = this.defaultIndex % Groups.DEFAULT.length; - this.defaultIndex++; - group = {}; - group.color = Groups.DEFAULT[index]; - this.groups[groupname] = group; - } - - return 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 + * @event gesture + * @param {Object} ev */ - Groups.prototype.add = function (groupname, style) { - this.groups[groupname] = style; - if (style.color) { - style.color = util.parseColor(style.color); - } - return style; + Hammer.gestures.Gesture = { + name: 'gesture', + index: 1337, + handler: function releaseGesture(ev, inst) { + inst.trigger(this.name, ev); + } }; - module.exports = Groups; - - -/***/ }, -/* 46 */ -/***/ function(module, exports, __webpack_require__) { - /** - * @class Images - * This class loads images and keeps them stored. + * @module gestures */ - function Images() { - this.images = {}; - - this.callback = undefined; - } - /** - * Set an onload callback function. This will be called each time an image - * is loaded - * @param {function} callback + * Touch stays at the same place for x time + * + * @class Hold + * @static */ - Images.prototype.setOnloadCallback = function(callback) { - this.callback = callback; - }; - /** - * - * @param {string} url Url of the image - * @return {Image} img The image object + * @event hold + * @param {Object} ev */ - Images.prototype.load = function(url) { - var img = this.images[url]; - if (img == undefined) { - // create the image - var images = this; - img = new Image(); - this.images[url] = img; - img.onload = function() { - if (images.callback) { - images.callback(this); - } - }; - img.src = url; - } - - return img; - }; - - module.exports = Images; - - -/***/ }, -/* 47 */ -/***/ function(module, exports, __webpack_require__) { - - var util = __webpack_require__(1); /** - * @class Node - * A node. A node can be connected to other nodes via one or multiple edges. - * @param {object} properties An object containing properties for the node. All - * properties are optional, except for the id. - * {number} id Id of the node. Required - * {string} label Text label for the node - * {number} x Horizontal position of the node - * {number} y Vertical position of the node - * {string} shape Node shape, available: - * "database", "circle", "ellipse", - * "box", "image", "text", "dot", - * "star", "triangle", "triangleDown", - * "square" - * {string} image An image url - * {string} title An title text, can be HTML - * {anytype} group A group name or number - * @param {Network.Images} imagelist A list with images. Only needed - * when the node has an image - * @param {Network.Groups} grouplist A list with groups. Needed for - * retrieving group properties - * @param {Object} constants An object with default values for - * example for the color - * + * @param {String} name */ - function Node(properties, imagelist, grouplist, networkConstants) { - var constants = util.selectiveBridgeObject(['nodes'],networkConstants); - this.options = constants.nodes; - - this.selected = false; - this.hover = false; - - this.edges = []; // all edges connected to this node - this.dynamicEdges = []; - this.reroutedEdges = {}; - - this.fontDrawThreshold = 3; + (function(name) { + var timer; - // set defaults for the properties - this.id = undefined; - this.x = null; - this.y = null; - this.xFixed = false; - this.yFixed = false; - this.horizontalAlignLeft = true; // these are for the navigation controls - this.verticalAlignTop = true; // these are for the navigation controls - this.baseRadiusValue = networkConstants.nodes.radius; - this.radiusFixed = false; - this.level = -1; - this.preassignedLevel = false; + function holdGesture(ev, inst) { + var options = inst.options, + current = Detection.current; + switch(ev.eventType) { + case EVENT_START: + clearTimeout(timer); - this.imagelist = imagelist; - this.grouplist = grouplist; + // set the gesture so we can check in the timeout if it still is + current.name = name; - // physics properties - this.fx = 0.0; // external force x - this.fy = 0.0; // external force y - this.vx = 0.0; // velocity x - this.vy = 0.0; // velocity y - this.damping = networkConstants.physics.damping; // written every time gravity is calculated - this.fixedData = {x:null,y:null}; + // set timer and if after the timeout it still is hold, + // we trigger the hold event + timer = setTimeout(function() { + if(current && current.name == name) { + inst.trigger(name, ev); + } + }, options.holdTimeout); + break; + case EVENT_MOVE: + if(ev.distance > options.holdThreshold) { + clearTimeout(timer); + } + break; - this.setProperties(properties, constants); + case EVENT_RELEASE: + clearTimeout(timer); + break; + } + } - // creating the variables for clustering - this.resetCluster(); - this.dynamicEdgesLength = 0; - this.clusterSession = 0; - this.clusterSizeWidthFactor = networkConstants.clustering.nodeScaling.width; - this.clusterSizeHeightFactor = networkConstants.clustering.nodeScaling.height; - this.clusterSizeRadiusFactor = networkConstants.clustering.nodeScaling.radius; - this.maxNodeSizeIncrements = networkConstants.clustering.maxNodeSizeIncrements; - this.growthIndicator = 0; + Hammer.gestures.Hold = { + name: name, + index: 10, + defaults: { + /** + * @property holdTimeout + * @type {Number} + * @default 500 + */ + holdTimeout: 500, - // 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; - } + /** + * movement allowed while holding + * @property holdThreshold + * @type {Number} + * @default 2 + */ + holdThreshold: 2 + }, + handler: holdGesture + }; + })('hold'); /** - * (re)setting the clustering variables and objects + * @module gestures */ - Node.prototype.resetCluster = function() { - // clustering variables - this.formationScale = undefined; // this is used to determine when to open the cluster - this.clusterSize = 1; // this signifies the total amount of nodes in this cluster - this.containedNodes = {}; - this.containedEdges = {}; - this.clusterSessions = []; - }; - /** - * Attach a edge to the node - * @param {Edge} edge + * when a touch is being released from the page + * + * @class Release + * @static */ - Node.prototype.attachEdge = function(edge) { - if (this.edges.indexOf(edge) == -1) { - this.edges.push(edge); - } - if (this.dynamicEdges.indexOf(edge) == -1) { - this.dynamicEdges.push(edge); - } - this.dynamicEdgesLength = this.dynamicEdges.length; - }; - /** - * Detach a edge from the node - * @param {Edge} edge + * @event release + * @param {Object} ev */ - Node.prototype.detachEdge = function(edge) { - var index = this.edges.indexOf(edge); - if (index != -1) { - this.edges.splice(index, 1); - this.dynamicEdges.splice(index, 1); - } - this.dynamicEdgesLength = this.dynamicEdges.length; + Hammer.gestures.Release = { + name: 'release', + index: Infinity, + handler: function releaseGesture(ev, inst) { + if(ev.eventType == EVENT_RELEASE) { + inst.trigger(this.name, ev); + } + } }; - /** - * Set or overwrite properties for the node - * @param {Object} properties an object with properties - * @param {Object} constants and object with default, global properties + * @module gestures */ - Node.prototype.setProperties = function(properties, constants) { - if (!properties) { - return; - } - - var fields = ['borderWidth','borderWidthSelected','shape','image','radius','fontColor', - 'fontSize','fontFace','group','mass' - ]; - util.selectiveDeepExtend(fields, this.options, properties); - - this.originalLabel = undefined; - // basic properties - if (properties.id !== undefined) {this.id = properties.id;} - if (properties.label !== undefined) {this.label = properties.label; this.originalLabel = properties.label;} - if (properties.title !== undefined) {this.title = properties.title;} - if (properties.x !== undefined) {this.x = properties.x;} - if (properties.y !== undefined) {this.y = properties.y;} - if (properties.value !== undefined) {this.value = properties.value;} - if (properties.level !== undefined) {this.level = properties.level; this.preassignedLevel = true;} + /** + * triggers swipe events when the end velocity is above the threshold + * for best usage, set `preventDefault` (on the drag gesture) to `true` + * ```` + * hammertime.on("dragleft swipeleft", function(ev) { + * console.log(ev); + * ev.gesture.preventDefault(); + * }); + * ```` + * + * @class Swipe + * @static + */ + /** + * @event swipe + * @param {Object} ev + */ + /** + * @event swipeleft + * @param {Object} ev + */ + /** + * @event swiperight + * @param {Object} ev + */ + /** + * @event swipeup + * @param {Object} ev + */ + /** + * @event swipedown + * @param {Object} ev + */ + Hammer.gestures.Swipe = { + name: 'swipe', + index: 40, + defaults: { + /** + * @property swipeMinTouches + * @type {Number} + * @default 1 + */ + swipeMinTouches: 1, - // 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;} + /** + * @property swipeMaxTouches + * @type {Number} + * @default 1 + */ + swipeMaxTouches: 1, - if (this.id === undefined) { - throw "Node must have an id"; - } + /** + * horizontal swipe velocity + * @property swipeVelocityX + * @type {Number} + * @default 0.6 + */ + swipeVelocityX: 0.6, - // copy group properties - if (typeof this.options.group === 'number' || (typeof this.options.group === 'string' && this.options.group != '')) { - var groupObj = this.grouplist.get(this.options.group); - for (var prop in groupObj) { - if (groupObj.hasOwnProperty(prop)) { - this.options[prop] = groupObj[prop]; - } - } - } + /** + * vertical swipe velocity + * @property swipeVelocityY + * @type {Number} + * @default 0.6 + */ + swipeVelocityY: 0.6 + }, + handler: function swipeGesture(ev, inst) { + if(ev.eventType == EVENT_RELEASE) { + var touches = ev.touches.length, + options = inst.options; - // individual shape properties - if (properties.radius !== undefined) {this.baseRadiusValue = this.options.radius;} - if (properties.color !== undefined) {this.options.color = util.parseColor(properties.color);} + // max touches + if(touches < options.swipeMinTouches || + touches > options.swipeMaxTouches) { + return; + } - if (this.options.image!== undefined && this.options.image!= "") { - if (this.imagelist) { - this.imageObj = this.imagelist.load(this.options.image); - } - else { - throw "No imagelist provided"; + // 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); + } + } } - } - - this.xFixed = this.xFixed || (properties.x !== undefined && !properties.allowedToMoveX); - this.yFixed = this.yFixed || (properties.y !== undefined && !properties.allowedToMoveY); - this.radiusFixed = this.radiusFixed || (properties.radius !== undefined); - - if (this.options.shape == 'image') { - this.options.radiusMin = constants.nodes.widthMin; - this.options.radiusMax = constants.nodes.widthMax; - } - - - // choose draw method depending on the shape - switch (this.options.shape) { - case 'database': this.draw = this._drawDatabase; this.resize = this._resizeDatabase; break; - case 'box': this.draw = this._drawBox; this.resize = this._resizeBox; break; - case 'circle': this.draw = this._drawCircle; this.resize = this._resizeCircle; break; - case 'ellipse': this.draw = this._drawEllipse; this.resize = this._resizeEllipse; break; - // TODO: add diamond shape - case 'image': this.draw = this._drawImage; this.resize = this._resizeImage; break; - case 'text': this.draw = this._drawText; this.resize = this._resizeText; break; - case 'dot': this.draw = this._drawDot; this.resize = this._resizeShape; break; - case 'square': this.draw = this._drawSquare; this.resize = this._resizeShape; break; - case 'triangle': this.draw = this._drawTriangle; this.resize = this._resizeShape; break; - case 'triangleDown': this.draw = this._drawTriangleDown; this.resize = this._resizeShape; break; - case 'star': this.draw = this._drawStar; this.resize = this._resizeShape; break; - default: this.draw = this._drawEllipse; this.resize = this._resizeEllipse; break; - } - // reset the size of the node, this can be changed - this._reset(); - }; - - /** - * select this node - */ - Node.prototype.select = function() { - this.selected = true; - this._reset(); }; /** - * unselect this node + * @module gestures */ - Node.prototype.unselect = function() { - this.selected = false; - this._reset(); - }; - - /** - * Reset the calculated size of the node, forces it to recalculate its size + * Single tap and a double tap on a place + * + * @class Tap + * @static */ - Node.prototype.clearSizeCache = function() { - this._reset(); - }; - /** - * Reset the calculated size of the node, forces it to recalculate its size - * @private + * @event tap + * @param {Object} ev */ - Node.prototype._reset = function() { - this.width = undefined; - this.height = undefined; - }; - /** - * get the title of this node. - * @return {string} title The title of the node, or undefined when no title - * has been set. - */ - Node.prototype.getTitle = function() { - return typeof this.title === "function" ? this.title() : this.title; - }; + * @event doubletap + * @param {Object} ev + */ /** - * 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 + * @param {String} name */ - Node.prototype.distanceToBorder = function (ctx, angle) { - var borderWidth = 1; + (function(name) { + var hasMoved = false; - if (!this.width) { - this.resize(ctx); - } + function tapGesture(ev, inst) { + var options = inst.options, + current = Detection.current, + prev = Detection.previous, + sincePrev, + didDoubleTap; - switch (this.options.shape) { - case 'circle': - case 'dot': - return this.options.radius+ borderWidth; + switch(ev.eventType) { + case EVENT_START: + hasMoved = false; + break; - 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); + case EVENT_MOVE: + hasMoved = hasMoved || (ev.distance > options.tapMaxDistance); + break; - // TODO: implement distanceToBorder for database - // TODO: implement distanceToBorder for triangle - // TODO: implement distanceToBorder for triangleDown + 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; - 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; - } + // check if double tap + if(prev && prev.name == name && + (sincePrev && sincePrev < options.doubleTapInterval) && + ev.distance < options.doubleTapDistance) { + inst.trigger('doubletap', ev); + didDoubleTap = true; + } - } - // TODO: implement calculation of distance to border for all shapes - }; + // do a single tap + if(!didDoubleTap || options.tapAlways) { + current.name = name; + inst.trigger(current.name, ev); + } + } + break; + } + } + + 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'); /** - * Set forces acting on the node - * @param {number} fx Force in horizontal direction - * @param {number} fy Force in vertical direction + * @module gestures */ - Node.prototype._setForce = function(fx, fy) { - this.fx = fx; - this.fy = fy; - }; - /** - * Add forces acting on the node - * @param {number} fx Force in horizontal direction - * @param {number} fy Force in vertical direction - * @private + * when a touch is being touched at the page + * + * @class Touch + * @static */ - Node.prototype._addForce = function(fx, fy) { - this.fx += fx; - this.fy += fy; - }; - /** - * Perform one discrete step for the node - * @param {number} interval Time interval in seconds + * @event touch + * @param {Object} ev */ - Node.prototype.discreteStep = function(interval) { - if (!this.xFixed) { - var dx = this.damping * this.vx; // damping force - var ax = (this.fx - dx) / this.options.mass; // acceleration - this.vx += ax * interval; // velocity - this.x += this.vx * interval; // position - } + Hammer.gestures.Touch = { + name: 'touch', + index: -Infinity, + defaults: { + /** + * call preventDefault at touchstart, and makes the element blocking by disabling the scrolling of the page, + * but it improves gestures like transforming and dragging. + * be careful with using this, it can be very annoying for users to be stuck on the page + * @property preventDefault + * @type {Boolean} + * @default false + */ + preventDefault: false, - if (!this.yFixed) { - var dy = this.damping * this.vy; // damping force - var ay = (this.fy - dy) / this.options.mass; // acceleration - this.vy += ay * interval; // velocity - this.y += this.vy * interval; // position - } - }; + /** + * 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(inst.options.preventDefault) { + ev.preventDefault(); + } + if(ev.eventType == EVENT_TOUCH) { + inst.trigger('touch', ev); + } + } + }; /** - * Perform one discrete step for the node - * @param {number} interval Time interval in seconds - * @param {number} maxVelocity The speed limit imposed on the velocity + * @module gestures */ - Node.prototype.discreteStepLimited = function(interval, maxVelocity) { - if (!this.xFixed) { - var dx = this.damping * this.vx; // damping force - var ax = (this.fx - dx) / this.options.mass; // acceleration - this.vx += ax * interval; // velocity - this.vx = (Math.abs(this.vx) > maxVelocity) ? ((this.vx > 0) ? maxVelocity : -maxVelocity) : this.vx; - this.x += this.vx * interval; // position - } - else { - this.fx = 0; - } - - if (!this.yFixed) { - var dy = this.damping * this.vy; // damping force - var ay = (this.fy - dy) / this.options.mass; // acceleration - this.vy += ay * interval; // velocity - this.vy = (Math.abs(this.vy) > maxVelocity) ? ((this.vy > 0) ? maxVelocity : -maxVelocity) : this.vy; - this.y += this.vy * interval; // position - } - else { - this.fy = 0; - } - }; - /** - * Check if this node has a fixed x and y position - * @return {boolean} true if fixed, false if not + * 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 */ - Node.prototype.isFixed = function() { - return (this.xFixed && this.yFixed); - }; - /** - * Check if this node is moving - * @param {number} vmin the minimum velocity considered as "moving" - * @return {boolean} true if moving, false if it has no velocity + * @event transform + * @param {Object} ev + */ + /** + * @event transformstart + * @param {Object} ev + */ + /** + * @event transformend + * @param {Object} ev */ - // TODO: replace this method with calculating the kinetic energy - Node.prototype.isMoving = function(vmin) { - return (Math.abs(this.vx) > vmin || Math.abs(this.vy) > vmin); - }; - /** - * check if this node is selecte - * @return {boolean} selected True if node is selected, else false + * @event pinchin + * @param {Object} ev */ - Node.prototype.isSelected = function() { - return this.selected; - }; - /** - * Retrieve the value of the node. Can be undefined - * @return {Number} value + * @event pinchout + * @param {Object} ev */ - Node.prototype.getValue = function() { - return this.value; - }; - /** - * Calculate the distance from the nodes location to the given location (x,y) - * @param {Number} x - * @param {Number} y - * @return {Number} value + * @event rotate + * @param {Object} ev */ - Node.prototype.getDistance = function(x, y) { - var dx = this.x - x, - dy = this.y - y; - return Math.sqrt(dx * dx + dy * dy); - }; - /** - * Adjust the value range of the node. The node will adjust it's radius - * based on its value. - * @param {Number} min - * @param {Number} max + * @param {String} name */ - Node.prototype.setValueRange = function(min, max) { - if (!this.radiusFixed && this.value !== undefined) { - if (max == min) { - this.options.radius= (this.options.radiusMin + this.options.radiusMax) / 2; - } - else { - var scale = (this.options.radiusMax - this.options.radiusMin) / (max - min); - this.options.radius= (this.value - min) * scale + this.options.radiusMin; + (function(name) { + var triggered = false; + + function transformGesture(ev, inst) { + switch(ev.eventType) { + case EVENT_START: + triggered = false; + break; + + case EVENT_MOVE: + // at least multitouch + if(ev.touches.length < 2) { + return; + } + + var scaleThreshold = Math.abs(1 - ev.scale); + var rotationThreshold = Math.abs(ev.rotation); + + // 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; + } + + // we are transforming! + Detection.current.name = name; + + // first time, trigger dragstart event + if(!triggered) { + inst.trigger(name + 'start', ev); + triggered = true; + } + + inst.trigger(name, ev); // basic transform event + + // trigger rotate event + if(rotationThreshold > inst.options.transformMinRotation) { + inst.trigger('rotate', ev); + } + + // trigger pinch event + if(scaleThreshold > inst.options.transformMinScale) { + inst.trigger('pinch', ev); + inst.trigger('pinch' + (ev.scale < 1 ? 'in' : 'out'), ev); + } + break; + + case EVENT_RELEASE: + if(triggered && ev.changedLength < 2) { + inst.trigger(name + 'end', ev); + triggered = false; + } + break; + } } - } - this.baseRadiusValue = this.options.radius; - }; - /** - * Draw this node in the given canvas - * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); - * @param {CanvasRenderingContext2D} ctx - */ - Node.prototype.draw = function(ctx) { - throw "Draw method not initialized for node"; - }; + 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, - /** - * 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"; - }; + /** + * rotation in degrees + * @property transformMinRotation + * @type {Number} + * @default 1 + */ + transformMinRotation: 1 + }, + + handler: transformGesture + }; + })('transform'); /** - * 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 + * @module hammer */ - 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 + // 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; + } - 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; + })(window); - this.growthIndicator = 0; - if (this.width > 0 && this.height > 0) { - this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; - this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; - this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeRadiusFactor; - this.growthIndicator = this.width - width; - } - } +/***/ }, +/* 49 */ +/***/ function(module, exports, __webpack_require__) { - }; + var __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(global, module) {//! moment.js + //! version : 2.7.0 + //! authors : Tim Wood, Iskren Chernev, Moment.js contributors + //! license : MIT + //! momentjs.com - Node.prototype._drawImage = function (ctx) { - this._resizeImage(ctx); + (function (undefined) { - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + /************************************ + Constants + ************************************/ - var yLabel; - if (this.imageObj.width != 0 ) { - // draw the shade - if (this.clusterSize > 1) { - var lineWidth = ((this.clusterSize > 1) ? 10 : 0.0); - lineWidth *= this.networkScaleInv; - lineWidth = Math.min(0.2 * this.width,lineWidth); + var moment, + VERSION = "2.7.0", + // the global-scope this is NOT the global object in Node.js + globalScope = typeof global !== 'undefined' ? global : this, + oldGlobalMoment, + round = Math.round, + i, - ctx.globalAlpha = 0.5; - ctx.drawImage(this.imageObj, this.left - lineWidth, this.top - lineWidth, this.width + 2*lineWidth, this.height + 2*lineWidth); - } + YEAR = 0, + MONTH = 1, + DATE = 2, + HOUR = 3, + MINUTE = 4, + SECOND = 5, + MILLISECOND = 6, - // draw the image - ctx.globalAlpha = 1.0; - ctx.drawImage(this.imageObj, this.left, this.top, this.width, this.height); - yLabel = this.y + this.height / 2; - } - else { - // image still loading... just draw the label for now - yLabel = this.y; - } + // internal storage for language config files + languages = {}, + + // moment internal properties + momentProperties = { + _isAMomentObject: null, + _i : null, + _f : null, + _l : null, + _strict : null, + _tzm : null, + _isUTC : null, + _offset : null, // optional. Combine with _isUTC + _pf : null, + _lang : null // optional + }, - this._label(ctx, this.label, this.x, yLabel, undefined, "top"); - }; + // check for nodeJS + hasModule = (typeof module !== 'undefined' && module.exports), + // ASP.NET json date format regex + aspNetJsonRegex = /^\/?Date\((\-?\d+)/i, + aspNetTimeSpanJsonRegex = /(\-)?(?:(\d*)\.)?(\d+)\:(\d+)(?:\:(\d+)\.?(\d{3})?)?/, - 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; + // 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.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeWidthFactor; - this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeHeightFactor; - this.growthIndicator = this.width - (textSize.width + 2 * margin); - // this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeRadiusFactor; + // format tokens + formattingTokens = /(\[[^\[]*\])|(\\)?(Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Q|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|mm?|ss?|S{1,4}|X|zz?|ZZ?|.)/g, + localFormattingTokens = /(\[[^\[]*\])|(\\)?(LT|LL?L?L?|l{1,4})/g, - } - }; + // parsing token regexes + parseTokenOneOrTwoDigits = /\d\d?/, // 0 - 99 + parseTokenOneToThreeDigits = /\d{1,3}/, // 0 - 999 + parseTokenOneToFourDigits = /\d{1,4}/, // 0 - 9999 + parseTokenOneToSixDigits = /[+\-]?\d{1,6}/, // -999,999 - 999,999 + parseTokenDigits = /\d+/, // nonzero number of digits + parseTokenWord = /[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i, // any word (or two) characters or numbers including two/three word month in arabic. + parseTokenTimezone = /Z|[\+\-]\d\d:?\d\d/gi, // +00:00 -00:00 +0000 -0000 or Z + parseTokenT = /T/i, // T (ISO separator) + parseTokenTimestampMs = /[\+\-]?\d+(\.\d{1,3})?/, // 123456789 123456789.123 + parseTokenOrdinal = /\d{1,2}/, - Node.prototype._drawBox = function (ctx) { - this._resizeBox(ctx); + //strict parsing regexes + parseTokenOneDigit = /\d/, // 0 - 9 + parseTokenTwoDigits = /\d\d/, // 00 - 99 + parseTokenThreeDigits = /\d{3}/, // 000 - 999 + parseTokenFourDigits = /\d{4}/, // 0000 - 9999 + parseTokenSixDigits = /[+-]?\d{6}/, // -999,999 - 999,999 + parseTokenSignedNumber = /[+-]?\d+/, // -inf - inf - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + // iso 8601 regex + // 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00) + isoRegex = /^\s*(?:[+-]\d{6}|\d{4})-(?:(\d\d-\d\d)|(W\d\d$)|(W\d\d-\d)|(\d\d\d))((T| )(\d\d(:\d\d(:\d\d(\.\d+)?)?)?)?([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/, - var clusterLineWidth = 2.5; - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + isoFormat = 'YYYY-MM-DDTHH:mm:ssZ', - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + 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}/] + ], - // draw the outer border - if (this.clusterSize > 1) { - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + // 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/] + ], - ctx.roundRect(this.left-2*ctx.lineWidth, this.top-2*ctx.lineWidth, this.width+4*ctx.lineWidth, this.height+4*ctx.lineWidth, this.options.radius); - ctx.stroke(); - } - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + // timezone chunker "+10:00" > ["10", "00"] or "-1530" > ["-15", "30"] + parseTimezoneChunker = /([\+\-]|\d\d)/gi, - ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.options.color.background; + // 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 + }, - ctx.roundRect(this.left, this.top, this.width, this.height, this.options.radius); - ctx.fill(); - ctx.stroke(); + 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' + }, - this._label(ctx, this.label, this.x, this.y); - }; + camelFunctions = { + dayofyear : 'dayOfYear', + isoweekday : 'isoWeekday', + isoweek : 'isoWeek', + weekyear : 'weekYear', + isoweekyear : 'isoWeekYear' + }, + // format function strings + formatFunctions = {}, - 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; + // default relative time thresholds + relativeTimeThresholds = { + s: 45, //seconds to minutes + m: 45, //minutes to hours + h: 22, //hours to days + dd: 25, //days to month (month == 1) + dm: 45, //days to months (months > 1) + dy: 345 //days to year + }, + + // 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.lang().monthsShort(this, format); + }, + MMMM : function (format) { + return this.lang().months(this, format); + }, + D : function () { + return this.date(); + }, + DDD : function () { + return this.dayOfYear(); + }, + d : function () { + return this.day(); + }, + dd : function (format) { + return this.lang().weekdaysMin(this, format); + }, + ddd : function (format) { + return this.lang().weekdaysShort(this, format); + }, + dddd : function (format) { + return this.lang().weekdays(this, format); + }, + w : function () { + return this.week(); + }, + W : function () { + return this.isoWeek(); + }, + YY : function () { + return leftZeroFill(this.year() % 100, 2); + }, + YYYY : function () { + return leftZeroFill(this.year(), 4); + }, + YYYYY : function () { + return leftZeroFill(this.year(), 5); + }, + YYYYYY : function () { + var y = this.year(), sign = y >= 0 ? '+' : '-'; + return sign + leftZeroFill(Math.abs(y), 6); + }, + gg : function () { + return leftZeroFill(this.weekYear() % 100, 2); + }, + gggg : function () { + return leftZeroFill(this.weekYear(), 4); + }, + ggggg : function () { + return leftZeroFill(this.weekYear(), 5); + }, + GG : function () { + return leftZeroFill(this.isoWeekYear() % 100, 2); + }, + GGGG : function () { + return leftZeroFill(this.isoWeekYear(), 4); + }, + GGGGG : function () { + return leftZeroFill(this.isoWeekYear(), 5); + }, + e : function () { + return this.weekday(); + }, + E : function () { + return this.isoWeekday(); + }, + a : function () { + return this.lang().meridiem(this.hours(), this.minutes(), true); + }, + A : function () { + return this.lang().meridiem(this.hours(), this.minutes(), false); + }, + H : function () { + return this.hours(); + }, + h : function () { + return this.hours() % 12 || 12; + }, + m : function () { + return this.minutes(); + }, + s : function () { + return this.seconds(); + }, + S : function () { + return toInt(this.milliseconds() / 100); + }, + SS : function () { + return leftZeroFill(toInt(this.milliseconds() / 10), 2); + }, + SSS : function () { + return leftZeroFill(this.milliseconds(), 3); + }, + SSSS : function () { + return leftZeroFill(this.milliseconds(), 3); + }, + Z : function () { + var a = -this.zone(), + b = "+"; + if (a < 0) { + a = -a; + b = "-"; + } + return b + leftZeroFill(toInt(a / 60), 2) + ":" + leftZeroFill(toInt(a) % 60, 2); + }, + ZZ : function () { + var a = -this.zone(), + b = "+"; + if (a < 0) { + a = -a; + b = "-"; + } + return b + leftZeroFill(toInt(a / 60), 2) + leftZeroFill(toInt(a) % 60, 2); + }, + z : function () { + return this.zoneAbbr(); + }, + zz : function () { + return this.zoneName(); + }, + X : function () { + return this.unix(); + }, + Q : function () { + return this.quarter(); + } + }, - // scaling used for clustering - this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; - this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; - this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeRadiusFactor; - this.growthIndicator = this.width - size; - } - }; + lists = ['months', 'monthsShort', 'weekdays', 'weekdaysShort', 'weekdaysMin']; - Node.prototype._drawDatabase = function (ctx) { - this._resizeDatabase(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + // 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"); + } + } - var clusterLineWidth = 2.5; - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + 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 + }; + } - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + function deprecate(msg, fn) { + var firstTime = true; + function printMsg() { + if (moment.suppressDeprecationWarnings === false && + typeof console !== 'undefined' && console.warn) { + console.warn("Deprecation warning: " + msg); + } + } + return extend(function () { + if (firstTime) { + printMsg(); + firstTime = false; + } + return fn.apply(this, arguments); + }, fn); + } - // draw the outer border - if (this.clusterSize > 1) { - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + function padToken(func, count) { + return function (a) { + return leftZeroFill(func.call(this, a), count); + }; + } + function ordinalizeToken(func, period) { + return function (a) { + return this.lang().ordinal(func.call(this, a), period); + }; + } - ctx.database(this.x - this.width/2 - 2*ctx.lineWidth, this.y - this.height*0.5 - 2*ctx.lineWidth, this.width + 4*ctx.lineWidth, this.height + 4*ctx.lineWidth); - ctx.stroke(); - } - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + 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); - ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; - ctx.database(this.x - this.width/2, this.y - this.height*0.5, this.width, this.height); - ctx.fill(); - ctx.stroke(); - this._label(ctx, this.label, this.x, this.y); - }; + /************************************ + Constructors + ************************************/ + function Language() { - Node.prototype._resizeCircle = function (ctx) { - if (!this.width) { - var margin = 5; - var textSize = this.getTextSize(ctx); - var diameter = Math.max(textSize.width, textSize.height) + 2 * margin; - this.options.radius = diameter / 2; + } - this.width = diameter; - this.height = diameter; + // Moment prototype object + function Moment(config) { + checkOverflow(config); + extend(this, config); + } - // scaling used for clustering - // this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeWidthFactor; - // this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeHeightFactor; - this.options.radius += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeRadiusFactor; - this.growthIndicator = this.options.radius- 0.5*diameter; - } - }; + // 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; - Node.prototype._drawCircle = function (ctx) { - this._resizeCircle(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + // 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; - var clusterLineWidth = 2.5; - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + this._data = {}; - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + this._bubble(); + } - // draw the outer border - if (this.clusterSize > 1) { - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + /************************************ + Helpers + ************************************/ - ctx.circle(this.x, this.y, this.options.radius+2*ctx.lineWidth); - ctx.stroke(); - } - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; - ctx.circle(this.x, this.y, this.options.radius); - ctx.fill(); - ctx.stroke(); + function extend(a, b) { + for (var i in b) { + if (b.hasOwnProperty(i)) { + a[i] = b[i]; + } + } - this._label(ctx, this.label, this.x, this.y); - }; + if (b.hasOwnProperty("toString")) { + a.toString = b.toString; + } - Node.prototype._resizeEllipse = function (ctx) { - if (!this.width) { - var textSize = this.getTextSize(ctx); + if (b.hasOwnProperty("valueOf")) { + a.valueOf = b.valueOf; + } - this.width = textSize.width * 1.5; - this.height = textSize.height * 2; - if (this.width < this.height) { - this.width = this.height; + return a; } - var defaultSize = this.width; - // scaling used for clustering - this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; - this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; - this.options.radius += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeRadiusFactor; - this.growthIndicator = this.width - defaultSize; - } - }; + function cloneMoment(m) { + var result = {}, i; + for (i in m) { + if (m.hasOwnProperty(i) && momentProperties.hasOwnProperty(i)) { + result[i] = m[i]; + } + } - Node.prototype._drawEllipse = function (ctx) { - this._resizeEllipse(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + return result; + } - var clusterLineWidth = 2.5; - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + function absRound(number) { + if (number < 0) { + return Math.ceil(number); + } else { + return Math.floor(number); + } + } - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + // 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; - // draw the outer border - if (this.clusterSize > 1) { - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + while (output.length < targetLength) { + output = '0' + output; + } + return (sign ? (forceSign ? '+' : '') : '-') + output; + } - ctx.ellipse(this.left-2*ctx.lineWidth, this.top-2*ctx.lineWidth, this.width+4*ctx.lineWidth, this.height+4*ctx.lineWidth); - ctx.stroke(); - } - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + // helper function for _.addTime and _.subtractTime + function addOrSubtractDurationFromMoment(mom, duration, isAdding, updateOffset) { + var milliseconds = duration._milliseconds, + days = duration._days, + months = duration._months; + updateOffset = updateOffset == null ? true : updateOffset; - ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; + 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); + } + } - ctx.ellipse(this.left, this.top, this.width, this.height); - ctx.fill(); - ctx.stroke(); - this._label(ctx, this.label, this.x, this.y); - }; + // check if is an array + function isArray(input) { + return Object.prototype.toString.call(input) === '[object Array]'; + } - Node.prototype._drawDot = function (ctx) { - this._drawShape(ctx, 'circle'); - }; + function isDate(input) { + return Object.prototype.toString.call(input) === '[object Date]' || + input instanceof Date; + } - Node.prototype._drawTriangle = function (ctx) { - this._drawShape(ctx, 'triangle'); - }; + // 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; + } - Node.prototype._drawTriangleDown = function (ctx) { - this._drawShape(ctx, 'triangleDown'); - }; + function normalizeUnits(units) { + if (units) { + var lowered = units.toLowerCase().replace(/(.)s$/, '$1'); + units = unitAliases[units] || camelFunctions[lowered] || lowered; + } + return units; + } - Node.prototype._drawSquare = function (ctx) { - this._drawShape(ctx, 'square'); - }; + function normalizeObjectUnits(inputObject) { + var normalizedInput = {}, + normalizedProp, + prop; - Node.prototype._drawStar = function (ctx) { - this._drawShape(ctx, 'star'); - }; + for (prop in inputObject) { + if (inputObject.hasOwnProperty(prop)) { + normalizedProp = normalizeUnits(prop); + if (normalizedProp) { + normalizedInput[normalizedProp] = inputObject[prop]; + } + } + } - 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; + return normalizedInput; + } - // scaling used for clustering - this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; - this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; - this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeRadiusFactor; - this.growthIndicator = this.width - size; - } - }; + function makeList(field) { + var count, setter; - Node.prototype._drawShape = function (ctx, shape) { - this._resizeShape(ctx); + if (field.indexOf('week') === 0) { + count = 7; + setter = 'day'; + } + else if (field.indexOf('month') === 0) { + count = 12; + setter = 'month'; + } + else { + return; + } - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + moment[field] = function (format, index) { + var i, getter, + method = moment.fn._lang[field], + results = []; - var clusterLineWidth = 2.5; - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - var radiusMultiplier = 2; + if (typeof format === 'number') { + index = format; + format = undefined; + } - // 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; - } + getter = function (i) { + var m = moment().utc().set(setter, i); + return method.call(moment.fn._lang, m, format || ''); + }; - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - // draw the outer border - if (this.clusterSize > 1) { - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + if (index != null) { + return getter(index); + } + else { + for (i = 0; i < count; i++) { + results.push(getter(i)); + } + return results; + } + }; + } - ctx[shape](this.x, this.y, this.options.radius+ radiusMultiplier * ctx.lineWidth); - ctx.stroke(); - } - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + function toInt(argumentForCoercion) { + var coercedNumber = +argumentForCoercion, + value = 0; - 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(); + if (coercedNumber !== 0 && isFinite(coercedNumber)) { + if (coercedNumber >= 0) { + value = Math.floor(coercedNumber); + } else { + value = Math.ceil(coercedNumber); + } + } - if (this.label) { - this._label(ctx, this.label, this.x, this.y + this.height / 2, undefined, 'top',true); - } - }; + return value; + } - 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; + function daysInMonth(year, month) { + return new Date(Date.UTC(year, month + 1, 0)).getUTCDate(); + } - // scaling used for clustering - this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; - this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; - this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeRadiusFactor; - this.growthIndicator = this.width - (textSize.width + 2 * margin); - } - }; + function weeksInYear(year, dow, doy) { + return weekOfYear(moment([year, 11, 31 + dow - doy]), dow, doy).week; + } - Node.prototype._drawText = function (ctx) { - this._resizeText(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + function daysInYear(year) { + return isLeapYear(year) ? 366 : 365; + } - this._label(ctx, this.label, this.x, this.y); - }; + function isLeapYear(year) { + return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0; + } + function checkOverflow(m) { + var overflow; + if (m._a && m._pf.overflow === -2) { + overflow = + m._a[MONTH] < 0 || m._a[MONTH] > 11 ? MONTH : + m._a[DATE] < 1 || m._a[DATE] > daysInMonth(m._a[YEAR], m._a[MONTH]) ? DATE : + m._a[HOUR] < 0 || m._a[HOUR] > 23 ? HOUR : + m._a[MINUTE] < 0 || m._a[MINUTE] > 59 ? MINUTE : + m._a[SECOND] < 0 || m._a[SECOND] > 59 ? SECOND : + m._a[MILLISECOND] < 0 || m._a[MILLISECOND] > 999 ? MILLISECOND : + -1; - Node.prototype._label = function (ctx, text, x, y, align, baseline, labelUnderNode) { - if (text && Number(this.options.fontSize) * this.networkScale > this.fontDrawThreshold) { - ctx.font = (this.selected ? "bold " : "") + this.options.fontSize + "px " + this.options.fontFace; - ctx.fillStyle = this.options.fontColor || "black"; - ctx.textAlign = align || "center"; - ctx.textBaseline = baseline || "middle"; + if (m._pf._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) { + overflow = DATE; + } - var lines = text.split('\n'); - var lineCount = lines.length; - var fontSize = (Number(this.options.fontSize) + 4); - var yLine = y + (1 - lineCount) / 2 * fontSize; - if (labelUnderNode == true) { - yLine = y + (1 - lineCount) / (2 * fontSize); + m._pf.overflow = overflow; + } } - for (var i = 0; i < lineCount; i++) { - ctx.fillText(lines[i], x, yLine); - yLine += fontSize; + function isValid(m) { + if (m._isValid == null) { + m._isValid = !isNaN(m._d.getTime()) && + m._pf.overflow < 0 && + !m._pf.empty && + !m._pf.invalidMonth && + !m._pf.nullInput && + !m._pf.invalidFormat && + !m._pf.userInvalidated; + + if (m._strict) { + m._isValid = m._isValid && + m._pf.charsLeftOver === 0 && + m._pf.unusedTokens.length === 0; + } + } + return m._isValid; } - } - }; + function normalizeLanguage(key) { + return key ? key.toLowerCase().replace('_', '-') : key; + } - Node.prototype.getTextSize = function(ctx) { - if (this.label !== undefined) { - ctx.font = (this.selected ? "bold " : "") + this.options.fontSize + "px " + this.options.fontFace; + // Return a moment from input, that is local/utc/zone equivalent to model. + function makeAs(input, model) { + return model._isUTC ? moment(input).zone(model._offset || 0) : + moment(input).local(); + } - var lines = this.label.split('\n'), - height = (Number(this.options.fontSize) + 4) * lines.length, - width = 0; + /************************************ + Languages + ************************************/ - for (var i = 0, iMax = lines.length; i < iMax; i++) { - width = Math.max(width, ctx.measureText(lines[i]).width); - } - return {"width": width, "height": height}; - } - else { - return {"width": 0, "height": 0}; - } - }; + extend(Language.prototype, { - /** - * 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; - } - }; + set : function (config) { + var prop, i; + for (i in config) { + prop = config[i]; + if (typeof prop === 'function') { + this[i] = prop; + } else { + this['_' + i] = prop; + } + } + }, - /** - * checks if the core of the node is in the display area, this is used for opening clusters around zoom - * @returns {boolean} - */ - Node.prototype.inView = function() { - return (this.x >= this.canvasTopLeft.x && - this.x < this.canvasBottomRight.x && - this.y >= this.canvasTopLeft.y && - this.y < this.canvasBottomRight.y); - }; + _months : "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), + months : function (m) { + return this._months[m.month()]; + }, - /** - * This allows the zoom level of the network to influence the rendering - * We store the inverted scale and the coordinates of the top left, and bottom right points of the canvas - * - * @param scale - * @param canvasTopLeft - * @param canvasBottomRight - */ - Node.prototype.setScaleAndPos = function(scale,canvasTopLeft,canvasBottomRight) { - this.networkScaleInv = 1.0/scale; - this.networkScale = scale; - this.canvasTopLeft = canvasTopLeft; - this.canvasBottomRight = canvasBottomRight; - }; + _monthsShort : "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"), + monthsShort : function (m) { + return this._monthsShort[m.month()]; + }, + monthsParse : function (monthName) { + var i, mom, regex; - /** - * This allows the zoom level of the network to influence the rendering - * - * @param scale - */ - Node.prototype.setScale = function(scale) { - this.networkScaleInv = 1.0/scale; - this.networkScale = scale; - }; + if (!this._monthsParse) { + this._monthsParse = []; + } + for (i = 0; i < 12; i++) { + // make the regex if we don't have it already + if (!this._monthsParse[i]) { + mom = moment.utc([2000, i]); + regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, ''); + this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } + // test the regex + if (this._monthsParse[i].test(monthName)) { + return i; + } + } + }, + _weekdays : "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), + weekdays : function (m) { + return this._weekdays[m.day()]; + }, - /** - * 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; - }; + _weekdaysShort : "Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"), + weekdaysShort : function (m) { + return this._weekdaysShort[m.day()]; + }, + _weekdaysMin : "Su_Mo_Tu_We_Th_Fr_Sa".split("_"), + weekdaysMin : function (m) { + return this._weekdaysMin[m.day()]; + }, - /** - * 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); - }; + weekdaysParse : function (weekdayName) { + var i, mom, regex; - module.exports = Node; + if (!this._weekdaysParse) { + this._weekdaysParse = []; + } + for (i = 0; i < 7; i++) { + // make the regex if we don't have it already + if (!this._weekdaysParse[i]) { + mom = moment([2000, 1]).day(i); + regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMin(mom, ''); + this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } + // test the regex + if (this._weekdaysParse[i].test(weekdayName)) { + return i; + } + } + }, -/***/ }, -/* 48 */ -/***/ function(module, exports, __webpack_require__) { + _longDateFormat : { + LT : "h:mm A", + L : "MM/DD/YYYY", + LL : "MMMM D YYYY", + LLL : "MMMM D YYYY LT", + LLLL : "dddd, MMMM D YYYY LT" + }, + longDateFormat : function (key) { + var output = this._longDateFormat[key]; + if (!output && this._longDateFormat[key.toUpperCase()]) { + output = this._longDateFormat[key.toUpperCase()].replace(/MMMM|MM|DD|dddd/g, function (val) { + return val.slice(1); + }); + this._longDateFormat[key] = output; + } + return output; + }, - var util = __webpack_require__(1); - var Node = __webpack_require__(47); + 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'); + }, - /** - * @class Edge - * - * A edge connects two nodes - * @param {Object} properties Object with properties. Must contain - * At least properties from and to. - * Available properties: from (number), - * to (number), label (string, color (string), - * width (number), style (string), - * length (number), title (string) - * @param {Network} network A Network object, used to find and edge to - * nodes. - * @param {Object} constants An object with default values for - * example for the color - */ - function Edge (properties, network, networkConstants) { - if (!network) { - throw "No network provided"; - } - var fields = ['edges','physics']; - var constants = util.selectiveBridgeObject(fields,networkConstants); - this.options = constants.edges; - this.physics = constants.physics; - this.options['smoothCurves'] = networkConstants['smoothCurves']; + _meridiemParse : /[ap]\.?m?\.?/i, + meridiem : function (hours, minutes, isLower) { + if (hours > 11) { + return isLower ? 'pm' : 'PM'; + } else { + return isLower ? 'am' : 'AM'; + } + }, + _calendar : { + sameDay : '[Today at] LT', + nextDay : '[Tomorrow at] LT', + nextWeek : 'dddd [at] LT', + lastDay : '[Yesterday at] LT', + lastWeek : '[Last] dddd [at] LT', + sameElse : 'L' + }, + calendar : function (key, mom) { + var output = this._calendar[key]; + return typeof output === 'function' ? output.apply(mom) : output; + }, - this.network = network; + _relativeTime : { + future : "in %s", + past : "%s ago", + s : "a few seconds", + m : "a minute", + mm : "%d minutes", + h : "an hour", + hh : "%d hours", + d : "a day", + dd : "%d days", + M : "a month", + MM : "%d months", + y : "a year", + yy : "%d years" + }, + relativeTime : function (number, withoutSuffix, string, isFuture) { + var output = this._relativeTime[string]; + return (typeof output === 'function') ? + output(number, withoutSuffix, string, isFuture) : + output.replace(/%d/i, number); + }, + pastFuture : function (diff, output) { + var format = this._relativeTime[diff > 0 ? 'future' : 'past']; + return typeof format === 'function' ? format(output) : format.replace(/%s/i, output); + }, - // 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; + ordinal : function (number) { + return this._ordinal.replace("%d", number); + }, + _ordinal : "%d", - this.from = null; // a node - this.to = null; // a node - this.via = null; // a temp node + preparse : function (string) { + return string; + }, - // we use this to be able to reconnect the edge to a cluster if its node is put into a cluster - // by storing the original information we can revert to the original connection when the cluser is opened. - this.originalFromId = []; - this.originalToId = []; + postformat : function (string) { + return string; + }, - this.connected = false; + week : function (mom) { + return weekOfYear(mom, this._week.dow, this._week.doy).week; + }, - this.widthFixed = false; - this.lengthFixed = false; + _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.setProperties(properties); + _invalidDate: 'Invalid date', + invalidDate: function () { + return this._invalidDate; + } + }); - this.controlNodesEnabled = false; - this.controlNodes = {from:null, to:null, positions:{}}; - this.connectedNode = null; - } + // Loads a language definition into the `languages` cache. The function + // takes a key and optionally values. If not in the browser and no values + // are provided, it will load the language file module. As a convenience, + // this function also returns the language values. + function loadLang(key, values) { + values.abbr = key; + if (!languages[key]) { + languages[key] = new Language(); + } + languages[key].set(values); + return languages[key]; + } - /** - * Set or overwrite properties for the edge - * @param {Object} properties an object with properties - * @param {Object} constants and object with default, global properties - */ - Edge.prototype.setProperties = function(properties) { - if (!properties) { - return; - } + // Remove a language from the `languages` cache. Mostly useful in tests. + function unloadLang(key) { + delete languages[key]; + } - var fields = ['style','fontSize','fontFace','fontColor','fontFill','width', - 'widthSelectionMultiplier','hoverWidth','arrowScaleFactor','dash' - ]; - util.selectiveDeepExtend(fields, this.options, properties); + // Determines which language definition to use and returns it. + // + // With no parameters, it will return the global language. If you + // pass in a language key, such as 'en', it will return the + // definition for 'en', so long as 'en' has already been loaded using + // moment.lang. + function getLangDefinition(key) { + var i = 0, j, lang, next, split, + get = function (k) { + if (!languages[k] && hasModule) { + try { + __webpack_require__(57)("./" + k); + } catch (e) { } + } + return languages[k]; + }; - if (properties.from !== undefined) {this.fromId = properties.from;} - if (properties.to !== undefined) {this.toId = properties.to;} + if (!key) { + return moment.fn._lang; + } - if (properties.id !== undefined) {this.id = properties.id;} - if (properties.label !== undefined) {this.label = properties.label;} + if (!isArray(key)) { + //short-circuit everything else + lang = get(key); + if (lang) { + return lang; + } + key = [key]; + } - 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;} + //pick the language from the array + //try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each + //substring from most specific to least, but move to the next array item if it's a more specific variant than the current root + while (i < key.length) { + split = normalizeLanguage(key[i]).split('-'); + j = split.length; + next = normalizeLanguage(key[i + 1]); + next = next ? next.split('-') : null; + while (j > 0) { + lang = get(split.slice(0, j).join('-')); + if (lang) { + return lang; + } + if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) { + //the next array item is better than a shallower substring of this one + break; + } + j--; + } + i++; + } + return moment.fn._lang; + } - // scale the arrow - if (properties.arrowScaleFactor !== undefined) {this.options.arrowScaleFactor = properties.arrowScaleFactor;} + /************************************ + Formatting + ************************************/ - if (properties.inheritColor !== undefined) {this.options.inheritColor = properties.inheritColor;} - if (properties.color !== undefined) { - this.options.inheritColor = false; - if (util.isString(properties.color)) { - this.options.color.color = properties.color; - this.options.color.highlight = properties.color; - } - else { - if (properties.color.color !== undefined) {this.options.color.color = properties.color.color;} - if (properties.color.highlight !== undefined) {this.options.color.highlight = properties.color.highlight;} - if (properties.color.hover !== undefined) {this.options.color.hover = properties.color.hover;} + function removeFormattingTokens(input) { + if (input.match(/\[[\s\S]/)) { + return input.replace(/^\[|\]$/g, ""); + } + return input.replace(/\\/g, ""); } - } - // A node is connected when it has a from and to node. - this.connect(); + function makeFormatFunction(format) { + var array = format.match(formattingTokens), i, length; - this.widthFixed = this.widthFixed || (properties.width !== undefined); - this.lengthFixed = this.lengthFixed || (properties.length !== undefined); + for (i = 0, length = array.length; i < length; i++) { + if (formatTokenFunctions[array[i]]) { + array[i] = formatTokenFunctions[array[i]]; + } else { + array[i] = removeFormattingTokens(array[i]); + } + } - this.widthSelected = this.options.width* this.options.widthSelectionMultiplier; + 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; + }; + } - // 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; - } - }; + // format date using native date object + function formatMoment(m, format) { - /** - * Connect an edge to its nodes - */ - Edge.prototype.connect = function () { - this.disconnect(); + if (!m.isValid()) { + return m.lang().invalidDate(); + } - this.from = this.network.nodes[this.fromId] || null; - this.to = this.network.nodes[this.toId] || null; - this.connected = (this.from && this.to); + format = expandFormat(format, m.lang()); - if (this.connected) { - this.from.attachEdge(this); - this.to.attachEdge(this); - } - else { - if (this.from) { - this.from.detachEdge(this); - } - if (this.to) { - this.to.detachEdge(this); - } - } - }; + if (!formatFunctions[format]) { + formatFunctions[format] = makeFormatFunction(format); + } - /** - * 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; - } + return formatFunctions[format](m); + } - this.connected = false; - }; + function expandFormat(format, lang) { + var i = 5; - /** - * 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; - }; + function replaceLongDateFormatTokens(input) { + return lang.longDateFormat(input) || input; + } + localFormattingTokens.lastIndex = 0; + while (i >= 0 && localFormattingTokens.test(format)) { + format = format.replace(localFormattingTokens, replaceLongDateFormatTokens); + localFormattingTokens.lastIndex = 0; + i -= 1; + } - /** - * Retrieve the value of the edge. Can be undefined - * @return {Number} value - */ - Edge.prototype.getValue = function() { - return this.value; - }; + return format; + } - /** - * Adjust the value range of the edge. The edge will adjust it's width - * based on its value. - * @param {Number} min - * @param {Number} max - */ - Edge.prototype.setValueRange = function(min, max) { - if (!this.widthFixed && this.value !== undefined) { - var scale = (this.options.widthMax - this.options.widthMin) / (max - min); - this.options.width= (this.value - min) * scale + this.options.widthMin; - this.widthSelected = this.options.width* this.options.widthSelectionMultiplier; - } - }; - /** - * 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"; - }; + /************************************ + Parsing + ************************************/ - /** - * Check if this object is overlapping with the provided object - * @param {Object} obj an object with parameters left, top - * @return {boolean} True if location is located on the edge - */ - Edge.prototype.isOverlappingWith = function(obj) { - if (this.connected) { - var distMax = 10; - var xFrom = this.from.x; - var yFrom = this.from.y; - var xTo = this.to.x; - var yTo = this.to.y; - var xObj = obj.left; - var yObj = obj.top; - var dist = this._getDistanceToEdge(xFrom, yFrom, xTo, yTo, xObj, yObj); + // get the regex to find the next token + function getParseRegexForToken(token, config) { + var a, strict = config._strict; + switch (token) { + case 'Q': + return parseTokenOneDigit; + case 'DDDD': + return parseTokenThreeDigits; + case 'YYYY': + case 'GGGG': + case 'gggg': + return strict ? parseTokenFourDigits : parseTokenOneToFourDigits; + case 'Y': + case 'G': + case 'g': + return parseTokenSignedNumber; + case 'YYYYYY': + case 'YYYYY': + case 'GGGGG': + case 'ggggg': + return strict ? parseTokenSixDigits : parseTokenOneToSixDigits; + case 'S': + if (strict) { return parseTokenOneDigit; } + /* falls through */ + case 'SS': + if (strict) { return parseTokenTwoDigits; } + /* falls through */ + case 'SSS': + if (strict) { return parseTokenThreeDigits; } + /* falls through */ + case 'DDD': + return parseTokenOneToThreeDigits; + case 'MMM': + case 'MMMM': + case 'dd': + case 'ddd': + case 'dddd': + return parseTokenWord; + case 'a': + case 'A': + return getLangDefinition(config._l)._meridiemParse; + case 'X': + return parseTokenTimestampMs; + case 'Z': + case 'ZZ': + return parseTokenTimezone; + case 'T': + return parseTokenT; + case 'SSSS': + return parseTokenDigits; + case 'MM': + case 'DD': + case 'YY': + case 'GG': + case 'gg': + case 'HH': + case 'hh': + case 'mm': + case 'ss': + case 'ww': + case 'WW': + return strict ? parseTokenTwoDigits : parseTokenOneOrTwoDigits; + case 'M': + case 'D': + case 'd': + case 'H': + case 'h': + case 'm': + case 's': + case 'w': + case 'W': + case 'e': + case 'E': + return parseTokenOneOrTwoDigits; + case 'Do': + return parseTokenOrdinal; + default : + a = new RegExp(regexpEscape(unescapeFormat(token.replace('\\', '')), "i")); + return a; + } + } - return (dist < distMax); - } - else { - return false - } - }; + function timezoneMinutesFromString(string) { + string = string || ""; + var possibleTzMatches = (string.match(parseTokenTimezone) || []), + tzChunk = possibleTzMatches[possibleTzMatches.length - 1] || [], + parts = (tzChunk + '').match(parseTimezoneChunker) || ['-', 0, 0], + minutes = +(parts[1] * 60) + toInt(parts[2]); - Edge.prototype._getColor = function() { - var colorObj = this.options.color; - if (this.options.inheritColor == "to") { - colorObj = { - highlight: this.to.options.color.highlight.border, - hover: this.to.options.color.hover.border, - color: this.to.options.color.border - }; - } - else if (this.options.inheritColor == "from" || this.options.inheritColor == true) { - colorObj = { - highlight: this.from.options.color.highlight.border, - hover: this.from.options.color.hover.border, - color: this.from.options.color.border - }; - } + return parts[0] === '+' ? -minutes : minutes; + } - if (this.selected == true) {return colorObj.highlight;} - else if (this.hover == true) {return colorObj.hover;} - else {return colorObj.color;} - } + // function to convert string input to date + function addTimeToArrayFromToken(token, input, config) { + var a, datePartArray = config._a; + switch (token) { + // QUARTER + case 'Q': + if (input != null) { + datePartArray[MONTH] = (toInt(input) - 1) * 3; + } + break; + // MONTH + case 'M' : // fall through to MM + case 'MM' : + if (input != null) { + datePartArray[MONTH] = toInt(input) - 1; + } + break; + case 'MMM' : // fall through to MMMM + case 'MMMM' : + a = getLangDefinition(config._l).monthsParse(input); + // if we didn't find a month name, mark the date as invalid. + if (a != null) { + datePartArray[MONTH] = a; + } else { + config._pf.invalidMonth = input; + } + break; + // DAY OF MONTH + case 'D' : // fall through to DD + case 'DD' : + if (input != null) { + datePartArray[DATE] = toInt(input); + } + break; + case 'Do' : + if (input != null) { + datePartArray[DATE] = toInt(parseInt(input, 10)); + } + break; + // DAY OF YEAR + case 'DDD' : // fall through to DDDD + case 'DDDD' : + if (input != null) { + config._dayOfYear = toInt(input); + } - /** - * Redraw a edge as a line - * Draw this edge in the given canvas - * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); - * @param {CanvasRenderingContext2D} ctx - * @private - */ - Edge.prototype._drawLine = function(ctx) { - // set style - ctx.strokeStyle = this._getColor(); - ctx.lineWidth = this._getLineWidth(); + break; + // YEAR + case 'YY' : + datePartArray[YEAR] = moment.parseTwoDigitYear(input); + break; + case 'YYYY' : + case 'YYYYY' : + case 'YYYYYY' : + datePartArray[YEAR] = toInt(input); + break; + // AM / PM + case 'a' : // fall through to A + case 'A' : + config._isPm = getLangDefinition(config._l).isPM(input); + break; + // 24 HOUR + case 'H' : // fall through to hh + case 'HH' : // fall through to hh + case 'h' : // fall through to hh + case 'hh' : + datePartArray[HOUR] = toInt(input); + break; + // MINUTE + case 'm' : // fall through to mm + case 'mm' : + datePartArray[MINUTE] = toInt(input); + break; + // SECOND + case 's' : // fall through to ss + case 'ss' : + datePartArray[SECOND] = toInt(input); + break; + // MILLISECOND + case 'S' : + case 'SS' : + case 'SSS' : + case 'SSSS' : + datePartArray[MILLISECOND] = toInt(('0.' + input) * 1000); + break; + // UNIX TIMESTAMP WITH MS + case 'X': + config._d = new Date(parseFloat(input) * 1000); + break; + // TIMEZONE + case 'Z' : // fall through to ZZ + case 'ZZ' : + config._useUTC = true; + config._tzm = timezoneMinutesFromString(input); + break; + // WEEKDAY - human + case 'dd': + case 'ddd': + case 'dddd': + a = getLangDefinition(config._l).weekdaysParse(input); + // if we didn't get a weekday name, mark the date as invalid + if (a != null) { + config._w = config._w || {}; + config._w['d'] = a; + } else { + config._pf.invalidWeekday = input; + } + break; + // WEEK, WEEK DAY - numeric + case 'w': + case 'ww': + case 'W': + case 'WW': + case 'd': + case 'e': + case 'E': + token = token.substr(0, 1); + /* falls through */ + case 'gggg': + case 'GGGG': + case 'GGGGG': + token = token.substr(0, 2); + if (input) { + config._w = config._w || {}; + config._w[token] = toInt(input); + } + break; + case 'gg': + case 'GG': + config._w = config._w || {}; + config._w[token] = moment.parseTwoDigitYear(input); + } + } - if (this.from != this.to) { - // draw line - var via = this._line(ctx); + function dayOfYearFromWeekInfo(config) { + var w, weekYear, week, weekday, dow, doy, temp, lang; - // 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); - } - }; + w = config._w; + if (w.GG != null || w.W != null || w.E != null) { + dow = 1; + doy = 4; - /** - * Get the line width of the edge. Depends on width and whether one of the - * connected nodes is selected. - * @return {Number} width - * @private - */ - Edge.prototype._getLineWidth = function() { - if (this.selected == true) { - return Math.min(this.widthSelected, this.options.widthMax)*this.networkScaleInv; - } - else { - if (this.hover == true) { - return Math.min(this.options.hoverWidth, this.options.widthMax)*this.networkScaleInv; - } - else { - return this.options.width*this.networkScaleInv; - } - } - }; + // TODO: We need to take the current isoWeekYear, but that depends on + // how we interpret now (local, utc, fixed offset). So create + // a now version of current config (take local/utc/offset flags, and + // create now). + weekYear = dfl(w.GG, config._a[YEAR], weekOfYear(moment(), 1, 4).year); + week = dfl(w.W, 1); + weekday = dfl(w.E, 1); + } else { + lang = getLangDefinition(config._l); + dow = lang._week.dow; + doy = lang._week.doy; - Edge.prototype._getViaCoordinates = function () { - var xVia = null; - var yVia = null; - var factor = this.options.smoothCurves.roundness; - var type = this.options.smoothCurves.type; + weekYear = dfl(w.gg, config._a[YEAR], weekOfYear(moment(), dow, doy).year); + week = dfl(w.w, 1); - 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 (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; + } } - } - 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; + temp = dayOfYearFromWeeks(weekYear, week, weekday, doy, dow); + + config._a[YEAR] = temp.year; + config._dayOfYear = temp.dayOfYear; } - } - else { // continuous - if (Math.abs(this.from.x - this.to.x) < Math.abs(this.from.y - this.to.y)) { - if (this.from.y > this.to.y) { - if (this.from.x < this.to.x) { - // console.log(1) - xVia = this.from.x + factor * dy; - yVia = this.from.y - factor * dy; - xVia = this.to.x < xVia ? this.to.x : xVia; + + // convert an array to a date. + // the array should mirror the parameters below + // note: all values past the year are optional and will default to the lowest possible value. + // [year, month, day , hour, minute, second, millisecond] + function dateFromConfig(config) { + var i, date, input = [], currentDate, yearToUse; + + if (config._d) { + return; } - else if (this.from.x > this.to.x) { - // console.log(2) - xVia = this.from.x - factor * dy; - yVia = this.from.y - factor * dy; - xVia = this.to.x > xVia ? this.to.x :xVia; + + currentDate = currentDateArray(config); + + //compute day of the year from weeks and weekdays + if (config._w && config._a[DATE] == null && config._a[MONTH] == null) { + dayOfYearFromWeekInfo(config); } - } - else if (this.from.y < this.to.y) { - if (this.from.x < this.to.x) { - // console.log(3) - xVia = this.from.x + factor * dy; - yVia = this.from.y + factor * dy; - xVia = this.to.x < xVia ? this.to.x : xVia; + + //if the day of the year is set, figure out what it is + if (config._dayOfYear) { + yearToUse = dfl(config._a[YEAR], currentDate[YEAR]); + + if (config._dayOfYear > daysInYear(yearToUse)) { + config._pf._overflowDayOfYear = true; + } + + date = makeUTCDate(yearToUse, 0, config._dayOfYear); + config._a[MONTH] = date.getUTCMonth(); + config._a[DATE] = date.getUTCDate(); } - else if (this.from.x > this.to.x) { - // console.log(4, this.from.x, this.to.x) - xVia = this.from.x - factor * dy; - yVia = this.from.y + factor * dy; - xVia = this.to.x > xVia ? this.to.x : xVia; + + // 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]; } - } - } - else if (Math.abs(this.from.x - this.to.x) > Math.abs(this.from.y - this.to.y)) { - if (this.from.y > this.to.y) { - if (this.from.x < this.to.x) { - // console.log(5) - xVia = this.from.x + factor * dx; - yVia = this.from.y - factor * dx; - yVia = this.to.y > yVia ? this.to.y : yVia; + + // 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]; } - else if (this.from.x > this.to.x) { - // console.log(6) - xVia = this.from.x - factor * dx; - yVia = this.from.y - factor * dx; - yVia = this.to.y > yVia ? this.to.y : yVia; + + config._d = (config._useUTC ? makeUTCDate : makeDate).apply(null, input); + // Apply timezone offset from input. The actual zone can be changed + // with parseZone. + if (config._tzm != null) { + config._d.setUTCMinutes(config._d.getUTCMinutes() + config._tzm); } - } - else if (this.from.y < this.to.y) { - if (this.from.x < this.to.x) { - // console.log(7) - xVia = this.from.x + factor * dx; - yVia = this.from.y + factor * dx; - yVia = this.to.y < yVia ? this.to.y : yVia; + } + + function dateFromObject(config) { + var normalizedInput; + + if (config._d) { + return; } - else if (this.from.x > this.to.x) { - // console.log(8) - xVia = this.from.x - factor * dx; - yVia = this.from.y + factor * dx; - yVia = this.to.y < yVia ? this.to.y : yVia; + + normalizedInput = normalizeObjectUnits(config._i); + config._a = [ + normalizedInput.year, + normalizedInput.month, + normalizedInput.day, + normalizedInput.hour, + normalizedInput.minute, + normalizedInput.second, + normalizedInput.millisecond + ]; + + dateFromConfig(config); + } + + 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()]; } - } } - } + // date from string and format string + function makeDateFromStringAndFormat(config) { - return {x:xVia, y:yVia}; - } + if (config._f === moment.ISO_8601) { + parseISO(config); + return; + } - /** - * Draw a line between two nodes - * @param {CanvasRenderingContext2D} ctx - * @private - */ - Edge.prototype._line = function (ctx) { - // draw a straight line - ctx.beginPath(); - ctx.moveTo(this.from.x, this.from.y); - if (this.options.smoothCurves.enabled == true) { - if (this.options.smoothCurves.dynamic == false) { - var via = this._getViaCoordinates(); - if (via.x == null) { - ctx.lineTo(this.to.x, this.to.y); - ctx.stroke(); - return null; - } - else { - // this.via.x = via.x; - // this.via.y = via.y; - ctx.quadraticCurveTo(via.x,via.y,this.to.x, this.to.y); - ctx.stroke(); - return via; - } + config._a = []; + config._pf.empty = true; + + // This array is used to make a Date, either with `new Date` or `Date.UTC` + var lang = getLangDefinition(config._l), + string = '' + config._i, + i, parsedInput, tokens, token, skipped, + stringLength = string.length, + totalParsedInputLength = 0; + + tokens = expandFormat(config._f, lang).match(formattingTokens) || []; + + for (i = 0; i < tokens.length; i++) { + token = tokens[i]; + parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0]; + if (parsedInput) { + skipped = string.substr(0, string.indexOf(parsedInput)); + if (skipped.length > 0) { + config._pf.unusedInput.push(skipped); + } + string = string.slice(string.indexOf(parsedInput) + parsedInput.length); + totalParsedInputLength += parsedInput.length; + } + // don't parse if it's not a known token + if (formatTokenFunctions[token]) { + if (parsedInput) { + config._pf.empty = false; + } + else { + config._pf.unusedTokens.push(token); + } + addTimeToArrayFromToken(token, parsedInput, config); + } + else if (config._strict && !parsedInput) { + config._pf.unusedTokens.push(token); + } + } + + // add remaining unparsed input length to the string + config._pf.charsLeftOver = stringLength - totalParsedInputLength; + if (string.length > 0) { + config._pf.unusedInput.push(string); + } + + // handle am pm + if (config._isPm && config._a[HOUR] < 12) { + config._a[HOUR] += 12; + } + // if is 12 am, change hours to 0 + if (config._isPm === false && config._a[HOUR] === 12) { + config._a[HOUR] = 0; + } + + dateFromConfig(config); + checkOverflow(config); } - else { - ctx.quadraticCurveTo(this.via.x,this.via.y,this.to.x, this.to.y); - ctx.stroke(); - return this.via; + + function unescapeFormat(s) { + return s.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) { + return p1 || p2 || p3 || p4; + }); } - } - 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(); - }; + // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript + function regexpEscape(s) { + return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); + } + + // date from string and array of format strings + function makeDateFromStringAndArray(config) { + var tempConfig, + bestMoment, + + scoreToBeat, + i, + currentScore; + + 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 = extend({}, config); + tempConfig._pf = defaultParsingFlags(); + tempConfig._f = config._f[i]; + makeDateFromStringAndFormat(tempConfig); + + if (!isValid(tempConfig)) { + continue; + } - /** - * Draw label with white background and with the middle at (x, y) - * @param {CanvasRenderingContext2D} ctx - * @param {String} text - * @param {Number} x - * @param {Number} y - * @private - */ - Edge.prototype._label = function (ctx, text, x, y) { - if (text) { - // TODO: cache the calculated size - ctx.font = ((this.from.selected || this.to.selected) ? "bold " : "") + - this.options.fontSize + "px " + this.options.fontFace; - ctx.fillStyle = this.options.fontFill; - var width = ctx.measureText(text).width; - var height = this.options.fontSize; - var left = x - width / 2; - var top = y - height / 2; + // if there is any input that was not parsed add a penalty for that format + currentScore += tempConfig._pf.charsLeftOver; - ctx.fillRect(left, top, width, height); + //or tokens + currentScore += tempConfig._pf.unusedTokens.length * 10; - // draw text - ctx.fillStyle = this.options.fontColor || "black"; - ctx.textAlign = "left"; - ctx.textBaseline = "top"; - ctx.fillText(text, left, top); - } - }; + tempConfig._pf.score = currentScore; - /** - * Redraw a edge as a dashed line - * Draw this edge in the given canvas - * @author David Jordan - * @date 2012-08-08 - * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); - * @param {CanvasRenderingContext2D} ctx - * @private - */ - Edge.prototype._drawDashLine = function(ctx) { - // set style - if (this.selected == true) {ctx.strokeStyle = this.options.color.highlight;} - else if (this.hover == true) {ctx.strokeStyle = this.options.color.hover;} - else {ctx.strokeStyle = this.options.color.color;} + if (scoreToBeat == null || currentScore < scoreToBeat) { + scoreToBeat = currentScore; + bestMoment = tempConfig; + } + } - ctx.lineWidth = this._getLineWidth(); + extend(config, bestMoment || tempConfig); + } - var via = null; - // only firefox and chrome support this method, else we use the legacy one. - if (ctx.mozDash !== undefined || ctx.setLineDash !== undefined) { - // configure the dash pattern - var pattern = [0]; - if (this.options.dash.length !== undefined && this.options.dash.gap !== undefined) { - pattern = [this.options.dash.length,this.options.dash.gap]; + // 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; + } } - else { - pattern = [5,5]; + + // date from iso format or fallback + function makeDateFromString(config) { + parseISO(config); + if (config._isValid === false) { + delete config._isValid; + moment.createFromInputFallback(config); + } } - // set dash settings for chrome or firefox - if (typeof ctx.setLineDash !== 'undefined') { //Chrome - ctx.setLineDash(pattern); - ctx.lineDashOffset = 0; + function makeDateFromInput(config) { + var input = config._i, + matched = aspNetJsonRegex.exec(input); - } else { //Firefox - ctx.mozDash = pattern; - ctx.mozDashOffset = 0; + if (input === undefined) { + config._d = new Date(); + } else if (matched) { + config._d = new Date(+matched[1]); + } else if (typeof input === 'string') { + makeDateFromString(config); + } else if (isArray(input)) { + config._a = input.slice(0); + dateFromConfig(config); + } else if (isDate(input)) { + config._d = new Date(+input); + } else if (typeof(input) === 'object') { + dateFromObject(config); + } else if (typeof(input) === 'number') { + // from milliseconds + config._d = new Date(input); + } else { + moment.createFromInputFallback(config); + } } - // draw the line - via = this._line(ctx); + 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); - // restore the dash settings. - if (typeof ctx.setLineDash !== 'undefined') { //Chrome - ctx.setLineDash([0]); - ctx.lineDashOffset = 0; + //the date constructor doesn't accept years < 1970 + if (y < 1970) { + date.setFullYear(y); + } + return date; + } - } else { //Firefox - ctx.mozDash = [0]; - ctx.mozDashOffset = 0; + function makeUTCDate(y) { + var date = new Date(Date.UTC.apply(null, arguments)); + if (y < 1970) { + date.setUTCFullYear(y); + } + return date; } - } - else { // unsupporting smooth lines - // draw dashed line - ctx.beginPath(); - ctx.lineCap = 'round'; - if (this.options.dash.altLength !== undefined) //If an alt dash value has been set add to the array this value - { - ctx.dashedLine(this.from.x,this.from.y,this.to.x,this.to.y, - [this.options.dash.length,this.options.dash.gap,this.options.dash.altLength,this.options.dash.gap]); + + function parseWeekday(input, language) { + if (typeof input === 'string') { + if (!isNaN(input)) { + input = parseInt(input, 10); + } + else { + input = language.weekdaysParse(input); + if (typeof input !== 'number') { + return null; + } + } + } + return input; } - 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]); + + /************************************ + Relative Time + ************************************/ + + + // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize + function substituteTimeAgo(string, number, withoutSuffix, isFuture, lang) { + return lang.relativeTime(number || 1, !!withoutSuffix, string, isFuture); } - else //If all else fails draw a line - { - ctx.moveTo(this.from.x, this.from.y); - ctx.lineTo(this.to.x, this.to.y); + + function relativeTime(milliseconds, withoutSuffix, lang) { + var seconds = round(Math.abs(milliseconds) / 1000), + minutes = round(seconds / 60), + hours = round(minutes / 60), + days = round(hours / 24), + years = round(days / 365), + args = seconds < relativeTimeThresholds.s && ['s', seconds] || + minutes === 1 && ['m'] || + minutes < relativeTimeThresholds.m && ['mm', minutes] || + hours === 1 && ['h'] || + hours < relativeTimeThresholds.h && ['hh', hours] || + days === 1 && ['d'] || + days <= relativeTimeThresholds.dd && ['dd', days] || + days <= relativeTimeThresholds.dm && ['M'] || + days < relativeTimeThresholds.dy && ['MM', round(days / 30)] || + years === 1 && ['y'] || ['yy', years]; + args[2] = withoutSuffix; + args[3] = milliseconds > 0; + args[4] = lang; + return substituteTimeAgo.apply({}, args); } - 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}; + + /************************************ + Week of Year + ************************************/ + + + // firstDayOfWeek 0 = sun, 6 = sat + // the day of the week that starts the week + // (usually sunday or monday) + // firstDayOfWeekOfYear 0 = sun, 6 = sat + // the first week is the week that contains the first + // of this day of the week + // (eg. ISO weeks use thursday (4)) + function weekOfYear(mom, firstDayOfWeek, firstDayOfWeekOfYear) { + var end = firstDayOfWeekOfYear - firstDayOfWeek, + daysToDayOfWeek = firstDayOfWeekOfYear - mom.day(), + adjustedMoment; + + + if (daysToDayOfWeek > end) { + daysToDayOfWeek -= 7; + } + + if (daysToDayOfWeek < end - 7) { + daysToDayOfWeek += 7; + } + + adjustedMoment = moment(mom).add('d', daysToDayOfWeek); + return { + week: Math.ceil(adjustedMoment.dayOfYear() / 7), + year: adjustedMoment.year() + }; } - else { - point = this._pointOnLine(0.5); + + //http://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday + function dayOfYearFromWeeks(year, week, weekday, firstDayOfWeekOfYear, firstDayOfWeek) { + var d = makeUTCDate(year, 0, 1).getUTCDay(), daysToAdd, dayOfYear; + + d = d === 0 ? 7 : d; + weekday = weekday != null ? weekday : firstDayOfWeek; + daysToAdd = firstDayOfWeek - d + (d > firstDayOfWeekOfYear ? 7 : 0) - (d < firstDayOfWeek ? 7 : 0); + dayOfYear = 7 * (week - 1) + (weekday - firstDayOfWeek) + daysToAdd + 1; + + return { + year: dayOfYear > 0 ? year : year - 1, + dayOfYear: dayOfYear > 0 ? dayOfYear : daysInYear(year - 1) + dayOfYear + }; } - 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 - } - }; + /************************************ + Top Level Functions + ************************************/ - /** - * 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) - } - }; + function makeMoment(config) { + var input = config._i, + format = config._f; - /** - * Redraw a edge as a line with an arrow halfway the line - * Draw this edge in the given canvas - * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); - * @param {CanvasRenderingContext2D} ctx - * @private - */ - Edge.prototype._drawArrowCenter = function(ctx) { - var point; - // set style - if (this.selected == true) {ctx.strokeStyle = this.options.color.highlight; ctx.fillStyle = this.options.color.highlight;} - else if (this.hover == true) {ctx.strokeStyle = this.options.color.hover; ctx.fillStyle = this.options.color.hover;} - else {ctx.strokeStyle = this.options.color.color; ctx.fillStyle = this.options.color.color;} - ctx.lineWidth = this._getLineWidth(); + if (input === null || (format === undefined && input === '')) { + return moment.invalid({nullInput: true}); + } - if (this.from != this.to) { - // draw line - var via = this._line(ctx); + if (typeof input === 'string') { + config._i = input = getLangDefinition().preparse(input); + } - var angle = Math.atan2((this.to.y - this.from.y), (this.to.x - this.from.x)); - var length = (10 + 5 * this.options.width) * this.options.arrowScaleFactor; - // draw an arrow halfway the line - if (this.options.smoothCurves.enabled == true && via != null) { - var midpointX = 0.5*(0.5*(this.from.x + via.x) + 0.5*(this.to.x + via.x)); - var midpointY = 0.5*(0.5*(this.from.y + via.y) + 0.5*(this.to.y + via.y)); - point = {x:midpointX, y:midpointY}; - } - else { - point = this._pointOnLine(0.5); - } + if (moment.isMoment(input)) { + config = cloneMoment(input); - ctx.arrow(point.x, point.y, angle, length); - ctx.fill(); - ctx.stroke(); + config._d = new Date(+input._d); + } else if (format) { + if (isArray(format)) { + makeDateFromStringAndArray(config); + } else { + makeDateFromStringAndFormat(config); + } + } else { + makeDateFromInput(config); + } - // 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; + return new Moment(config); } - this._circle(ctx, x, y, radius); - // draw all arrows - var angle = 0.2 * Math.PI; - var length = (10 + 5 * this.options.width) * this.options.arrowScaleFactor; - point = this._pointOnCircle(x, y, radius, 0.5); - ctx.arrow(point.x, point.y, angle, length); - ctx.fill(); - ctx.stroke(); + moment = function (input, format, lang, strict) { + var c; - // draw label - if (this.label) { - point = this._pointOnCircle(x, y, radius, 0.5); - this._label(ctx, this.label, point.x, point.y); + if (typeof(lang) === "boolean") { + strict = lang; + lang = undefined; + } + // object construction must be done this way. + // https://github.com/moment/moment/issues/1423 + c = {}; + c._isAMomentObject = true; + c._i = input; + c._f = format; + c._l = lang; + c._strict = strict; + c._isUTC = false; + c._pf = defaultParsingFlags(); + + return makeMoment(c); + }; + + moment.suppressDeprecationWarnings = false; + + moment.createFromInputFallback = deprecate( + "moment construction falls back to js Date. This is " + + "discouraged and will be removed in upcoming major " + + "release. Please refer to " + + "https://github.com/moment/moment/issues/1407 for more info.", + function (config) { + config._d = new Date(config._i); + }); + + // 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); + }; - /** - * Redraw a edge as a line with an arrow - * Draw this edge in the given canvas - * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); - * @param {CanvasRenderingContext2D} ctx - * @private - */ - Edge.prototype._drawArrow = function(ctx) { - // set style - if (this.selected == true) {ctx.strokeStyle = this.options.color.highlight; ctx.fillStyle = this.options.color.highlight;} - else if (this.hover == true) {ctx.strokeStyle = this.options.color.hover; ctx.fillStyle = this.options.color.hover;} - else {ctx.strokeStyle = this.options.color.color; ctx.fillStyle = this.options.color.color;} + moment.max = function () { + var args = [].slice.call(arguments, 0); - ctx.lineWidth = this._getLineWidth(); + return pickBy('isAfter', args); + }; - var angle, length; - //draw a line - if (this.from != this.to) { - angle = Math.atan2((this.to.y - this.from.y), (this.to.x - this.from.x)); - var dx = (this.to.x - this.from.x); - var dy = (this.to.y - this.from.y); - var edgeSegmentLength = Math.sqrt(dx * dx + dy * dy); + // creating with utc + moment.utc = function (input, format, lang, strict) { + var c; + + if (typeof(lang) === "boolean") { + strict = lang; + lang = undefined; + } + // object construction must be done this way. + // https://github.com/moment/moment/issues/1423 + c = {}; + c._isAMomentObject = true; + c._useUTC = true; + c._isUTC = true; + c._l = lang; + c._i = input; + c._f = format; + c._strict = strict; + c._pf = defaultParsingFlags(); - var fromBorderDist = this.from.distanceToBorder(ctx, angle + Math.PI); - var fromBorderPoint = (edgeSegmentLength - fromBorderDist) / edgeSegmentLength; - var xFrom = (fromBorderPoint) * this.from.x + (1 - fromBorderPoint) * this.to.x; - var yFrom = (fromBorderPoint) * this.from.y + (1 - fromBorderPoint) * this.to.y; + return makeMoment(c).utc(); + }; - var via; - if (this.options.smoothCurves.dynamic == true && this.options.smoothCurves.enabled == true ) { - via = this.via; - } - else if (this.options.smoothCurves.enabled == true) { - via = this._getViaCoordinates(); - } + // creating with unix timestamp (in seconds) + moment.unix = function (input) { + return moment(input * 1000); + }; - if (this.options.smoothCurves.enabled == true && via.x != null) { - angle = Math.atan2((this.to.y - via.y), (this.to.x - via.x)); - dx = (this.to.x - via.x); - dy = (this.to.y - via.y); - edgeSegmentLength = Math.sqrt(dx * dx + dy * dy); - } - var toBorderDist = this.to.distanceToBorder(ctx, angle); - var toBorderPoint = (edgeSegmentLength - toBorderDist) / edgeSegmentLength; + // duration + moment.duration = function (input, key) { + var duration = input, + // matching against regexp is expensive, do it on demand + match = null, + sign, + ret, + parseIso; - var xTo,yTo; - if (this.options.smoothCurves.enabled == true && via.x != null) { - xTo = (1 - toBorderPoint) * via.x + toBorderPoint * this.to.x; - yTo = (1 - toBorderPoint) * via.y + toBorderPoint * this.to.y; - } - else { - xTo = (1 - toBorderPoint) * this.from.x + toBorderPoint * this.to.x; - yTo = (1 - toBorderPoint) * this.from.y + toBorderPoint * this.to.y; - } + if (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]) + }; + } - ctx.beginPath(); - ctx.moveTo(xFrom,yFrom); - if (this.options.smoothCurves.enabled == true && via.x != null) { - ctx.quadraticCurveTo(via.x,via.y,xTo, yTo); - } - else { - ctx.lineTo(xTo, yTo); - } - ctx.stroke(); + ret = new Duration(duration); - // draw arrow at the end of the line - length = (10 + 5 * this.options.width) * this.options.arrowScaleFactor; - ctx.arrow(xTo, yTo, angle, length); - ctx.fill(); - ctx.stroke(); + if (moment.isDuration(input) && input.hasOwnProperty('_lang')) { + ret._lang = input._lang; + } - // draw label - if (this.label) { - var point; - if (this.options.smoothCurves.enabled == true && via != null) { - var midpointX = 0.5*(0.5*(this.from.x + via.x) + 0.5*(this.to.x + via.x)); - var midpointY = 0.5*(0.5*(this.from.y + via.y) + 0.5*(this.to.y + via.y)); - point = {x:midpointX, y:midpointY}; - } - else { - point = this._pointOnLine(0.5); - } - this._label(ctx, this.label, point.x, point.y); - } - } - else { - // draw circle - var node = this.from; - var x, y, arrow; - var radius = 0.25 * Math.max(100,this.physics.springLength); - if (!node.width) { - node.resize(ctx); - } - if (node.width > node.height) { - x = node.x + node.width * 0.5; - y = node.y - radius; - arrow = { - x: x, - y: node.y, - angle: 0.9 * Math.PI - }; - } - else { - x = node.x + radius; - y = node.y - node.height * 0.5; - arrow = { - x: node.x, - y: y, - angle: 0.6 * Math.PI - }; - } - ctx.beginPath(); - // TODO: similarly, for a line without arrows, draw to the border of the nodes instead of the center - ctx.arc(x, y, radius, 0, 2 * Math.PI, false); - ctx.stroke(); + return ret; + }; - // 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(); + // version number + moment.version = VERSION; - // draw label - if (this.label) { - point = this._pointOnCircle(x, y, radius, 0.5); - this._label(ctx, this.label, point.x, point.y); - } - } - }; + // default format + moment.defaultFormat = isoFormat; + // constant that refers to the ISO standard + moment.ISO_8601 = function () {}; + // Plugins that add properties should also add the key here (null value), + // so we can properly clone ourselves. + moment.momentProperties = momentProperties; - /** - * Calculate the distance between a point (x3,y3) and a line segment from - * (x1,y1) to (x2,y2). - * http://stackoverflow.com/questions/849211/shortest-distancae-between-a-point-and-a-line-segment - * @param {number} x1 - * @param {number} y1 - * @param {number} x2 - * @param {number} y2 - * @param {number} x3 - * @param {number} y3 - * @private - */ - Edge.prototype._getDistanceToEdge = function (x1,y1, x2,y2, x3,y3) { // x3,y3 is the point - if (this.from != this.to) { - if (this.options.smoothCurves.enabled == true) { - var xVia, yVia; - if (this.options.smoothCurves.enabled == true && this.options.smoothCurves.dynamic == true) { - xVia = this.via.x; - yVia = this.via.y; - } - else { - var via = this._getViaCoordinates(); - xVia = via.x; - yVia = via.y; + // This function will be called whenever a moment is mutated. + // It is intended to keep the offset in sync with the timezone. + moment.updateOffset = function () {}; + + // This function allows you to set a threshold for relative time strings + moment.relativeTimeThreshold = function(threshold, limit) { + if (relativeTimeThresholds[threshold] === undefined) { + return false; } - var minDistance = 1e9; - var distance; - var i,t,x,y, lastX, lastY; - for (i = 0; i < 10; i++) { - t = 0.1*i; - x = Math.pow(1-t,2)*x1 + (2*t*(1 - t))*xVia + Math.pow(t,2)*x2; - y = Math.pow(1-t,2)*y1 + (2*t*(1 - t))*yVia + Math.pow(t,2)*y2; - if (i > 0) { - distance = this._getDistanceToLine(lastX,lastY,x,y, x3,y3); - minDistance = distance < minDistance ? distance : minDistance; + relativeTimeThresholds[threshold] = limit; + return true; + }; + + // This function will load languages and then set the global language. If + // no arguments are passed in, it will simply return the current global + // language key. + moment.lang = function (key, values) { + var r; + if (!key) { + return moment.fn._lang._abbr; } - lastX = x; lastY = y; - } - return minDistance - } - else { - return this._getDistanceToLine(x1,y1,x2,y2,x3,y3); - } - } - else { - var x, y, dx, dy; - var radius = this.physics.springLength / 4; - var node = this.from; - if (!node.width) { - node.resize(ctx); - } - if (node.width > node.height) { - x = node.x + node.width / 2; - y = node.y - radius; - } - else { - x = node.x + radius; - y = node.y - node.height / 2; + if (values) { + loadLang(normalizeLanguage(key), values); + } else if (values === null) { + unloadLang(key); + key = 'en'; + } else if (!languages[key]) { + getLangDefinition(key); + } + r = moment.duration.fn._lang = moment.fn._lang = getLangDefinition(key); + return r._abbr; + }; + + // returns language data + moment.langData = function (key) { + if (key && key._lang && key._lang._abbr) { + key = key._lang._abbr; + } + return getLangDefinition(key); + }; + + // compare moment object + moment.isMoment = function (obj) { + return obj instanceof Moment || + (obj != null && obj.hasOwnProperty('_isAMomentObject')); + }; + + // for typechecking Duration objects + moment.isDuration = function (obj) { + return obj instanceof Duration; + }; + + for (i = lists.length - 1; i >= 0; --i) { + makeList(lists[i]); } - dx = x - x3; - dy = y - y3; - return Math.abs(Math.sqrt(dx*dx + dy*dy) - radius); - } - }; - 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; + moment.normalizeUnits = function (units) { + return normalizeUnits(units); + }; - if (u > 1) { - u = 1; - } - else if (u < 0) { - u = 0; - } + moment.invalid = function (flags) { + var m = moment.utc(NaN); + if (flags != null) { + extend(m._pf, flags); + } + else { + m._pf.userInvalidated = true; + } - var x = x1 + u * px, - y = y1 + u * py, - dx = x - x3, - dy = y - y3; + return m; + }; - //# 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 + moment.parseZone = function () { + return moment.apply(null, arguments).parseZone(); + }; - return Math.sqrt(dx*dx + dy*dy); - } + moment.parseTwoDigitYear = function (input) { + return toInt(input) + (toInt(input) > 68 ? 1900 : 2000); + }; - /** - * This allows the zoom level of the network to influence the rendering - * - * @param scale - */ - Edge.prototype.setScale = function(scale) { - this.networkScaleInv = 1.0/scale; - }; + /************************************ + Moment Prototype + ************************************/ - Edge.prototype.select = function() { - this.selected = true; - }; + extend(moment.fn = Moment.prototype, { - Edge.prototype.unselect = function() { - this.selected = false; - }; + clone : function () { + return moment(this); + }, - Edge.prototype.positionBezierNode = function() { - if (this.via !== null && this.from !== null && this.to !== null) { - this.via.x = 0.5 * (this.from.x + this.to.x); - this.via.y = 0.5 * (this.from.y + this.to.y); - } - }; + valueOf : function () { + return +this._d + ((this._offset || 0) * 60000); + }, - /** - * This function draws the control nodes for the manipulator. In order to enable this, only set the this.controlNodesEnabled to true. - * @param ctx - */ - Edge.prototype._drawControlNodes = function(ctx) { - if (this.controlNodesEnabled == true) { - if (this.controlNodes.from === null && this.controlNodes.to === null) { - var nodeIdFrom = "edgeIdFrom:".concat(this.id); - var nodeIdTo = "edgeIdTo:".concat(this.id); - var constants = { - nodes:{group:'', radius:8}, - physics:{damping:0}, - clustering: {maxNodeSizeIncrements: 0 ,nodeScaling: {width:0, height: 0, radius:0}} - }; - this.controlNodes.from = new Node( - {id:nodeIdFrom, - shape:'dot', - color:{background:'#ff4e00', border:'#3c3c3c', highlight: {background:'#07f968'}} - },{},{},constants); - this.controlNodes.to = new Node( - {id:nodeIdTo, - shape:'dot', - color:{background:'#ff4e00', border:'#3c3c3c', highlight: {background:'#07f968'}} - },{},{},constants); - } + unix : function () { + return Math.floor(+this / 1000); + }, - if (this.controlNodes.from.selected == false && this.controlNodes.to.selected == false) { - this.controlNodes.positions = this.getControlNodePositions(ctx); - this.controlNodes.from.x = this.controlNodes.positions.from.x; - this.controlNodes.from.y = this.controlNodes.positions.from.y; - this.controlNodes.to.x = this.controlNodes.positions.to.x; - this.controlNodes.to.y = this.controlNodes.positions.to.y; - } + toString : function () { + return this.clone().lang('en').format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ"); + }, - this.controlNodes.from.draw(ctx); - this.controlNodes.to.draw(ctx); - } - else { - this.controlNodes = {from:null, to:null, positions:{}}; - } - }; + toDate : function () { + return this._offset ? new Date(+this) : this._d; + }, - /** - * Enable control nodes. - * @private - */ - Edge.prototype._enableControlNodes = function() { - this.controlNodesEnabled = true; - }; + toISOString : function () { + var m = moment(this).utc(); + if (0 < m.year() && m.year() <= 9999) { + return formatMoment(m, 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]'); + } else { + return formatMoment(m, 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]'); + } + }, - /** - * disable control nodes - * @private - */ - Edge.prototype._disableControlNodes = function() { - this.controlNodesEnabled = false; - }; + toArray : function () { + var m = this; + return [ + m.year(), + m.month(), + m.date(), + m.hours(), + m.minutes(), + m.seconds(), + m.milliseconds() + ]; + }, - /** - * 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)); + isValid : function () { + return isValid(this); + }, - if (fromDistance < 15) { - this.connectedNode = this.from; - this.from = this.controlNodes.from; - return this.controlNodes.from; - } - else if (toDistance < 15) { - this.connectedNode = this.to; - this.to = this.controlNodes.to; - return this.controlNodes.to; - } - else { - return null; - } - }; + isDSTShifted : function () { + + if (this._a) { + return this.isValid() && compareArrays(this._a, (this._isUTC ? moment.utc(this._a) : moment(this._a)).toArray()) > 0; + } + + return false; + }, + + parsingFlags : function () { + return extend({}, this._pf); + }, + + invalidAt: function () { + return this._pf.overflow; + }, + + utc : function () { + return this.zone(0); + }, + + local : function () { + this.zone(0); + this._isUTC = false; + return this; + }, + + format : function (inputString) { + var output = formatMoment(this, inputString || moment.defaultFormat); + return this.lang().postformat(output); + }, + + add : function (input, val) { + var dur; + // switch args to support add('s', 1) and add(1, 's') + if (typeof input === 'string' && typeof val === 'string') { + dur = moment.duration(isNaN(+val) ? +input : +val, isNaN(+val) ? val : input); + } else if (typeof input === 'string') { + dur = moment.duration(+val, input); + } else { + dur = moment.duration(input, val); + } + addOrSubtractDurationFromMoment(this, dur, 1); + return this; + }, + + subtract : function (input, val) { + var dur; + // switch args to support subtract('s', 1) and subtract(1, 's') + if (typeof input === 'string' && typeof val === 'string') { + dur = moment.duration(isNaN(+val) ? +input : +val, isNaN(+val) ? val : input); + } else if (typeof input === 'string') { + dur = moment.duration(+val, input); + } else { + dur = moment.duration(input, val); + } + addOrSubtractDurationFromMoment(this, dur, -1); + return this; + }, + diff : function (input, units, asFloat) { + var that = makeAs(input, this), + zoneDiff = (this.zone() - that.zone()) * 6e4, + diff, output; - /** - * this resets the control nodes to their original position. - * @private - */ - Edge.prototype._restoreControlNodes = function() { - if (this.controlNodes.from.selected == true) { - this.from = this.connectedNode; - this.connectedNode = null; - this.controlNodes.from.unselect(); - } - if (this.controlNodes.to.selected == true) { - this.to = this.connectedNode; - this.connectedNode = null; - this.controlNodes.to.unselect(); - } - }; + units = normalizeUnits(units); - /** - * this calculates the position of the control nodes on the edges of the parent nodes. - * - * @param ctx - * @returns {{from: {x: number, y: number}, to: {x: *, y: *}}} - */ - Edge.prototype.getControlNodePositions = function(ctx) { - var angle = Math.atan2((this.to.y - this.from.y), (this.to.x - this.from.x)); - var dx = (this.to.x - this.from.x); - var dy = (this.to.y - this.from.y); - var edgeSegmentLength = Math.sqrt(dx * dx + dy * dy); - var fromBorderDist = this.from.distanceToBorder(ctx, angle + Math.PI); - var fromBorderPoint = (edgeSegmentLength - fromBorderDist) / edgeSegmentLength; - var xFrom = (fromBorderPoint) * this.from.x + (1 - fromBorderPoint) * this.to.x; - var yFrom = (fromBorderPoint) * this.from.y + (1 - fromBorderPoint) * this.to.y; + if (units === 'year' || units === 'month') { + // average number of days in the months in the given dates + diff = (this.daysInMonth() + that.daysInMonth()) * 432e5; // 24 * 60 * 60 * 1000 / 2 + // difference in months + output = ((this.year() - that.year()) * 12) + (this.month() - that.month()); + // adjust by taking difference in days, average number of days + // and dst in the given months. + output += ((this - moment(this).startOf('month')) - + (that - moment(that).startOf('month'))) / diff; + // same as above but with zones, to negate all dst + output -= ((this.zone() - moment(this).startOf('month').zone()) - + (that.zone() - moment(that).startOf('month').zone())) * 6e4 / diff; + if (units === 'year') { + output = output / 12; + } + } else { + diff = (this - that); + output = units === 'second' ? diff / 1e3 : // 1000 + units === 'minute' ? diff / 6e4 : // 1000 * 60 + units === 'hour' ? diff / 36e5 : // 1000 * 60 * 60 + units === 'day' ? (diff - zoneDiff) / 864e5 : // 1000 * 60 * 60 * 24, negate dst + units === 'week' ? (diff - zoneDiff) / 6048e5 : // 1000 * 60 * 60 * 24 * 7, negate dst + diff; + } + return asFloat ? output : absRound(output); + }, - var via; - if (this.options.smoothCurves.dynamic == true && this.options.smoothCurves.enabled == true) { - via = this.via; - } - else if (this.options.smoothCurves.enabled == true) { - via = this._getViaCoordinates(); - } + from : function (time, withoutSuffix) { + return moment.duration(this.diff(time)).lang(this.lang()._abbr).humanize(!withoutSuffix); + }, - if (this.options.smoothCurves.enabled == true && via.x != null) { - angle = Math.atan2((this.to.y - via.y), (this.to.x - via.x)); - dx = (this.to.x - via.x); - dy = (this.to.y - via.y); - edgeSegmentLength = Math.sqrt(dx * dx + dy * dy); - } - var toBorderDist = this.to.distanceToBorder(ctx, angle); - var toBorderPoint = (edgeSegmentLength - toBorderDist) / edgeSegmentLength; + fromNow : function (withoutSuffix) { + return this.from(moment(), withoutSuffix); + }, - var xTo,yTo; - if (this.options.smoothCurves.enabled == true && via.x != null) { - xTo = (1 - toBorderPoint) * via.x + toBorderPoint * this.to.x; - yTo = (1 - toBorderPoint) * via.y + toBorderPoint * this.to.y; - } - else { - xTo = (1 - toBorderPoint) * this.from.x + toBorderPoint * this.to.x; - yTo = (1 - toBorderPoint) * this.from.y + toBorderPoint * this.to.y; - } + calendar : function (time) { + // We want to compare the start of today, vs this. + // Getting start-of-today depends on whether we're zone'd or not. + var now = time || moment(), + sod = makeAs(now, this).startOf('day'), + diff = this.diff(sod, 'days', true), + format = diff < -6 ? 'sameElse' : + diff < -1 ? 'lastWeek' : + diff < 0 ? 'lastDay' : + diff < 1 ? 'sameDay' : + diff < 2 ? 'nextDay' : + diff < 7 ? 'nextWeek' : 'sameElse'; + return this.format(this.lang().calendar(format, this)); + }, - return {from:{x:xFrom,y:yFrom},to:{x:xTo,y:yTo}}; - }; + isLeapYear : function () { + return isLeapYear(this.year()); + }, - module.exports = Edge; + isDST : function () { + return (this.zone() < this.clone().month(0).zone() || + this.zone() < this.clone().month(5).zone()); + }, -/***/ }, -/* 49 */ -/***/ function(module, exports, __webpack_require__) { + day : function (input) { + var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay(); + if (input != null) { + input = parseWeekday(input, this.lang()); + return this.add({ d : input - day }); + } else { + return day; + } + }, - /** - * 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; - } + month : makeAccessor('Month', 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' - } - } - } - } + startOf: function (units) { + units = normalizeUnits(units); + // the following switch intentionally omits break keywords + // to utilize falling through the cases. + switch (units) { + case 'year': + this.month(0); + /* falls through */ + case 'quarter': + case 'month': + this.date(1); + /* falls through */ + case 'week': + case 'isoWeek': + case 'day': + this.hours(0); + /* falls through */ + case 'hour': + this.minutes(0); + /* falls through */ + case 'minute': + this.seconds(0); + /* falls through */ + case 'second': + this.milliseconds(0); + /* falls through */ + } - this.x = 0; - this.y = 0; - this.padding = 5; + // weeks are a special case + if (units === 'week') { + this.weekday(0); + } else if (units === 'isoWeek') { + this.isoWeekday(1); + } - if (x !== undefined && y !== undefined ) { - this.setPosition(x, y); - } - if (text !== undefined) { - this.setText(text); - } + // quarters are also special + if (units === 'quarter') { + this.month(Math.floor(this.month() / 3) * 3); + } - // create the frame - this.frame = document.createElement("div"); - var styleAttr = this.frame.style; - styleAttr.position = "absolute"; - styleAttr.visibility = "hidden"; - styleAttr.border = "1px solid " + style.color.border; - styleAttr.color = style.fontColor; - styleAttr.fontSize = style.fontSize + "px"; - styleAttr.fontFamily = style.fontFace; - styleAttr.padding = this.padding + "px"; - styleAttr.backgroundColor = style.color.background; - styleAttr.borderRadius = "3px"; - styleAttr.MozBorderRadius = "3px"; - styleAttr.WebkitBorderRadius = "3px"; - styleAttr.boxShadow = "3px 3px 10px rgba(128, 128, 128, 0.5)"; - styleAttr.whiteSpace = "nowrap"; - this.container.appendChild(this.frame); - } + return this; + }, - /** - * @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); - }; + endOf: function (units) { + units = normalizeUnits(units); + return this.startOf(units).add((units === 'isoWeek' ? 'week' : units), 1).subtract('ms', 1); + }, + + isAfter: function (input, units) { + units = typeof units !== 'undefined' ? units : 'millisecond'; + return +this.clone().startOf(units) > +moment(input).startOf(units); + }, - /** - * Set the text for the popup window. This can be HTML code - * @param {string} text - */ - Popup.prototype.setText = function(text) { - this.frame.innerHTML = text; - }; + isBefore: function (input, units) { + units = typeof units !== 'undefined' ? units : 'millisecond'; + return +this.clone().startOf(units) < +moment(input).startOf(units); + }, - /** - * Show the popup window - * @param {boolean} show Optional. Show or hide the window - */ - Popup.prototype.show = function (show) { - if (show === undefined) { - show = true; - } + isSame: function (input, units) { + units = units || 'ms'; + return +this.clone().startOf(units) === +makeAs(input, this).startOf(units); + }, - if (show) { - var height = this.frame.clientHeight; - var width = this.frame.clientWidth; - var maxHeight = this.frame.parentNode.clientHeight; - var maxWidth = this.frame.parentNode.clientWidth; + 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 top = (this.y - height); - if (top + height + this.padding > maxHeight) { - top = maxHeight - height - this.padding; - } - if (top < this.padding) { - top = this.padding; - } + 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; + } + ), - var left = this.x; - if (left + width + this.padding > maxWidth) { - left = maxWidth - width - this.padding; - } - if (left < this.padding) { - left = this.padding; - } + // keepTime = true means only change the timezone, without affecting + // the local hour. So 5:31:26 +0300 --[zone(2, true)]--> 5:31:26 +0200 + // It is possible that 5:31:26 doesn't exist int zone +0200, so we + // adjust the time as needed, to be valid. + // + // Keeping the time actually adds/subtracts (one hour) + // from the actual represented time. That is why we call updateOffset + // a second time. In case it wants us to change the offset again + // _changeInProgress == true case, then we have to adjust, because + // there is no such time in the given timezone. + zone : function (input, keepTime) { + var offset = this._offset || 0; + if (input != null) { + if (typeof input === "string") { + input = timezoneMinutesFromString(input); + } + if (Math.abs(input) < 16) { + input = input * 60; + } + this._offset = input; + this._isUTC = true; + if (offset !== input) { + if (!keepTime || this._changeInProgress) { + addOrSubtractDurationFromMoment(this, + moment.duration(offset - input, 'm'), 1, false); + } else if (!this._changeInProgress) { + this._changeInProgress = true; + moment.updateOffset(this, true); + this._changeInProgress = null; + } + } + } else { + return this._isUTC ? offset : this._d.getTimezoneOffset(); + } + return this; + }, - this.frame.style.left = left + "px"; - this.frame.style.top = top + "px"; - this.frame.style.visibility = "visible"; - } - else { - this.hide(); - } - }; + zoneAbbr : function () { + return this._isUTC ? "UTC" : ""; + }, - /** - * Hide the popup window - */ - Popup.prototype.hide = function () { - this.frame.style.visibility = "hidden"; - }; + zoneName : function () { + return this._isUTC ? "Coordinated Universal Time" : ""; + }, - module.exports = Popup; + parseZone : function () { + if (this._tzm) { + this.zone(this._tzm); + } else if (typeof this._i === 'string') { + this.zone(this._i); + } + return this; + }, + hasAlignedHourOffset : function (input) { + if (!input) { + input = 0; + } + else { + input = moment(input).zone(); + } -/***/ }, -/* 50 */ -/***/ function(module, exports, __webpack_require__) { + return (this.zone() - input) % 60 === 0; + }, - var PhysicsMixin = __webpack_require__(51); - var ClusterMixin = __webpack_require__(55); - var SectorsMixin = __webpack_require__(56); - var SelectionMixin = __webpack_require__(57); - var ManipulationMixin = __webpack_require__(58); - var NavigationMixin = __webpack_require__(59); - var HierarchicalLayoutMixin = __webpack_require__(60); + daysInMonth : function () { + return daysInMonth(this.year(), this.month()); + }, - /** - * 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]; - } - } - }; + dayOfYear : function (input) { + var dayOfYear = round((moment(this).startOf('day') - moment(this).startOf('year')) / 864e5) + 1; + return input == null ? dayOfYear : this.add("d", (input - dayOfYear)); + }, + quarter : function (input) { + return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3); + }, - /** - * 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; - } - } - }; + weekYear : function (input) { + var year = weekOfYear(this, this.lang()._week.dow, this.lang()._week.doy).year; + return input == null ? year : this.add("y", (input - year)); + }, + isoWeekYear : function (input) { + var year = weekOfYear(this, 1, 4).year; + return input == null ? year : this.add("y", (input - year)); + }, - /** - * 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(); - } - }; + week : function (input) { + var week = this.lang().week(this); + return input == null ? week : this.add("d", (input - week) * 7); + }, + isoWeek : function (input) { + var week = weekOfYear(this, 1, 4).week; + return input == null ? week : this.add("d", (input - week) * 7); + }, - /** - * Mixin the cluster system and initialize the parameters required. - * - * @private - */ - exports._loadClusterSystem = function () { - this.clusterSession = 0; - this.hubThreshold = 5; - this._loadMixin(ClusterMixin); - }; + weekday : function (input) { + var weekday = (this.day() + 7 - this.lang()._week.dow) % 7; + return input == null ? weekday : this.add("d", input - weekday); + }, + 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); + }, - /** - * Mixin the sector system and initialize the parameters required - * - * @private - */ - exports._loadSectorSystem = function () { - this.sectors = {}; - this.activeSector = ["default"]; - this.sectors["active"] = {}; - this.sectors["active"]["default"] = {"nodes": {}, - "edges": {}, - "nodeIndices": [], - "formationScale": 1.0, - "drawingNode": undefined }; - this.sectors["frozen"] = {}; - this.sectors["support"] = {"nodes": {}, - "edges": {}, - "nodeIndices": [], - "formationScale": 1.0, - "drawingNode": undefined }; + isoWeeksInYear : function () { + return weeksInYear(this.year(), 1, 4); + }, - this.nodeIndices = this.sectors["active"]["default"]["nodeIndices"]; // the node indices list is used to speed up the computation of the repulsion fields + weeksInYear : function () { + var weekInfo = this._lang._week; + return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy); + }, - this._loadMixin(SectorsMixin); - }; + get : function (units) { + units = normalizeUnits(units); + return this[units](); + }, + set : function (units, value) { + units = normalizeUnits(units); + if (typeof this[units] === 'function') { + this[units](value); + } + return this; + }, - /** - * Mixin the selection system and initialize the parameters required - * - * @private - */ - exports._loadSelectionSystem = function () { - this.selectionObj = {nodes: {}, edges: {}}; + // If passed a language key, it will set the language for this + // instance. Otherwise, it will return the language configuration + // variables for this instance. + lang : function (key) { + if (key === undefined) { + return this._lang; + } else { + this._lang = getLangDefinition(key); + return this; + } + } + }); - this._loadMixin(SelectionMixin); - }; + function rawMonthSetter(mom, value) { + var dayOfMonth; + // TODO: Move this out of here! + if (typeof value === 'string') { + value = mom.lang().monthsParse(value); + // TODO: Another silent failure? + if (typeof value !== 'number') { + return mom; + } + } - /** - * 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; + dayOfMonth = Math.min(mom.date(), + daysInMonth(mom.year(), value)); + mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth); + return mom; + } - if (this.constants.dataManipulation.enabled == true) { - // load the manipulator HTML elements. All styling done in css. - if (this.manipulationDiv === undefined) { - this.manipulationDiv = document.createElement('div'); - this.manipulationDiv.className = 'network-manipulationDiv'; - this.manipulationDiv.id = 'network-manipulationDiv'; - if (this.editMode == true) { - this.manipulationDiv.style.display = "block"; - } - else { - this.manipulationDiv.style.display = "none"; - } - this.containerElement.insertBefore(this.manipulationDiv, this.frame); + function rawGetter(mom, unit) { + return mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit](); } - if (this.editModeDiv === undefined) { - this.editModeDiv = document.createElement('div'); - this.editModeDiv.className = 'network-manipulation-editMode'; - this.editModeDiv.id = 'network-manipulation-editMode'; - if (this.editMode == true) { - this.editModeDiv.style.display = "none"; - } - else { - this.editModeDiv.style.display = "block"; - } - this.containerElement.insertBefore(this.editModeDiv, this.frame); + function rawSetter(mom, unit, value) { + if (unit === 'Month') { + return rawMonthSetter(mom, value); + } else { + return mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value); + } } - if (this.closeDiv === undefined) { - this.closeDiv = document.createElement('div'); - this.closeDiv.className = 'network-manipulation-closeDiv'; - this.closeDiv.id = 'network-manipulation-closeDiv'; - this.closeDiv.style.display = this.manipulationDiv.style.display; - this.containerElement.insertBefore(this.closeDiv, this.frame); + 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); + } + }; } - // load the manipulation functions - this._loadMixin(ManipulationMixin); + 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)); - // create the manipulator toolbar - this._createManipulatorBar(); - } - else { - if (this.manipulationDiv !== undefined) { - // removes all the bindings and overloads - this._createManipulatorBar(); - // remove the manipulation divs - this.containerElement.removeChild(this.manipulationDiv); - this.containerElement.removeChild(this.editModeDiv); - this.containerElement.removeChild(this.closeDiv); + // 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; - this.manipulationDiv = undefined; - this.editModeDiv = undefined; - this.closeDiv = undefined; - // remove the mixin functions - this._clearMixin(ManipulationMixin); - } - } - }; + // add aliased format methods + moment.fn.toJSON = moment.fn.toISOString; + /************************************ + Duration Prototype + ************************************/ - /** - * 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(); - } - }; + extend(moment.duration.fn = Duration.prototype, { + _bubble : function () { + var milliseconds = this._milliseconds, + days = this._days, + months = this._months, + data = this._data, + seconds, minutes, hours, years; - /** - * Mixin the hierarchical layout system. - * - * @private - */ - exports._loadHierarchySystem = function () { - this._loadMixin(HierarchicalLayoutMixin); - }; + // The following code bubbles up values, see the tests for + // examples of what that means. + data.milliseconds = milliseconds % 1000; + seconds = absRound(milliseconds / 1000); + data.seconds = seconds % 60; -/***/ }, -/* 51 */ -/***/ function(module, exports, __webpack_require__) { + minutes = absRound(seconds / 60); + data.minutes = minutes % 60; - var util = __webpack_require__(1); - var RepulsionMixin = __webpack_require__(52); - var HierarchialRepulsionMixin = __webpack_require__(53); - var BarnesHutMixin = __webpack_require__(54); + hours = absRound(minutes / 60); + data.hours = hours % 24; - /** - * Toggling barnes Hut calculation on and off. - * - * @private - */ - exports._toggleBarnesHut = function () { - this.constants.physics.barnesHut.enabled = !this.constants.physics.barnesHut.enabled; - this._loadSelectedForceSolver(); - this.moving = true; - this.start(); - }; + days += absRound(hours / 24); + data.days = days % 30; + months += absRound(days / 30); + data.months = months % 12; - /** - * This loads the node force solver based on the barnes hut or repulsion algorithm - * - * @private - */ - exports._loadSelectedForceSolver = function () { - // this overloads the this._calculateNodeForces - if (this.constants.physics.barnesHut.enabled == true) { - this._clearMixin(RepulsionMixin); - this._clearMixin(HierarchialRepulsionMixin); + years = absRound(months / 12); + data.years = years; + }, - this.constants.physics.centralGravity = this.constants.physics.barnesHut.centralGravity; - this.constants.physics.springLength = this.constants.physics.barnesHut.springLength; - this.constants.physics.springConstant = this.constants.physics.barnesHut.springConstant; - this.constants.physics.damping = this.constants.physics.barnesHut.damping; + weeks : function () { + return absRound(this.days() / 7); + }, - this._loadMixin(BarnesHutMixin); - } - else if (this.constants.physics.hierarchicalRepulsion.enabled == true) { - this._clearMixin(BarnesHutMixin); - this._clearMixin(RepulsionMixin); + valueOf : function () { + return this._milliseconds + + this._days * 864e5 + + (this._months % 12) * 2592e6 + + toInt(this._months / 12) * 31536e6; + }, - this.constants.physics.centralGravity = this.constants.physics.hierarchicalRepulsion.centralGravity; - this.constants.physics.springLength = this.constants.physics.hierarchicalRepulsion.springLength; - this.constants.physics.springConstant = this.constants.physics.hierarchicalRepulsion.springConstant; - this.constants.physics.damping = this.constants.physics.hierarchicalRepulsion.damping; + humanize : function (withSuffix) { + var difference = +this, + output = relativeTime(difference, !withSuffix, this.lang()); - this._loadMixin(HierarchialRepulsionMixin); - } - else { - this._clearMixin(BarnesHutMixin); - this._clearMixin(HierarchialRepulsionMixin); - this.barnesHutTree = undefined; + if (withSuffix) { + output = this.lang().pastFuture(difference, output); + } - this.constants.physics.centralGravity = this.constants.physics.repulsion.centralGravity; - this.constants.physics.springLength = this.constants.physics.repulsion.springLength; - this.constants.physics.springConstant = this.constants.physics.repulsion.springConstant; - this.constants.physics.damping = this.constants.physics.repulsion.damping; + return this.lang().postformat(output); + }, - this._loadMixin(RepulsionMixin); - } - }; + add : function (input, val) { + // supports only 2.0-style add(1, 's') or add(moment) + var dur = moment.duration(input, val); - /** - * Before calculating the forces, we check if we need to cluster to keep up performance and we check - * if there is more than one node. If it is just one node, we dont calculate anything. - * - * @private - */ - exports._initializeForceCalculation = function () { - // stop calculation if there is only one node - if (this.nodeIndices.length == 1) { - this.nodes[this.nodeIndices[0]]._setForce(0, 0); - } - else { - // if there are too many nodes on screen, we cluster without repositioning - if (this.nodeIndices.length > this.constants.clustering.clusterThreshold && this.constants.clustering.enabled == true) { - this.clusterToFit(this.constants.clustering.reduceToNodes, false); - } + this._milliseconds += dur._milliseconds; + this._days += dur._days; + this._months += dur._months; - // we now start the force calculation - this._calculateForces(); - } - }; + this._bubble(); + return this; + }, - /** - * Calculate the external forces acting on the nodes - * Forces are caused by: edges, repulsing forces between nodes, gravity - * @private - */ - exports._calculateForces = function () { - // Gravity is required to keep separated groups from floating off - // the forces are reset to zero in this loop by using _setForce instead - // of _addForce + subtract : function (input, val) { + var dur = moment.duration(input, val); - this._calculateGravitationalForces(); - this._calculateNodeForces(); + this._milliseconds -= dur._milliseconds; + this._days -= dur._days; + this._months -= dur._months; - if (this.constants.physics.springConstant > 0) { - if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { - this._calculateSpringForcesWithSupport(); - } - else { - if (this.constants.physics.hierarchicalRepulsion.enabled == true) { - this._calculateHierarchicalSpringForces(); - } - else { - this._calculateSpringForces(); - } - } - } - }; + this._bubble(); + return this; + }, - /** - * Smooth curves are created by adding invisible nodes in the center of the edges. These nodes are also - * handled in the calculateForces function. We then use a quadratic curve with the center node as control. - * This function joins the datanodes and invisible (called support) nodes into one object. - * We do this so we do not contaminate this.nodes with the support nodes. - * - * @private - */ - exports._updateCalculationNodes = function () { - if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { - this.calculationNodes = {}; - this.calculationNodeIndices = []; + get : function (units) { + units = normalizeUnits(units); + return this[units.toLowerCase() + 's'](); + }, - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - this.calculationNodes[nodeId] = this.nodes[nodeId]; - } - } - var supportNodes = this.sectors['support']['nodes']; - for (var supportNodeId in supportNodes) { - if (supportNodes.hasOwnProperty(supportNodeId)) { - if (this.edges.hasOwnProperty(supportNodes[supportNodeId].parentEdgeId)) { - this.calculationNodes[supportNodeId] = supportNodes[supportNodeId]; - } - else { - supportNodes[supportNodeId]._setForce(0, 0); - } - } - } + as : function (units) { + units = normalizeUnits(units); + return this['as' + units.charAt(0).toUpperCase() + units.slice(1) + 's'](); + }, - for (var idx in this.calculationNodes) { - if (this.calculationNodes.hasOwnProperty(idx)) { - this.calculationNodeIndices.push(idx); - } - } - } - else { - this.calculationNodes = this.nodes; - this.calculationNodeIndices = this.nodeIndices; - } - }; + lang : moment.fn.lang, + toIsoString : function () { + // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js + var years = Math.abs(this.years()), + months = Math.abs(this.months()), + days = Math.abs(this.days()), + hours = Math.abs(this.hours()), + minutes = Math.abs(this.minutes()), + seconds = Math.abs(this.seconds() + this.milliseconds() / 1000); - /** - * this function applies the central gravity effect to keep groups from floating off - * - * @private - */ - exports._calculateGravitationalForces = function () { - var dx, dy, distance, node, i; - var nodes = this.calculationNodes; - var gravity = this.constants.physics.centralGravity; - var gravityForce = 0; + if (!this.asSeconds()) { + // this is the same as C#'s (Noda) and python (isodate)... + // but not other JS (goog.date) + return 'P0D'; + } - for (i = 0; i < this.calculationNodeIndices.length; i++) { - node = nodes[this.calculationNodeIndices[i]]; - node.damping = this.constants.physics.damping; // possibly add function to alter damping properties of clusters. - // gravity does not apply when we are in a pocket sector - if (this._sector() == "default" && gravity != 0) { - dx = -node.x; - dy = -node.y; - distance = Math.sqrt(dx * dx + dy * dy); + 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' : ''); + } + }); - gravityForce = (distance == 0) ? 0 : (gravity / distance); - node.fx = dx * gravityForce; - node.fy = dy * gravityForce; - } - else { - node.fx = 0; - node.fy = 0; + function makeDurationGetter(name) { + moment.duration.fn[name] = function () { + return this._data[name]; + }; } - } - }; + function makeDurationAsGetter(name, factor) { + moment.duration.fn['as' + name] = function () { + return +this / factor; + }; + } + for (i in unitMillisecondFactors) { + if (unitMillisecondFactors.hasOwnProperty(i)) { + makeDurationAsGetter(i, unitMillisecondFactors[i]); + makeDurationGetter(i.toLowerCase()); + } + } + makeDurationAsGetter('Weeks', 6048e5); + moment.duration.fn.asMonths = function () { + return (+this - this.years() * 31536e6) / 2592e6 + this.years() * 12; + }; - /** - * this function calculates the effects of the springs in the case of unsmooth curves. - * - * @private - */ - exports._calculateSpringForces = function () { - var edgeLength, edge, edgeId; - var dx, dy, fx, fy, springForce, distance; - var edges = this.edges; - // forces caused by the edges, modelled as springs - for (edgeId in edges) { - if (edges.hasOwnProperty(edgeId)) { - edge = edges[edgeId]; - if (edge.connected) { - // only calculate forces if nodes are in the same sector - if (this.nodes.hasOwnProperty(edge.toId) && this.nodes.hasOwnProperty(edge.fromId)) { - edgeLength = edge.physics.springLength; - // this implies that the edges between big clusters are longer - edgeLength += (edge.to.clusterSize + edge.from.clusterSize - 2) * this.constants.clustering.edgeGrowth; + /************************************ + Default Lang + ************************************/ - dx = (edge.from.x - edge.to.x); - dy = (edge.from.y - edge.to.y); - distance = Math.sqrt(dx * dx + dy * dy); - if (distance == 0) { - distance = 0.01; - } + // Set default language, other languages will inherit from English. + moment.lang('en', { + ordinal : function (number) { + var b = number % 10, + output = (toInt(number % 100 / 10) === 1) ? 'th' : + (b === 1) ? 'st' : + (b === 2) ? 'nd' : + (b === 3) ? 'rd' : 'th'; + return number + output; + } + }); - // the 1/distance is so the fx and fy can be calculated without sine or cosine. - springForce = this.constants.physics.springConstant * (edgeLength - distance) / distance; + /* EMBED_LANGUAGES */ - fx = dx * springForce; - fy = dy * springForce; + /************************************ + Exposing Moment + ************************************/ - edge.from.fx += fx; - edge.from.fy += fy; - edge.to.fx -= fx; - edge.to.fy -= fy; + function makeGlobal(shouldDeprecate) { + /*global ender:false */ + if (typeof ender !== 'undefined') { + return; + } + oldGlobalMoment = globalScope.moment; + if (shouldDeprecate) { + globalScope.moment = deprecate( + "Accessing Moment through the global scope is " + + "deprecated, and will be removed in an upcoming " + + "release.", + moment); + } else { + globalScope.moment = moment; } - } } - } - }; + // CommonJS module is defined + if (hasModule) { + module.exports = moment; + } else if (true) { + !(__WEBPACK_AMD_DEFINE_RESULT__ = (function (require, exports, module) { + if (module.config && module.config() && module.config().noGlobal === true) { + // release the global variable + globalScope.moment = oldGlobalMoment; + } + return moment; + }.call(exports, __webpack_require__, exports, module)), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); + makeGlobal(true); + } else { + makeGlobal(); + } + }).call(this); + + /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }()), __webpack_require__(61)(module))) +/***/ }, +/* 50 */ +/***/ function(module, exports, __webpack_require__) { /** - * This function calculates the springforces on the nodes, accounting for the support nodes. + * Creation of the ClusterMixin var. * - * @private + * This contains all the functions the Network object can use to employ clustering */ - exports._calculateSpringForcesWithSupport = function () { - var edgeLength, edge, edgeId, combinedClusterSize; - var edges = this.edges; - - // forces caused by the edges, modelled as springs - for (edgeId in edges) { - if (edges.hasOwnProperty(edgeId)) { - edge = edges[edgeId]; - if (edge.connected) { - // only calculate forces if nodes are in the same sector - if (this.nodes.hasOwnProperty(edge.toId) && this.nodes.hasOwnProperty(edge.fromId)) { - if (edge.via != null) { - var node1 = edge.to; - var node2 = edge.via; - var node3 = edge.from; - edgeLength = edge.physics.springLength; + /** + * This is only called in the constructor of the network object + * + */ + exports.startWithClustering = function() { + // cluster if the data set is big + this.clusterToFit(this.constants.clustering.initialMaxNodes, true); - combinedClusterSize = node1.clusterSize + node3.clusterSize - 2; + // updates the lables after clustering + this.updateLabels(); - // this implies that the edges between big clusters are longer - edgeLength += combinedClusterSize * this.constants.clustering.edgeGrowth; - this._calculateSpringForce(node1, node2, 0.5 * edgeLength); - this._calculateSpringForce(node2, node3, 0.5 * edgeLength); - } - } - } - } - } + // this is called here because if clusterin is disabled, the start and stabilize are called in + // the setData function. + if (this.stabilize) { + this._stabilize(); + } + this.start(); }; - /** - * This is the code actually performing the calculation for the function above. It is split out to avoid repetition. + * This function clusters until the initialMaxNodes has been reached * - * @param node1 - * @param node2 - * @param edgeLength - * @private + * @param {Number} maxNumberOfNodes + * @param {Boolean} reposition */ - exports._calculateSpringForce = function (node1, node2, edgeLength) { - var dx, dy, fx, fy, springForce, distance; - - dx = (node1.x - node2.x); - dy = (node1.y - node2.y); - distance = Math.sqrt(dx * dx + dy * dy); + exports.clusterToFit = function(maxNumberOfNodes, reposition) { + var numberOfNodes = this.nodeIndices.length; - if (distance == 0) { - distance = 0.01; - } + var maxLevels = 50; + var level = 0; - // the 1/distance is so the fx and fy can be calculated without sine or cosine. - springForce = this.constants.physics.springConstant * (edgeLength - distance) / distance; + // we first cluster the hubs, then we pull in the outliers, repeat + while (numberOfNodes > maxNumberOfNodes && level < maxLevels) { + if (level % 3 == 0) { + this.forceAggregateHubs(true); + this.normalizeClusterLevels(); + } + else { + this.increaseClusterLevel(); // this also includes a cluster normalization + } - fx = dx * springForce; - fy = dy * springForce; + numberOfNodes = this.nodeIndices.length; + level += 1; + } - node1.fx += fx; - node1.fy += fy; - node2.fx -= fx; - node2.fy -= fy; + // after the clustering we reposition the nodes to reduce the initial chaos + if (level > 0 && reposition == true) { + this.repositionNodes(); + } + this._updateCalculationNodes(); }; - /** - * Load the HTML for the physics config and bind it - * @private + * This function can be called to open up a specific cluster. It is only called by + * It will unpack the cluster back one level. + * + * @param node | Node object: cluster to open. */ - exports._loadPhysicsConfiguration = function () { - if (this.physicsConfiguration === undefined) { - this.backupConstants = {}; - util.deepExtend(this.backupConstants,this.constants); - - var hierarchicalLayoutDirections = ["LR", "RL", "UD", "DU"]; - this.physicsConfiguration = document.createElement('div'); - this.physicsConfiguration.className = "PhysicsConfiguration"; - this.physicsConfiguration.innerHTML = '' + - '' + - '' + - '' + - '' + - '' + - '' + - '
Simulation Mode:
Barnes HutRepulsionHierarchical
' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '
Options:
' - this.containerElement.parentElement.insertBefore(this.physicsConfiguration, this.containerElement); - this.optionsDiv = document.createElement("div"); - this.optionsDiv.style.fontSize = "14px"; - this.optionsDiv.style.fontFamily = "verdana"; - this.containerElement.parentElement.insertBefore(this.optionsDiv, this.containerElement); - - var rangeElement; - rangeElement = document.getElementById('graph_BH_gc'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_BH_gc', -1, "physics_barnesHut_gravitationalConstant"); - rangeElement = document.getElementById('graph_BH_cg'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_BH_cg', 1, "physics_centralGravity"); - rangeElement = document.getElementById('graph_BH_sc'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_BH_sc', 1, "physics_springConstant"); - rangeElement = document.getElementById('graph_BH_sl'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_BH_sl', 1, "physics_springLength"); - rangeElement = document.getElementById('graph_BH_damp'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_BH_damp', 1, "physics_damping"); - - rangeElement = document.getElementById('graph_R_nd'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_R_nd', 1, "physics_repulsion_nodeDistance"); - rangeElement = document.getElementById('graph_R_cg'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_R_cg', 1, "physics_centralGravity"); - rangeElement = document.getElementById('graph_R_sc'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_R_sc', 1, "physics_springConstant"); - rangeElement = document.getElementById('graph_R_sl'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_R_sl', 1, "physics_springLength"); - rangeElement = document.getElementById('graph_R_damp'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_R_damp', 1, "physics_damping"); - - rangeElement = document.getElementById('graph_H_nd'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_nd', 1, "physics_hierarchicalRepulsion_nodeDistance"); - rangeElement = document.getElementById('graph_H_cg'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_cg', 1, "physics_centralGravity"); - rangeElement = document.getElementById('graph_H_sc'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_sc', 1, "physics_springConstant"); - rangeElement = document.getElementById('graph_H_sl'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_sl', 1, "physics_springLength"); - rangeElement = document.getElementById('graph_H_damp'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_damp', 1, "physics_damping"); - rangeElement = document.getElementById('graph_H_direction'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_direction', hierarchicalLayoutDirections, "hierarchicalLayout_direction"); - rangeElement = document.getElementById('graph_H_levsep'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_levsep', 1, "hierarchicalLayout_levelSeparation"); - rangeElement = document.getElementById('graph_H_nspac'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_nspac', 1, "hierarchicalLayout_nodeSpacing"); - - var radioButton1 = document.getElementById("graph_physicsMethod1"); - var radioButton2 = document.getElementById("graph_physicsMethod2"); - var radioButton3 = document.getElementById("graph_physicsMethod3"); - radioButton2.checked = true; - if (this.constants.physics.barnesHut.enabled) { - radioButton1.checked = true; - } - if (this.constants.hierarchicalLayout.enabled) { - radioButton3.checked = true; - } - - var graph_toggleSmooth = document.getElementById("graph_toggleSmooth"); - var graph_repositionNodes = document.getElementById("graph_repositionNodes"); - var graph_generateOptions = document.getElementById("graph_generateOptions"); + exports.openCluster = function(node) { + var isMovingBeforeClustering = this.moving; + if (node.clusterSize > this.constants.clustering.sectorThreshold && this._nodeInActiveArea(node) && + !(this._sector() == "default" && this.nodeIndices.length == 1)) { + // this loads a new sector, loads the nodes and edges and nodeIndices of it. + this._addSector(node); + var level = 0; - graph_toggleSmooth.onclick = graphToggleSmoothCurves.bind(this); - graph_repositionNodes.onclick = graphRepositionNodes.bind(this); - graph_generateOptions.onclick = graphGenerateOptions.bind(this); - if (this.constants.smoothCurves == true && this.constants.dynamicSmoothCurves == false) { - graph_toggleSmooth.style.background = "#A4FF56"; - } - else { - graph_toggleSmooth.style.background = "#FF8532"; + // we decluster until we reach a decent number of nodes + while ((this.nodeIndices.length < this.constants.clustering.initialMaxNodes) && (level < 10)) { + this.decreaseClusterLevel(); + level += 1; } + } + else { + this._expandClusterNode(node,false,true); - switchConfigurations.apply(this); + // update the index list, dynamic edges and labels + this._updateNodeIndexList(); + this._updateDynamicEdges(); + this._updateCalculationNodes(); + this.updateLabels(); + } - radioButton1.onchange = switchConfigurations.bind(this); - radioButton2.onchange = switchConfigurations.bind(this); - radioButton3.onchange = switchConfigurations.bind(this); + // if the simulation was settled, we restart the simulation if a cluster has been formed or expanded + if (this.moving != isMovingBeforeClustering) { + this.start(); } }; + /** - * This overwrites the this.constants. - * - * @param constantsVariableName - * @param value - * @private + * This calls the updateClustes with default arguments */ - exports._overWriteGraphConstants = function (constantsVariableName, value) { - var nameArray = constantsVariableName.split("_"); - if (nameArray.length == 1) { - this.constants[nameArray[0]] = value; - } - else if (nameArray.length == 2) { - this.constants[nameArray[0]][nameArray[1]] = value; - } - else if (nameArray.length == 3) { - this.constants[nameArray[0]][nameArray[1]][nameArray[2]] = value; + exports.updateClustersDefault = function() { + if (this.constants.clustering.enabled == true) { + this.updateClusters(0,false,false); } }; /** - * this function is bound to the toggle smooth curves button. That is also why it is not in the prototype. + * This function can be called to increase the cluster level. This means that the nodes with only one edge connection will + * be clustered with their connected node. This can be repeated as many times as needed. + * This can be called externally (by a keybind for instance) to reduce the complexity of big datasets. */ - function graphToggleSmoothCurves () { - this.constants.smoothCurves.enabled = !this.constants.smoothCurves.enabled; - var graph_toggleSmooth = document.getElementById("graph_toggleSmooth"); - if (this.constants.smoothCurves.enabled == true) {graph_toggleSmooth.style.background = "#A4FF56";} - else {graph_toggleSmooth.style.background = "#FF8532";} + exports.increaseClusterLevel = function() { + this.updateClusters(-1,false,true); + }; - this._configureSmoothCurves(false); - } /** - * this function is used to scramble the nodes + * This function can be called to decrease the cluster level. This means that the nodes with only one edge connection will + * be unpacked if they are a cluster. This can be repeated as many times as needed. + * This can be called externally (by a key-bind for instance) to look into clusters without zooming. + */ + exports.decreaseClusterLevel = function() { + this.updateClusters(1,false,true); + }; + + + /** + * This is the main clustering function. It clusters and declusters on zoom or forced + * This function clusters on zoom, it can be called with a predefined zoom direction + * If out, check if we can form clusters, if in, check if we can open clusters. + * This function is only called from _zoom() + * + * @param {Number} zoomDirection | -1 / 0 / +1 for zoomOut / determineByZoom / zoomIn + * @param {Boolean} recursive | enabled or disable recursive calling of the opening of clusters + * @param {Boolean} force | enabled or disable forcing + * @param {Boolean} doNotStart | if true do not call start * */ - function graphRepositionNodes () { - for (var nodeId in this.calculationNodes) { - if (this.calculationNodes.hasOwnProperty(nodeId)) { - this.calculationNodes[nodeId].vx = 0; this.calculationNodes[nodeId].vy = 0; - this.calculationNodes[nodeId].fx = 0; this.calculationNodes[nodeId].fy = 0; + exports.updateClusters = function(zoomDirection,recursive,force,doNotStart) { + var isMovingBeforeClustering = this.moving; + var amountOfNodes = this.nodeIndices.length; + + // on zoom out collapse the sector if the scale is at the level the sector was made + if (this.previousScale > this.scale && zoomDirection == 0) { + this._collapseSector(); + } + + // check if we zoom in or out + if (this.previousScale > this.scale || zoomDirection == -1) { // zoom out + // forming clusters when forced pulls outliers in. When not forced, the edge length of the + // outer nodes determines if it is being clustered + this._formClusters(force); + } + else if (this.previousScale < this.scale || zoomDirection == 1) { // zoom in + if (force == true) { + // _openClusters checks for each node if the formationScale of the cluster is smaller than + // the current scale and if so, declusters. When forced, all clusters are reduced by one step + this._openClusters(recursive,force); + } + else { + // if a cluster takes up a set percentage of the active window + this._openClustersBySize(); } } - if (this.constants.hierarchicalLayout.enabled == true) { - this._setupHierarchicalLayout(); - showValueOfRange.call(this, 'graph_H_nd', 1, "physics_hierarchicalRepulsion_nodeDistance"); - showValueOfRange.call(this, 'graph_H_cg', 1, "physics_centralGravity"); - showValueOfRange.call(this, 'graph_H_sc', 1, "physics_springConstant"); - showValueOfRange.call(this, 'graph_H_sl', 1, "physics_springLength"); - showValueOfRange.call(this, 'graph_H_damp', 1, "physics_damping"); + this._updateNodeIndexList(); + + // if a cluster was NOT formed and the user zoomed out, we try clustering by hubs + if (this.nodeIndices.length == amountOfNodes && (this.previousScale > this.scale || zoomDirection == -1)) { + this._aggregateHubs(force); + this._updateNodeIndexList(); } - else { - this.repositionNodes(); + + // we now reduce chains. + if (this.previousScale > this.scale || zoomDirection == -1) { // zoom out + this.handleChains(); + this._updateNodeIndexList(); } - this.moving = true; - this.start(); - } - /** - * this is used to generate an options file from the playing with physics system. - */ - function graphGenerateOptions () { - var options = "No options are required, default values used."; - var optionsSpecific = []; - var radioButton1 = document.getElementById("graph_physicsMethod1"); - var radioButton2 = document.getElementById("graph_physicsMethod2"); - if (radioButton1.checked == true) { - if (this.constants.physics.barnesHut.gravitationalConstant != this.backupConstants.physics.barnesHut.gravitationalConstant) {optionsSpecific.push("gravitationalConstant: " + this.constants.physics.barnesHut.gravitationalConstant);} - if (this.constants.physics.centralGravity != this.backupConstants.physics.barnesHut.centralGravity) {optionsSpecific.push("centralGravity: " + this.constants.physics.centralGravity);} - if (this.constants.physics.springLength != this.backupConstants.physics.barnesHut.springLength) {optionsSpecific.push("springLength: " + this.constants.physics.springLength);} - if (this.constants.physics.springConstant != this.backupConstants.physics.barnesHut.springConstant) {optionsSpecific.push("springConstant: " + this.constants.physics.springConstant);} - if (this.constants.physics.damping != this.backupConstants.physics.barnesHut.damping) {optionsSpecific.push("damping: " + this.constants.physics.damping);} - if (optionsSpecific.length != 0) { - options = "var options = {"; - options += "physics: {barnesHut: {"; - for (var i = 0; i < optionsSpecific.length; i++) { - options += optionsSpecific[i]; - if (i < optionsSpecific.length - 1) { - options += ", " - } - } - options += '}}' - } - if (this.constants.smoothCurves.enabled != this.backupConstants.smoothCurves.enabled) { - if (optionsSpecific.length == 0) {options = "var options = {";} - else {options += ", "} - options += "smoothCurves: " + this.constants.smoothCurves.enabled; - } - if (options != "No options are required, default values used.") { - options += '};' - } + this.previousScale = this.scale; + + // rest of the update the index list, dynamic edges and labels + this._updateDynamicEdges(); + this.updateLabels(); + + // if a cluster was formed, we increase the clusterSession + if (this.nodeIndices.length < amountOfNodes) { // this means a clustering operation has taken place + this.clusterSession += 1; + // if clusters have been made, we normalize the cluster level + this.normalizeClusterLevels(); } - else if (radioButton2.checked == true) { - options = "var options = {"; - options += "physics: {barnesHut: {enabled: false}"; - if (this.constants.physics.repulsion.nodeDistance != this.backupConstants.physics.repulsion.nodeDistance) {optionsSpecific.push("nodeDistance: " + this.constants.physics.repulsion.nodeDistance);} - if (this.constants.physics.centralGravity != this.backupConstants.physics.repulsion.centralGravity) {optionsSpecific.push("centralGravity: " + this.constants.physics.centralGravity);} - if (this.constants.physics.springLength != this.backupConstants.physics.repulsion.springLength) {optionsSpecific.push("springLength: " + this.constants.physics.springLength);} - if (this.constants.physics.springConstant != this.backupConstants.physics.repulsion.springConstant) {optionsSpecific.push("springConstant: " + this.constants.physics.springConstant);} - if (this.constants.physics.damping != this.backupConstants.physics.repulsion.damping) {optionsSpecific.push("damping: " + this.constants.physics.damping);} - if (optionsSpecific.length != 0) { - options += ", repulsion: {"; - for (var i = 0; i < optionsSpecific.length; i++) { - options += optionsSpecific[i]; - if (i < optionsSpecific.length - 1) { - options += ", " - } - } - options += '}}' - } - if (optionsSpecific.length == 0) {options += "}"} - if (this.constants.smoothCurves != this.backupConstants.smoothCurves) { - options += ", smoothCurves: " + this.constants.smoothCurves; + + if (doNotStart == false || doNotStart === undefined) { + // if the simulation was settled, we restart the simulation if a cluster has been formed or expanded + if (this.moving != isMovingBeforeClustering) { + this.start(); } - options += '};' } - else { - options = "var options = {"; - if (this.constants.physics.hierarchicalRepulsion.nodeDistance != this.backupConstants.physics.hierarchicalRepulsion.nodeDistance) {optionsSpecific.push("nodeDistance: " + this.constants.physics.hierarchicalRepulsion.nodeDistance);} - if (this.constants.physics.centralGravity != this.backupConstants.physics.hierarchicalRepulsion.centralGravity) {optionsSpecific.push("centralGravity: " + this.constants.physics.centralGravity);} - if (this.constants.physics.springLength != this.backupConstants.physics.hierarchicalRepulsion.springLength) {optionsSpecific.push("springLength: " + this.constants.physics.springLength);} - if (this.constants.physics.springConstant != this.backupConstants.physics.hierarchicalRepulsion.springConstant) {optionsSpecific.push("springConstant: " + this.constants.physics.springConstant);} - if (this.constants.physics.damping != this.backupConstants.physics.hierarchicalRepulsion.damping) {optionsSpecific.push("damping: " + this.constants.physics.damping);} - if (optionsSpecific.length != 0) { - options += "physics: {hierarchicalRepulsion: {"; - for (var i = 0; i < optionsSpecific.length; i++) { - options += optionsSpecific[i]; - if (i < optionsSpecific.length - 1) { - options += ", "; - } - } - options += '}},'; - } - options += 'hierarchicalLayout: {'; - optionsSpecific = []; - if (this.constants.hierarchicalLayout.direction != this.backupConstants.hierarchicalLayout.direction) {optionsSpecific.push("direction: " + this.constants.hierarchicalLayout.direction);} - if (Math.abs(this.constants.hierarchicalLayout.levelSeparation) != this.backupConstants.hierarchicalLayout.levelSeparation) {optionsSpecific.push("levelSeparation: " + this.constants.hierarchicalLayout.levelSeparation);} - if (this.constants.hierarchicalLayout.nodeSpacing != this.backupConstants.hierarchicalLayout.nodeSpacing) {optionsSpecific.push("nodeSpacing: " + this.constants.hierarchicalLayout.nodeSpacing);} - if (optionsSpecific.length != 0) { - for (var i = 0; i < optionsSpecific.length; i++) { - options += optionsSpecific[i]; - if (i < optionsSpecific.length - 1) { - options += ", " - } - } - options += '}' - } - else { - options += "enabled:true}"; - } - options += '};' + + this._updateCalculationNodes(); + }; + + /** + * This function handles the chains. It is called on every updateClusters(). + */ + exports.handleChains = function() { + // after clustering we check how many chains there are + var chainPercentage = this._getChainFraction(); + if (chainPercentage > this.constants.clustering.chainThreshold) { + this._reduceAmountOfChains(1 - this.constants.clustering.chainThreshold / chainPercentage) + } + }; + /** + * this functions starts clustering by hubs + * The minimum hub threshold is set globally + * + * @private + */ + exports._aggregateHubs = function(force) { + this._getHubSize(); + this._formClustersByHub(force,false); + }; - this.optionsDiv.innerHTML = options; - } /** - * this is used to switch between barnesHut, repulsion and hierarchical. + * This function is fired by keypress. It forces hubs to form. * */ - function switchConfigurations () { - var ids = ["graph_BH_table", "graph_R_table", "graph_H_table"]; - var radioButton = document.querySelector('input[name="graph_physicsMethod"]:checked').value; - var tableId = "graph_" + radioButton + "_table"; - var table = document.getElementById(tableId); - table.style.display = "block"; - for (var i = 0; i < ids.length; i++) { - if (ids[i] != tableId) { - table = document.getElementById(ids[i]); - table.style.display = "none"; - } - } - this._restoreNodes(); - if (radioButton == "R") { - this.constants.hierarchicalLayout.enabled = false; - this.constants.physics.hierarchicalRepulsion.enabled = false; - this.constants.physics.barnesHut.enabled = false; + exports.forceAggregateHubs = function(doNotStart) { + var isMovingBeforeClustering = this.moving; + var amountOfNodes = this.nodeIndices.length; + + this._aggregateHubs(true); + + // update the index list, dynamic edges and labels + this._updateNodeIndexList(); + this._updateDynamicEdges(); + this.updateLabels(); + + // if a cluster was formed, we increase the clusterSession + if (this.nodeIndices.length != amountOfNodes) { + this.clusterSession += 1; } - else if (radioButton == "H") { - if (this.constants.hierarchicalLayout.enabled == false) { - this.constants.hierarchicalLayout.enabled = true; - this.constants.physics.hierarchicalRepulsion.enabled = true; - this.constants.physics.barnesHut.enabled = false; - this.constants.smoothCurves.enabled = false; - this._setupHierarchicalLayout(); + + if (doNotStart == false || doNotStart === undefined) { + // if the simulation was settled, we restart the simulation if a cluster has been formed or expanded + if (this.moving != isMovingBeforeClustering) { + this.start(); } } - else { - this.constants.hierarchicalLayout.enabled = false; - this.constants.physics.hierarchicalRepulsion.enabled = false; - this.constants.physics.barnesHut.enabled = true; + }; + + /** + * If a cluster takes up more than a set percentage of the screen, open the cluster + * + * @private + */ + exports._openClustersBySize = function() { + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + var node = this.nodes[nodeId]; + if (node.inView() == true) { + if ((node.width*this.scale > this.constants.clustering.screenSizeThreshold * this.frame.canvas.clientWidth) || + (node.height*this.scale > this.constants.clustering.screenSizeThreshold * this.frame.canvas.clientHeight)) { + this.openCluster(node); + } + } + } } - this._loadSelectedForceSolver(); - var graph_toggleSmooth = document.getElementById("graph_toggleSmooth"); - if (this.constants.smoothCurves.enabled == true) {graph_toggleSmooth.style.background = "#A4FF56";} - else {graph_toggleSmooth.style.background = "#FF8532";} - this.moving = true; - this.start(); - } + }; /** - * this generates the ranges depending on the iniital values. + * This function loops over all nodes in the nodeIndices list. For each node it checks if it is a cluster and if it + * has to be opened based on the current zoom level. * - * @param id - * @param map - * @param constantsVariableName + * @private */ - function showValueOfRange (id,map,constantsVariableName) { - var valueId = id + "_value"; - var rangeValue = document.getElementById(id).value; - - if (map instanceof Array) { - document.getElementById(valueId).value = map[parseInt(rangeValue)]; - this._overWriteGraphConstants(constantsVariableName,map[parseInt(rangeValue)]); - } - else { - document.getElementById(valueId).value = parseInt(map) * parseFloat(rangeValue); - this._overWriteGraphConstants(constantsVariableName, parseInt(map) * parseFloat(rangeValue)); + exports._openClusters = function(recursive,force) { + for (var i = 0; i < this.nodeIndices.length; i++) { + var node = this.nodes[this.nodeIndices[i]]; + this._expandClusterNode(node,recursive,force); + this._updateCalculationNodes(); } + }; - if (constantsVariableName == "hierarchicalLayout_direction" || - constantsVariableName == "hierarchicalLayout_levelSeparation" || - constantsVariableName == "hierarchicalLayout_nodeSpacing") { - this._setupHierarchicalLayout(); - } - this.moving = true; - this.start(); - } + /** + * This function checks if a node has to be opened. This is done by checking the zoom level. + * If the node contains child nodes, this function is recursively called on the child nodes as well. + * This recursive behaviour is optional and can be set by the recursive argument. + * + * @param {Node} parentNode | to check for cluster and expand + * @param {Boolean} recursive | enabled or disable recursive calling + * @param {Boolean} force | enabled or disable forcing + * @param {Boolean} [openAll] | This will recursively force all nodes in the parent to be released + * @private + */ + exports._expandClusterNode = function(parentNode, recursive, force, openAll) { + // first check if node is a cluster + if (parentNode.clusterSize > 1) { + // this means that on a double tap event or a zoom event, the cluster fully unpacks if it is smaller than 20 + if (parentNode.clusterSize < this.constants.clustering.sectorThreshold) { + openAll = true; + } + recursive = openAll ? true : recursive; + // if the last child has been added on a smaller scale than current scale decluster + if (parentNode.formationScale < this.scale || force == true) { + // we will check if any of the contained child nodes should be removed from the cluster + for (var containedNodeId in parentNode.containedNodes) { + if (parentNode.containedNodes.hasOwnProperty(containedNodeId)) { + var childNode = parentNode.containedNodes[containedNodeId]; -/***/ }, -/* 52 */ -/***/ function(module, exports, __webpack_require__) { + // force expand will expand the largest cluster size clusters. Since we cluster from outside in, we assume that + // the largest cluster is the one that comes from outside + if (force == true) { + if (childNode.clusterSession == parentNode.clusterSessions[parentNode.clusterSessions.length-1] + || openAll) { + this._expelChildFromParent(parentNode,containedNodeId,recursive,force,openAll); + } + } + else { + if (this._nodeInActiveArea(parentNode)) { + this._expelChildFromParent(parentNode,containedNodeId,recursive,force,openAll); + } + } + } + } + } + } + }; /** - * Calculate the forces the nodes apply on each other based on a repulsion field. - * This field is linearly approximated. + * ONLY CALLED FROM _expandClusterNode + * + * This function will expel a child_node from a parent_node. This is to de-cluster the node. This function will remove + * the child node from the parent contained_node object and put it back into the global nodes object. + * The same holds for the edge that was connected to the child node. It is moved back into the global edges object. * + * @param {Node} parentNode | the parent node + * @param {String} containedNodeId | child_node id as it is contained in the containedNodes object of the parent node + * @param {Boolean} recursive | This will also check if the child needs to be expanded. + * With force and recursive both true, the entire cluster is unpacked + * @param {Boolean} force | This will disregard the zoom level and will expel this child from the parent + * @param {Boolean} openAll | This will recursively force all nodes in the parent to be released * @private */ - exports._calculateNodeForces = function () { - var dx, dy, angle, distance, fx, fy, combinedClusterSize, - repulsingForce, node1, node2, i, j; + exports._expelChildFromParent = function(parentNode, containedNodeId, recursive, force, openAll) { + var childNode = parentNode.containedNodes[containedNodeId]; - var nodes = this.calculationNodes; - var nodeIndices = this.calculationNodeIndices; + // if child node has been added on smaller scale than current, kick out + if (childNode.formationScale < this.scale || force == true) { + // unselect all selected items + this._unselectAll(); - // approximation constants - var a_base = -2 / 3; - var b = 4 / 3; + // put the child node back in the global nodes object + this.nodes[containedNodeId] = childNode; - // repulsing forces between nodes - var nodeDistance = this.constants.physics.repulsion.nodeDistance; - var minimumDistance = nodeDistance; + // release the contained edges from this childNode back into the global edges + this._releaseContainedEdges(parentNode,childNode); - // we loop from i over all but the last entree in the array - // j loops from i+1 to the last. This way we do not double count any of the indices, nor i == j - for (i = 0; i < nodeIndices.length - 1; i++) { - node1 = nodes[nodeIndices[i]]; - for (j = i + 1; j < nodeIndices.length; j++) { - node2 = nodes[nodeIndices[j]]; - combinedClusterSize = node1.clusterSize + node2.clusterSize - 2; + // reconnect rerouted edges to the childNode + this._connectEdgeBackToChild(parentNode,childNode); - dx = node2.x - node1.x; - dy = node2.y - node1.y; - distance = Math.sqrt(dx * dx + dy * dy); + // validate all edges in dynamicEdges + this._validateEdges(parentNode); - minimumDistance = (combinedClusterSize == 0) ? nodeDistance : (nodeDistance * (1 + combinedClusterSize * this.constants.clustering.distanceAmplification)); - var a = a_base / minimumDistance; - if (distance < 2 * minimumDistance) { - if (distance < 0.5 * minimumDistance) { - repulsingForce = 1.0; - } - else { - repulsingForce = a * distance + b; // linear approx of 1 / (1 + Math.exp((distance / minimumDistance - 1) * steepness)) + // undo the changes from the clustering operation on the parent node + parentNode.options.mass -= childNode.options.mass; + parentNode.clusterSize -= childNode.clusterSize; + parentNode.options.fontSize = Math.min(this.constants.clustering.maxFontSize, this.constants.nodes.fontSize + this.constants.clustering.fontSizeMultiplier*parentNode.clusterSize); + parentNode.dynamicEdgesLength = parentNode.dynamicEdges.length; + + // place the child node near the parent, not at the exact same location to avoid chaos in the system + childNode.x = parentNode.x + parentNode.growthIndicator * (0.5 - Math.random()); + childNode.y = parentNode.y + parentNode.growthIndicator * (0.5 - Math.random()); + + // remove node from the list + delete parentNode.containedNodes[containedNodeId]; + + // check if there are other childs with this clusterSession in the parent. + var othersPresent = false; + for (var childNodeId in parentNode.containedNodes) { + if (parentNode.containedNodes.hasOwnProperty(childNodeId)) { + if (parentNode.containedNodes[childNodeId].clusterSession == childNode.clusterSession) { + othersPresent = true; + break; } + } + } + // if there are no others, remove the cluster session from the list + if (othersPresent == false) { + parentNode.clusterSessions.pop(); + } + + this._repositionBezierNodes(childNode); + // this._repositionBezierNodes(parentNode); + + // remove the clusterSession from the child node + childNode.clusterSession = 0; - // amplify the repulsion for clusters. - repulsingForce *= (combinedClusterSize == 0) ? 1 : 1 + combinedClusterSize * this.constants.clustering.forceAmplification; - repulsingForce = repulsingForce / distance; + // recalculate the size of the node on the next time the node is rendered + parentNode.clearSizeCache(); - fx = dx * repulsingForce; - fy = dy * repulsingForce; + // restart the simulation to reorganise all nodes + this.moving = true; + } - node1.fx -= fx; - node1.fy -= fy; - node2.fx += fx; - node2.fy += fy; - } - } + // check if a further expansion step is possible if recursivity is enabled + if (recursive == true) { + this._expandClusterNode(childNode,recursive,force,openAll); } }; -/***/ }, -/* 53 */ -/***/ function(module, exports, __webpack_require__) { - /** - * Calculate the forces the nodes apply on eachother based on a repulsion field. - * This field is linearly approximated. + * position the bezier nodes at the center of the edges * + * @param node * @private */ - exports._calculateNodeForces = function () { - var dx, dy, distance, fx, fy, - repulsingForce, node1, node2, i, j; + exports._repositionBezierNodes = function(node) { + for (var i = 0; i < node.dynamicEdges.length; i++) { + node.dynamicEdges[i].positionBezierNode(); + } + }; - var nodes = this.calculationNodes; - var nodeIndices = this.calculationNodeIndices; - // repulsing forces between nodes - var nodeDistance = this.constants.physics.hierarchicalRepulsion.nodeDistance; + /** + * This function checks if any nodes at the end of their trees have edges below a threshold length + * This function is called only from updateClusters() + * forceLevelCollapse ignores the length of the edge and collapses one level + * This means that a node with only one edge will be clustered with its connected node + * + * @private + * @param {Boolean} force + */ + exports._formClusters = function(force) { + if (force == false) { + this._formClustersByZoom(); + } + else { + this._forceClustersByZoom(); + } + }; - // we loop from i over all but the last entree in the array - // j loops from i+1 to the last. This way we do not double count any of the indices, nor i == j - for (i = 0; i < nodeIndices.length - 1; i++) { - node1 = nodes[nodeIndices[i]]; - for (j = i + 1; j < nodeIndices.length; j++) { - node2 = nodes[nodeIndices[j]]; - // nodes only affect nodes on their level - if (node1.level == node2.level) { + /** + * This function handles the clustering by zooming out, this is based on a minimum edge distance + * + * @private + */ + exports._formClustersByZoom = function() { + var dx,dy,length, + minLength = this.constants.clustering.clusterEdgeThreshold/this.scale; - dx = node2.x - node1.x; - dy = node2.y - node1.y; - distance = Math.sqrt(dx * dx + dy * dy); + // check if any edges are shorter than minLength and start the clustering + // the clustering favours the node with the larger mass + for (var edgeId in this.edges) { + if (this.edges.hasOwnProperty(edgeId)) { + var edge = this.edges[edgeId]; + if (edge.connected) { + if (edge.toId != edge.fromId) { + dx = (edge.to.x - edge.from.x); + dy = (edge.to.y - edge.from.y); + length = Math.sqrt(dx * dx + dy * dy); - var 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; + if (length < minLength) { + // first check which node is larger + var parentNode = edge.from; + var childNode = edge.to; + if (edge.to.options.mass > edge.from.options.mass) { + parentNode = edge.to; + childNode = edge.from; + } - node1.fx -= fx; - node1.fy -= fy; - node2.fx += fx; - node2.fy += fy; + if (childNode.dynamicEdgesLength == 1) { + this._addToCluster(parentNode,childNode,false); + } + else if (parentNode.dynamicEdgesLength == 1) { + this._addToCluster(childNode,parentNode,false); + } + } + } } } } }; - /** - * this function calculates the effects of the springs in the case of unsmooth curves. + * This function forces the network to cluster all nodes with only one connecting edge to their + * connected node. * * @private */ - exports._calculateHierarchicalSpringForces = function () { - var edgeLength, edge, edgeId; - var dx, dy, fx, fy, springForce, distance; - var edges = this.edges; - - var nodes = this.calculationNodes; - var nodeIndices = this.calculationNodeIndices; - - - for (var i = 0; i < nodeIndices.length; i++) { - var node1 = nodes[nodeIndices[i]]; - node1.springFx = 0; - node1.springFy = 0; - } - - - // forces caused by the edges, modelled as springs - for (edgeId in edges) { - if (edges.hasOwnProperty(edgeId)) { - edge = edges[edgeId]; - if (edge.connected) { - // only calculate forces if nodes are in the same sector - if (this.nodes.hasOwnProperty(edge.toId) && this.nodes.hasOwnProperty(edge.fromId)) { - edgeLength = edge.physics.springLength; - // this implies that the edges between big clusters are longer - edgeLength += (edge.to.clusterSize + edge.from.clusterSize - 2) * this.constants.clustering.edgeGrowth; - - dx = (edge.from.x - edge.to.x); - dy = (edge.from.y - edge.to.y); - distance = Math.sqrt(dx * dx + dy * dy); - - if (distance == 0) { - distance = 0.01; - } - - // the 1/distance is so the fx and fy can be calculated without sine or cosine. - springForce = this.constants.physics.springConstant * (edgeLength - distance) / distance; - - fx = dx * springForce; - fy = dy * springForce; - + exports._forceClustersByZoom = function() { + for (var nodeId in this.nodes) { + // another node could have absorbed this child. + if (this.nodes.hasOwnProperty(nodeId)) { + var childNode = this.nodes[nodeId]; + // the edges can be swallowed by another decrease + if (childNode.dynamicEdgesLength == 1 && childNode.dynamicEdges.length != 0) { + var edge = childNode.dynamicEdges[0]; + var parentNode = (edge.toId == childNode.id) ? this.nodes[edge.fromId] : this.nodes[edge.toId]; - if (edge.to.level != edge.from.level) { - edge.to.springFx -= fx; - edge.to.springFy -= fy; - edge.from.springFx += fx; - edge.from.springFy += fy; + // group to the largest node + if (childNode.id != parentNode.id) { + if (parentNode.options.mass > childNode.options.mass) { + this._addToCluster(parentNode,childNode,true); } else { - var factor = 0.5; - edge.to.fx -= factor*fx; - edge.to.fy -= factor*fy; - edge.from.fx += factor*fx; - edge.from.fy += factor*fy; + this._addToCluster(childNode,parentNode,true); } } } } } - - // normalize spring forces - var springForce = 1; - var springFx, springFy; - for (i = 0; i < nodeIndices.length; i++) { - var node = nodes[nodeIndices[i]]; - springFx = Math.min(springForce,Math.max(-springForce,node.springFx)); - springFy = Math.min(springForce,Math.max(-springForce,node.springFy)); - - node.fx += springFx; - node.fy += springFy; - } - - // retain energy balance - var totalFx = 0; - var totalFy = 0; - for (i = 0; i < nodeIndices.length; i++) { - var node = nodes[nodeIndices[i]]; - totalFx += node.fx; - totalFy += node.fy; - } - var correctionFx = totalFx / nodeIndices.length; - var correctionFy = totalFy / nodeIndices.length; - - for (i = 0; i < nodeIndices.length; i++) { - var node = nodes[nodeIndices[i]]; - node.fx -= correctionFx; - node.fy -= correctionFy; - } - }; -/***/ }, -/* 54 */ -/***/ function(module, exports, __webpack_require__) { /** - * This function 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. + * To keep the nodes of roughly equal size we normalize the cluster levels. + * This function clusters a node to its smallest connected neighbour. * + * @param node * @private */ - exports._calculateNodeForces = function() { - if (this.constants.physics.barnesHut.gravitationalConstant != 0) { - var node; - var nodes = this.calculationNodes; - var nodeIndices = this.calculationNodeIndices; - var nodeCount = nodeIndices.length; + exports._clusterToSmallestNeighbour = function(node) { + var smallestNeighbour = -1; + var smallestNeighbourNode = null; + for (var i = 0; i < node.dynamicEdges.length; i++) { + if (node.dynamicEdges[i] !== undefined) { + var neighbour = null; + if (node.dynamicEdges[i].fromId != node.id) { + neighbour = node.dynamicEdges[i].from; + } + else if (node.dynamicEdges[i].toId != node.id) { + neighbour = node.dynamicEdges[i].to; + } + + + if (neighbour != null && smallestNeighbour > neighbour.clusterSessions.length) { + smallestNeighbour = neighbour.clusterSessions.length; + smallestNeighbourNode = neighbour; + } + } + } - this._formBarnesHutTree(nodes,nodeIndices); + if (neighbour != null && this.nodes[neighbour.id] !== undefined) { + this._addToCluster(neighbour, node, true); + } + }; - var barnesHutTree = this.barnesHutTree; - // place the nodes one by one recursively - for (var i = 0; i < nodeCount; i++) { - node = nodes[nodeIndices[i]]; - if (node.options.mass > 0) { - // starting with root is irrelevant, it never passes the BarnesHut condition - this._getForceContribution(barnesHutTree.root.children.NW,node); - this._getForceContribution(barnesHutTree.root.children.NE,node); - this._getForceContribution(barnesHutTree.root.children.SW,node); - this._getForceContribution(barnesHutTree.root.children.SE,node); - } + /** + * This function forms clusters from hubs, it loops over all nodes + * + * @param {Boolean} force | Disregard zoom level + * @param {Boolean} onlyEqual | This only clusters a hub with a specific number of edges + * @private + */ + exports._formClustersByHub = function(force, onlyEqual) { + // we loop over all nodes in the list + for (var nodeId in this.nodes) { + // we check if it is still available since it can be used by the clustering in this loop + if (this.nodes.hasOwnProperty(nodeId)) { + this._formClusterFromHub(this.nodes[nodeId],force,onlyEqual); } } }; - /** - * This function traverses the barnesHutTree. It checks when it can approximate distant nodes with their center of mass. - * If a region contains a single node, we check if it is not itself, then we apply the force. + * This function forms a cluster from a specific preselected hub node * - * @param parentBranch - * @param node + * @param {Node} hubNode | the node we will cluster as a hub + * @param {Boolean} force | Disregard zoom level + * @param {Boolean} onlyEqual | This only clusters a hub with a specific number of edges + * @param {Number} [absorptionSizeOffset] | * @private */ - exports._getForceContribution = function(parentBranch,node) { - // we get no force contribution from an empty region - if (parentBranch.childrenCount > 0) { - var dx,dy,distance; + exports._formClusterFromHub = function(hubNode, force, onlyEqual, absorptionSizeOffset) { + if (absorptionSizeOffset === undefined) { + absorptionSizeOffset = 0; + } + // we decide if the node is a hub + if ((hubNode.dynamicEdgesLength >= this.hubThreshold && onlyEqual == false) || + (hubNode.dynamicEdgesLength == this.hubThreshold && onlyEqual == true)) { + // initialize variables + var dx,dy,length; + var minLength = this.constants.clustering.clusterEdgeThreshold/this.scale; + var allowCluster = false; - // 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); + // we create a list of edges because the dynamicEdges change over the course of this loop + var edgesIdarray = []; + var amountOfInitialEdges = hubNode.dynamicEdges.length; + for (var j = 0; j < amountOfInitialEdges; j++) { + edgesIdarray.push(hubNode.dynamicEdges[j].id); + } - // BarnesHut condition - // original condition : s/d < theta = passed === d/s > 1/theta = passed - // calcSize = 1/s --> d * 1/s > 1/theta = passed - if (distance * parentBranch.calcSize > this.constants.physics.barnesHut.theta) { - // duplicate code to reduce function calls to speed up program - if (distance == 0) { - distance = 0.1*Math.random(); - dx = distance; + // if the hub clustering is not forces, we check if one of the edges connected + // to a cluster is small enough based on the constants.clustering.clusterEdgeThreshold + if (force == false) { + allowCluster = false; + for (j = 0; j < amountOfInitialEdges; j++) { + var edge = this.edges[edgesIdarray[j]]; + if (edge !== undefined) { + if (edge.connected) { + if (edge.toId != edge.fromId) { + dx = (edge.to.x - edge.from.x); + dy = (edge.to.y - edge.from.y); + length = Math.sqrt(dx * dx + dy * dy); + + if (length < minLength) { + allowCluster = true; + break; + } + } + } + } } - var gravityForce = this.constants.physics.barnesHut.gravitationalConstant * parentBranch.mass * node.options.mass / (distance * distance * distance); - var fx = dx * gravityForce; - var fy = dy * gravityForce; - node.fx += fx; - node.fy += fy; } - else { - // Did not pass the condition, go into children if available - if (parentBranch.childrenCount == 4) { - this._getForceContribution(parentBranch.children.NW,node); - this._getForceContribution(parentBranch.children.NE,node); - this._getForceContribution(parentBranch.children.SW,node); - this._getForceContribution(parentBranch.children.SE,node); - } - else { // parentBranch must have only one node, if it was empty we wouldnt be here - if (parentBranch.children.data.id != node.id) { // if it is not self - // duplicate code to reduce function calls to speed up program - if (distance == 0) { - distance = 0.5*Math.random(); - dx = distance; + + // start the clustering if allowed + if ((!force && allowCluster) || force) { + // we loop over all edges INITIALLY connected to this hub + for (j = 0; j < amountOfInitialEdges; j++) { + edge = this.edges[edgesIdarray[j]]; + // the edge can be clustered by this function in a previous loop + if (edge !== undefined) { + var childNode = this.nodes[(edge.fromId == hubNode.id) ? edge.toId : edge.fromId]; + // we do not want hubs to merge with other hubs nor do we want to cluster itself. + if ((childNode.dynamicEdges.length <= (this.hubThreshold + absorptionSizeOffset)) && + (childNode.id != hubNode.id)) { + this._addToCluster(hubNode,childNode,force); } - var gravityForce = this.constants.physics.barnesHut.gravitationalConstant * parentBranch.mass * node.options.mass / (distance * distance * distance); - var fx = dx * gravityForce; - var fy = dy * gravityForce; - node.fx += fx; - node.fy += fy; } } } } }; + + /** - * This function constructs the barnesHut tree recursively. It creates the root, splits it and starts placing the nodes. + * This function adds the child node to the parent node, creating a cluster if it is not already. * - * @param nodes - * @param nodeIndices + * @param {Node} parentNode | this is the node that will house the child node + * @param {Node} childNode | this node will be deleted from the global this.nodes and stored in the parent node + * @param {Boolean} force | true will only update the remainingEdges at the very end of the clustering, ensuring single level collapse * @private */ - exports._formBarnesHutTree = function(nodes,nodeIndices) { - var node; - var nodeCount = nodeIndices.length; - - var minX = Number.MAX_VALUE, - minY = Number.MAX_VALUE, - maxX =-Number.MAX_VALUE, - maxY =-Number.MAX_VALUE; + exports._addToCluster = function(parentNode, childNode, force) { + // join child node in the parent node + parentNode.containedNodes[childNode.id] = childNode; - // 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; } + // manage all the edges connected to the child and parent nodes + for (var i = 0; i < childNode.dynamicEdges.length; i++) { + var edge = childNode.dynamicEdges[i]; + if (edge.toId == parentNode.id || edge.fromId == parentNode.id) { // edge connected to parentNode + this._addToContainedEdges(parentNode,childNode,edge); + } + else { + this._connectEdgeToCluster(parentNode,childNode,edge); } } - // 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 + // a contained node has no dynamic edges. + childNode.dynamicEdges = []; + // remove circular edges from clusters + this._containCircularEdgesFromNode(parentNode,childNode); - var minimumTreeSize = 1e-5; - var rootSize = Math.max(minimumTreeSize,Math.abs(maxX - minX)); - var halfRootSize = 0.5 * rootSize; - var centerX = 0.5 * (minX + maxX), centerY = 0.5 * (minY + maxY); - // construct the barnesHutTree - var barnesHutTree = { - root:{ - centerOfMass: {x:0, y:0}, - mass:0, - range: { - minX: centerX-halfRootSize,maxX:centerX+halfRootSize, - minY: centerY-halfRootSize,maxY:centerY+halfRootSize - }, - size: rootSize, - calcSize: 1 / rootSize, - children: { data:null}, - maxWidth: 0, - level: 0, - childrenCount: 4 - } - }; - this._splitBranch(barnesHutTree.root); + // remove the childNode from the global nodes object + delete this.nodes[childNode.id]; - // 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); + // update the properties of the child and parent + var massBefore = parentNode.options.mass; + childNode.clusterSession = this.clusterSession; + parentNode.options.mass += childNode.options.mass; + parentNode.clusterSize += childNode.clusterSize; + parentNode.options.fontSize = Math.min(this.constants.clustering.maxFontSize, this.constants.nodes.fontSize + this.constants.clustering.fontSizeMultiplier*parentNode.clusterSize); + + // keep track of the clustersessions so we can open the cluster up as it has been formed. + if (parentNode.clusterSessions[parentNode.clusterSessions.length - 1] != this.clusterSession) { + parentNode.clusterSessions.push(this.clusterSession); + } + + // forced clusters only open from screen size and double tap + if (force == true) { + // parentNode.formationScale = Math.pow(1 - (1.0/11.0),this.clusterSession+3); + parentNode.formationScale = 0; + } + else { + parentNode.formationScale = this.scale; // The latest child has been added on this scale + } + + // recalculate the size of the node on the next time the node is rendered + parentNode.clearSizeCache(); + + // set the pop-out scale for the childnode + parentNode.containedNodes[childNode.id].formationScale = parentNode.formationScale; + + // nullify the movement velocity of the child, this is to avoid hectic behaviour + childNode.clearVelocity(); + + // the mass has altered, preservation of energy dictates the velocity to be updated + parentNode.updateVelocity(massBefore); + + // restart the simulation to reorganise all nodes + this.moving = true; + }; + + + /** + * This function will apply the changes made to the remainingEdges during the formation of the clusters. + * This is a seperate function to allow for level-wise collapsing of the node barnesHutTree. + * It has to be called if a level is collapsed. It is called by _formClusters(). + * @private + */ + exports._updateDynamicEdges = function() { + for (var i = 0; i < this.nodeIndices.length; i++) { + var node = this.nodes[this.nodeIndices[i]]; + node.dynamicEdgesLength = node.dynamicEdges.length; + + // this corrects for multiple edges pointing at the same other node + var correction = 0; + if (node.dynamicEdgesLength > 1) { + for (var j = 0; j < node.dynamicEdgesLength - 1; j++) { + var edgeToId = node.dynamicEdges[j].toId; + var edgeFromId = node.dynamicEdges[j].fromId; + for (var k = j+1; k < node.dynamicEdgesLength; k++) { + if ((node.dynamicEdges[k].toId == edgeToId && node.dynamicEdges[k].fromId == edgeFromId) || + (node.dynamicEdges[k].fromId == edgeToId && node.dynamicEdges[k].toId == edgeFromId)) { + correction += 1; + } + } + } } + node.dynamicEdgesLength -= correction; } - - // make global - this.barnesHutTree = barnesHutTree }; /** - * this updates the mass of a branch. this is increased by adding a node. + * This adds an edge from the childNode to the contained edges of the parent node * - * @param parentBranch - * @param node + * @param parentNode | Node object + * @param childNode | Node object + * @param edge | Edge object * @private */ - exports._updateBranchMass = function(parentBranch, node) { - var totalMass = parentBranch.mass + node.options.mass; - var totalMassInv = 1/totalMass; - - parentBranch.centerOfMass.x = parentBranch.centerOfMass.x * parentBranch.mass + node.x * node.options.mass; - parentBranch.centerOfMass.x *= totalMassInv; - - parentBranch.centerOfMass.y = parentBranch.centerOfMass.y * parentBranch.mass + node.y * node.options.mass; - parentBranch.centerOfMass.y *= totalMassInv; + exports._addToContainedEdges = function(parentNode, childNode, edge) { + // create an array object if it does not yet exist for this childNode + if (!(parentNode.containedEdges.hasOwnProperty(childNode.id))) { + parentNode.containedEdges[childNode.id] = [] + } + // add this edge to the list + parentNode.containedEdges[childNode.id].push(edge); - parentBranch.mass = totalMass; - var biggestSize = Math.max(Math.max(node.height,node.radius),node.width); - parentBranch.maxWidth = (parentBranch.maxWidth < biggestSize) ? biggestSize : parentBranch.maxWidth; + // remove the edge from the global edges object + delete this.edges[edge.id]; + // remove the edge from the parent object + for (var i = 0; i < parentNode.dynamicEdges.length; i++) { + if (parentNode.dynamicEdges[i].id == edge.id) { + parentNode.dynamicEdges.splice(i,1); + break; + } + } }; - /** - * determine in which branch the node will be placed. + * This function connects an edge that was connected to a child node to the parent node. + * It keeps track of which nodes it has been connected to with the originalId array. * - * @param parentBranch - * @param node - * @param skipMassUpdate + * @param {Node} parentNode | Node object + * @param {Node} childNode | Node object + * @param {Edge} edge | Edge object * @private */ - exports._placeInTree = function(parentBranch,node,skipMassUpdate) { - if (skipMassUpdate != true || skipMassUpdate === undefined) { - // update the mass of the branch. - this._updateBranchMass(parentBranch,node); - } - - if (parentBranch.children.NW.range.maxX > node.x) { // in NW or SW - if (parentBranch.children.NW.range.maxY > node.y) { // in NW - this._placeInRegion(parentBranch,node,"NW"); - } - else { // in SW - this._placeInRegion(parentBranch,node,"SW"); - } + exports._connectEdgeToCluster = function(parentNode, childNode, edge) { + // handle circular edges + if (edge.toId == edge.fromId) { + this._addToContainedEdges(parentNode, childNode, edge); } - else { // in NE or SE - if (parentBranch.children.NW.range.maxY > node.y) { // in NE - this._placeInRegion(parentBranch,node,"NE"); + else { + if (edge.toId == childNode.id) { // edge connected to other node on the "to" side + edge.originalToId.push(childNode.id); + edge.to = parentNode; + edge.toId = parentNode.id; } - else { // in SE - this._placeInRegion(parentBranch,node,"SE"); + else { // edge connected to other node with the "from" side + + edge.originalFromId.push(childNode.id); + edge.from = parentNode; + edge.fromId = parentNode.id; } + + this._addToReroutedEdges(parentNode,childNode,edge); } }; /** - * actually place the node in a region (or branch) + * If a node is connected to itself, a circular edge is drawn. When clustering we want to contain + * these edges inside of the cluster. * - * @param parentBranch - * @param node - * @param region + * @param parentNode + * @param childNode * @private */ - exports._placeInRegion = function(parentBranch,node,region) { - switch (parentBranch.children[region].childrenCount) { - case 0: // place node here - parentBranch.children[region].children.data = node; - parentBranch.children[region].childrenCount = 1; - this._updateBranchMass(parentBranch.children[region],node); - break; - case 1: // convert into children - // if there are two nodes exactly overlapping (on init, on opening of cluster etc.) - // we move one node a pixel and we do not put it in the tree. - if (parentBranch.children[region].children.data.x == node.x && - parentBranch.children[region].children.data.y == node.y) { - node.x += Math.random(); - node.y += Math.random(); - } - else { - this._splitBranch(parentBranch.children[region]); - this._placeInTree(parentBranch.children[region],node); - } - break; - case 4: // place in branch - this._placeInTree(parentBranch.children[region],node); - break; + exports._containCircularEdgesFromNode = function(parentNode, childNode) { + // manage all the edges connected to the child and parent nodes + for (var i = 0; i < parentNode.dynamicEdges.length; i++) { + var edge = parentNode.dynamicEdges[i]; + // handle circular edges + if (edge.toId == edge.fromId) { + this._addToContainedEdges(parentNode, childNode, edge); + } } }; /** - * this function splits a branch into 4 sub branches. If the branch contained a node, we place it in the subbranch - * after the split is complete. + * This adds an edge from the childNode to the rerouted edges of the parent node * - * @param parentBranch + * @param parentNode | Node object + * @param childNode | Node object + * @param edge | Edge object * @private */ - exports._splitBranch = function(parentBranch) { - // if the branch is shaded with a node, replace the node in the new subset. - var containedNode = null; - if (parentBranch.childrenCount == 1) { - containedNode = parentBranch.children.data; - parentBranch.mass = 0; parentBranch.centerOfMass.x = 0; parentBranch.centerOfMass.y = 0; + exports._addToReroutedEdges = function(parentNode, childNode, edge) { + // create an array object if it does not yet exist for this childNode + // we store the edge in the rerouted edges so we can restore it when the cluster pops open + if (!(parentNode.reroutedEdges.hasOwnProperty(childNode.id))) { + parentNode.reroutedEdges[childNode.id] = []; } - parentBranch.childrenCount = 4; - parentBranch.children.data = null; - this._insertRegion(parentBranch,"NW"); - this._insertRegion(parentBranch,"NE"); - this._insertRegion(parentBranch,"SW"); - this._insertRegion(parentBranch,"SE"); + parentNode.reroutedEdges[childNode.id].push(edge); + + // this edge becomes part of the dynamicEdges of the cluster node + parentNode.dynamicEdges.push(edge); + }; - if (containedNode != null) { - this._placeInTree(parentBranch,containedNode); - } - }; /** - * This function subdivides the region into four new segments. - * Specifically, this inserts a single new segment. - * It fills the children section of the parentBranch + * This function connects an edge that was connected to a cluster node back to the child node. * - * @param parentBranch - * @param region - * @param parentRange + * @param parentNode | Node object + * @param childNode | Node object * @private */ - exports._insertRegion = function(parentBranch, region) { - var minX,maxX,minY,maxY; - var childSize = 0.5 * parentBranch.size; - switch (region) { - case "NW": - minX = parentBranch.range.minX; - maxX = parentBranch.range.minX + childSize; - minY = parentBranch.range.minY; - maxY = parentBranch.range.minY + childSize; - break; - case "NE": - minX = parentBranch.range.minX + childSize; - maxX = parentBranch.range.maxX; - minY = parentBranch.range.minY; - maxY = parentBranch.range.minY + childSize; - break; - case "SW": - minX = parentBranch.range.minX; - maxX = parentBranch.range.minX + childSize; - minY = parentBranch.range.minY + childSize; - maxY = parentBranch.range.maxY; - break; - case "SE": - minX = parentBranch.range.minX + childSize; - maxX = parentBranch.range.maxX; - minY = parentBranch.range.minY + childSize; - maxY = parentBranch.range.maxY; - break; + exports._connectEdgeBackToChild = function(parentNode, childNode) { + if (parentNode.reroutedEdges.hasOwnProperty(childNode.id)) { + for (var i = 0; i < parentNode.reroutedEdges[childNode.id].length; i++) { + var edge = parentNode.reroutedEdges[childNode.id][i]; + if (edge.originalFromId[edge.originalFromId.length-1] == childNode.id) { + edge.originalFromId.pop(); + edge.fromId = childNode.id; + edge.from = childNode; + } + else { + edge.originalToId.pop(); + edge.toId = childNode.id; + edge.to = childNode; + } + + // append this edge to the list of edges connecting to the childnode + childNode.dynamicEdges.push(edge); + + // remove the edge from the parent object + for (var j = 0; j < parentNode.dynamicEdges.length; j++) { + if (parentNode.dynamicEdges[j].id == edge.id) { + parentNode.dynamicEdges.splice(j,1); + break; + } + } + } + // remove the entry from the rerouted edges + delete parentNode.reroutedEdges[childNode.id]; } + }; - 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 - }; + /** + * When loops are clustered, an edge can be both in the rerouted array and the contained array. + * This function is called last to verify that all edges in dynamicEdges are in fact connected to the + * parentNode + * + * @param parentNode | Node object + * @private + */ + exports._validateEdges = function(parentNode) { + for (var i = 0; i < parentNode.dynamicEdges.length; i++) { + var edge = parentNode.dynamicEdges[i]; + if (parentNode.id != edge.toId && parentNode.id != edge.fromId) { + parentNode.dynamicEdges.splice(i,1); + } + } }; /** - * This function is for debugging purposed, it draws the tree. + * This function released the contained edges back into the global domain and puts them back into the + * dynamic edges of both parent and child. * - * @param ctx - * @param color + * @param {Node} parentNode | + * @param {Node} childNode | * @private */ - exports._drawTree = function(ctx,color) { - if (this.barnesHutTree !== undefined) { + exports._releaseContainedEdges = function(parentNode, childNode) { + for (var i = 0; i < parentNode.containedEdges[childNode.id].length; i++) { + var edge = parentNode.containedEdges[childNode.id][i]; - ctx.lineWidth = 1; + // put the edge back in the global edges object + this.edges[edge.id] = edge; - this._drawBranch(this.barnesHutTree.root,ctx,color); + // put the edge back in the dynamic edges of the child and parent + childNode.dynamicEdges.push(edge); + parentNode.dynamicEdges.push(edge); } + // remove the entry from the contained edges + delete parentNode.containedEdges[childNode.id]; + }; + + + // ------------------- UTILITY FUNCTIONS ---------------------------- // + + /** - * This function is for debugging purposes. It draws the branches recursively. - * - * @param branch - * @param ctx - * @param color - * @private + * This updates the node labels for all nodes (for debugging purposes) */ - exports._drawBranch = function(branch,ctx,color) { - if (color === undefined) { - color = "#FF0000"; + exports.updateLabels = function() { + var nodeId; + // update node labels + for (nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + var node = this.nodes[nodeId]; + if (node.clusterSize > 1) { + node.label = "[".concat(String(node.clusterSize),"]"); + } + } } - 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); + // update node labels + for (nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + node = this.nodes[nodeId]; + if (node.clusterSize == 1) { + if (node.originalLabel !== undefined) { + node.label = node.originalLabel; + } + else { + node.label = String(node.id); + } + } + } } - 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(); + // /* Debug Override */ + // for (nodeId in this.nodes) { + // if (this.nodes.hasOwnProperty(nodeId)) { + // node = this.nodes[nodeId]; + // node.label = String(node.level); + // } + // } - 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(); - } - */ + /** + * We want to keep the cluster level distribution rather small. This means we do not want unclustered nodes + * if the rest of the nodes are already a few cluster levels in. + * To fix this we use this function. It determines the min and max cluster level and sends nodes that have not + * clustered enough to the clusterToSmallestNeighbours function. + */ + exports.normalizeClusterLevels = function() { + var maxLevel = 0; + var minLevel = 1e9; + var clusterLevel = 0; + var nodeId; + + // we loop over all nodes in the list + for (nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + clusterLevel = this.nodes[nodeId].clusterSessions.length; + if (maxLevel < clusterLevel) {maxLevel = clusterLevel;} + if (minLevel > clusterLevel) {minLevel = clusterLevel;} + } + } + + if (maxLevel - minLevel > this.constants.clustering.clusterLevelDifference) { + var amountOfNodes = this.nodeIndices.length; + var targetLevel = maxLevel - this.constants.clustering.clusterLevelDifference; + // we loop over all nodes in the list + for (nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + if (this.nodes[nodeId].clusterSessions.length < targetLevel) { + this._clusterToSmallestNeighbour(this.nodes[nodeId]); + } + } + } + this._updateNodeIndexList(); + this._updateDynamicEdges(); + // if a cluster was formed, we increase the clusterSession + if (this.nodeIndices.length != amountOfNodes) { + this.clusterSession += 1; + } + } }; -/***/ }, -/* 55 */ -/***/ function(module, exports, __webpack_require__) { /** - * Creation of the ClusterMixin var. + * This function determines if the cluster we want to decluster is in the active area + * this means around the zoom center * - * This contains all the functions the Network object can use to employ clustering + * @param {Node} node + * @returns {boolean} + * @private */ + exports._nodeInActiveArea = function(node) { + return ( + Math.abs(node.x - this.areaCenter.x) <= this.constants.clustering.activeAreaBoxSize/this.scale + && + Math.abs(node.y - this.areaCenter.y) <= this.constants.clustering.activeAreaBoxSize/this.scale + ) + }; - /** - * This is only called in the constructor of the network object - * - */ - exports.startWithClustering = function() { - // cluster if the data set is big - this.clusterToFit(this.constants.clustering.initialMaxNodes, true); - - // updates the lables after clustering - this.updateLabels(); - // this is called here because if clusterin is disabled, the start and stabilize are called in - // the setData function. - if (this.stabilize) { - this._stabilize(); - } - this.start(); + /** + * This is an adaptation of the original repositioning function. This is called if the system is clustered initially + * It puts large clusters away from the center and randomizes the order. + * + */ + exports.repositionNodes = function() { + for (var i = 0; i < this.nodeIndices.length; i++) { + var node = this.nodes[this.nodeIndices[i]]; + if ((node.xFixed == false || node.yFixed == false)) { + var radius = 10 * 0.1*this.nodeIndices.length * Math.min(100,node.options.mass); + var angle = 2 * Math.PI * Math.random(); + if (node.xFixed == false) {node.x = radius * Math.cos(angle);} + if (node.yFixed == false) {node.y = radius * Math.sin(angle);} + this._repositionBezierNodes(node); + } + } }; + /** - * This function clusters until the initialMaxNodes has been reached + * We determine how many connections denote an important hub. + * We take the mean + 2*std as the important hub size. (Assuming a normal distribution of data, ~2.2%) * - * @param {Number} maxNumberOfNodes - * @param {Boolean} reposition + * @private */ - exports.clusterToFit = function(maxNumberOfNodes, reposition) { - var numberOfNodes = this.nodeIndices.length; + exports._getHubSize = function() { + var average = 0; + var averageSquared = 0; + var hubCounter = 0; + var largestHub = 0; - var maxLevels = 50; - var level = 0; + for (var i = 0; i < this.nodeIndices.length; i++) { - // we first cluster the hubs, then we pull in the outliers, repeat - while (numberOfNodes > maxNumberOfNodes && level < maxLevels) { - if (level % 3 == 0) { - this.forceAggregateHubs(true); - this.normalizeClusterLevels(); - } - else { - this.increaseClusterLevel(); // this also includes a cluster normalization + var node = this.nodes[this.nodeIndices[i]]; + if (node.dynamicEdgesLength > largestHub) { + largestHub = node.dynamicEdgesLength; } + average += node.dynamicEdgesLength; + averageSquared += Math.pow(node.dynamicEdgesLength,2); + hubCounter += 1; + } + average = average / hubCounter; + averageSquared = averageSquared / hubCounter; - numberOfNodes = this.nodeIndices.length; - level += 1; + var variance = averageSquared - Math.pow(average,2); + + var standardDeviation = Math.sqrt(variance); + + this.hubThreshold = Math.floor(average + 2*standardDeviation); + + // always have at least one to cluster + if (this.hubThreshold > largestHub) { + this.hubThreshold = largestHub; } - // after the clustering we reposition the nodes to reduce the initial chaos - if (level > 0 && reposition == true) { - this.repositionNodes(); + // console.log("average",average,"averageSQ",averageSquared,"var",variance,"std",standardDeviation); + // console.log("hubThreshold:",this.hubThreshold); + }; + + + /** + * We reduce the amount of "extension nodes" or chains. These are not quickly clustered with the outliers and hubs methods + * with this amount we can cluster specifically on these chains. + * + * @param {Number} fraction | between 0 and 1, the percentage of chains to reduce + * @private + */ + exports._reduceAmountOfChains = function(fraction) { + this.hubThreshold = 2; + var reduceAmount = Math.floor(this.nodeIndices.length * fraction); + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + if (this.nodes[nodeId].dynamicEdgesLength == 2 && this.nodes[nodeId].dynamicEdges.length >= 2) { + if (reduceAmount > 0) { + this._formClusterFromHub(this.nodes[nodeId],true,true,1); + reduceAmount -= 1; + } + } + } } - this._updateCalculationNodes(); }; /** - * This function can be called to open up a specific cluster. It is only called by - * It will unpack the cluster back one level. + * We get the amount of "extension nodes" or chains. These are not quickly clustered with the outliers and hubs methods + * with this amount we can cluster specifically on these chains. * - * @param node | Node object: cluster to open. + * @private */ - exports.openCluster = function(node) { - var isMovingBeforeClustering = this.moving; - if (node.clusterSize > this.constants.clustering.sectorThreshold && this._nodeInActiveArea(node) && - !(this._sector() == "default" && this.nodeIndices.length == 1)) { - // this loads a new sector, loads the nodes and edges and nodeIndices of it. - this._addSector(node); - var level = 0; - - // we decluster until we reach a decent number of nodes - while ((this.nodeIndices.length < this.constants.clustering.initialMaxNodes) && (level < 10)) { - this.decreaseClusterLevel(); - level += 1; + exports._getChainFraction = function() { + var chains = 0; + var total = 0; + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + if (this.nodes[nodeId].dynamicEdgesLength == 2 && this.nodes[nodeId].dynamicEdges.length >= 2) { + chains += 1; + } + total += 1; } - - } - else { - this._expandClusterNode(node,false,true); - - // update the index list, dynamic edges and labels - this._updateNodeIndexList(); - this._updateDynamicEdges(); - this._updateCalculationNodes(); - this.updateLabels(); - } - - // if the simulation was settled, we restart the simulation if a cluster has been formed or expanded - if (this.moving != isMovingBeforeClustering) { - this.start(); } + return chains/total; }; - /** - * This calls the updateClustes with default arguments - */ - exports.updateClustersDefault = function() { - if (this.constants.clustering.enabled == true) { - this.updateClusters(0,false,false); - } - }; +/***/ }, +/* 51 */ +/***/ function(module, exports, __webpack_require__) { + var util = __webpack_require__(2); /** - * This function can be called to increase the cluster level. This means that the nodes with only one edge connection will - * be clustered with their connected node. This can be repeated as many times as needed. - * This can be called externally (by a keybind for instance) to reduce the complexity of big datasets. + * Creation of the SectorMixin var. + * + * This contains all the functions the Network object can use to employ the sector system. + * The sector system is always used by Network, though the benefits only apply to the use of clustering. + * If clustering is not used, there is no overhead except for a duplicate object with references to nodes and edges. */ - exports.increaseClusterLevel = function() { - this.updateClusters(-1,false,true); - }; - /** - * This function can be called to decrease the cluster level. This means that the nodes with only one edge connection will - * be unpacked if they are a cluster. This can be repeated as many times as needed. - * This can be called externally (by a key-bind for instance) to look into clusters without zooming. + * This function is only called by the setData function of the Network object. + * This loads the global references into the active sector. This initializes the sector. + * + * @private */ - exports.decreaseClusterLevel = function() { - this.updateClusters(1,false,true); + exports._putDataInSector = function() { + this.sectors["active"][this._sector()].nodes = this.nodes; + this.sectors["active"][this._sector()].edges = this.edges; + this.sectors["active"][this._sector()].nodeIndices = this.nodeIndices; }; /** - * This is the main clustering function. It clusters and declusters on zoom or forced - * This function clusters on zoom, it can be called with a predefined zoom direction - * If out, check if we can form clusters, if in, check if we can open clusters. - * This function is only called from _zoom() - * - * @param {Number} zoomDirection | -1 / 0 / +1 for zoomOut / determineByZoom / zoomIn - * @param {Boolean} recursive | enabled or disable recursive calling of the opening of clusters - * @param {Boolean} force | enabled or disable forcing - * @param {Boolean} doNotStart | if true do not call start + * /** + * This function sets the global references to nodes, edges and nodeIndices back to + * those of the supplied (active) sector. If a type is defined, do the specific type * + * @param {String} sectorId + * @param {String} [sectorType] | "active" or "frozen" + * @private */ - exports.updateClusters = function(zoomDirection,recursive,force,doNotStart) { - var isMovingBeforeClustering = this.moving; - var amountOfNodes = this.nodeIndices.length; - - // on zoom out collapse the sector if the scale is at the level the sector was made - if (this.previousScale > this.scale && zoomDirection == 0) { - this._collapseSector(); - } - - // check if we zoom in or out - if (this.previousScale > this.scale || zoomDirection == -1) { // zoom out - // forming clusters when forced pulls outliers in. When not forced, the edge length of the - // outer nodes determines if it is being clustered - this._formClusters(force); - } - else if (this.previousScale < this.scale || zoomDirection == 1) { // zoom in - if (force == true) { - // _openClusters checks for each node if the formationScale of the cluster is smaller than - // the current scale and if so, declusters. When forced, all clusters are reduced by one step - this._openClusters(recursive,force); - } - else { - // if a cluster takes up a set percentage of the active window - this._openClustersBySize(); - } + exports._switchToSector = function(sectorId, sectorType) { + if (sectorType === undefined || sectorType == "active") { + this._switchToActiveSector(sectorId); } - this._updateNodeIndexList(); - - // if a cluster was NOT formed and the user zoomed out, we try clustering by hubs - if (this.nodeIndices.length == amountOfNodes && (this.previousScale > this.scale || zoomDirection == -1)) { - this._aggregateHubs(force); - this._updateNodeIndexList(); + else { + this._switchToFrozenSector(sectorId); } + }; - // we now reduce chains. - if (this.previousScale > this.scale || zoomDirection == -1) { // zoom out - this.handleChains(); - this._updateNodeIndexList(); - } - this.previousScale = this.scale; + /** + * This function sets the global references to nodes, edges and nodeIndices back to + * those of the supplied active sector. + * + * @param sectorId + * @private + */ + exports._switchToActiveSector = function(sectorId) { + this.nodeIndices = this.sectors["active"][sectorId]["nodeIndices"]; + this.nodes = this.sectors["active"][sectorId]["nodes"]; + this.edges = this.sectors["active"][sectorId]["edges"]; + }; - // rest of the update the index list, dynamic edges and labels - this._updateDynamicEdges(); - this.updateLabels(); - // if a cluster was formed, we increase the clusterSession - if (this.nodeIndices.length < amountOfNodes) { // this means a clustering operation has taken place - this.clusterSession += 1; - // if clusters have been made, we normalize the cluster level - this.normalizeClusterLevels(); - } + /** + * This function sets the global references to nodes, edges and nodeIndices back to + * those of the supplied active sector. + * + * @private + */ + exports._switchToSupportSector = function() { + this.nodeIndices = this.sectors["support"]["nodeIndices"]; + this.nodes = this.sectors["support"]["nodes"]; + this.edges = this.sectors["support"]["edges"]; + }; - if (doNotStart == false || doNotStart === undefined) { - // if the simulation was settled, we restart the simulation if a cluster has been formed or expanded - if (this.moving != isMovingBeforeClustering) { - this.start(); - } - } - this._updateCalculationNodes(); + /** + * This function sets the global references to nodes, edges and nodeIndices back to + * those of the supplied frozen sector. + * + * @param sectorId + * @private + */ + exports._switchToFrozenSector = function(sectorId) { + this.nodeIndices = this.sectors["frozen"][sectorId]["nodeIndices"]; + this.nodes = this.sectors["frozen"][sectorId]["nodes"]; + this.edges = this.sectors["frozen"][sectorId]["edges"]; }; + /** - * This function handles the chains. It is called on every updateClusters(). + * This function sets the global references to nodes, edges and nodeIndices back to + * those of the currently active sector. + * + * @private */ - exports.handleChains = function() { - // after clustering we check how many chains there are - var chainPercentage = this._getChainFraction(); - if (chainPercentage > this.constants.clustering.chainThreshold) { - this._reduceAmountOfChains(1 - this.constants.clustering.chainThreshold / chainPercentage) - - } + exports._loadLatestSector = function() { + this._switchToSector(this._sector()); }; + /** - * this functions starts clustering by hubs - * The minimum hub threshold is set globally + * This function returns the currently active sector Id * + * @returns {String} * @private */ - exports._aggregateHubs = function(force) { - this._getHubSize(); - this._formClustersByHub(force,false); + exports._sector = function() { + return this.activeSector[this.activeSector.length-1]; }; /** - * This function is fired by keypress. It forces hubs to form. + * This function returns the previously active sector Id * + * @returns {String} + * @private */ - exports.forceAggregateHubs = function(doNotStart) { - var isMovingBeforeClustering = this.moving; - var amountOfNodes = this.nodeIndices.length; + exports._previousSector = function() { + if (this.activeSector.length > 1) { + return this.activeSector[this.activeSector.length-2]; + } + else { + throw new TypeError('there are not enough sectors in the this.activeSector array.'); + } + }; - this._aggregateHubs(true); - // update the index list, dynamic edges and labels - this._updateNodeIndexList(); - this._updateDynamicEdges(); - this.updateLabels(); + /** + * We add the active sector at the end of the this.activeSector array + * This ensures it is the currently active sector returned by _sector() and it reaches the top + * of the activeSector stack. When we reverse our steps we move from the end to the beginning of this stack. + * + * @param newId + * @private + */ + exports._setActiveSector = function(newId) { + this.activeSector.push(newId); + }; - // if a cluster was formed, we increase the clusterSession - if (this.nodeIndices.length != amountOfNodes) { - this.clusterSession += 1; - } - if (doNotStart == false || doNotStart === undefined) { - // if the simulation was settled, we restart the simulation if a cluster has been formed or expanded - if (this.moving != isMovingBeforeClustering) { - this.start(); - } - } + /** + * We remove the currently active sector id from the active sector stack. This happens when + * we reactivate the previously active sector + * + * @private + */ + exports._forgetLastSector = function() { + this.activeSector.pop(); }; + /** - * If a cluster takes up more than a set percentage of the screen, open the cluster + * This function creates a new active sector with the supplied newId. This newId + * is the expanding node id. * + * @param {String} newId | Id of the new active sector * @private */ - exports._openClustersBySize = function() { - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - var node = this.nodes[nodeId]; - if (node.inView() == true) { - if ((node.width*this.scale > this.constants.clustering.screenSizeThreshold * this.frame.canvas.clientWidth) || - (node.height*this.scale > this.constants.clustering.screenSizeThreshold * this.frame.canvas.clientHeight)) { - this.openCluster(node); + exports._createNewSector = function(newId) { + // create the new sector + this.sectors["active"][newId] = {"nodes":{}, + "edges":{}, + "nodeIndices":[], + "formationScale": this.scale, + "drawingNode": undefined}; + + // create the new sector render node. This gives visual feedback that you are in a new sector. + this.sectors["active"][newId]['drawingNode'] = new Node( + {id:newId, + color: { + background: "#eaefef", + border: "495c5e" } - } - } - } + },{},{},this.constants); + this.sectors["active"][newId]['drawingNode'].clusterSize = 2; }; /** - * This function loops over all nodes in the nodeIndices list. For each node it checks if it is a cluster and if it - * has to be opened based on the current zoom level. + * This function removes the currently active sector. This is called when we create a new + * active sector. * + * @param {String} sectorId | Id of the active sector that will be removed * @private */ - exports._openClusters = function(recursive,force) { - for (var i = 0; i < this.nodeIndices.length; i++) { - var node = this.nodes[this.nodeIndices[i]]; - this._expandClusterNode(node,recursive,force); - this._updateCalculationNodes(); - } + exports._deleteActiveSector = function(sectorId) { + delete this.sectors["active"][sectorId]; }; + /** - * This function checks if a node has to be opened. This is done by checking the zoom level. - * If the node contains child nodes, this function is recursively called on the child nodes as well. - * This recursive behaviour is optional and can be set by the recursive argument. + * This function removes the currently active sector. This is called when we reactivate + * the previously active sector. * - * @param {Node} parentNode | to check for cluster and expand - * @param {Boolean} recursive | enabled or disable recursive calling - * @param {Boolean} force | enabled or disable forcing - * @param {Boolean} [openAll] | This will recursively force all nodes in the parent to be released + * @param {String} sectorId | Id of the active sector that will be removed * @private */ - exports._expandClusterNode = function(parentNode, recursive, force, openAll) { - // first check if node is a cluster - if (parentNode.clusterSize > 1) { - // this means that on a double tap event or a zoom event, the cluster fully unpacks if it is smaller than 20 - if (parentNode.clusterSize < this.constants.clustering.sectorThreshold) { - openAll = true; - } - recursive = openAll ? true : recursive; - - // if the last child has been added on a smaller scale than current scale decluster - if (parentNode.formationScale < this.scale || force == true) { - // we will check if any of the contained child nodes should be removed from the cluster - for (var containedNodeId in parentNode.containedNodes) { - if (parentNode.containedNodes.hasOwnProperty(containedNodeId)) { - var childNode = parentNode.containedNodes[containedNodeId]; - - // force expand will expand the largest cluster size clusters. Since we cluster from outside in, we assume that - // the largest cluster is the one that comes from outside - if (force == true) { - if (childNode.clusterSession == parentNode.clusterSessions[parentNode.clusterSessions.length-1] - || openAll) { - this._expelChildFromParent(parentNode,containedNodeId,recursive,force,openAll); - } - } - else { - if (this._nodeInActiveArea(parentNode)) { - this._expelChildFromParent(parentNode,containedNodeId,recursive,force,openAll); - } - } - } - } - } - } + exports._deleteFrozenSector = function(sectorId) { + delete this.sectors["frozen"][sectorId]; }; + /** - * ONLY CALLED FROM _expandClusterNode - * - * This function will expel a child_node from a parent_node. This is to de-cluster the node. This function will remove - * the child node from the parent contained_node object and put it back into the global nodes object. - * The same holds for the edge that was connected to the child node. It is moved back into the global edges object. + * Freezing an active sector means moving it from the "active" object to the "frozen" object. + * We copy the references, then delete the active entree. * - * @param {Node} parentNode | the parent node - * @param {String} containedNodeId | child_node id as it is contained in the containedNodes object of the parent node - * @param {Boolean} recursive | This will also check if the child needs to be expanded. - * With force and recursive both true, the entire cluster is unpacked - * @param {Boolean} force | This will disregard the zoom level and will expel this child from the parent - * @param {Boolean} openAll | This will recursively force all nodes in the parent to be released + * @param sectorId * @private */ - exports._expelChildFromParent = function(parentNode, containedNodeId, recursive, force, openAll) { - var childNode = parentNode.containedNodes[containedNodeId]; - - // if child node has been added on smaller scale than current, kick out - if (childNode.formationScale < this.scale || force == true) { - // unselect all selected items - this._unselectAll(); - - // put the child node back in the global nodes object - this.nodes[containedNodeId] = childNode; - - // release the contained edges from this childNode back into the global edges - this._releaseContainedEdges(parentNode,childNode); + exports._freezeSector = function(sectorId) { + // we move the set references from the active to the frozen stack. + this.sectors["frozen"][sectorId] = this.sectors["active"][sectorId]; - // reconnect rerouted edges to the childNode - this._connectEdgeBackToChild(parentNode,childNode); + // we have moved the sector data into the frozen set, we now remove it from the active set + this._deleteActiveSector(sectorId); + }; - // validate all edges in dynamicEdges - this._validateEdges(parentNode); - // undo the changes from the clustering operation on the parent node - parentNode.options.mass -= childNode.options.mass; - parentNode.clusterSize -= childNode.clusterSize; - parentNode.options.fontSize = Math.min(this.constants.clustering.maxFontSize, this.constants.nodes.fontSize + this.constants.clustering.fontSizeMultiplier*parentNode.clusterSize); - parentNode.dynamicEdgesLength = parentNode.dynamicEdges.length; + /** + * This is the reverse operation of _freezeSector. Activating means moving the sector from the "frozen" + * object to the "active" object. + * + * @param sectorId + * @private + */ + exports._activateSector = function(sectorId) { + // we move the set references from the frozen to the active stack. + this.sectors["active"][sectorId] = this.sectors["frozen"][sectorId]; - // place the child node near the parent, not at the exact same location to avoid chaos in the system - childNode.x = parentNode.x + parentNode.growthIndicator * (0.5 - Math.random()); - childNode.y = parentNode.y + parentNode.growthIndicator * (0.5 - Math.random()); + // we have moved the sector data into the active set, we now remove it from the frozen stack + this._deleteFrozenSector(sectorId); + }; - // remove node from the list - delete parentNode.containedNodes[containedNodeId]; - // check if there are other childs with this clusterSession in the parent. - var othersPresent = false; - for (var childNodeId in parentNode.containedNodes) { - if (parentNode.containedNodes.hasOwnProperty(childNodeId)) { - if (parentNode.containedNodes[childNodeId].clusterSession == childNode.clusterSession) { - othersPresent = true; - break; - } - } - } - // if there are no others, remove the cluster session from the list - if (othersPresent == false) { - parentNode.clusterSessions.pop(); + /** + * This function merges the data from the currently active sector with a frozen sector. This is used + * in the process of reverting back to the previously active sector. + * The data that is placed in the frozen (the previously active) sector is the node that has been removed from it + * upon the creation of a new active sector. + * + * @param sectorId + * @private + */ + exports._mergeThisWithFrozen = function(sectorId) { + // copy all nodes + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + this.sectors["frozen"][sectorId]["nodes"][nodeId] = this.nodes[nodeId]; } + } - this._repositionBezierNodes(childNode); - // this._repositionBezierNodes(parentNode); - - // remove the clusterSession from the child node - childNode.clusterSession = 0; - - // recalculate the size of the node on the next time the node is rendered - parentNode.clearSizeCache(); - - // restart the simulation to reorganise all nodes - this.moving = true; + // copy all edges (if not fully clustered, else there are no edges) + for (var edgeId in this.edges) { + if (this.edges.hasOwnProperty(edgeId)) { + this.sectors["frozen"][sectorId]["edges"][edgeId] = this.edges[edgeId]; + } } - // check if a further expansion step is possible if recursivity is enabled - if (recursive == true) { - this._expandClusterNode(childNode,recursive,force,openAll); + // merge the nodeIndices + for (var i = 0; i < this.nodeIndices.length; i++) { + this.sectors["frozen"][sectorId]["nodeIndices"].push(this.nodeIndices[i]); } }; /** - * position the bezier nodes at the center of the edges + * This clusters the sector to one cluster. It was a single cluster before this process started so + * we revert to that state. The clusterToFit function with a maximum size of 1 node does this. * - * @param node * @private */ - exports._repositionBezierNodes = function(node) { - for (var i = 0; i < node.dynamicEdges.length; i++) { - node.dynamicEdges[i].positionBezierNode(); - } + exports._collapseThisToSingleCluster = function() { + this.clusterToFit(1,false); }; /** - * This function checks if any nodes at the end of their trees have edges below a threshold length - * This function is called only from updateClusters() - * forceLevelCollapse ignores the length of the edge and collapses one level - * This means that a node with only one edge will be clustered with its connected node + * We create a new active sector from the node that we want to open. * + * @param node * @private - * @param {Boolean} force */ - exports._formClusters = function(force) { - if (force == false) { - this._formClustersByZoom(); - } - else { - this._forceClustersByZoom(); - } + exports._addSector = function(node) { + // this is the currently active sector + var sector = this._sector(); + + // // this should allow me to select nodes from a frozen set. + // if (this.sectors['active'][sector]["nodes"].hasOwnProperty(node.id)) { + // console.log("the node is part of the active sector"); + // } + // else { + // console.log("I dont know what the fuck happened!!"); + // } + + // when we switch to a new sector, we remove the node that will be expanded from the current nodes list. + delete this.nodes[node.id]; + + var unqiueIdentifier = util.randomUUID(); + + // we fully freeze the currently active sector + this._freezeSector(sector); + + // we create a new active sector. This sector has the Id of the node to ensure uniqueness + this._createNewSector(unqiueIdentifier); + + // we add the active sector to the sectors array to be able to revert these steps later on + this._setActiveSector(unqiueIdentifier); + + // we redirect the global references to the new sector's references. this._sector() now returns unqiueIdentifier + this._switchToSector(this._sector()); + + // finally we add the node we removed from our previous active sector to the new active sector + this.nodes[node.id] = node; }; /** - * This function handles the clustering by zooming out, this is based on a minimum edge distance + * We close the sector that is currently open and revert back to the one before. + * If the active sector is the "default" sector, nothing happens. * * @private */ - exports._formClustersByZoom = function() { - var dx,dy,length, - minLength = this.constants.clustering.clusterEdgeThreshold/this.scale; + exports._collapseSector = function() { + // the currently active sector + var sector = this._sector(); - // check if any edges are shorter than minLength and start the clustering - // the clustering favours the node with the larger mass - for (var edgeId in this.edges) { - if (this.edges.hasOwnProperty(edgeId)) { - var edge = this.edges[edgeId]; - if (edge.connected) { - if (edge.toId != edge.fromId) { - dx = (edge.to.x - edge.from.x); - dy = (edge.to.y - edge.from.y); - length = Math.sqrt(dx * dx + dy * dy); + // we cannot collapse the default sector + if (sector != "default") { + if ((this.nodeIndices.length == 1) || + (this.sectors["active"][sector]["drawingNode"].width*this.scale < this.constants.clustering.screenSizeThreshold * this.frame.canvas.clientWidth) || + (this.sectors["active"][sector]["drawingNode"].height*this.scale < this.constants.clustering.screenSizeThreshold * this.frame.canvas.clientHeight)) { + var previousSector = this._previousSector(); + // we collapse the sector back to a single cluster + this._collapseThisToSingleCluster(); - if (length < minLength) { - // first check which node is larger - var parentNode = edge.from; - var childNode = edge.to; - if (edge.to.options.mass > edge.from.options.mass) { - parentNode = edge.to; - childNode = edge.from; - } + // we move the remaining nodes, edges and nodeIndices to the previous sector. + // This previous sector is the one we will reactivate + this._mergeThisWithFrozen(previousSector); - if (childNode.dynamicEdgesLength == 1) { - this._addToCluster(parentNode,childNode,false); - } - else if (parentNode.dynamicEdgesLength == 1) { - this._addToCluster(childNode,parentNode,false); - } - } - } - } - } - } - }; + // the previously active (frozen) sector now has all the data from the currently active sector. + // we can now delete the active sector. + this._deleteActiveSector(sector); - /** - * This function forces the network to cluster all nodes with only one connecting edge to their - * connected node. - * - * @private - */ - exports._forceClustersByZoom = function() { - for (var nodeId in this.nodes) { - // another node could have absorbed this child. - if (this.nodes.hasOwnProperty(nodeId)) { - var childNode = this.nodes[nodeId]; + // we activate the previously active (and currently frozen) sector. + this._activateSector(previousSector); - // the edges can be swallowed by another decrease - if (childNode.dynamicEdgesLength == 1 && childNode.dynamicEdges.length != 0) { - var edge = childNode.dynamicEdges[0]; - var parentNode = (edge.toId == childNode.id) ? this.nodes[edge.fromId] : this.nodes[edge.toId]; + // we load the references from the newly active sector into the global references + this._switchToSector(previousSector); - // group to the largest node - if (childNode.id != parentNode.id) { - if (parentNode.options.mass > childNode.options.mass) { - this._addToCluster(parentNode,childNode,true); - } - else { - this._addToCluster(childNode,parentNode,true); - } - } - } + // we forget the previously active sector because we reverted to the one before + this._forgetLastSector(); + + // finally, we update the node index list. + this._updateNodeIndexList(); + + // we refresh the list with calulation nodes and calculation node indices. + this._updateCalculationNodes(); } } }; /** - * To keep the nodes of roughly equal size we normalize the cluster levels. - * This function clusters a node to its smallest connected neighbour. + * This runs a function in all active sectors. This is used in _redraw() and the _initializeForceCalculation(). * - * @param node + * @param {String} runFunction | This is the NAME of a function we want to call in all active sectors + * | we dont pass the function itself because then the "this" is the window object + * | instead of the Network object + * @param {*} [argument] | Optional: arguments to pass to the runFunction * @private */ - exports._clusterToSmallestNeighbour = function(node) { - var smallestNeighbour = -1; - var smallestNeighbourNode = null; - for (var i = 0; i < node.dynamicEdges.length; i++) { - if (node.dynamicEdges[i] !== undefined) { - var neighbour = null; - if (node.dynamicEdges[i].fromId != node.id) { - neighbour = node.dynamicEdges[i].from; - } - else if (node.dynamicEdges[i].toId != node.id) { - neighbour = node.dynamicEdges[i].to; - } - - - if (neighbour != null && smallestNeighbour > neighbour.clusterSessions.length) { - smallestNeighbour = neighbour.clusterSessions.length; - smallestNeighbourNode = neighbour; + exports._doInAllActiveSectors = function(runFunction,argument) { + if (argument === undefined) { + for (var sector in this.sectors["active"]) { + if (this.sectors["active"].hasOwnProperty(sector)) { + // switch the global references to those of this sector + this._switchToActiveSector(sector); + this[runFunction](); } } } - - if (neighbour != null && this.nodes[neighbour.id] !== undefined) { - this._addToCluster(neighbour, node, true); + else { + for (var sector in this.sectors["active"]) { + if (this.sectors["active"].hasOwnProperty(sector)) { + // switch the global references to those of this sector + this._switchToActiveSector(sector); + var args = Array.prototype.splice.call(arguments, 1); + if (args.length > 1) { + this[runFunction](args[0],args[1]); + } + else { + this[runFunction](argument); + } + } + } } + // we revert the global references back to our active sector + this._loadLatestSector(); }; /** - * This function forms clusters from hubs, it loops over all nodes + * This runs a function in all active sectors. This is used in _redraw() and the _initializeForceCalculation(). * - * @param {Boolean} force | Disregard zoom level - * @param {Boolean} onlyEqual | This only clusters a hub with a specific number of edges + * @param {String} runFunction | This is the NAME of a function we want to call in all active sectors + * | we dont pass the function itself because then the "this" is the window object + * | instead of the Network object + * @param {*} [argument] | Optional: arguments to pass to the runFunction * @private */ - exports._formClustersByHub = function(force, onlyEqual) { - // we loop over all nodes in the list - for (var nodeId in this.nodes) { - // we check if it is still available since it can be used by the clustering in this loop - if (this.nodes.hasOwnProperty(nodeId)) { - this._formClusterFromHub(this.nodes[nodeId],force,onlyEqual); + exports._doInSupportSector = function(runFunction,argument) { + if (argument === undefined) { + this._switchToSupportSector(); + this[runFunction](); + } + else { + this._switchToSupportSector(); + var args = Array.prototype.splice.call(arguments, 1); + if (args.length > 1) { + this[runFunction](args[0],args[1]); + } + else { + this[runFunction](argument); } } + // we revert the global references back to our active sector + this._loadLatestSector(); }; + /** - * This function forms a cluster from a specific preselected hub node + * This runs a function in all frozen sectors. This is used in the _redraw(). * - * @param {Node} hubNode | the node we will cluster as a hub - * @param {Boolean} force | Disregard zoom level - * @param {Boolean} onlyEqual | This only clusters a hub with a specific number of edges - * @param {Number} [absorptionSizeOffset] | + * @param {String} runFunction | This is the NAME of a function we want to call in all active sectors + * | we don't pass the function itself because then the "this" is the window object + * | instead of the Network object + * @param {*} [argument] | Optional: arguments to pass to the runFunction * @private */ - exports._formClusterFromHub = function(hubNode, force, onlyEqual, absorptionSizeOffset) { - if (absorptionSizeOffset === undefined) { - absorptionSizeOffset = 0; - } - // we decide if the node is a hub - if ((hubNode.dynamicEdgesLength >= this.hubThreshold && onlyEqual == false) || - (hubNode.dynamicEdgesLength == this.hubThreshold && onlyEqual == true)) { - // initialize variables - var dx,dy,length; - var minLength = this.constants.clustering.clusterEdgeThreshold/this.scale; - var allowCluster = false; - - // we create a list of edges because the dynamicEdges change over the course of this loop - var edgesIdarray = []; - var amountOfInitialEdges = hubNode.dynamicEdges.length; - for (var j = 0; j < amountOfInitialEdges; j++) { - edgesIdarray.push(hubNode.dynamicEdges[j].id); - } - - // if the hub clustering is not forces, we check if one of the edges connected - // to a cluster is small enough based on the constants.clustering.clusterEdgeThreshold - if (force == false) { - allowCluster = false; - for (j = 0; j < amountOfInitialEdges; j++) { - var edge = this.edges[edgesIdarray[j]]; - if (edge !== undefined) { - if (edge.connected) { - if (edge.toId != edge.fromId) { - dx = (edge.to.x - edge.from.x); - dy = (edge.to.y - edge.from.y); - length = Math.sqrt(dx * dx + dy * dy); - - if (length < minLength) { - allowCluster = true; - break; - } - } - } - } + exports._doInAllFrozenSectors = function(runFunction,argument) { + if (argument === undefined) { + for (var sector in this.sectors["frozen"]) { + if (this.sectors["frozen"].hasOwnProperty(sector)) { + // switch the global references to those of this sector + this._switchToFrozenSector(sector); + this[runFunction](); } } - - // start the clustering if allowed - if ((!force && allowCluster) || force) { - // we loop over all edges INITIALLY connected to this hub - for (j = 0; j < amountOfInitialEdges; j++) { - edge = this.edges[edgesIdarray[j]]; - // the edge can be clustered by this function in a previous loop - if (edge !== undefined) { - var childNode = this.nodes[(edge.fromId == hubNode.id) ? edge.toId : edge.fromId]; - // we do not want hubs to merge with other hubs nor do we want to cluster itself. - if ((childNode.dynamicEdges.length <= (this.hubThreshold + absorptionSizeOffset)) && - (childNode.id != hubNode.id)) { - this._addToCluster(hubNode,childNode,force); - } + } + else { + for (var sector in this.sectors["frozen"]) { + if (this.sectors["frozen"].hasOwnProperty(sector)) { + // switch the global references to those of this sector + this._switchToFrozenSector(sector); + var args = Array.prototype.splice.call(arguments, 1); + if (args.length > 1) { + this[runFunction](args[0],args[1]); + } + else { + this[runFunction](argument); } } } } + this._loadLatestSector(); }; - /** - * This function adds the child node to the parent node, creating a cluster if it is not already. + * This runs a function in all sectors. This is used in the _redraw(). * - * @param {Node} parentNode | this is the node that will house the child node - * @param {Node} childNode | this node will be deleted from the global this.nodes and stored in the parent node - * @param {Boolean} force | true will only update the remainingEdges at the very end of the clustering, ensuring single level collapse + * @param {String} runFunction | This is the NAME of a function we want to call in all active sectors + * | we don't pass the function itself because then the "this" is the window object + * | instead of the Network object + * @param {*} [argument] | Optional: arguments to pass to the runFunction * @private */ - exports._addToCluster = function(parentNode, childNode, force) { - // join child node in the parent node - parentNode.containedNodes[childNode.id] = childNode; - - // manage all the edges connected to the child and parent nodes - for (var i = 0; i < childNode.dynamicEdges.length; i++) { - var edge = childNode.dynamicEdges[i]; - if (edge.toId == parentNode.id || edge.fromId == parentNode.id) { // edge connected to parentNode - this._addToContainedEdges(parentNode,childNode,edge); + exports._doInAllSectors = function(runFunction,argument) { + var args = Array.prototype.splice.call(arguments, 1); + if (argument === undefined) { + this._doInAllActiveSectors(runFunction); + this._doInAllFrozenSectors(runFunction); + } + else { + if (args.length > 1) { + this._doInAllActiveSectors(runFunction,args[0],args[1]); + this._doInAllFrozenSectors(runFunction,args[0],args[1]); } else { - this._connectEdgeToCluster(parentNode,childNode,edge); + this._doInAllActiveSectors(runFunction,argument); + this._doInAllFrozenSectors(runFunction,argument); } } - // a contained node has no dynamic edges. - childNode.dynamicEdges = []; + }; - // remove circular edges from clusters - this._containCircularEdgesFromNode(parentNode,childNode); + /** + * This clears the nodeIndices list. We cannot use this.nodeIndices = [] because we would break the link with the + * active sector. Thus we clear the nodeIndices in the active sector, then reconnect the this.nodeIndices to it. + * + * @private + */ + exports._clearNodeIndexList = function() { + var sector = this._sector(); + this.sectors["active"][sector]["nodeIndices"] = []; + this.nodeIndices = this.sectors["active"][sector]["nodeIndices"]; + }; - // remove the childNode from the global nodes object - delete this.nodes[childNode.id]; - // update the properties of the child and parent - var massBefore = parentNode.options.mass; - childNode.clusterSession = this.clusterSession; - parentNode.options.mass += childNode.options.mass; - parentNode.clusterSize += childNode.clusterSize; - parentNode.options.fontSize = Math.min(this.constants.clustering.maxFontSize, this.constants.nodes.fontSize + this.constants.clustering.fontSizeMultiplier*parentNode.clusterSize); + /** + * Draw the encompassing sector node + * + * @param ctx + * @param sectorType + * @private + */ + exports._drawSectorNodes = function(ctx,sectorType) { + var minY = 1e9, maxY = -1e9, minX = 1e9, maxX = -1e9, node; + for (var sector in this.sectors[sectorType]) { + if (this.sectors[sectorType].hasOwnProperty(sector)) { + if (this.sectors[sectorType][sector]["drawingNode"] !== undefined) { - // keep track of the clustersessions so we can open the cluster up as it has been formed. - if (parentNode.clusterSessions[parentNode.clusterSessions.length - 1] != this.clusterSession) { - parentNode.clusterSessions.push(this.clusterSession); - } + this._switchToSector(sector,sectorType); - // forced clusters only open from screen size and double tap - if (force == true) { - // parentNode.formationScale = Math.pow(1 - (1.0/11.0),this.clusterSession+3); - parentNode.formationScale = 0; - } - else { - parentNode.formationScale = this.scale; // The latest child has been added on this scale + minY = 1e9; maxY = -1e9; minX = 1e9; maxX = -1e9; + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + node = this.nodes[nodeId]; + node.resize(ctx); + if (minX > node.x - 0.5 * node.width) {minX = node.x - 0.5 * node.width;} + if (maxX < node.x + 0.5 * node.width) {maxX = node.x + 0.5 * node.width;} + if (minY > node.y - 0.5 * node.height) {minY = node.y - 0.5 * node.height;} + if (maxY < node.y + 0.5 * node.height) {maxY = node.y + 0.5 * node.height;} + } + } + node = this.sectors[sectorType][sector]["drawingNode"]; + node.x = 0.5 * (maxX + minX); + node.y = 0.5 * (maxY + minY); + node.width = 2 * (node.x - minX); + node.height = 2 * (node.y - minY); + node.radius = Math.sqrt(Math.pow(0.5*node.width,2) + Math.pow(0.5*node.height,2)); + node.setScale(this.scale); + node._drawCircle(ctx); + } + } } + }; - // recalculate the size of the node on the next time the node is rendered - parentNode.clearSizeCache(); - - // set the pop-out scale for the childnode - parentNode.containedNodes[childNode.id].formationScale = parentNode.formationScale; - - // nullify the movement velocity of the child, this is to avoid hectic behaviour - childNode.clearVelocity(); + exports._drawAllSectorNodes = function(ctx) { + this._drawSectorNodes(ctx,"frozen"); + this._drawSectorNodes(ctx,"active"); + this._loadLatestSector(); + }; - // the mass has altered, preservation of energy dictates the velocity to be updated - parentNode.updateVelocity(massBefore); - // restart the simulation to reorganise all nodes - this.moving = true; - }; +/***/ }, +/* 52 */ +/***/ function(module, exports, __webpack_require__) { + var Node = __webpack_require__(36); /** - * This function will apply the changes made to the remainingEdges during the formation of the clusters. - * This is a seperate function to allow for level-wise collapsing of the node barnesHutTree. - * It has to be called if a level is collapsed. It is called by _formClusters(). + * This function can be called from the _doInAllSectors function + * + * @param object + * @param overlappingNodes * @private */ - exports._updateDynamicEdges = function() { - for (var i = 0; i < this.nodeIndices.length; i++) { - var node = this.nodes[this.nodeIndices[i]]; - node.dynamicEdgesLength = node.dynamicEdges.length; - - // this corrects for multiple edges pointing at the same other node - var correction = 0; - if (node.dynamicEdgesLength > 1) { - for (var j = 0; j < node.dynamicEdgesLength - 1; j++) { - var edgeToId = node.dynamicEdges[j].toId; - var edgeFromId = node.dynamicEdges[j].fromId; - for (var k = j+1; k < node.dynamicEdgesLength; k++) { - if ((node.dynamicEdges[k].toId == edgeToId && node.dynamicEdges[k].fromId == edgeFromId) || - (node.dynamicEdges[k].fromId == edgeToId && node.dynamicEdges[k].toId == edgeFromId)) { - correction += 1; - } - } + exports._getNodesOverlappingWith = function(object, overlappingNodes) { + var nodes = this.nodes; + for (var nodeId in nodes) { + if (nodes.hasOwnProperty(nodeId)) { + if (nodes[nodeId].isOverlappingWith(object)) { + overlappingNodes.push(nodeId); } } - node.dynamicEdgesLength -= correction; } }; + /** + * retrieve all nodes overlapping with given object + * @param {Object} object An object with parameters left, top, right, bottom + * @return {Number[]} An array with id's of the overlapping nodes + * @private + */ + exports._getAllNodesOverlappingWith = function (object) { + var overlappingNodes = []; + this._doInAllActiveSectors("_getNodesOverlappingWith",object,overlappingNodes); + return overlappingNodes; + }; + /** - * This adds an edge from the childNode to the contained edges of the parent node + * Return a position object in canvasspace from a single point in screenspace * - * @param parentNode | Node object - * @param childNode | Node object - * @param edge | Edge object + * @param pointer + * @returns {{left: number, top: number, right: number, bottom: number}} * @private */ - exports._addToContainedEdges = function(parentNode, childNode, edge) { - // create an array object if it does not yet exist for this childNode - if (!(parentNode.containedEdges.hasOwnProperty(childNode.id))) { - parentNode.containedEdges[childNode.id] = [] - } - // add this edge to the list - parentNode.containedEdges[childNode.id].push(edge); - - // remove the edge from the global edges object - delete this.edges[edge.id]; + exports._pointerToPositionObject = function(pointer) { + var x = this._XconvertDOMtoCanvas(pointer.x); + var y = this._YconvertDOMtoCanvas(pointer.y); - // remove the edge from the parent object - for (var i = 0; i < parentNode.dynamicEdges.length; i++) { - if (parentNode.dynamicEdges[i].id == edge.id) { - parentNode.dynamicEdges.splice(i,1); - break; - } - } + return { + left: x, + top: y, + right: x, + bottom: y + }; }; + /** - * This function connects an edge that was connected to a child node to the parent node. - * It keeps track of which nodes it has been connected to with the originalId array. + * Get the top node at the a specific point (like a click) * - * @param {Node} parentNode | Node object - * @param {Node} childNode | Node object - * @param {Edge} edge | Edge object + * @param {{x: Number, y: Number}} pointer + * @return {Node | null} node * @private */ - exports._connectEdgeToCluster = function(parentNode, childNode, edge) { - // handle circular edges - if (edge.toId == edge.fromId) { - this._addToContainedEdges(parentNode, childNode, edge); + exports._getNodeAt = function (pointer) { + // we first check if this is an navigation controls element + var positionObject = this._pointerToPositionObject(pointer); + var overlappingNodes = this._getAllNodesOverlappingWith(positionObject); + + // if there are overlapping nodes, select the last one, this is the + // one which is drawn on top of the others + if (overlappingNodes.length > 0) { + return this.nodes[overlappingNodes[overlappingNodes.length - 1]]; } else { - if (edge.toId == childNode.id) { // edge connected to other node on the "to" side - edge.originalToId.push(childNode.id); - edge.to = parentNode; - edge.toId = parentNode.id; - } - else { // edge connected to other node with the "from" side - - edge.originalFromId.push(childNode.id); - edge.from = parentNode; - edge.fromId = parentNode.id; - } - - this._addToReroutedEdges(parentNode,childNode,edge); + return null; } }; /** - * If a node is connected to itself, a circular edge is drawn. When clustering we want to contain - * these edges inside of the cluster. - * - * @param parentNode - * @param childNode - * @private - */ - exports._containCircularEdgesFromNode = function(parentNode, childNode) { - // manage all the edges connected to the child and parent nodes - for (var i = 0; i < parentNode.dynamicEdges.length; i++) { - var edge = parentNode.dynamicEdges[i]; - // handle circular edges - if (edge.toId == edge.fromId) { - this._addToContainedEdges(parentNode, childNode, edge); + * 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.edges; + for (var edgeId in edges) { + if (edges.hasOwnProperty(edgeId)) { + if (edges[edgeId].isOverlappingWith(object)) { + overlappingEdges.push(edgeId); + } } } }; /** - * This adds an edge from the childNode to the rerouted edges of the parent node - * - * @param parentNode | Node object - * @param childNode | Node object - * @param edge | Edge object + * 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._addToReroutedEdges = function(parentNode, childNode, edge) { - // create an array object if it does not yet exist for this childNode - // we store the edge in the rerouted edges so we can restore it when the cluster pops open - if (!(parentNode.reroutedEdges.hasOwnProperty(childNode.id))) { - parentNode.reroutedEdges[childNode.id] = []; - } - parentNode.reroutedEdges[childNode.id].push(edge); - - // this edge becomes part of the dynamicEdges of the cluster node - parentNode.dynamicEdges.push(edge); - }; - - + exports._getAllEdgesOverlappingWith = function (object) { + var overlappingEdges = []; + this._doInAllActiveSectors("_getEdgesOverlappingWith",object,overlappingEdges); + return overlappingEdges; + }; /** - * This function connects an edge that was connected to a cluster node back to the child node. + * 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 parentNode | Node object - * @param childNode | Node object + * @param pointer + * @returns {null} * @private */ - exports._connectEdgeBackToChild = function(parentNode, childNode) { - if (parentNode.reroutedEdges.hasOwnProperty(childNode.id)) { - for (var i = 0; i < parentNode.reroutedEdges[childNode.id].length; i++) { - var edge = parentNode.reroutedEdges[childNode.id][i]; - if (edge.originalFromId[edge.originalFromId.length-1] == childNode.id) { - edge.originalFromId.pop(); - edge.fromId = childNode.id; - edge.from = childNode; - } - else { - edge.originalToId.pop(); - edge.toId = childNode.id; - edge.to = childNode; - } - - // append this edge to the list of edges connecting to the childnode - childNode.dynamicEdges.push(edge); + exports._getEdgeAt = function(pointer) { + var positionObject = this._pointerToPositionObject(pointer); + var overlappingEdges = this._getAllEdgesOverlappingWith(positionObject); - // remove the edge from the parent object - for (var j = 0; j < parentNode.dynamicEdges.length; j++) { - if (parentNode.dynamicEdges[j].id == edge.id) { - parentNode.dynamicEdges.splice(j,1); - break; - } - } - } - // remove the entry from the rerouted edges - delete parentNode.reroutedEdges[childNode.id]; + if (overlappingEdges.length > 0) { + return this.edges[overlappingEdges[overlappingEdges.length - 1]]; + } + else { + return null; } }; /** - * When loops are clustered, an edge can be both in the rerouted array and the contained array. - * This function is called last to verify that all edges in dynamicEdges are in fact connected to the - * parentNode + * Add object to the selection array. * - * @param parentNode | Node object + * @param obj * @private */ - exports._validateEdges = function(parentNode) { - for (var i = 0; i < parentNode.dynamicEdges.length; i++) { - var edge = parentNode.dynamicEdges[i]; - if (parentNode.id != edge.toId && parentNode.id != edge.fromId) { - parentNode.dynamicEdges.splice(i,1); - } + exports._addToSelection = function(obj) { + if (obj instanceof Node) { + this.selectionObj.nodes[obj.id] = obj; + } + else { + this.selectionObj.edges[obj.id] = obj; } }; - /** - * This function released the contained edges back into the global domain and puts them back into the - * dynamic edges of both parent and child. + * Add object to the selection array. * - * @param {Node} parentNode | - * @param {Node} childNode | + * @param obj * @private */ - exports._releaseContainedEdges = function(parentNode, childNode) { - for (var i = 0; i < parentNode.containedEdges[childNode.id].length; i++) { - var edge = parentNode.containedEdges[childNode.id][i]; - - // put the edge back in the global edges object - this.edges[edge.id] = edge; - - // put the edge back in the dynamic edges of the child and parent - childNode.dynamicEdges.push(edge); - parentNode.dynamicEdges.push(edge); + exports._addToHover = function(obj) { + if (obj instanceof Node) { + this.hoverObj.nodes[obj.id] = obj; + } + else { + this.hoverObj.edges[obj.id] = obj; } - // remove the entry from the contained edges - delete parentNode.containedEdges[childNode.id]; - }; - - - // ------------------- UTILITY FUNCTIONS ---------------------------- // - - /** - * This updates the node labels for all nodes (for debugging purposes) + * Remove a single option from selection. + * + * @param {Object} obj + * @private */ - exports.updateLabels = function() { - var nodeId; - // update node labels - for (nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - var node = this.nodes[nodeId]; - if (node.clusterSize > 1) { - node.label = "[".concat(String(node.clusterSize),"]"); - } - } + exports._removeFromSelection = function(obj) { + if (obj instanceof Node) { + delete this.selectionObj.nodes[obj.id]; } - - // update node labels - for (nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - node = this.nodes[nodeId]; - if (node.clusterSize == 1) { - if (node.originalLabel !== undefined) { - node.label = node.originalLabel; - } - else { - node.label = String(node.id); - } - } - } + else { + delete this.selectionObj.edges[obj.id]; } - - // /* Debug Override */ - // for (nodeId in this.nodes) { - // if (this.nodes.hasOwnProperty(nodeId)) { - // node = this.nodes[nodeId]; - // node.label = String(node.level); - // } - // } - }; - /** - * We want to keep the cluster level distribution rather small. This means we do not want unclustered nodes - * if the rest of the nodes are already a few cluster levels in. - * To fix this we use this function. It determines the min and max cluster level and sends nodes that have not - * clustered enough to the clusterToSmallestNeighbours function. + * Unselect all. The selectionObj is useful for this. + * + * @param {Boolean} [doNotTrigger] | ignore trigger + * @private */ - exports.normalizeClusterLevels = function() { - var maxLevel = 0; - var minLevel = 1e9; - var clusterLevel = 0; - var nodeId; - - // we loop over all nodes in the list - for (nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - clusterLevel = this.nodes[nodeId].clusterSessions.length; - if (maxLevel < clusterLevel) {maxLevel = clusterLevel;} - if (minLevel > clusterLevel) {minLevel = clusterLevel;} - } + exports._unselectAll = function(doNotTrigger) { + if (doNotTrigger === undefined) { + doNotTrigger = false; } - - if (maxLevel - minLevel > this.constants.clustering.clusterLevelDifference) { - var amountOfNodes = this.nodeIndices.length; - var targetLevel = maxLevel - this.constants.clustering.clusterLevelDifference; - // we loop over all nodes in the list - for (nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - if (this.nodes[nodeId].clusterSessions.length < targetLevel) { - this._clusterToSmallestNeighbour(this.nodes[nodeId]); - } - } + for(var nodeId in this.selectionObj.nodes) { + if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { + this.selectionObj.nodes[nodeId].unselect(); } - this._updateNodeIndexList(); - this._updateDynamicEdges(); - // if a cluster was formed, we increase the clusterSession - if (this.nodeIndices.length != amountOfNodes) { - this.clusterSession += 1; + } + 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()); + } + }; /** - * This function determines if the cluster we want to decluster is in the active area - * this means around the zoom center + * Unselect all clusters. The selectionObj is useful for this. * - * @param {Node} node - * @returns {boolean} + * @param {Boolean} [doNotTrigger] | ignore trigger * @private */ - exports._nodeInActiveArea = function(node) { - return ( - Math.abs(node.x - this.areaCenter.x) <= this.constants.clustering.activeAreaBoxSize/this.scale - && - Math.abs(node.y - this.areaCenter.y) <= this.constants.clustering.activeAreaBoxSize/this.scale - ) - }; - + exports._unselectClusters = function(doNotTrigger) { + if (doNotTrigger === undefined) { + doNotTrigger = false; + } - /** - * This is an adaptation of the original repositioning function. This is called if the system is clustered initially - * It puts large clusters away from the center and randomizes the order. - * - */ - exports.repositionNodes = function() { - for (var i = 0; i < this.nodeIndices.length; i++) { - var node = this.nodes[this.nodeIndices[i]]; - if ((node.xFixed == false || node.yFixed == false)) { - var radius = 10 * 0.1*this.nodeIndices.length * Math.min(100,node.options.mass); - var angle = 2 * Math.PI * Math.random(); - if (node.xFixed == false) {node.x = radius * Math.cos(angle);} - if (node.yFixed == false) {node.y = radius * Math.sin(angle);} - this._repositionBezierNodes(node); + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + if (this.selectionObj.nodes[nodeId].clusterSize > 1) { + this.selectionObj.nodes[nodeId].unselect(); + this._removeFromSelection(this.selectionObj.nodes[nodeId]); + } } } + + if (doNotTrigger == false) { + this.emit('select', this.getSelection()); + } }; /** - * We 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%) + * return the number of selected nodes * + * @returns {number} * @private */ - exports._getHubSize = function() { - var average = 0; - var averageSquared = 0; - var hubCounter = 0; - var largestHub = 0; - - for (var i = 0; i < this.nodeIndices.length; i++) { - - var node = this.nodes[this.nodeIndices[i]]; - if (node.dynamicEdgesLength > largestHub) { - largestHub = node.dynamicEdgesLength; + exports._getSelectedNodeCount = function() { + var count = 0; + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + count += 1; } - average += node.dynamicEdgesLength; - averageSquared += Math.pow(node.dynamicEdgesLength,2); - hubCounter += 1; - } - average = average / hubCounter; - averageSquared = averageSquared / hubCounter; - - var variance = averageSquared - Math.pow(average,2); - - var standardDeviation = Math.sqrt(variance); - - this.hubThreshold = Math.floor(average + 2*standardDeviation); - - // always have at least one to cluster - if (this.hubThreshold > largestHub) { - this.hubThreshold = largestHub; } - - // console.log("average",average,"averageSQ",averageSquared,"var",variance,"std",standardDeviation); - // console.log("hubThreshold:",this.hubThreshold); + return count; }; - /** - * We reduce the amount of "extension nodes" or chains. These are not quickly clustered with the outliers and hubs methods - * with this amount we can cluster specifically on these chains. + * return the selected node * - * @param {Number} fraction | between 0 and 1, the percentage of chains to reduce + * @returns {number} * @private */ - exports._reduceAmountOfChains = function(fraction) { - this.hubThreshold = 2; - var reduceAmount = Math.floor(this.nodeIndices.length * fraction); - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - if (this.nodes[nodeId].dynamicEdgesLength == 2 && this.nodes[nodeId].dynamicEdges.length >= 2) { - if (reduceAmount > 0) { - this._formClusterFromHub(this.nodes[nodeId],true,true,1); - reduceAmount -= 1; - } - } + exports._getSelectedNode = function() { + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + return this.selectionObj.nodes[nodeId]; } } + return null; }; /** - * We get the amount of "extension nodes" or chains. These are not quickly clustered with the outliers and hubs methods - * with this amount we can cluster specifically on these chains. + * return the selected edge * + * @returns {number} * @private */ - exports._getChainFraction = function() { - var chains = 0; - var total = 0; - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - if (this.nodes[nodeId].dynamicEdgesLength == 2 && this.nodes[nodeId].dynamicEdges.length >= 2) { - chains += 1; - } - total += 1; + exports._getSelectedEdge = function() { + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + return this.selectionObj.edges[edgeId]; } } - return chains/total; + return null; }; -/***/ }, -/* 56 */ -/***/ function(module, exports, __webpack_require__) { - - var util = __webpack_require__(1); - /** - * Creation of the SectorMixin var. + * return the number of selected edges * - * This contains all the functions the Network object can use to employ the sector system. - * The sector system is always used by Network, though the benefits only apply to the use of clustering. - * If clustering is not used, there is no overhead except for a duplicate object with references to nodes and edges. + * @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; + }; + /** - * This function is only called by the setData function of the Network object. - * This loads the global references into the active sector. This initializes the sector. + * return the number of selected objects. * + * @returns {number} * @private */ - exports._putDataInSector = function() { - this.sectors["active"][this._sector()].nodes = this.nodes; - this.sectors["active"][this._sector()].edges = this.edges; - this.sectors["active"][this._sector()].nodeIndices = this.nodeIndices; + exports._getSelectedObjectCount = function() { + var count = 0; + for(var nodeId in this.selectionObj.nodes) { + if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { + count += 1; + } + } + for(var edgeId in this.selectionObj.edges) { + if(this.selectionObj.edges.hasOwnProperty(edgeId)) { + count += 1; + } + } + return count; }; - /** - * /** - * This function sets the global references to nodes, edges and nodeIndices back to - * those of the supplied (active) sector. If a type is defined, do the specific type + * Check if anything is selected * - * @param {String} sectorId - * @param {String} [sectorType] | "active" or "frozen" + * @returns {boolean} * @private */ - exports._switchToSector = function(sectorId, sectorType) { - if (sectorType === undefined || sectorType == "active") { - this._switchToActiveSector(sectorId); + exports._selectionIsEmpty = function() { + for(var nodeId in this.selectionObj.nodes) { + if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { + return false; + } } - else { - this._switchToFrozenSector(sectorId); + for(var edgeId in this.selectionObj.edges) { + if(this.selectionObj.edges.hasOwnProperty(edgeId)) { + return false; + } } + return true; }; /** - * This function sets the global references to nodes, edges and nodeIndices back to - * those of the supplied active sector. + * check if one of the selected nodes is a cluster. * - * @param sectorId + * @returns {boolean} * @private */ - exports._switchToActiveSector = function(sectorId) { - this.nodeIndices = this.sectors["active"][sectorId]["nodeIndices"]; - this.nodes = this.sectors["active"][sectorId]["nodes"]; - this.edges = this.sectors["active"][sectorId]["edges"]; + exports._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; }; - /** - * This function sets the global references to nodes, edges and nodeIndices back to - * those of the supplied active sector. + * select the edges connected to the node that is being selected * + * @param {Node} node * @private */ - exports._switchToSupportSector = function() { - this.nodeIndices = this.sectors["support"]["nodeIndices"]; - this.nodes = this.sectors["support"]["nodes"]; - this.edges = this.sectors["support"]["edges"]; + exports._selectConnectedEdges = function(node) { + for (var i = 0; i < node.dynamicEdges.length; i++) { + var edge = node.dynamicEdges[i]; + edge.select(); + this._addToSelection(edge); + } }; - /** - * This function sets the global references to nodes, edges and nodeIndices back to - * those of the supplied frozen sector. + * select the edges connected to the node that is being selected * - * @param sectorId + * @param {Node} node * @private */ - exports._switchToFrozenSector = function(sectorId) { - this.nodeIndices = this.sectors["frozen"][sectorId]["nodeIndices"]; - this.nodes = this.sectors["frozen"][sectorId]["nodes"]; - this.edges = this.sectors["frozen"][sectorId]["edges"]; + exports._hoverConnectedEdges = function(node) { + for (var i = 0; i < node.dynamicEdges.length; i++) { + var edge = node.dynamicEdges[i]; + edge.hover = true; + this._addToHover(edge); + } }; /** - * This function sets the global references to nodes, edges and nodeIndices back to - * those of the currently active sector. + * unselect the edges connected to the node that is being selected * + * @param {Node} node * @private */ - exports._loadLatestSector = function() { - this._switchToSector(this._sector()); + exports._unselectConnectedEdges = function(node) { + for (var i = 0; i < node.dynamicEdges.length; i++) { + var edge = node.dynamicEdges[i]; + edge.unselect(); + this._removeFromSelection(edge); + } }; + + /** - * This function returns the currently active sector 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 * - * @returns {String} + * @param {Node || Edge} object + * @param {Boolean} append + * @param {Boolean} [doNotTrigger] | ignore trigger * @private */ - exports._sector = function() { - return this.activeSector[this.activeSector.length-1]; + exports._selectObject = function(object, append, doNotTrigger, highlightEdges) { + if (doNotTrigger === undefined) { + doNotTrigger = false; + } + if (highlightEdges === undefined) { + highlightEdges = true; + } + + if (this._selectionIsEmpty() == false && append == false && this.forceAppendSelection == false) { + this._unselectAll(true); + } + + if (object.selected == false) { + object.select(); + this._addToSelection(object); + if (object instanceof Node && this.blockConnectingEdgeSelection == false && highlightEdges == true) { + this._selectConnectedEdges(object); + } + } + else { + object.unselect(); + this._removeFromSelection(object); + } + + if (doNotTrigger == false) { + this.emit('select', this.getSelection()); + } }; /** - * This function returns the previously active sector 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 * - * @returns {String} + * @param {Node || Edge} object * @private */ - exports._previousSector = function() { - if (this.activeSector.length > 1) { - return this.activeSector[this.activeSector.length-2]; - } - else { - throw new TypeError('there are not enough sectors in the this.activeSector array.'); + exports._blurObject = function(object) { + if (object.hover == true) { + object.hover = false; + this.emit("blurNode",{node:object.id}); } }; - /** - * We add the active sector at the end of the this.activeSector array - * This ensures it is the currently active sector returned by _sector() and it reaches the top - * of the activeSector stack. When we reverse our steps we move from the end to the beginning of this stack. + * This 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 newId + * @param {Node || Edge} object * @private */ - exports._setActiveSector = function(newId) { - this.activeSector.push(newId); + exports._hoverObject = function(object) { + if (object.hover == false) { + object.hover = true; + this._addToHover(object); + if (object instanceof Node) { + this.emit("hoverNode",{node:object.id}); + } + } + if (object instanceof Node) { + this._hoverConnectedEdges(object); + } }; /** - * We remove the currently active sector id from the active sector stack. This happens when - * we reactivate the previously active sector + * 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._forgetLastSector = function() { - this.activeSector.pop(); + exports._handleTouch = function(pointer) { }; /** - * This function creates a new active sector with the supplied newId. This newId - * is the expanding node id. + * handles the selection part of the tap; * - * @param {String} newId | Id of the new active sector + * @param {Object} pointer * @private */ - exports._createNewSector = function(newId) { - // create the new sector - this.sectors["active"][newId] = {"nodes":{}, - "edges":{}, - "nodeIndices":[], - "formationScale": this.scale, - "drawingNode": undefined}; - - // create the new sector render node. This gives visual feedback that you are in a new sector. - this.sectors["active"][newId]['drawingNode'] = new Node( - {id:newId, - color: { - background: "#eaefef", - border: "495c5e" - } - },{},{},this.constants); - this.sectors["active"][newId]['drawingNode'].clusterSize = 2; + exports._handleTap = function(pointer) { + var node = this._getNodeAt(pointer); + if (node != null) { + this._selectObject(node,false); + } + else { + var edge = this._getEdgeAt(pointer); + if (edge != null) { + this._selectObject(edge,false); + } + else { + this._unselectAll(); + } + } + this.emit("click", this.getSelection()); + this._redraw(); }; /** - * This function removes the currently active sector. This is called when we create a new - * active sector. + * handles the selection part of the double tap and opens a cluster if needed * - * @param {String} sectorId | Id of the active sector that will be removed + * @param {Object} pointer * @private */ - exports._deleteActiveSector = function(sectorId) { - delete this.sectors["active"][sectorId]; + exports._handleDoubleTap = function(pointer) { + var node = this._getNodeAt(pointer); + if (node != null && node !== undefined) { + // we reset the areaCenter here so the opening of the node will occur + this.areaCenter = {"x" : this._XconvertDOMtoCanvas(pointer.x), + "y" : this._YconvertDOMtoCanvas(pointer.y)}; + this.openCluster(node); + } + this.emit("doubleClick", this.getSelection()); }; /** - * This function removes the currently active sector. This is called when we reactivate - * the previously active sector. + * Handle the onHold selection part * - * @param {String} sectorId | Id of the active sector that will be removed + * @param pointer * @private */ - exports._deleteFrozenSector = function(sectorId) { - delete this.sectors["frozen"][sectorId]; + exports._handleOnHold = function(pointer) { + var node = this._getNodeAt(pointer); + if (node != null) { + this._selectObject(node,true); + } + else { + var edge = this._getEdgeAt(pointer); + if (edge != null) { + this._selectObject(edge,true); + } + } + this._redraw(); }; /** - * Freezing an active sector means moving it from the "active" object to the "frozen" object. - * We copy the references, then delete the active entree. + * handle the onRelease event. These functions are here for the navigation controls module. * - * @param sectorId - * @private + * @private */ - exports._freezeSector = function(sectorId) { - // we move the set references from the active to the frozen stack. - this.sectors["frozen"][sectorId] = this.sectors["active"][sectorId]; + exports._handleOnRelease = function(pointer) { - // we have moved the sector data into the frozen set, we now remove it from the active set - this._deleteActiveSector(sectorId); }; + /** - * This is the reverse operation of _freezeSector. Activating means moving the sector from the "frozen" - * object to the "active" object. * - * @param sectorId - * @private + * retrieve the currently selected objects + * @return {{nodes: Array., edges: Array.}} selection */ - exports._activateSector = function(sectorId) { - // we move the set references from the frozen to the active stack. - this.sectors["active"][sectorId] = this.sectors["frozen"][sectorId]; - - // we have moved the sector data into the active set, we now remove it from the frozen stack - this._deleteFrozenSector(sectorId); + exports.getSelection = function() { + var nodeIds = this.getSelectedNodes(); + var edgeIds = this.getSelectedEdges(); + return {nodes:nodeIds, edges:edgeIds}; }; - /** - * This function merges the data from the currently active sector with a frozen sector. This is used - * in the process of reverting back to the previously active sector. - * The data that is placed in the frozen (the previously active) sector is the node that has been removed from it - * upon the creation of a new active sector. * - * @param sectorId - * @private + * retrieve the currently selected nodes + * @return {String[]} selection An array with the ids of the + * selected nodes. */ - exports._mergeThisWithFrozen = function(sectorId) { - // copy all nodes - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - this.sectors["frozen"][sectorId]["nodes"][nodeId] = this.nodes[nodeId]; - } - } - - // copy all edges (if not fully clustered, else there are no edges) - for (var edgeId in this.edges) { - if (this.edges.hasOwnProperty(edgeId)) { - this.sectors["frozen"][sectorId]["edges"][edgeId] = this.edges[edgeId]; + exports.getSelectedNodes = function() { + var idArray = []; + for(var nodeId in this.selectionObj.nodes) { + if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { + idArray.push(nodeId); } } - - // merge the nodeIndices - for (var i = 0; i < this.nodeIndices.length; i++) { - this.sectors["frozen"][sectorId]["nodeIndices"].push(this.nodeIndices[i]); - } + return idArray }; - /** - * This clusters the sector to one cluster. It was a single cluster before this process started so - * we revert to that state. The clusterToFit function with a maximum size of 1 node does this. * - * @private + * retrieve the currently selected edges + * @return {Array} selection An array with the ids of the + * selected nodes. */ - exports._collapseThisToSingleCluster = function() { - this.clusterToFit(1,false); + exports.getSelectedEdges = function() { + var idArray = []; + for(var edgeId in this.selectionObj.edges) { + if(this.selectionObj.edges.hasOwnProperty(edgeId)) { + idArray.push(edgeId); + } + } + return idArray; }; /** - * We create a new active sector from the node that we want to open. - * - * @param node - * @private + * select zero or more nodes + * @param {Number[] | String[]} selection An array with the ids of the + * selected nodes. */ - exports._addSector = function(node) { - // this is the currently active sector - var sector = this._sector(); + exports.setSelection = function(selection) { + var i, iMax, id; - // // this should allow me to select nodes from a frozen set. - // if (this.sectors['active'][sector]["nodes"].hasOwnProperty(node.id)) { - // console.log("the node is part of the active sector"); - // } - // else { - // console.log("I dont know what the fuck happened!!"); - // } + if (!selection || (selection.length == undefined)) + throw 'Selection must be an array with ids'; - // when we switch to a new sector, we remove the node that will be expanded from the current nodes list. - delete this.nodes[node.id]; + // first unselect any selected node + this._unselectAll(true); - var unqiueIdentifier = util.randomUUID(); + for (i = 0, iMax = selection.length; i < iMax; i++) { + id = selection[i]; - // we fully freeze the currently active sector - this._freezeSector(sector); + var node = this.nodes[id]; + if (!node) { + throw new RangeError('Node with id "' + id + '" not found'); + } + this._selectObject(node,true,true); + } - // we create a new active sector. This sector has the Id of the node to ensure uniqueness - this._createNewSector(unqiueIdentifier); + console.log("setSelection is deprecated. Please use selectNodes instead.") - // we add the active sector to the sectors array to be able to revert these steps later on - this._setActiveSector(unqiueIdentifier); + this.redraw(); + }; + + + /** + * 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); - // we redirect the global references to the new sector's references. this._sector() now returns unqiueIdentifier - this._switchToSector(this._sector()); + for (i = 0, iMax = selection.length; i < iMax; i++) { + id = selection[i]; - // finally we add the node we removed from our previous active sector to the new active sector - this.nodes[node.id] = node; + var node = this.nodes[id]; + if (!node) { + throw new RangeError('Node with id "' + id + '" not found'); + } + this._selectObject(node,true,true,highlightEdges); + } + this.redraw(); }; /** - * We close the sector that is currently open and revert back to the one before. - * If the active sector is the "default" sector, nothing happens. - * - * @private + * select zero or more edges + * @param {Number[] | String[]} selection An array with the ids of the + * selected nodes. */ - exports._collapseSector = function() { - // the currently active sector - var sector = this._sector(); - - // we cannot collapse the default sector - if (sector != "default") { - if ((this.nodeIndices.length == 1) || - (this.sectors["active"][sector]["drawingNode"].width*this.scale < this.constants.clustering.screenSizeThreshold * this.frame.canvas.clientWidth) || - (this.sectors["active"][sector]["drawingNode"].height*this.scale < this.constants.clustering.screenSizeThreshold * this.frame.canvas.clientHeight)) { - var previousSector = this._previousSector(); - - // we collapse the sector back to a single cluster - this._collapseThisToSingleCluster(); - - // we move the remaining nodes, edges and nodeIndices to the previous sector. - // This previous sector is the one we will reactivate - this._mergeThisWithFrozen(previousSector); - - // the previously active (frozen) sector now has all the data from the currently active sector. - // we can now delete the active sector. - this._deleteActiveSector(sector); - - // we activate the previously active (and currently frozen) sector. - this._activateSector(previousSector); + exports.selectEdges = function(selection) { + var i, iMax, id; - // we load the references from the newly active sector into the global references - this._switchToSector(previousSector); + if (!selection || (selection.length == undefined)) + throw 'Selection must be an array with ids'; - // we forget the previously active sector because we reverted to the one before - this._forgetLastSector(); + // first unselect any selected node + this._unselectAll(true); - // finally, we update the node index list. - this._updateNodeIndexList(); + for (i = 0, iMax = selection.length; i < iMax; i++) { + id = selection[i]; - // we refresh the list with calulation nodes and calculation node indices. - this._updateCalculationNodes(); + var edge = this.edges[id]; + if (!edge) { + throw new RangeError('Edge with id "' + id + '" not found'); } + this._selectObject(edge,true,true,highlightEdges); } + this.redraw(); }; - /** - * This runs a function in all active sectors. This is used in _redraw() and the _initializeForceCalculation(). - * - * @param {String} runFunction | This is the NAME of a function we want to call in all active sectors - * | we dont pass the function itself because then the "this" is the window object - * | instead of the Network object - * @param {*} [argument] | Optional: arguments to pass to the runFunction + * Validate the selection: remove ids of nodes which no longer exist * @private */ - exports._doInAllActiveSectors = function(runFunction,argument) { - if (argument === undefined) { - for (var sector in this.sectors["active"]) { - if (this.sectors["active"].hasOwnProperty(sector)) { - // switch the global references to those of this sector - this._switchToActiveSector(sector); - this[runFunction](); + exports._updateSelection = function () { + for(var nodeId in this.selectionObj.nodes) { + if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { + if (!this.nodes.hasOwnProperty(nodeId)) { + delete this.selectionObj.nodes[nodeId]; } } } - else { - for (var sector in this.sectors["active"]) { - if (this.sectors["active"].hasOwnProperty(sector)) { - // switch the global references to those of this sector - this._switchToActiveSector(sector); - var args = Array.prototype.splice.call(arguments, 1); - if (args.length > 1) { - this[runFunction](args[0],args[1]); - } - else { - this[runFunction](argument); - } + for(var edgeId in this.selectionObj.edges) { + if(this.selectionObj.edges.hasOwnProperty(edgeId)) { + if (!this.edges.hasOwnProperty(edgeId)) { + delete this.selectionObj.edges[edgeId]; } } } - // we revert the global references back to our active sector - this._loadLatestSector(); }; +/***/ }, +/* 53 */ +/***/ function(module, exports, __webpack_require__) { + + var util = __webpack_require__(2); + var Node = __webpack_require__(36); + var Edge = __webpack_require__(33); + /** - * This runs a function in all active sectors. This is used in _redraw() and the _initializeForceCalculation(). + * clears the toolbar div element of children * - * @param {String} runFunction | This is the NAME of a function we want to call in all active sectors - * | we dont pass the function itself because then the "this" is the window object - * | instead of the Network object - * @param {*} [argument] | Optional: arguments to pass to the runFunction * @private */ - exports._doInSupportSector = function(runFunction,argument) { - if (argument === undefined) { - this._switchToSupportSector(); - this[runFunction](); - } - else { - this._switchToSupportSector(); - var args = Array.prototype.splice.call(arguments, 1); - if (args.length > 1) { - this[runFunction](args[0],args[1]); - } - else { - this[runFunction](argument); - } + exports._clearManipulatorBar = function() { + while (this.manipulationDiv.hasChildNodes()) { + this.manipulationDiv.removeChild(this.manipulationDiv.firstChild); } - // we revert the global references back to our active sector - this._loadLatestSector(); }; - /** - * This runs a function in all frozen sectors. This is used in the _redraw(). + * Manipulation UI temporarily overloads certain functions to extend or replace them. To be able to restore + * these functions to their original functionality, we saved them in this.cachedFunctions. + * This function restores these functions to their original function. * - * @param {String} runFunction | This is the NAME of a function we want to call in all active sectors - * | we don't pass the function itself because then the "this" is the window object - * | instead of the Network object - * @param {*} [argument] | Optional: arguments to pass to the runFunction * @private */ - exports._doInAllFrozenSectors = function(runFunction,argument) { - if (argument === undefined) { - for (var sector in this.sectors["frozen"]) { - if (this.sectors["frozen"].hasOwnProperty(sector)) { - // switch the global references to those of this sector - this._switchToFrozenSector(sector); - this[runFunction](); - } - } - } - else { - for (var sector in this.sectors["frozen"]) { - if (this.sectors["frozen"].hasOwnProperty(sector)) { - // switch the global references to those of this sector - this._switchToFrozenSector(sector); - var args = Array.prototype.splice.call(arguments, 1); - if (args.length > 1) { - this[runFunction](args[0],args[1]); - } - else { - this[runFunction](argument); - } - } + exports._restoreOverloadedFunctions = function() { + for (var functionName in this.cachedFunctions) { + if (this.cachedFunctions.hasOwnProperty(functionName)) { + this[functionName] = this.cachedFunctions[functionName]; } } - this._loadLatestSector(); }; - /** - * This runs a function in all sectors. This is used in the _redraw(). + * Enable or disable edit-mode. * - * @param {String} runFunction | This is the NAME of a function we want to call in all active sectors - * | we don't pass the function itself because then the "this" is the window object - * | instead of the Network object - * @param {*} [argument] | Optional: arguments to pass to the runFunction * @private */ - exports._doInAllSectors = function(runFunction,argument) { - var args = Array.prototype.splice.call(arguments, 1); - if (argument === undefined) { - this._doInAllActiveSectors(runFunction); - this._doInAllFrozenSectors(runFunction); + exports._toggleEditMode = function() { + this.editMode = !this.editMode; + var toolbar = document.getElementById("network-manipulationDiv"); + var closeDiv = document.getElementById("network-manipulation-closeDiv"); + var editModeDiv = document.getElementById("network-manipulation-editMode"); + if (this.editMode == true) { + toolbar.style.display="block"; + closeDiv.style.display="block"; + editModeDiv.style.display="none"; + closeDiv.onclick = this._toggleEditMode.bind(this); } else { - if (args.length > 1) { - this._doInAllActiveSectors(runFunction,args[0],args[1]); - this._doInAllFrozenSectors(runFunction,args[0],args[1]); - } - else { - this._doInAllActiveSectors(runFunction,argument); - this._doInAllFrozenSectors(runFunction,argument); - } + toolbar.style.display="none"; + closeDiv.style.display="none"; + editModeDiv.style.display="block"; + closeDiv.onclick = null; } + this._createManipulatorBar() }; - - /** - * This clears the nodeIndices list. We cannot use this.nodeIndices = [] because we would break the link with the - * active sector. Thus we clear the nodeIndices in the active sector, then reconnect the this.nodeIndices to it. - * - * @private - */ - exports._clearNodeIndexList = function() { - var sector = this._sector(); - this.sectors["active"][sector]["nodeIndices"] = []; - this.nodeIndices = this.sectors["active"][sector]["nodeIndices"]; - }; - - /** - * Draw the encompassing sector node + * main function, creates the main toolbar. Removes functions bound to the select event. Binds all the buttons of the toolbar. * - * @param ctx - * @param sectorType * @private */ - exports._drawSectorNodes = function(ctx,sectorType) { - var minY = 1e9, maxY = -1e9, minX = 1e9, maxX = -1e9, node; - for (var sector in this.sectors[sectorType]) { - if (this.sectors[sectorType].hasOwnProperty(sector)) { - if (this.sectors[sectorType][sector]["drawingNode"] !== undefined) { - - this._switchToSector(sector,sectorType); - - minY = 1e9; maxY = -1e9; minX = 1e9; maxX = -1e9; - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - node = this.nodes[nodeId]; - node.resize(ctx); - if (minX > node.x - 0.5 * node.width) {minX = node.x - 0.5 * node.width;} - if (maxX < node.x + 0.5 * node.width) {maxX = node.x + 0.5 * node.width;} - if (minY > node.y - 0.5 * node.height) {minY = node.y - 0.5 * node.height;} - if (maxY < node.y + 0.5 * node.height) {maxY = node.y + 0.5 * node.height;} - } - } - node = this.sectors[sectorType][sector]["drawingNode"]; - node.x = 0.5 * (maxX + minX); - node.y = 0.5 * (maxY + minY); - node.width = 2 * (node.x - minX); - node.height = 2 * (node.y - minY); - node.radius = Math.sqrt(Math.pow(0.5*node.width,2) + Math.pow(0.5*node.height,2)); - node.setScale(this.scale); - node._drawCircle(ctx); - } - } + exports._createManipulatorBar = function() { + // remove bound functions + if (this.boundFunction) { + this.off('select', this.boundFunction); } - }; - exports._drawAllSectorNodes = function(ctx) { - this._drawSectorNodes(ctx,"frozen"); - this._drawSectorNodes(ctx,"active"); - this._loadLatestSector(); - }; + if (this.edgeBeingEdited !== undefined) { + this.edgeBeingEdited._disableControlNodes(); + this.edgeBeingEdited = undefined; + this.selectedControlNode = null; + this.controlNodesActive = false; + } + // restore overloaded functions + this._restoreOverloadedFunctions(); -/***/ }, -/* 57 */ -/***/ function(module, exports, __webpack_require__) { + // resume calculation + this.freezeSimulation = false; - var Node = __webpack_require__(47); + // reset global variables + this.blockConnectingEdgeSelection = false; + this.forceAppendSelection = false; - /** - * This function can be called from the _doInAllSectors function - * - * @param object - * @param overlappingNodes - * @private - */ - exports._getNodesOverlappingWith = function(object, overlappingNodes) { - var nodes = this.nodes; - for (var nodeId in nodes) { - if (nodes.hasOwnProperty(nodeId)) { - if (nodes[nodeId].isOverlappingWith(object)) { - overlappingNodes.push(nodeId); - } + if (this.editMode == true) { + while (this.manipulationDiv.hasChildNodes()) { + this.manipulationDiv.removeChild(this.manipulationDiv.firstChild); + } + // add the icons to the manipulator div + this.manipulationDiv.innerHTML = "" + + "" + + ""+this.constants.labels['add'] +"" + + "
" + + "" + + ""+this.constants.labels['link'] +""; + if (this._getSelectedNodeCount() == 1 && this.triggerFunctions.edit) { + this.manipulationDiv.innerHTML += "" + + "
" + + "" + + ""+this.constants.labels['editNode'] +""; + } + else if (this._getSelectedEdgeCount() == 1 && this._getSelectedNodeCount() == 0) { + this.manipulationDiv.innerHTML += "" + + "
" + + "" + + ""+this.constants.labels['editEdge'] +""; + } + if (this._selectionIsEmpty() == false) { + this.manipulationDiv.innerHTML += "" + + "
" + + "" + + ""+this.constants.labels['del'] +""; } + + + // bind the icons + var addNodeButton = document.getElementById("network-manipulate-addNode"); + addNodeButton.onclick = this._createAddNodeToolbar.bind(this); + var addEdgeButton = document.getElementById("network-manipulate-connectNode"); + addEdgeButton.onclick = this._createAddEdgeToolbar.bind(this); + if (this._getSelectedNodeCount() == 1 && this.triggerFunctions.edit) { + var editButton = document.getElementById("network-manipulate-editNode"); + editButton.onclick = this._editNode.bind(this); + } + else if (this._getSelectedEdgeCount() == 1 && this._getSelectedNodeCount() == 0) { + var editButton = document.getElementById("network-manipulate-editEdge"); + editButton.onclick = this._createEditEdgeToolbar.bind(this); + } + if (this._selectionIsEmpty() == false) { + var deleteButton = document.getElementById("network-manipulate-delete"); + deleteButton.onclick = this._deleteSelected.bind(this); + } + var closeDiv = document.getElementById("network-manipulation-closeDiv"); + closeDiv.onclick = this._toggleEditMode.bind(this); + + this.boundFunction = this._createManipulatorBar.bind(this); + this.on('select', this.boundFunction); + } + else { + this.editModeDiv.innerHTML = "" + + "" + + "" + this.constants.labels['edit'] + ""; + var editModeButton = document.getElementById("network-manipulate-editModeButton"); + editModeButton.onclick = this._toggleEditMode.bind(this); } }; - /** - * retrieve all nodes overlapping with given object - * @param {Object} object An object with parameters left, top, right, bottom - * @return {Number[]} An array with id's of the overlapping nodes - * @private - */ - exports._getAllNodesOverlappingWith = function (object) { - var overlappingNodes = []; - this._doInAllActiveSectors("_getNodesOverlappingWith",object,overlappingNodes); - return overlappingNodes; - }; /** - * Return a position object in canvasspace from a single point in screenspace + * Create the toolbar for adding Nodes * - * @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); + exports._createAddNodeToolbar = function() { + // clear the toolbar + this._clearManipulatorBar(); + if (this.boundFunction) { + this.off('select', this.boundFunction); + } - return { - left: x, - top: y, - right: x, - bottom: y - }; + // create the toolbar contents + this.manipulationDiv.innerHTML = "" + + "" + + "" + this.constants.labels['back'] + " " + + "
" + + "" + + "" + this.constants.labels['addDescription'] + ""; + + // bind the icon + var backButton = document.getElementById("network-manipulate-back"); + backButton.onclick = this._createManipulatorBar.bind(this); + + // we use the boundFunction so we can reference it when we unbind it from the "select" event. + this.boundFunction = this._addNode.bind(this); + this.on('select', this.boundFunction); }; /** - * Get the top node at the a specific point (like a click) + * create the toolbar to connect nodes * - * @param {{x: Number, y: Number}} pointer - * @return {Node | null} node * @private */ - exports._getNodeAt = function (pointer) { - // we first check if this is an navigation controls element - var positionObject = this._pointerToPositionObject(pointer); - var overlappingNodes = this._getAllNodesOverlappingWith(positionObject); + exports._createAddEdgeToolbar = function() { + // clear the toolbar + this._clearManipulatorBar(); + this._unselectAll(true); + this.freezeSimulation = true; - // if there are overlapping nodes, select the last one, this is the - // one which is drawn on top of the others - if (overlappingNodes.length > 0) { - return this.nodes[overlappingNodes[overlappingNodes.length - 1]]; - } - else { - return null; + if (this.boundFunction) { + this.off('select', this.boundFunction); } - }; + this._unselectAll(); + this.forceAppendSelection = false; + this.blockConnectingEdgeSelection = true; - /** - * 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.edges; - for (var edgeId in edges) { - if (edges.hasOwnProperty(edgeId)) { - if (edges[edgeId].isOverlappingWith(object)) { - overlappingEdges.push(edgeId); - } - } - } - }; + this.manipulationDiv.innerHTML = "" + + "" + + "" + this.constants.labels['back'] + " " + + "
" + + "" + + "" + this.constants.labels['linkDescription'] + ""; + // bind the icon + var backButton = document.getElementById("network-manipulate-back"); + backButton.onclick = this._createManipulatorBar.bind(this); - /** - * retrieve all nodes overlapping with given object - * @param {Object} object An object with parameters left, top, right, bottom - * @return {Number[]} An array with id's of the overlapping nodes - * @private - */ - exports._getAllEdgesOverlappingWith = function (object) { - var overlappingEdges = []; - this._doInAllActiveSectors("_getEdgesOverlappingWith",object,overlappingEdges); - return overlappingEdges; + // we use the boundFunction so we can reference it when we unbind it from the "select" event. + this.boundFunction = this._handleConnect.bind(this); + this.on('select', this.boundFunction); + + // temporarily overload functions + this.cachedFunctions["_handleTouch"] = this._handleTouch; + this.cachedFunctions["_handleOnRelease"] = this._handleOnRelease; + this._handleTouch = this._handleConnect; + this._handleOnRelease = this._finishConnect; + + // redraw to show the unselect + this._redraw(); }; /** - * Place holder. To implement change the _getNodeAt to a _getObjectAt. Have the _getObjectAt call - * _getNodeAt and _getEdgesAt, then priortize the selection to user preferences. + * create the toolbar to edit edges * - * @param pointer - * @returns {null} * @private */ - exports._getEdgeAt = function(pointer) { - var positionObject = this._pointerToPositionObject(pointer); - var overlappingEdges = this._getAllEdgesOverlappingWith(positionObject); + exports._createEditEdgeToolbar = function() { + // clear the toolbar + this._clearManipulatorBar(); + this.controlNodesActive = true; - if (overlappingEdges.length > 0) { - return this.edges[overlappingEdges[overlappingEdges.length - 1]]; - } - else { - return null; + if (this.boundFunction) { + this.off('select', this.boundFunction); } + + this.edgeBeingEdited = this._getSelectedEdge(); + this.edgeBeingEdited._enableControlNodes(); + + this.manipulationDiv.innerHTML = "" + + "" + + "" + this.constants.labels['back'] + " " + + "
" + + "" + + "" + this.constants.labels['editEdgeDescription'] + ""; + + // bind the icon + var backButton = document.getElementById("network-manipulate-back"); + backButton.onclick = this._createManipulatorBar.bind(this); + + // temporarily overload functions + this.cachedFunctions["_handleTouch"] = this._handleTouch; + this.cachedFunctions["_handleOnRelease"] = this._handleOnRelease; + this.cachedFunctions["_handleTap"] = this._handleTap; + this.cachedFunctions["_handleDragStart"] = this._handleDragStart; + this.cachedFunctions["_handleOnDrag"] = this._handleOnDrag; + this._handleTouch = this._selectControlNode; + this._handleTap = function () {}; + this._handleOnDrag = this._controlNodeDrag; + this._handleDragStart = function () {} + this._handleOnRelease = this._releaseControlNode; + + // redraw to show the unselect + this._redraw(); }; + + + /** - * Add object to the selection array. + * the function bound to the selection event. It checks if you want to connect a cluster and changes the description + * to walk the user through the process. * - * @param obj * @private */ - exports._addToSelection = function(obj) { - if (obj instanceof Node) { - this.selectionObj.nodes[obj.id] = obj; - } - else { - this.selectionObj.edges[obj.id] = obj; + 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(); }; /** - * Add object to the selection array. + * the function bound to the selection event. It checks if you want to connect a cluster and changes the description + * to walk the user through the process. * - * @param obj * @private */ - exports._addToHover = function(obj) { - if (obj instanceof Node) { - this.hoverObj.nodes[obj.id] = obj; - } - else { - this.hoverObj.edges[obj.id] = obj; + 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(); }; - - /** - * Remove a single option from selection. - * - * @param {Object} obj - * @private - */ - exports._removeFromSelection = function(obj) { - if (obj instanceof Node) { - delete this.selectionObj.nodes[obj.id]; + exports._releaseControlNode = function(pointer) { + var newNode = this._getNodeAt(pointer); + if (newNode != null) { + if (this.edgeBeingEdited.controlNodes.from.selected == true) { + this._editEdge(newNode.id, this.edgeBeingEdited.to.id); + this.edgeBeingEdited.controlNodes.from.unselect(); + } + if (this.edgeBeingEdited.controlNodes.to.selected == true) { + this._editEdge(this.edgeBeingEdited.from.id, newNode.id); + this.edgeBeingEdited.controlNodes.to.unselect(); + } } else { - delete this.selectionObj.edges[obj.id]; + this.edgeBeingEdited._restoreControlNodes(); } + this.freezeSimulation = false; + this._redraw(); }; /** - * Unselect all. The selectionObj is useful for this. + * the function bound to the selection event. It checks if you want to connect a cluster and changes the description + * to walk the user through the process. * - * @param {Boolean} [doNotTrigger] | ignore trigger * @private */ - exports._unselectAll = function(doNotTrigger) { - if (doNotTrigger === undefined) { - doNotTrigger = false; - } - for(var nodeId in this.selectionObj.nodes) { - if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { - this.selectionObj.nodes[nodeId].unselect(); - } - } - for(var edgeId in this.selectionObj.edges) { - if(this.selectionObj.edges.hasOwnProperty(edgeId)) { - this.selectionObj.edges[edgeId].unselect(); + exports._handleConnect = function(pointer) { + if (this._getSelectedNodeCount() == 0) { + var node = this._getNodeAt(pointer); + if (node != null) { + if (node.clusterSize > 1) { + alert("Cannot create edges to a cluster.") + } + else { + this._selectObject(node,false); + // create a node the temporary line can look at + this.sectors['support']['nodes']['targetNode'] = new Node({id:'targetNode'},{},{},this.constants); + this.sectors['support']['nodes']['targetNode'].x = node.x; + this.sectors['support']['nodes']['targetNode'].y = node.y; + this.sectors['support']['nodes']['targetViaNode'] = new Node({id:'targetViaNode'},{},{},this.constants); + this.sectors['support']['nodes']['targetViaNode'].x = node.x; + this.sectors['support']['nodes']['targetViaNode'].y = node.y; + this.sectors['support']['nodes']['targetViaNode'].parentEdgeId = "connectionEdge"; + + // create a temporary edge + this.edges['connectionEdge'] = new Edge({id:"connectionEdge",from:node.id,to:this.sectors['support']['nodes']['targetNode'].id}, this, this.constants); + this.edges['connectionEdge'].from = node; + this.edges['connectionEdge'].connected = true; + this.edges['connectionEdge'].smooth = true; + this.edges['connectionEdge'].selected = true; + this.edges['connectionEdge'].to = this.sectors['support']['nodes']['targetNode']; + this.edges['connectionEdge'].via = this.sectors['support']['nodes']['targetViaNode']; + + this.cachedFunctions["_handleOnDrag"] = this._handleOnDrag; + this._handleOnDrag = function(event) { + var pointer = this._getPointer(event.gesture.center); + this.sectors['support']['nodes']['targetNode'].x = this._XconvertDOMtoCanvas(pointer.x); + this.sectors['support']['nodes']['targetNode'].y = this._YconvertDOMtoCanvas(pointer.y); + this.sectors['support']['nodes']['targetViaNode'].x = 0.5 * (this._XconvertDOMtoCanvas(pointer.x) + this.edges['connectionEdge'].from.x); + this.sectors['support']['nodes']['targetViaNode'].y = this._YconvertDOMtoCanvas(pointer.y); + }; + + this.moving = true; + this.start(); + } } } + }; - this.selectionObj = {nodes:{},edges:{}}; + exports._finishConnect = function(pointer) { + if (this._getSelectedNodeCount() == 1) { - if (doNotTrigger == false) { - this.emit('select', this.getSelection()); + // restore the drag function + this._handleOnDrag = this.cachedFunctions["_handleOnDrag"]; + delete this.cachedFunctions["_handleOnDrag"]; + + // remember the edge id + var connectFromId = this.edges['connectionEdge'].fromId; + + // remove the temporary nodes and edge + delete this.edges['connectionEdge']; + delete this.sectors['support']['nodes']['targetNode']; + delete this.sectors['support']['nodes']['targetViaNode']; + + var node = this._getNodeAt(pointer); + if (node != null) { + if (node.clusterSize > 1) { + alert("Cannot create edges to a cluster.") + } + else { + this._createEdge(connectFromId,node.id); + this._createManipulatorBar(); + } + } + this._unselectAll(); } }; + /** - * Unselect all clusters. The selectionObj is useful for this. - * - * @param {Boolean} [doNotTrigger] | ignore trigger - * @private + * Adds a node on the specified location */ - 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]); + exports._addNode = function() { + if (this._selectionIsEmpty() && this.editMode == true) { + var positionObject = this._pointerToPositionObject(this.pointerPosition); + var defaultData = {id:util.randomUUID(),x:positionObject.left,y:positionObject.top,label:"new",allowedToMoveX:true,allowedToMoveY:true}; + if (this.triggerFunctions.add) { + if (this.triggerFunctions.add.length == 2) { + var me = this; + this.triggerFunctions.add(defaultData, function(finalizedData) { + me.nodesData.add(finalizedData); + me._createManipulatorBar(); + me.moving = true; + me.start(); + }); + } + else { + alert(this.constants.labels['addError']); + this._createManipulatorBar(); + this.moving = true; + this.start(); } } - } - - if (doNotTrigger == false) { - this.emit('select', this.getSelection()); + else { + this.nodesData.add(defaultData); + this._createManipulatorBar(); + this.moving = true; + this.start(); + } } }; /** - * return the number of selected nodes + * connect two nodes with a new edge. * - * @returns {number} * @private */ - exports._getSelectedNodeCount = function() { - var count = 0; - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - count += 1; + exports._createEdge = function(sourceNodeId,targetNodeId) { + if (this.editMode == true) { + var defaultData = {from:sourceNodeId, to:targetNodeId}; + if (this.triggerFunctions.connect) { + if (this.triggerFunctions.connect.length == 2) { + var me = this; + this.triggerFunctions.connect(defaultData, function(finalizedData) { + me.edgesData.add(finalizedData); + me.moving = true; + me.start(); + }); + } + else { + alert(this.constants.labels["linkError"]); + this.moving = true; + this.start(); + } + } + else { + this.edgesData.add(defaultData); + this.moving = true; + this.start(); } } - return count; }; /** - * return the selected node + * connect two nodes with a new edge. * - * @returns {number} * @private */ - exports._getSelectedNode = function() { - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - return this.selectionObj.nodes[nodeId]; + exports._editEdge = function(sourceNodeId,targetNodeId) { + if (this.editMode == true) { + var defaultData = {id: this.edgeBeingEdited.id, from:sourceNodeId, to:targetNodeId}; + if (this.triggerFunctions.editEdge) { + if (this.triggerFunctions.editEdge.length == 2) { + var me = this; + this.triggerFunctions.editEdge(defaultData, function(finalizedData) { + me.edgesData.update(finalizedData); + me.moving = true; + me.start(); + }); + } + else { + alert(this.constants.labels["linkError"]); + this.moving = true; + this.start(); + } + } + else { + this.edgesData.update(defaultData); + this.moving = true; + this.start(); } } - return null; }; /** - * return the selected edge + * Create the toolbar to edit the selected node. The label and the color can be changed. Other colors are derived from the chosen color. * - * @returns {number} * @private */ - exports._getSelectedEdge = function() { - for (var edgeId in this.selectionObj.edges) { - if (this.selectionObj.edges.hasOwnProperty(edgeId)) { - return this.selectionObj.edges[edgeId]; + exports._editNode = function() { + if (this.triggerFunctions.edit && this.editMode == true) { + var node = this._getSelectedNode(); + var data = {id:node.id, + label: node.label, + group: node.options.group, + shape: node.options.shape, + color: { + background:node.options.color.background, + border:node.options.color.border, + highlight: { + background:node.options.color.highlight.background, + border:node.options.color.highlight.border + } + }}; + if (this.triggerFunctions.edit.length == 2) { + var me = this; + this.triggerFunctions.edit(data, function (finalizedData) { + me.nodesData.update(finalizedData); + me._createManipulatorBar(); + me.moving = true; + me.start(); + }); + } + else { + alert(this.constants.labels["editError"]); } } - return null; + else { + alert(this.constants.labels["editBoundError"]); + } }; + + /** - * return the number of selected edges + * delete everything in the selection * - * @returns {number} * @private */ - exports._getSelectedEdgeCount = function() { - var count = 0; - for (var edgeId in this.selectionObj.edges) { - if (this.selectionObj.edges.hasOwnProperty(edgeId)) { - count += 1; + exports._deleteSelected = function() { + if (!this._selectionIsEmpty() && this.editMode == true) { + if (!this._clusterInSelection()) { + var selectedNodes = this.getSelectedNodes(); + var selectedEdges = this.getSelectedEdges(); + if (this.triggerFunctions.del) { + var me = this; + var data = {nodes: selectedNodes, edges: selectedEdges}; + if (this.triggerFunctions.del.length = 2) { + this.triggerFunctions.del(data, function (finalizedData) { + me.edgesData.remove(finalizedData.edges); + me.nodesData.remove(finalizedData.nodes); + me._unselectAll(); + me.moving = true; + me.start(); + }); + } + else { + alert(this.constants.labels["deleteError"]) + } + } + else { + this.edgesData.remove(selectedEdges); + this.nodesData.remove(selectedNodes); + this._unselectAll(); + this.moving = true; + this.start(); + } + } + else { + alert(this.constants.labels["deleteClusterError"]); } } - return count; }; +/***/ }, +/* 54 */ +/***/ function(module, exports, __webpack_require__) { + + var util = __webpack_require__(2); + var Hammer = __webpack_require__(40); + + exports._cleanNavigation = function() { + // clean up previous navigation items + var wrapper = document.getElementById('network-navigation_wrapper'); + if (wrapper != null) { + this.containerElement.removeChild(wrapper); + } + document.onmouseup = null; + }; + /** - * return the number of selected objects. + * 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. * - * @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; - } + exports._loadNavigationElements = function() { + this._cleanNavigation(); + + this.navigationDivs = {}; + var navigationDivs = ['up','down','left','right','zoomIn','zoomOut','zoomExtends']; + var navigationDivActions = ['_moveUp','_moveDown','_moveLeft','_moveRight','_zoomIn','_zoomOut','zoomExtent']; + + this.navigationDivs['wrapper'] = document.createElement('div'); + this.navigationDivs['wrapper'].id = "network-navigation_wrapper"; + this.navigationDivs['wrapper'].style.position = "absolute"; + this.navigationDivs['wrapper'].style.width = this.frame.canvas.clientWidth + "px"; + this.navigationDivs['wrapper'].style.height = this.frame.canvas.clientHeight + "px"; + this.containerElement.insertBefore(this.navigationDivs['wrapper'],this.frame); + + var me = this; + for (var i = 0; i < navigationDivs.length; i++) { + this.navigationDivs[navigationDivs[i]] = document.createElement('div'); + this.navigationDivs[navigationDivs[i]].id = "network-navigation_" + navigationDivs[i]; + this.navigationDivs[navigationDivs[i]].className = "network-navigation " + navigationDivs[i]; + this.navigationDivs['wrapper'].appendChild(this.navigationDivs[navigationDivs[i]]); + var hammer = Hammer(this.navigationDivs[navigationDivs[i]], {prevent_default: true}); + hammer.on("touch", me[navigationDivActions[i]].bind(me)); } - return count; + var hammer = Hammer(document, {prevent_default: false}); + hammer.on("release", me._stopMovement.bind(me)); }; /** - * Check if anything is selected + * this stops all movement induced by the navigation buttons * - * @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; + exports._stopMovement = function() { + this._xStopMoving(); + this._yStopMoving(); + this._stopZoom(); }; /** - * check if one of the selected nodes is a cluster. + * 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. * - * @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; + exports._moveUp = function(event) { + this.yIncrement = this.constants.keyboard.speed.y; + this.start(); // if there is no node movement, the calculation wont be done }; + /** - * select the edges connected to the node that is being selected - * - * @param {Node} node + * move the screen down * @private */ - exports._selectConnectedEdges = function(node) { - for (var i = 0; i < node.dynamicEdges.length; i++) { - var edge = node.dynamicEdges[i]; - edge.select(); - this._addToSelection(edge); - } + exports._moveDown = function(event) { + this.yIncrement = -this.constants.keyboard.speed.y; + this.start(); // if there is no node movement, the calculation wont be done }; + /** - * select the edges connected to the node that is being selected - * - * @param {Node} node + * move the screen left * @private */ - exports._hoverConnectedEdges = function(node) { - for (var i = 0; i < node.dynamicEdges.length; i++) { - var edge = node.dynamicEdges[i]; - edge.hover = true; - this._addToHover(edge); - } + exports._moveLeft = function(event) { + this.xIncrement = this.constants.keyboard.speed.x; + this.start(); // if there is no node movement, the calculation wont be done }; /** - * unselect the edges connected to the node that is being selected - * - * @param {Node} node + * move the screen right * @private */ - exports._unselectConnectedEdges = function(node) { - for (var i = 0; i < node.dynamicEdges.length; i++) { - var edge = node.dynamicEdges[i]; - edge.unselect(); - this._removeFromSelection(edge); - } + exports._moveRight = function(event) { + this.xIncrement = -this.constants.keyboard.speed.y; + this.start(); // if there is no node movement, the calculation wont be done }; - - /** - * 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 + * Zoom in, using the same method as the movement. * @private */ - exports._selectObject = function(object, append, doNotTrigger, highlightEdges) { - if (doNotTrigger === undefined) { - doNotTrigger = false; - } - if (highlightEdges === undefined) { - highlightEdges = true; - } - - if (this._selectionIsEmpty() == false && append == false && this.forceAppendSelection == false) { - this._unselectAll(true); - } + exports._zoomIn = function(event) { + this.zoomIncrement = this.constants.keyboard.speed.zoom; + this.start(); // if there is no node movement, the calculation wont be done + }; - if (object.selected == false) { - object.select(); - this._addToSelection(object); - if (object instanceof Node && this.blockConnectingEdgeSelection == false && highlightEdges == true) { - this._selectConnectedEdges(object); - } - } - else { - object.unselect(); - this._removeFromSelection(object); - } - if (doNotTrigger == false) { - this.emit('select', this.getSelection()); - } + /** + * Zoom out + * @private + */ + exports._zoomOut = function() { + this.zoomIncrement = -this.constants.keyboard.speed.zoom; + this.start(); // if there is no node movement, the calculation wont be done + util.preventDefault(event); }; /** - * 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 + * Stop zooming and unhighlight the zoom controls * @private */ - exports._blurObject = function(object) { - if (object.hover == true) { - object.hover = false; - this.emit("blurNode",{node:object.id}); - } + exports._stopZoom = function() { + this.zoomIncrement = 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 + * Stop moving in the Y direction and unHighlight the up and down * @private */ - exports._hoverObject = function(object) { - if (object.hover == false) { - object.hover = true; - this._addToHover(object); - if (object instanceof Node) { - this.emit("hoverNode",{node:object.id}); - } - } - if (object instanceof Node) { - this._hoverConnectedEdges(object); - } + exports._yStopMoving = function() { + this.yIncrement = 0; }; /** - * 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 + * Stop moving in the X direction and unHighlight left and right. * @private */ - exports._handleTouch = function(pointer) { + exports._xStopMoving = function() { + this.xIncrement = 0; }; +/***/ }, +/* 55 */ +/***/ function(module, exports, __webpack_require__) { + + exports._resetLevels = function() { + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + var node = this.nodes[nodeId]; + if (node.preassignedLevel == false) { + node.level = -1; + } + } + } + }; + /** - * handles the selection part of the tap; + * This is the main function to layout the nodes in a hierarchical way. + * It checks if the node details are supplied correctly * - * @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); + exports._setupHierarchicalLayout = function() { + if (this.constants.hierarchicalLayout.enabled == true && this.nodeIndices.length > 0) { + if (this.constants.hierarchicalLayout.direction == "RL" || this.constants.hierarchicalLayout.direction == "DU") { + this.constants.hierarchicalLayout.levelSeparation *= -1; } else { - this._unselectAll(); + this.constants.hierarchicalLayout.levelSeparation = Math.abs(this.constants.hierarchicalLayout.levelSeparation); + } + + if (this.constants.hierarchicalLayout.direction == "RL" || this.constants.hierarchicalLayout.direction == "LR") { + if (this.constants.smoothCurves.enabled == true) { + this.constants.smoothCurves.type = "vertical"; + } + } + else { + if (this.constants.smoothCurves.enabled == true) { + this.constants.smoothCurves.type = "horizontal"; + } + } + // get the size of the largest hubs and check if the user has defined a level for a node. + var hubsize = 0; + var node, nodeId; + var definedLevel = false; + var undefinedLevel = false; + + for (nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + node = this.nodes[nodeId]; + if (node.level != -1) { + definedLevel = true; + } + else { + undefinedLevel = true; + } + if (hubsize < node.edges.length) { + hubsize = node.edges.length; + } + } + } + + // if the user defined some levels but not all, alert and run without hierarchical layout + if (undefinedLevel == true && definedLevel == true) { + alert("To use the hierarchical layout, nodes require either no predefined levels or levels have to be defined for all nodes."); + this.zoomExtent(true,this.constants.clustering.enabled); + if (!this.constants.clustering.enabled) { + this.start(); + } + } + else { + // setup the system to use hierarchical method. + this._changeConstants(); + + // define levels if undefined by the users. Based on hubsize + if (undefinedLevel == true) { + this._determineLevels(hubsize); + } + // check the distribution of the nodes per level. + var distribution = this._getDistribution(); + + // place the nodes on the canvas. This also stablilizes the system. + this._placeNodesByHierarchy(distribution); + + // start the simulation. + this.start(); } } - this.emit("click", this.getSelection()); - this._redraw(); }; /** - * handles the selection part of the double tap and opens a cluster if needed + * This function places the nodes on the canvas based on the hierarchial distribution. * - * @param {Object} pointer + * @param {Object} distribution | obtained by the function this._getDistribution() * @private */ - exports._handleDoubleTap = function(pointer) { - var node = this._getNodeAt(pointer); - if (node != null && node !== undefined) { - // we reset the areaCenter here so the opening of the node will occur - this.areaCenter = {"x" : this._XconvertDOMtoCanvas(pointer.x), - "y" : this._YconvertDOMtoCanvas(pointer.y)}; - this.openCluster(node); + exports._placeNodesByHierarchy = function(distribution) { + var nodeId, node; + + // start placing all the level 0 nodes first. Then recursively position their branches. + for (var level in distribution) { + if (distribution.hasOwnProperty(level)) { + + for (nodeId in distribution[level].nodes) { + if (distribution[level].nodes.hasOwnProperty(nodeId)) { + node = distribution[level].nodes[nodeId]; + if (this.constants.hierarchicalLayout.direction == "UD" || this.constants.hierarchicalLayout.direction == "DU") { + if (node.xFixed) { + node.x = distribution[level].minPos; + node.xFixed = false; + + distribution[level].minPos += distribution[level].nodeSpacing; + } + } + else { + if (node.yFixed) { + node.y = distribution[level].minPos; + node.yFixed = false; + + distribution[level].minPos += distribution[level].nodeSpacing; + } + } + this._placeBranchNodes(node.edges,node.id,distribution,node.level); + } + } + } } - this.emit("doubleClick", this.getSelection()); + + // stabilize the system after positioning. This function calls zoomExtent. + this._stabilize(); }; /** - * Handle the onHold selection part + * This function get the distribution of levels based on hubsize * - * @param pointer + * @returns {Object} * @private */ - exports._handleOnHold = function(pointer) { - var node = this._getNodeAt(pointer); - if (node != null) { - this._selectObject(node,true); + 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.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + node = this.nodes[nodeId]; + node.xFixed = true; + node.yFixed = true; + if (this.constants.hierarchicalLayout.direction == "UD" || this.constants.hierarchicalLayout.direction == "DU") { + node.y = this.constants.hierarchicalLayout.levelSeparation*node.level; + } + else { + node.x = this.constants.hierarchicalLayout.levelSeparation*node.level; + } + if (distribution[node.level] === undefined) { + distribution[node.level] = {amount: 0, nodes: {}, minPos:0, nodeSpacing:0}; + } + distribution[node.level].amount += 1; + distribution[node.level].nodes[nodeId] = node; + } } - else { - var edge = this._getEdgeAt(pointer); - if (edge != null) { - this._selectObject(edge,true); + + // 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; + } + } + } + + // set the initial position and spacing of each nodes accordingly + for (level in distribution) { + if (distribution.hasOwnProperty(level)) { + distribution[level].nodeSpacing = (maxCount + 1) * this.constants.hierarchicalLayout.nodeSpacing; + distribution[level].nodeSpacing /= (distribution[level].amount + 1); + distribution[level].minPos = distribution[level].nodeSpacing - (0.5 * (distribution[level].amount + 1) * distribution[level].nodeSpacing); + } + } + + return distribution; + }; + + + /** + * this 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.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + node = this.nodes[nodeId]; + if (node.edges.length == hubsize) { + node.level = 0; + } + } + } + + // branch from hubs + for (nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + node = this.nodes[nodeId]; + if (node.level == 0) { + this._setLevel(1,node.edges,node.id); + } } } - this._redraw(); }; /** - * handle the onRelease event. These functions are here for the navigation controls module. + * Since hierarchical layout does not support: + * - smooth curves (based on the physics), + * - clustering (based on dynamic node counts) * - * @private + * We disable both features so there will be no problems. + * + * @private */ - exports._handleOnRelease = function(pointer) { - + exports._changeConstants = function() { + this.constants.clustering.enabled = false; + this.constants.physics.barnesHut.enabled = false; + this.constants.physics.hierarchicalRepulsion.enabled = true; + this._loadSelectedForceSolver(); + if (this.constants.smoothCurves.enabled == true) { + this.constants.smoothCurves.dynamic = false; + } + this._configureSmoothCurves(); }; - /** + * 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. * - * retrieve the currently selected objects - * @return {{nodes: Array., edges: Array.}} selection + * @param edges + * @param parentId + * @param distribution + * @param parentLevel + * @private */ - exports.getSelection = function() { - var nodeIds = this.getSelectedNodes(); - var edgeIds = this.getSelectedEdges(); - return {nodes:nodeIds, edges:edgeIds}; - }; + 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 nodes - * @return {String[]} selection An array with the ids of the - * selected nodes. - */ - exports.getSelectedNodes = function() { - var idArray = []; - for(var nodeId in this.selectionObj.nodes) { - if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { - idArray.push(nodeId); + // if a node is conneceted to another node on the same level (or higher (means lower level))!, this is not handled here. + var nodeMoved = false; + if (this.constants.hierarchicalLayout.direction == "UD" || this.constants.hierarchicalLayout.direction == "DU") { + if (childNode.xFixed && childNode.level > parentLevel) { + childNode.xFixed = false; + childNode.x = distribution[childNode.level].minPos; + nodeMoved = true; + } + } + else { + if (childNode.yFixed && childNode.level > parentLevel) { + childNode.yFixed = false; + childNode.y = distribution[childNode.level].minPos; + nodeMoved = true; + } + } + + if (nodeMoved == true) { + distribution[childNode.level].minPos += distribution[childNode.level].nodeSpacing; + if (childNode.edges.length > 1) { + this._placeBranchNodes(childNode.edges,childNode.id,distribution,childNode.level); + } } } - return idArray }; + /** + * this function is called recursively to enumerate the barnches of the largest hubs and give each node a level. * - * retrieve the currently selected edges - * @return {Array} selection An array with the ids of the - * selected nodes. + * @param level + * @param edges + * @param parentId + * @private */ - exports.getSelectedEdges = function() { - var idArray = []; - for(var edgeId in this.selectionObj.edges) { - if(this.selectionObj.edges.hasOwnProperty(edgeId)) { - idArray.push(edgeId); + exports._setLevel = function(level, edges, parentId) { + for (var i = 0; i < edges.length; i++) { + var childNode = null; + if (edges[i].toId == parentId) { + childNode = edges[i].from; + } + else { + childNode = edges[i].to; + } + if (childNode.level == -1 || childNode.level > level) { + childNode.level = level; + if (edges.length > 1) { + this._setLevel(level+1, childNode.edges, childNode.id); + } } } - return idArray; }; /** - * select zero or more nodes - * @param {Number[] | String[]} selection An array with the ids of the - * selected nodes. + * Unfix nodes + * + * @private */ - exports.setSelection = function(selection) { - var i, iMax, id; - - if (!selection || (selection.length == undefined)) - throw 'Selection must be an array with ids'; - - // first unselect any selected node - this._unselectAll(true); - - for (i = 0, iMax = selection.length; i < iMax; i++) { - id = selection[i]; - - var node = this.nodes[id]; - if (!node) { - throw new RangeError('Node with id "' + id + '" not found'); + exports._restoreNodes = function() { + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + this.nodes[nodeId].xFixed = false; + this.nodes[nodeId].yFixed = false; } - this._selectObject(node,true,true); } + }; - console.log("setSelection is deprecated. Please use selectNodes instead.") - this.redraw(); - }; +/***/ }, +/* 56 */ +/***/ function(module, exports, __webpack_require__) { + var util = __webpack_require__(2); + var RepulsionMixin = __webpack_require__(58); + var HierarchialRepulsionMixin = __webpack_require__(59); + var BarnesHutMixin = __webpack_require__(60); /** - * 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] + * Toggling barnes Hut calculation on and off. + * + * @private */ - exports.selectNodes = function(selection, highlightEdges) { - var i, iMax, id; - - if (!selection || (selection.length == undefined)) - throw 'Selection must be an array with ids'; - - // first unselect any selected node - this._unselectAll(true); - - for (i = 0, iMax = selection.length; i < iMax; i++) { - id = selection[i]; - - var node = this.nodes[id]; - if (!node) { - throw new RangeError('Node with id "' + id + '" not found'); - } - this._selectObject(node,true,true,highlightEdges); - } - this.redraw(); + exports._toggleBarnesHut = function () { + this.constants.physics.barnesHut.enabled = !this.constants.physics.barnesHut.enabled; + this._loadSelectedForceSolver(); + this.moving = true; + this.start(); }; /** - * select zero or more edges - * @param {Number[] | String[]} selection An array with the ids of the - * selected nodes. + * This loads the node force solver based on the barnes hut or repulsion algorithm + * + * @private */ - exports.selectEdges = function(selection) { - var i, iMax, id; - - if (!selection || (selection.length == undefined)) - throw 'Selection must be an array with ids'; - - // first unselect any selected node - this._unselectAll(true); + exports._loadSelectedForceSolver = function () { + // this overloads the this._calculateNodeForces + if (this.constants.physics.barnesHut.enabled == true) { + this._clearMixin(RepulsionMixin); + this._clearMixin(HierarchialRepulsionMixin); - for (i = 0, iMax = selection.length; i < iMax; i++) { - id = selection[i]; + this.constants.physics.centralGravity = this.constants.physics.barnesHut.centralGravity; + this.constants.physics.springLength = this.constants.physics.barnesHut.springLength; + this.constants.physics.springConstant = this.constants.physics.barnesHut.springConstant; + this.constants.physics.damping = this.constants.physics.barnesHut.damping; - var edge = this.edges[id]; - if (!edge) { - throw new RangeError('Edge with id "' + id + '" not found'); - } - this._selectObject(edge,true,true,highlightEdges); + this._loadMixin(BarnesHutMixin); } - this.redraw(); - }; + else if (this.constants.physics.hierarchicalRepulsion.enabled == true) { + this._clearMixin(BarnesHutMixin); + this._clearMixin(RepulsionMixin); - /** - * Validate the selection: remove ids of nodes which no longer exist - * @private - */ - exports._updateSelection = function () { - for(var nodeId in this.selectionObj.nodes) { - if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { - if (!this.nodes.hasOwnProperty(nodeId)) { - delete this.selectionObj.nodes[nodeId]; - } - } - } - for(var edgeId in this.selectionObj.edges) { - if(this.selectionObj.edges.hasOwnProperty(edgeId)) { - if (!this.edges.hasOwnProperty(edgeId)) { - delete this.selectionObj.edges[edgeId]; - } - } - } - }; + this.constants.physics.centralGravity = this.constants.physics.hierarchicalRepulsion.centralGravity; + this.constants.physics.springLength = this.constants.physics.hierarchicalRepulsion.springLength; + this.constants.physics.springConstant = this.constants.physics.hierarchicalRepulsion.springConstant; + this.constants.physics.damping = this.constants.physics.hierarchicalRepulsion.damping; + this._loadMixin(HierarchialRepulsionMixin); + } + else { + this._clearMixin(BarnesHutMixin); + this._clearMixin(HierarchialRepulsionMixin); + this.barnesHutTree = undefined; -/***/ }, -/* 58 */ -/***/ function(module, exports, __webpack_require__) { + this.constants.physics.centralGravity = this.constants.physics.repulsion.centralGravity; + this.constants.physics.springLength = this.constants.physics.repulsion.springLength; + this.constants.physics.springConstant = this.constants.physics.repulsion.springConstant; + this.constants.physics.damping = this.constants.physics.repulsion.damping; - var util = __webpack_require__(1); - var Node = __webpack_require__(47); - var Edge = __webpack_require__(48); + this._loadMixin(RepulsionMixin); + } + }; /** - * clears the toolbar div element of children + * Before calculating the forces, we check if we need to cluster to keep up performance and we check + * if there is more than one node. If it is just one node, we dont calculate anything. * * @private */ - exports._clearManipulatorBar = function() { - while (this.manipulationDiv.hasChildNodes()) { - this.manipulationDiv.removeChild(this.manipulationDiv.firstChild); + exports._initializeForceCalculation = function () { + // stop calculation if there is only one node + if (this.nodeIndices.length == 1) { + this.nodes[this.nodeIndices[0]]._setForce(0, 0); + } + else { + // if there are too many nodes on screen, we cluster without repositioning + if (this.nodeIndices.length > this.constants.clustering.clusterThreshold && this.constants.clustering.enabled == true) { + this.clusterToFit(this.constants.clustering.reduceToNodes, false); + } + + // we now start the force calculation + this._calculateForces(); } }; + /** - * 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. - * + * Calculate the external forces acting on the nodes + * Forces are caused by: edges, repulsing forces between nodes, gravity * @private */ - exports._restoreOverloadedFunctions = function() { - for (var functionName in this.cachedFunctions) { - if (this.cachedFunctions.hasOwnProperty(functionName)) { - this[functionName] = this.cachedFunctions[functionName]; + exports._calculateForces = function () { + // Gravity is required to keep separated groups from floating off + // the forces are reset to zero in this loop by using _setForce instead + // of _addForce + + this._calculateGravitationalForces(); + this._calculateNodeForces(); + + if (this.constants.physics.springConstant > 0) { + if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { + this._calculateSpringForcesWithSupport(); + } + else { + if (this.constants.physics.hierarchicalRepulsion.enabled == true) { + this._calculateHierarchicalSpringForces(); + } + else { + this._calculateSpringForces(); + } } } }; + /** - * Enable or disable edit-mode. + * Smooth curves are created by adding invisible nodes in the center of the edges. These nodes are also + * handled in the calculateForces function. We then use a quadratic curve with the center node as control. + * This function joins the datanodes and invisible (called support) nodes into one object. + * We do this so we do not contaminate this.nodes with the support nodes. * * @private */ - exports._toggleEditMode = function() { - this.editMode = !this.editMode; - var toolbar = document.getElementById("network-manipulationDiv"); - var closeDiv = document.getElementById("network-manipulation-closeDiv"); - var editModeDiv = document.getElementById("network-manipulation-editMode"); - if (this.editMode == true) { - toolbar.style.display="block"; - closeDiv.style.display="block"; - editModeDiv.style.display="none"; - closeDiv.onclick = this._toggleEditMode.bind(this); + exports._updateCalculationNodes = function () { + if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { + this.calculationNodes = {}; + this.calculationNodeIndices = []; + + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + this.calculationNodes[nodeId] = this.nodes[nodeId]; + } + } + var supportNodes = this.sectors['support']['nodes']; + for (var supportNodeId in supportNodes) { + if (supportNodes.hasOwnProperty(supportNodeId)) { + if (this.edges.hasOwnProperty(supportNodes[supportNodeId].parentEdgeId)) { + this.calculationNodes[supportNodeId] = supportNodes[supportNodeId]; + } + else { + supportNodes[supportNodeId]._setForce(0, 0); + } + } + } + + for (var idx in this.calculationNodes) { + if (this.calculationNodes.hasOwnProperty(idx)) { + this.calculationNodeIndices.push(idx); + } + } } else { - toolbar.style.display="none"; - closeDiv.style.display="none"; - editModeDiv.style.display="block"; - closeDiv.onclick = null; + this.calculationNodes = this.nodes; + this.calculationNodeIndices = this.nodeIndices; } - this._createManipulatorBar() }; + /** - * main function, creates the main toolbar. Removes functions bound to the select event. Binds all the buttons of the toolbar. + * this function applies the central gravity effect to keep groups from floating off * * @private */ - exports._createManipulatorBar = function() { - // remove bound functions - if (this.boundFunction) { - this.off('select', this.boundFunction); - } - - if (this.edgeBeingEdited !== undefined) { - this.edgeBeingEdited._disableControlNodes(); - this.edgeBeingEdited = undefined; - this.selectedControlNode = null; - this.controlNodesActive = false; - } - - // restore overloaded functions - this._restoreOverloadedFunctions(); - - // resume calculation - this.freezeSimulation = false; - - // reset global variables - this.blockConnectingEdgeSelection = false; - this.forceAppendSelection = false; - - if (this.editMode == true) { - while (this.manipulationDiv.hasChildNodes()) { - this.manipulationDiv.removeChild(this.manipulationDiv.firstChild); - } - // add the icons to the manipulator div - this.manipulationDiv.innerHTML = "" + - "" + - ""+this.constants.labels['add'] +"" + - "
" + - "" + - ""+this.constants.labels['link'] +""; - if (this._getSelectedNodeCount() == 1 && this.triggerFunctions.edit) { - this.manipulationDiv.innerHTML += "" + - "
" + - "" + - ""+this.constants.labels['editNode'] +""; - } - else if (this._getSelectedEdgeCount() == 1 && this._getSelectedNodeCount() == 0) { - this.manipulationDiv.innerHTML += "" + - "
" + - "" + - ""+this.constants.labels['editEdge'] +""; - } - if (this._selectionIsEmpty() == false) { - this.manipulationDiv.innerHTML += "" + - "
" + - "" + - ""+this.constants.labels['del'] +""; - } + exports._calculateGravitationalForces = function () { + var dx, dy, distance, node, i; + var nodes = this.calculationNodes; + var gravity = this.constants.physics.centralGravity; + var gravityForce = 0; + for (i = 0; i < this.calculationNodeIndices.length; i++) { + node = nodes[this.calculationNodeIndices[i]]; + node.damping = this.constants.physics.damping; // possibly add function to alter damping properties of clusters. + // gravity does not apply when we are in a pocket sector + if (this._sector() == "default" && gravity != 0) { + dx = -node.x; + dy = -node.y; + distance = Math.sqrt(dx * dx + dy * dy); - // bind the icons - var addNodeButton = document.getElementById("network-manipulate-addNode"); - addNodeButton.onclick = this._createAddNodeToolbar.bind(this); - var addEdgeButton = document.getElementById("network-manipulate-connectNode"); - addEdgeButton.onclick = this._createAddEdgeToolbar.bind(this); - if (this._getSelectedNodeCount() == 1 && this.triggerFunctions.edit) { - var editButton = document.getElementById("network-manipulate-editNode"); - editButton.onclick = this._editNode.bind(this); - } - else if (this._getSelectedEdgeCount() == 1 && this._getSelectedNodeCount() == 0) { - var editButton = document.getElementById("network-manipulate-editEdge"); - editButton.onclick = this._createEditEdgeToolbar.bind(this); + gravityForce = (distance == 0) ? 0 : (gravity / distance); + node.fx = dx * gravityForce; + node.fy = dy * gravityForce; } - if (this._selectionIsEmpty() == false) { - var deleteButton = document.getElementById("network-manipulate-delete"); - deleteButton.onclick = this._deleteSelected.bind(this); + else { + node.fx = 0; + node.fy = 0; } - var closeDiv = document.getElementById("network-manipulation-closeDiv"); - closeDiv.onclick = this._toggleEditMode.bind(this); - - this.boundFunction = this._createManipulatorBar.bind(this); - this.on('select', this.boundFunction); - } - else { - this.editModeDiv.innerHTML = "" + - "" + - "" + this.constants.labels['edit'] + ""; - var editModeButton = document.getElementById("network-manipulate-editModeButton"); - editModeButton.onclick = this._toggleEditMode.bind(this); } }; + /** - * Create the toolbar for adding Nodes + * this function calculates the effects of the springs in the case of unsmooth curves. * * @private */ - exports._createAddNodeToolbar = function() { - // clear the toolbar - this._clearManipulatorBar(); - if (this.boundFunction) { - this.off('select', this.boundFunction); - } + exports._calculateSpringForces = function () { + var edgeLength, edge, edgeId; + var dx, dy, fx, fy, springForce, distance; + var edges = this.edges; - // create the toolbar contents - this.manipulationDiv.innerHTML = "" + - "" + - "" + this.constants.labels['back'] + " " + - "
" + - "" + - "" + this.constants.labels['addDescription'] + ""; + // forces caused by the edges, modelled as springs + for (edgeId in edges) { + if (edges.hasOwnProperty(edgeId)) { + edge = edges[edgeId]; + if (edge.connected) { + // only calculate forces if nodes are in the same sector + if (this.nodes.hasOwnProperty(edge.toId) && this.nodes.hasOwnProperty(edge.fromId)) { + edgeLength = edge.physics.springLength; + // this implies that the edges between big clusters are longer + edgeLength += (edge.to.clusterSize + edge.from.clusterSize - 2) * this.constants.clustering.edgeGrowth; + + dx = (edge.from.x - edge.to.x); + dy = (edge.from.y - edge.to.y); + distance = Math.sqrt(dx * dx + dy * dy); + + if (distance == 0) { + distance = 0.01; + } + + // the 1/distance is so the fx and fy can be calculated without sine or cosine. + springForce = this.constants.physics.springConstant * (edgeLength - distance) / distance; + + fx = dx * springForce; + fy = dy * springForce; + + edge.from.fx += fx; + edge.from.fy += fy; + edge.to.fx -= fx; + edge.to.fy -= fy; + } + } + } + } + }; - // bind the icon - var backButton = document.getElementById("network-manipulate-back"); - backButton.onclick = this._createManipulatorBar.bind(this); - // we use the boundFunction so we can reference it when we unbind it from the "select" event. - this.boundFunction = this._addNode.bind(this); - this.on('select', this.boundFunction); - }; /** - * create the toolbar to connect nodes + * This function calculates the springforces on the nodes, accounting for the support nodes. * * @private */ - exports._createAddEdgeToolbar = function() { - // clear the toolbar - this._clearManipulatorBar(); - this._unselectAll(true); - this.freezeSimulation = true; + exports._calculateSpringForcesWithSupport = function () { + var edgeLength, edge, edgeId, combinedClusterSize; + var edges = this.edges; - if (this.boundFunction) { - this.off('select', this.boundFunction); + // forces caused by the edges, modelled as springs + for (edgeId in edges) { + if (edges.hasOwnProperty(edgeId)) { + edge = edges[edgeId]; + if (edge.connected) { + // only calculate forces if nodes are in the same sector + if (this.nodes.hasOwnProperty(edge.toId) && this.nodes.hasOwnProperty(edge.fromId)) { + if (edge.via != null) { + var node1 = edge.to; + var node2 = edge.via; + var node3 = edge.from; + + edgeLength = edge.physics.springLength; + + combinedClusterSize = node1.clusterSize + node3.clusterSize - 2; + + // this implies that the edges between big clusters are longer + edgeLength += combinedClusterSize * this.constants.clustering.edgeGrowth; + this._calculateSpringForce(node1, node2, 0.5 * edgeLength); + this._calculateSpringForce(node2, node3, 0.5 * edgeLength); + } + } + } + } } + }; - this._unselectAll(); - this.forceAppendSelection = false; - this.blockConnectingEdgeSelection = true; - this.manipulationDiv.innerHTML = "" + - "" + - "" + this.constants.labels['back'] + " " + - "
" + - "" + - "" + this.constants.labels['linkDescription'] + ""; + /** + * This is the code actually performing the calculation for the function above. It is split out to avoid repetition. + * + * @param node1 + * @param node2 + * @param edgeLength + * @private + */ + exports._calculateSpringForce = function (node1, node2, edgeLength) { + var dx, dy, fx, fy, springForce, distance; - // bind the icon - var backButton = document.getElementById("network-manipulate-back"); - backButton.onclick = this._createManipulatorBar.bind(this); + dx = (node1.x - node2.x); + dy = (node1.y - node2.y); + distance = Math.sqrt(dx * dx + dy * dy); - // we use the boundFunction so we can reference it when we unbind it from the "select" event. - this.boundFunction = this._handleConnect.bind(this); - this.on('select', this.boundFunction); + if (distance == 0) { + distance = 0.01; + } - // temporarily overload functions - this.cachedFunctions["_handleTouch"] = this._handleTouch; - this.cachedFunctions["_handleOnRelease"] = this._handleOnRelease; - this._handleTouch = this._handleConnect; - this._handleOnRelease = this._finishConnect; + // the 1/distance is so the fx and fy can be calculated without sine or cosine. + springForce = this.constants.physics.springConstant * (edgeLength - distance) / distance; - // redraw to show the unselect - this._redraw(); + fx = dx * springForce; + fy = dy * springForce; + + node1.fx += fx; + node1.fy += fy; + node2.fx -= fx; + node2.fy -= fy; }; + /** - * create the toolbar to edit edges - * + * Load the HTML for the physics config and bind it * @private */ - exports._createEditEdgeToolbar = function() { - // clear the toolbar - this._clearManipulatorBar(); - this.controlNodesActive = true; + exports._loadPhysicsConfiguration = function () { + if (this.physicsConfiguration === undefined) { + this.backupConstants = {}; + util.deepExtend(this.backupConstants,this.constants); - if (this.boundFunction) { - this.off('select', this.boundFunction); - } + var hierarchicalLayoutDirections = ["LR", "RL", "UD", "DU"]; + this.physicsConfiguration = document.createElement('div'); + this.physicsConfiguration.className = "PhysicsConfiguration"; + this.physicsConfiguration.innerHTML = '' + + '' + + '' + + '' + + '' + + '' + + '' + + '
Simulation Mode:
Barnes HutRepulsionHierarchical
' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '
Options:
' + this.containerElement.parentElement.insertBefore(this.physicsConfiguration, this.containerElement); + this.optionsDiv = document.createElement("div"); + this.optionsDiv.style.fontSize = "14px"; + this.optionsDiv.style.fontFamily = "verdana"; + this.containerElement.parentElement.insertBefore(this.optionsDiv, this.containerElement); - this.edgeBeingEdited = this._getSelectedEdge(); - this.edgeBeingEdited._enableControlNodes(); + var rangeElement; + rangeElement = document.getElementById('graph_BH_gc'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_BH_gc', -1, "physics_barnesHut_gravitationalConstant"); + rangeElement = document.getElementById('graph_BH_cg'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_BH_cg', 1, "physics_centralGravity"); + rangeElement = document.getElementById('graph_BH_sc'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_BH_sc', 1, "physics_springConstant"); + rangeElement = document.getElementById('graph_BH_sl'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_BH_sl', 1, "physics_springLength"); + rangeElement = document.getElementById('graph_BH_damp'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_BH_damp', 1, "physics_damping"); - this.manipulationDiv.innerHTML = "" + - "" + - "" + this.constants.labels['back'] + " " + - "
" + - "" + - "" + this.constants.labels['editEdgeDescription'] + ""; + rangeElement = document.getElementById('graph_R_nd'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_R_nd', 1, "physics_repulsion_nodeDistance"); + rangeElement = document.getElementById('graph_R_cg'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_R_cg', 1, "physics_centralGravity"); + rangeElement = document.getElementById('graph_R_sc'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_R_sc', 1, "physics_springConstant"); + rangeElement = document.getElementById('graph_R_sl'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_R_sl', 1, "physics_springLength"); + rangeElement = document.getElementById('graph_R_damp'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_R_damp', 1, "physics_damping"); - // bind the icon - var backButton = document.getElementById("network-manipulate-back"); - backButton.onclick = this._createManipulatorBar.bind(this); + rangeElement = document.getElementById('graph_H_nd'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_nd', 1, "physics_hierarchicalRepulsion_nodeDistance"); + rangeElement = document.getElementById('graph_H_cg'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_cg', 1, "physics_centralGravity"); + rangeElement = document.getElementById('graph_H_sc'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_sc', 1, "physics_springConstant"); + rangeElement = document.getElementById('graph_H_sl'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_sl', 1, "physics_springLength"); + rangeElement = document.getElementById('graph_H_damp'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_damp', 1, "physics_damping"); + rangeElement = document.getElementById('graph_H_direction'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_direction', hierarchicalLayoutDirections, "hierarchicalLayout_direction"); + rangeElement = document.getElementById('graph_H_levsep'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_levsep', 1, "hierarchicalLayout_levelSeparation"); + rangeElement = document.getElementById('graph_H_nspac'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_nspac', 1, "hierarchicalLayout_nodeSpacing"); - // temporarily overload functions - this.cachedFunctions["_handleTouch"] = this._handleTouch; - this.cachedFunctions["_handleOnRelease"] = this._handleOnRelease; - this.cachedFunctions["_handleTap"] = this._handleTap; - this.cachedFunctions["_handleDragStart"] = this._handleDragStart; - this.cachedFunctions["_handleOnDrag"] = this._handleOnDrag; - this._handleTouch = this._selectControlNode; - this._handleTap = function () {}; - this._handleOnDrag = this._controlNodeDrag; - this._handleDragStart = function () {} - this._handleOnRelease = this._releaseControlNode; + var radioButton1 = document.getElementById("graph_physicsMethod1"); + var radioButton2 = document.getElementById("graph_physicsMethod2"); + var radioButton3 = document.getElementById("graph_physicsMethod3"); + radioButton2.checked = true; + if (this.constants.physics.barnesHut.enabled) { + radioButton1.checked = true; + } + if (this.constants.hierarchicalLayout.enabled) { + radioButton3.checked = true; + } - // redraw to show the unselect - this._redraw(); - }; + var graph_toggleSmooth = document.getElementById("graph_toggleSmooth"); + var graph_repositionNodes = document.getElementById("graph_repositionNodes"); + var graph_generateOptions = document.getElementById("graph_generateOptions"); + graph_toggleSmooth.onclick = graphToggleSmoothCurves.bind(this); + graph_repositionNodes.onclick = graphRepositionNodes.bind(this); + graph_generateOptions.onclick = graphGenerateOptions.bind(this); + if (this.constants.smoothCurves == true && this.constants.dynamicSmoothCurves == false) { + graph_toggleSmooth.style.background = "#A4FF56"; + } + else { + graph_toggleSmooth.style.background = "#FF8532"; + } + switchConfigurations.apply(this); + radioButton1.onchange = switchConfigurations.bind(this); + radioButton2.onchange = switchConfigurations.bind(this); + radioButton3.onchange = switchConfigurations.bind(this); + } + }; /** - * the function bound to the selection event. It checks if you want to connect a cluster and changes the description - * to walk the user through the process. + * This overwrites the this.constants. * + * @param constantsVariableName + * @param value * @private */ - exports._selectControlNode = function(pointer) { - this.edgeBeingEdited.controlNodes.from.unselect(); - this.edgeBeingEdited.controlNodes.to.unselect(); - this.selectedControlNode = this.edgeBeingEdited._getSelectedControlNode(this._XconvertDOMtoCanvas(pointer.x),this._YconvertDOMtoCanvas(pointer.y)); - if (this.selectedControlNode !== null) { - this.selectedControlNode.select(); - this.freezeSimulation = true; + exports._overWriteGraphConstants = function (constantsVariableName, value) { + var nameArray = constantsVariableName.split("_"); + if (nameArray.length == 1) { + this.constants[nameArray[0]] = value; + } + else if (nameArray.length == 2) { + this.constants[nameArray[0]][nameArray[1]] = value; + } + else if (nameArray.length == 3) { + this.constants[nameArray[0]][nameArray[1]][nameArray[2]] = value; } - this._redraw(); }; + /** - * the function bound to the selection event. It checks if you want to connect a cluster and changes the description - * to walk the user through the process. - * - * @private + * this function is bound to the toggle smooth curves button. That is also why it is not in the prototype. */ - exports._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(); - }; + function graphToggleSmoothCurves () { + this.constants.smoothCurves.enabled = !this.constants.smoothCurves.enabled; + var graph_toggleSmooth = document.getElementById("graph_toggleSmooth"); + if (this.constants.smoothCurves.enabled == true) {graph_toggleSmooth.style.background = "#A4FF56";} + else {graph_toggleSmooth.style.background = "#FF8532";} - exports._releaseControlNode = function(pointer) { - var newNode = this._getNodeAt(pointer); - if (newNode != null) { - if (this.edgeBeingEdited.controlNodes.from.selected == true) { - this._editEdge(newNode.id, this.edgeBeingEdited.to.id); - this.edgeBeingEdited.controlNodes.from.unselect(); - } - if (this.edgeBeingEdited.controlNodes.to.selected == true) { - this._editEdge(this.edgeBeingEdited.from.id, newNode.id); - this.edgeBeingEdited.controlNodes.to.unselect(); + this._configureSmoothCurves(false); + } + + /** + * this function is used to scramble the nodes + * + */ + function graphRepositionNodes () { + for (var nodeId in this.calculationNodes) { + if (this.calculationNodes.hasOwnProperty(nodeId)) { + this.calculationNodes[nodeId].vx = 0; this.calculationNodes[nodeId].vy = 0; + this.calculationNodes[nodeId].fx = 0; this.calculationNodes[nodeId].fy = 0; } } + if (this.constants.hierarchicalLayout.enabled == true) { + this._setupHierarchicalLayout(); + showValueOfRange.call(this, 'graph_H_nd', 1, "physics_hierarchicalRepulsion_nodeDistance"); + showValueOfRange.call(this, 'graph_H_cg', 1, "physics_centralGravity"); + showValueOfRange.call(this, 'graph_H_sc', 1, "physics_springConstant"); + showValueOfRange.call(this, 'graph_H_sl', 1, "physics_springLength"); + showValueOfRange.call(this, 'graph_H_damp', 1, "physics_damping"); + } else { - this.edgeBeingEdited._restoreControlNodes(); + this.repositionNodes(); } - this.freezeSimulation = false; - this._redraw(); - }; + this.moving = true; + this.start(); + } /** - * the function bound to the selection event. It checks if you want to connect a cluster and changes the description - * to walk the user through the process. - * - * @private + * this is used to generate an options file from the playing with physics system. */ - exports._handleConnect = function(pointer) { - if (this._getSelectedNodeCount() == 0) { - var node = this._getNodeAt(pointer); - if (node != null) { - if (node.clusterSize > 1) { - alert("Cannot create edges to a cluster.") - } - else { - this._selectObject(node,false); - // create a node the temporary line can look at - this.sectors['support']['nodes']['targetNode'] = new Node({id:'targetNode'},{},{},this.constants); - this.sectors['support']['nodes']['targetNode'].x = node.x; - this.sectors['support']['nodes']['targetNode'].y = node.y; - this.sectors['support']['nodes']['targetViaNode'] = new Node({id:'targetViaNode'},{},{},this.constants); - this.sectors['support']['nodes']['targetViaNode'].x = node.x; - this.sectors['support']['nodes']['targetViaNode'].y = node.y; - this.sectors['support']['nodes']['targetViaNode'].parentEdgeId = "connectionEdge"; - - // create a temporary edge - this.edges['connectionEdge'] = new Edge({id:"connectionEdge",from:node.id,to:this.sectors['support']['nodes']['targetNode'].id}, this, this.constants); - this.edges['connectionEdge'].from = node; - this.edges['connectionEdge'].connected = true; - this.edges['connectionEdge'].smooth = true; - this.edges['connectionEdge'].selected = true; - this.edges['connectionEdge'].to = this.sectors['support']['nodes']['targetNode']; - this.edges['connectionEdge'].via = this.sectors['support']['nodes']['targetViaNode']; - - this.cachedFunctions["_handleOnDrag"] = this._handleOnDrag; - this._handleOnDrag = function(event) { - var pointer = this._getPointer(event.gesture.center); - this.sectors['support']['nodes']['targetNode'].x = this._XconvertDOMtoCanvas(pointer.x); - this.sectors['support']['nodes']['targetNode'].y = this._YconvertDOMtoCanvas(pointer.y); - this.sectors['support']['nodes']['targetViaNode'].x = 0.5 * (this._XconvertDOMtoCanvas(pointer.x) + this.edges['connectionEdge'].from.x); - this.sectors['support']['nodes']['targetViaNode'].y = this._YconvertDOMtoCanvas(pointer.y); - }; - - this.moving = true; - this.start(); + function graphGenerateOptions () { + var options = "No options are required, default values used."; + var optionsSpecific = []; + var radioButton1 = document.getElementById("graph_physicsMethod1"); + var radioButton2 = document.getElementById("graph_physicsMethod2"); + if (radioButton1.checked == true) { + if (this.constants.physics.barnesHut.gravitationalConstant != this.backupConstants.physics.barnesHut.gravitationalConstant) {optionsSpecific.push("gravitationalConstant: " + this.constants.physics.barnesHut.gravitationalConstant);} + if (this.constants.physics.centralGravity != this.backupConstants.physics.barnesHut.centralGravity) {optionsSpecific.push("centralGravity: " + this.constants.physics.centralGravity);} + if (this.constants.physics.springLength != this.backupConstants.physics.barnesHut.springLength) {optionsSpecific.push("springLength: " + this.constants.physics.springLength);} + if (this.constants.physics.springConstant != this.backupConstants.physics.barnesHut.springConstant) {optionsSpecific.push("springConstant: " + this.constants.physics.springConstant);} + if (this.constants.physics.damping != this.backupConstants.physics.barnesHut.damping) {optionsSpecific.push("damping: " + this.constants.physics.damping);} + if (optionsSpecific.length != 0) { + options = "var options = {"; + options += "physics: {barnesHut: {"; + for (var i = 0; i < optionsSpecific.length; i++) { + options += optionsSpecific[i]; + if (i < optionsSpecific.length - 1) { + options += ", " + } } + options += '}}' + } + if (this.constants.smoothCurves.enabled != this.backupConstants.smoothCurves.enabled) { + if (optionsSpecific.length == 0) {options = "var options = {";} + else {options += ", "} + options += "smoothCurves: " + this.constants.smoothCurves.enabled; + } + if (options != "No options are required, default values used.") { + options += '};' } } - }; - - exports._finishConnect = function(pointer) { - if (this._getSelectedNodeCount() == 1) { - - // restore the drag function - this._handleOnDrag = this.cachedFunctions["_handleOnDrag"]; - delete this.cachedFunctions["_handleOnDrag"]; - - // remember the edge id - var connectFromId = this.edges['connectionEdge'].fromId; - - // remove the temporary nodes and edge - delete this.edges['connectionEdge']; - delete this.sectors['support']['nodes']['targetNode']; - delete this.sectors['support']['nodes']['targetViaNode']; - - var node = this._getNodeAt(pointer); - if (node != null) { - if (node.clusterSize > 1) { - alert("Cannot create edges to a cluster.") - } - else { - this._createEdge(connectFromId,node.id); - this._createManipulatorBar(); + else if (radioButton2.checked == true) { + options = "var options = {"; + options += "physics: {barnesHut: {enabled: false}"; + if (this.constants.physics.repulsion.nodeDistance != this.backupConstants.physics.repulsion.nodeDistance) {optionsSpecific.push("nodeDistance: " + this.constants.physics.repulsion.nodeDistance);} + if (this.constants.physics.centralGravity != this.backupConstants.physics.repulsion.centralGravity) {optionsSpecific.push("centralGravity: " + this.constants.physics.centralGravity);} + if (this.constants.physics.springLength != this.backupConstants.physics.repulsion.springLength) {optionsSpecific.push("springLength: " + this.constants.physics.springLength);} + if (this.constants.physics.springConstant != this.backupConstants.physics.repulsion.springConstant) {optionsSpecific.push("springConstant: " + this.constants.physics.springConstant);} + if (this.constants.physics.damping != this.backupConstants.physics.repulsion.damping) {optionsSpecific.push("damping: " + this.constants.physics.damping);} + if (optionsSpecific.length != 0) { + options += ", repulsion: {"; + for (var i = 0; i < optionsSpecific.length; i++) { + options += optionsSpecific[i]; + if (i < optionsSpecific.length - 1) { + options += ", " + } } + options += '}}' } - this._unselectAll(); + if (optionsSpecific.length == 0) {options += "}"} + if (this.constants.smoothCurves != this.backupConstants.smoothCurves) { + options += ", smoothCurves: " + this.constants.smoothCurves; + } + options += '};' } - }; - - - /** - * Adds a node on the specified location - */ - exports._addNode = function() { - if (this._selectionIsEmpty() && this.editMode == true) { - var positionObject = this._pointerToPositionObject(this.pointerPosition); - var defaultData = {id:util.randomUUID(),x:positionObject.left,y:positionObject.top,label:"new",allowedToMoveX:true,allowedToMoveY:true}; - if (this.triggerFunctions.add) { - if (this.triggerFunctions.add.length == 2) { - var me = this; - this.triggerFunctions.add(defaultData, function(finalizedData) { - me.nodesData.add(finalizedData); - me._createManipulatorBar(); - me.moving = true; - me.start(); - }); + else { + options = "var options = {"; + if (this.constants.physics.hierarchicalRepulsion.nodeDistance != this.backupConstants.physics.hierarchicalRepulsion.nodeDistance) {optionsSpecific.push("nodeDistance: " + this.constants.physics.hierarchicalRepulsion.nodeDistance);} + if (this.constants.physics.centralGravity != this.backupConstants.physics.hierarchicalRepulsion.centralGravity) {optionsSpecific.push("centralGravity: " + this.constants.physics.centralGravity);} + if (this.constants.physics.springLength != this.backupConstants.physics.hierarchicalRepulsion.springLength) {optionsSpecific.push("springLength: " + this.constants.physics.springLength);} + if (this.constants.physics.springConstant != this.backupConstants.physics.hierarchicalRepulsion.springConstant) {optionsSpecific.push("springConstant: " + this.constants.physics.springConstant);} + if (this.constants.physics.damping != this.backupConstants.physics.hierarchicalRepulsion.damping) {optionsSpecific.push("damping: " + this.constants.physics.damping);} + if (optionsSpecific.length != 0) { + options += "physics: {hierarchicalRepulsion: {"; + for (var i = 0; i < optionsSpecific.length; i++) { + options += optionsSpecific[i]; + if (i < optionsSpecific.length - 1) { + options += ", "; + } } - else { - alert(this.constants.labels['addError']); - this._createManipulatorBar(); - this.moving = true; - this.start(); + options += '}},'; + } + options += 'hierarchicalLayout: {'; + optionsSpecific = []; + if (this.constants.hierarchicalLayout.direction != this.backupConstants.hierarchicalLayout.direction) {optionsSpecific.push("direction: " + this.constants.hierarchicalLayout.direction);} + if (Math.abs(this.constants.hierarchicalLayout.levelSeparation) != this.backupConstants.hierarchicalLayout.levelSeparation) {optionsSpecific.push("levelSeparation: " + this.constants.hierarchicalLayout.levelSeparation);} + if (this.constants.hierarchicalLayout.nodeSpacing != this.backupConstants.hierarchicalLayout.nodeSpacing) {optionsSpecific.push("nodeSpacing: " + this.constants.hierarchicalLayout.nodeSpacing);} + if (optionsSpecific.length != 0) { + for (var i = 0; i < optionsSpecific.length; i++) { + options += optionsSpecific[i]; + if (i < optionsSpecific.length - 1) { + options += ", " + } } + options += '}' } else { - this.nodesData.add(defaultData); - this._createManipulatorBar(); - this.moving = true; - this.start(); + options += "enabled:true}"; } + options += '};' } - }; - /** - * connect two nodes with a new edge. - * - * @private - */ - exports._createEdge = function(sourceNodeId,targetNodeId) { - if (this.editMode == true) { - var defaultData = {from:sourceNodeId, to:targetNodeId}; - if (this.triggerFunctions.connect) { - if (this.triggerFunctions.connect.length == 2) { - var me = this; - this.triggerFunctions.connect(defaultData, function(finalizedData) { - me.edgesData.add(finalizedData); - me.moving = true; - me.start(); - }); - } - else { - alert(this.constants.labels["linkError"]); - this.moving = true; - this.start(); - } - } - else { - this.edgesData.add(defaultData); - this.moving = true; - this.start(); - } - } - }; + this.optionsDiv.innerHTML = options; + } /** - * connect two nodes with a new edge. + * this is used to switch between barnesHut, repulsion and hierarchical. * - * @private */ - exports._editEdge = function(sourceNodeId,targetNodeId) { - if (this.editMode == true) { - var defaultData = {id: this.edgeBeingEdited.id, from:sourceNodeId, to:targetNodeId}; - if (this.triggerFunctions.editEdge) { - if (this.triggerFunctions.editEdge.length == 2) { - var me = this; - this.triggerFunctions.editEdge(defaultData, function(finalizedData) { - me.edgesData.update(finalizedData); - me.moving = true; - me.start(); - }); - } - else { - alert(this.constants.labels["linkError"]); - this.moving = true; - this.start(); - } + function switchConfigurations () { + var ids = ["graph_BH_table", "graph_R_table", "graph_H_table"]; + var radioButton = document.querySelector('input[name="graph_physicsMethod"]:checked').value; + var tableId = "graph_" + radioButton + "_table"; + var table = document.getElementById(tableId); + table.style.display = "block"; + for (var i = 0; i < ids.length; i++) { + if (ids[i] != tableId) { + table = document.getElementById(ids[i]); + table.style.display = "none"; } - else { - this.edgesData.update(defaultData); - this.moving = true; - this.start(); + } + this._restoreNodes(); + if (radioButton == "R") { + this.constants.hierarchicalLayout.enabled = false; + this.constants.physics.hierarchicalRepulsion.enabled = false; + this.constants.physics.barnesHut.enabled = false; + } + else if (radioButton == "H") { + if (this.constants.hierarchicalLayout.enabled == false) { + this.constants.hierarchicalLayout.enabled = true; + this.constants.physics.hierarchicalRepulsion.enabled = true; + this.constants.physics.barnesHut.enabled = false; + this.constants.smoothCurves.enabled = false; + this._setupHierarchicalLayout(); } } - }; + else { + this.constants.hierarchicalLayout.enabled = false; + this.constants.physics.hierarchicalRepulsion.enabled = false; + this.constants.physics.barnesHut.enabled = true; + } + this._loadSelectedForceSolver(); + var graph_toggleSmooth = document.getElementById("graph_toggleSmooth"); + if (this.constants.smoothCurves.enabled == true) {graph_toggleSmooth.style.background = "#A4FF56";} + else {graph_toggleSmooth.style.background = "#FF8532";} + this.moving = true; + this.start(); + } + /** - * Create the toolbar to edit the selected node. The label and the color can be changed. Other colors are derived from the chosen color. + * this generates the ranges depending on the iniital values. * - * @private + * @param id + * @param map + * @param constantsVariableName */ - exports._editNode = function() { - if (this.triggerFunctions.edit && this.editMode == true) { - var node = this._getSelectedNode(); - var data = {id:node.id, - label: node.label, - group: node.options.group, - shape: node.options.shape, - color: { - background:node.options.color.background, - border:node.options.color.border, - highlight: { - background:node.options.color.highlight.background, - border:node.options.color.highlight.border - } - }}; - if (this.triggerFunctions.edit.length == 2) { - var me = this; - this.triggerFunctions.edit(data, function (finalizedData) { - me.nodesData.update(finalizedData); - me._createManipulatorBar(); - me.moving = true; - me.start(); - }); - } - else { - alert(this.constants.labels["editError"]); - } + function showValueOfRange (id,map,constantsVariableName) { + var valueId = id + "_value"; + var rangeValue = document.getElementById(id).value; + + if (map instanceof Array) { + document.getElementById(valueId).value = map[parseInt(rangeValue)]; + this._overWriteGraphConstants(constantsVariableName,map[parseInt(rangeValue)]); } else { - alert(this.constants.labels["editBoundError"]); + document.getElementById(valueId).value = parseInt(map) * parseFloat(rangeValue); + this._overWriteGraphConstants(constantsVariableName, parseInt(map) * parseFloat(rangeValue)); } - }; + if (constantsVariableName == "hierarchicalLayout_direction" || + constantsVariableName == "hierarchicalLayout_levelSeparation" || + constantsVariableName == "hierarchicalLayout_nodeSpacing") { + this._setupHierarchicalLayout(); + } + this.moving = true; + this.start(); + } + + +/***/ }, +/* 57 */ +/***/ function(module, exports, __webpack_require__) { + + var map = {}; + function webpackContext(req) { + return __webpack_require__(webpackContextResolve(req)); + }; + function webpackContextResolve(req) { + return map[req] || (function() { throw new Error("Cannot find module '" + req + "'.") }()); + }; + webpackContext.keys = function webpackContextKeys() { + return Object.keys(map); + }; + webpackContext.resolve = webpackContextResolve; + module.exports = webpackContext; +/***/ }, +/* 58 */ +/***/ function(module, exports, __webpack_require__) { /** - * delete everything in the selection + * Calculate the forces the nodes apply on each other based on a repulsion field. + * This field is linearly approximated. * * @private */ - exports._deleteSelected = function() { - if (!this._selectionIsEmpty() && this.editMode == true) { - if (!this._clusterInSelection()) { - var selectedNodes = this.getSelectedNodes(); - var selectedEdges = this.getSelectedEdges(); - if (this.triggerFunctions.del) { - var me = this; - var data = {nodes: selectedNodes, edges: selectedEdges}; - if (this.triggerFunctions.del.length = 2) { - this.triggerFunctions.del(data, function (finalizedData) { - me.edgesData.remove(finalizedData.edges); - me.nodesData.remove(finalizedData.nodes); - me._unselectAll(); - me.moving = true; - me.start(); - }); - } - else { - alert(this.constants.labels["deleteError"]) + exports._calculateNodeForces = function () { + var dx, dy, angle, distance, fx, fy, combinedClusterSize, + repulsingForce, node1, node2, i, j; + + var nodes = this.calculationNodes; + var nodeIndices = this.calculationNodeIndices; + + // approximation constants + var a_base = -2 / 3; + var b = 4 / 3; + + // repulsing forces between nodes + var nodeDistance = this.constants.physics.repulsion.nodeDistance; + var minimumDistance = nodeDistance; + + // we loop from i over all but the last entree in the array + // j loops from i+1 to the last. This way we do not double count any of the indices, nor i == j + for (i = 0; i < nodeIndices.length - 1; i++) { + node1 = nodes[nodeIndices[i]]; + for (j = i + 1; j < nodeIndices.length; j++) { + node2 = nodes[nodeIndices[j]]; + combinedClusterSize = node1.clusterSize + node2.clusterSize - 2; + + dx = node2.x - node1.x; + dy = node2.y - node1.y; + distance = Math.sqrt(dx * dx + dy * dy); + + minimumDistance = (combinedClusterSize == 0) ? nodeDistance : (nodeDistance * (1 + combinedClusterSize * this.constants.clustering.distanceAmplification)); + var a = a_base / minimumDistance; + if (distance < 2 * minimumDistance) { + if (distance < 0.5 * minimumDistance) { + repulsingForce = 1.0; } + else { + repulsingForce = a * distance + b; // linear approx of 1 / (1 + Math.exp((distance / minimumDistance - 1) * steepness)) + } + + // amplify the repulsion for clusters. + repulsingForce *= (combinedClusterSize == 0) ? 1 : 1 + combinedClusterSize * this.constants.clustering.forceAmplification; + repulsingForce = repulsingForce / distance; + + fx = dx * repulsingForce; + fy = dy * repulsingForce; + + node1.fx -= fx; + node1.fy -= fy; + node2.fx += fx; + node2.fy += fy; } - else { - this.edgesData.remove(selectedEdges); - this.nodesData.remove(selectedNodes); - this._unselectAll(); - this.moving = true; - this.start(); - } - } - else { - alert(this.constants.labels["deleteClusterError"]); } } }; @@ -30107,713 +30256,579 @@ return /******/ (function(modules) { // webpackBootstrap /* 59 */ /***/ function(module, exports, __webpack_require__) { - var util = __webpack_require__(1); - var Hammer = __webpack_require__(18); - - exports._cleanNavigation = function() { - // clean up previous navigation items - var wrapper = document.getElementById('network-navigation_wrapper'); - if (wrapper != null) { - this.containerElement.removeChild(wrapper); - } - document.onmouseup = null; - }; - /** - * Creation of the navigation controls nodes. They are drawn over the rest of the nodes and are not affected by scale and translation - * they have a triggerFunction which is called on click. If the position of the navigation controls is dependent - * on this.frame.canvas.clientWidth or this.frame.canvas.clientHeight, we flag horizontalAlignLeft and verticalAlignTop false. - * This means that the location will be corrected by the _relocateNavigation function on a size change of the canvas. + * Calculate the forces the nodes apply on eachother based on a repulsion field. + * This field is linearly approximated. * * @private */ - exports._loadNavigationElements = function() { - this._cleanNavigation(); + exports._calculateNodeForces = function () { + var dx, dy, distance, fx, fy, + repulsingForce, node1, node2, i, j; - this.navigationDivs = {}; - var navigationDivs = ['up','down','left','right','zoomIn','zoomOut','zoomExtends']; - var navigationDivActions = ['_moveUp','_moveDown','_moveLeft','_moveRight','_zoomIn','_zoomOut','zoomExtent']; + var nodes = this.calculationNodes; + var nodeIndices = this.calculationNodeIndices; - this.navigationDivs['wrapper'] = document.createElement('div'); - this.navigationDivs['wrapper'].id = "network-navigation_wrapper"; - this.navigationDivs['wrapper'].style.position = "absolute"; - this.navigationDivs['wrapper'].style.width = this.frame.canvas.clientWidth + "px"; - this.navigationDivs['wrapper'].style.height = this.frame.canvas.clientHeight + "px"; - this.containerElement.insertBefore(this.navigationDivs['wrapper'],this.frame); + // repulsing forces between nodes + var nodeDistance = this.constants.physics.hierarchicalRepulsion.nodeDistance; - var me = this; - for (var i = 0; i < navigationDivs.length; i++) { - this.navigationDivs[navigationDivs[i]] = document.createElement('div'); - this.navigationDivs[navigationDivs[i]].id = "network-navigation_" + navigationDivs[i]; - this.navigationDivs[navigationDivs[i]].className = "network-navigation " + navigationDivs[i]; - this.navigationDivs['wrapper'].appendChild(this.navigationDivs[navigationDivs[i]]); - var hammer = Hammer(this.navigationDivs[navigationDivs[i]], {prevent_default: true}); - hammer.on("touch", me[navigationDivActions[i]].bind(me)); - } - var hammer = Hammer(document, {prevent_default: false}); - hammer.on("release", me._stopMovement.bind(me)); - }; + // 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]]; - /** - * this stops all movement induced by the navigation buttons - * - * @private - */ - exports._stopMovement = function() { - this._xStopMoving(); - this._yStopMoving(); - this._stopZoom(); + // nodes only affect nodes on their level + if (node1.level == node2.level) { + + dx = node2.x - node1.x; + dy = node2.y - node1.y; + distance = Math.sqrt(dx * dx + dy * dy); + + + var steepness = 0.05; + if (distance < nodeDistance) { + repulsingForce = -Math.pow(steepness*distance,2) + Math.pow(steepness*nodeDistance,2); + } + else { + repulsingForce = 0; + } + // normalize force with + if (distance == 0) { + distance = 0.01; + } + else { + repulsingForce = repulsingForce / distance; + } + fx = dx * repulsingForce; + fy = dy * repulsingForce; + + node1.fx -= fx; + node1.fy -= fy; + node2.fx += fx; + node2.fy += fy; + } + } + } }; /** - * 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. + * this function calculates the effects of the springs in the case of unsmooth curves. * * @private */ - exports._moveUp = function(event) { - this.yIncrement = this.constants.keyboard.speed.y; - this.start(); // if there is no node movement, the calculation wont be done - }; + exports._calculateHierarchicalSpringForces = function () { + var edgeLength, edge, edgeId; + var dx, dy, fx, fy, springForce, distance; + var edges = this.edges; + var nodes = this.calculationNodes; + var nodeIndices = this.calculationNodeIndices; - /** - * 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 - }; + for (var i = 0; i < nodeIndices.length; i++) { + var node1 = nodes[nodeIndices[i]]; + node1.springFx = 0; + node1.springFy = 0; + } - /** - * 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 - }; + // forces caused by the edges, modelled as springs + for (edgeId in edges) { + if (edges.hasOwnProperty(edgeId)) { + edge = edges[edgeId]; + if (edge.connected) { + // only calculate forces if nodes are in the same sector + if (this.nodes.hasOwnProperty(edge.toId) && this.nodes.hasOwnProperty(edge.fromId)) { + edgeLength = edge.physics.springLength; + // this implies that the edges between big clusters are longer + edgeLength += (edge.to.clusterSize + edge.from.clusterSize - 2) * this.constants.clustering.edgeGrowth; - /** - * move the screen 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 - }; + dx = (edge.from.x - edge.to.x); + dy = (edge.from.y - edge.to.y); + distance = Math.sqrt(dx * dx + dy * dy); + if (distance == 0) { + distance = 0.01; + } - /** - * 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 - }; + // the 1/distance is so the fx and fy can be calculated without sine or cosine. + springForce = this.constants.physics.springConstant * (edgeLength - distance) / distance; + fx = dx * springForce; + fy = dy * springForce; - /** - * Zoom out - * @private - */ - exports._zoomOut = function() { - this.zoomIncrement = -this.constants.keyboard.speed.zoom; - this.start(); // if there is no node movement, the calculation wont be done - util.preventDefault(event); - }; - /** - * Stop zooming and unhighlight the zoom controls - * @private - */ - exports._stopZoom = function() { - this.zoomIncrement = 0; - }; + if (edge.to.level != edge.from.level) { + edge.to.springFx -= fx; + edge.to.springFy -= fy; + edge.from.springFx += fx; + edge.from.springFy += fy; + } + else { + var factor = 0.5; + edge.to.fx -= factor*fx; + edge.to.fy -= factor*fy; + edge.from.fx += factor*fx; + edge.from.fy += factor*fy; + } + } + } + } + } + // normalize spring forces + var springForce = 1; + var springFx, springFy; + for (i = 0; i < nodeIndices.length; i++) { + var node = nodes[nodeIndices[i]]; + springFx = Math.min(springForce,Math.max(-springForce,node.springFx)); + springFy = Math.min(springForce,Math.max(-springForce,node.springFy)); - /** - * Stop moving in the Y direction and unHighlight the up and down - * @private - */ - exports._yStopMoving = function() { - this.yIncrement = 0; - }; + node.fx += springFx; + node.fy += springFy; + } + + // retain energy balance + var totalFx = 0; + var totalFy = 0; + for (i = 0; i < nodeIndices.length; i++) { + var node = nodes[nodeIndices[i]]; + totalFx += node.fx; + totalFy += node.fy; + } + var correctionFx = totalFx / nodeIndices.length; + var correctionFy = totalFy / nodeIndices.length; + for (i = 0; i < nodeIndices.length; i++) { + var node = nodes[nodeIndices[i]]; + node.fx -= correctionFx; + node.fy -= correctionFy; + } - /** - * Stop moving in the X direction and unHighlight left and right. - * @private - */ - exports._xStopMoving = function() { - this.xIncrement = 0; }; - /***/ }, /* 60 */ /***/ function(module, exports, __webpack_require__) { - exports._resetLevels = function() { - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - var node = this.nodes[nodeId]; - if (node.preassignedLevel == false) { - node.level = -1; - } - } - } - }; - /** - * This is the main function to layout the nodes in a hierarchical way. - * It checks if the node details are supplied correctly + * 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 */ - exports._setupHierarchicalLayout = function() { - if (this.constants.hierarchicalLayout.enabled == true && this.nodeIndices.length > 0) { - if (this.constants.hierarchicalLayout.direction == "RL" || this.constants.hierarchicalLayout.direction == "DU") { - this.constants.hierarchicalLayout.levelSeparation *= -1; - } - else { - this.constants.hierarchicalLayout.levelSeparation = Math.abs(this.constants.hierarchicalLayout.levelSeparation); - } - - if (this.constants.hierarchicalLayout.direction == "RL" || this.constants.hierarchicalLayout.direction == "LR") { - if (this.constants.smoothCurves.enabled == true) { - this.constants.smoothCurves.type = "vertical"; - } - } - else { - if (this.constants.smoothCurves.enabled == true) { - this.constants.smoothCurves.type = "horizontal"; - } - } - // get the size of the largest hubs and check if the user has defined a level for a node. - var hubsize = 0; - var node, nodeId; - var definedLevel = false; - var undefinedLevel = false; + exports._calculateNodeForces = function() { + if (this.constants.physics.barnesHut.gravitationalConstant != 0) { + var node; + var nodes = this.calculationNodes; + var nodeIndices = this.calculationNodeIndices; + var nodeCount = nodeIndices.length; - for (nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - node = this.nodes[nodeId]; - if (node.level != -1) { - definedLevel = true; - } - else { - undefinedLevel = true; - } - if (hubsize < node.edges.length) { - hubsize = node.edges.length; - } - } - } + this._formBarnesHutTree(nodes,nodeIndices); - // if the user defined some levels but not all, alert and run without hierarchical layout - if (undefinedLevel == true && definedLevel == true) { - alert("To use the hierarchical layout, nodes require either no predefined levels or levels have to be defined for all nodes."); - this.zoomExtent(true,this.constants.clustering.enabled); - if (!this.constants.clustering.enabled) { - this.start(); - } - } - else { - // setup the system to use hierarchical method. - this._changeConstants(); + var barnesHutTree = this.barnesHutTree; - // define levels if undefined by the users. Based on hubsize - if (undefinedLevel == true) { - this._determineLevels(hubsize); + // place the nodes one by one recursively + for (var i = 0; i < nodeCount; i++) { + node = nodes[nodeIndices[i]]; + if (node.options.mass > 0) { + // starting with root is irrelevant, it never passes the BarnesHut condition + this._getForceContribution(barnesHutTree.root.children.NW,node); + this._getForceContribution(barnesHutTree.root.children.NE,node); + this._getForceContribution(barnesHutTree.root.children.SW,node); + this._getForceContribution(barnesHutTree.root.children.SE,node); } - // check the distribution of the nodes per level. - var distribution = this._getDistribution(); - - // place the nodes on the canvas. This also stablilizes the system. - this._placeNodesByHierarchy(distribution); - - // start the simulation. - this.start(); } } }; /** - * This function places the nodes on the canvas based on the hierarchial distribution. + * 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 {Object} distribution | obtained by the function this._getDistribution() + * @param parentBranch + * @param node * @private */ - exports._placeNodesByHierarchy = function(distribution) { - var nodeId, node; - - // start placing all the level 0 nodes first. Then recursively position their branches. - for (var level in distribution) { - if (distribution.hasOwnProperty(level)) { - - for (nodeId in distribution[level].nodes) { - if (distribution[level].nodes.hasOwnProperty(nodeId)) { - node = distribution[level].nodes[nodeId]; - if (this.constants.hierarchicalLayout.direction == "UD" || this.constants.hierarchicalLayout.direction == "DU") { - if (node.xFixed) { - node.x = distribution[level].minPos; - node.xFixed = false; + exports._getForceContribution = function(parentBranch,node) { + // we get no force contribution from an empty region + if (parentBranch.childrenCount > 0) { + var dx,dy,distance; - distribution[level].minPos += distribution[level].nodeSpacing; - } - } - else { - if (node.yFixed) { - node.y = distribution[level].minPos; - node.yFixed = false; + // 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); - distribution[level].minPos += distribution[level].nodeSpacing; - } + // BarnesHut condition + // original condition : s/d < theta = passed === d/s > 1/theta = passed + // calcSize = 1/s --> d * 1/s > 1/theta = passed + if (distance * parentBranch.calcSize > this.constants.physics.barnesHut.theta) { + // duplicate code to reduce function calls to speed up program + if (distance == 0) { + distance = 0.1*Math.random(); + dx = distance; + } + var gravityForce = this.constants.physics.barnesHut.gravitationalConstant * parentBranch.mass * node.options.mass / (distance * distance * distance); + var fx = dx * gravityForce; + var fy = dy * gravityForce; + node.fx += fx; + node.fy += fy; + } + else { + // Did not pass the condition, go into children if available + if (parentBranch.childrenCount == 4) { + this._getForceContribution(parentBranch.children.NW,node); + this._getForceContribution(parentBranch.children.NE,node); + this._getForceContribution(parentBranch.children.SW,node); + this._getForceContribution(parentBranch.children.SE,node); + } + else { // parentBranch must have only one node, if it was empty we wouldnt be here + if (parentBranch.children.data.id != node.id) { // if it is not self + // duplicate code to reduce function calls to speed up program + if (distance == 0) { + distance = 0.5*Math.random(); + dx = distance; } - this._placeBranchNodes(node.edges,node.id,distribution,node.level); + var gravityForce = this.constants.physics.barnesHut.gravitationalConstant * parentBranch.mass * node.options.mass / (distance * distance * distance); + var fx = dx * gravityForce; + var fy = dy * gravityForce; + node.fx += fx; + node.fy += fy; } } } } - - // stabilize the system after positioning. This function calls zoomExtent. - this._stabilize(); }; - /** - * This function get the distribution of levels based on hubsize + * This function constructs the barnesHut tree recursively. It creates the root, splits it and starts placing the nodes. * - * @returns {Object} + * @param nodes + * @param nodeIndices * @private */ - exports._getDistribution = function() { - var distribution = {}; - var nodeId, node, level; + exports._formBarnesHutTree = function(nodes,nodeIndices) { + var node; + var nodeCount = nodeIndices.length; - // we fix Y because the hierarchy is vertical, we fix X so we do not give a node an x position for a second time. - // the fix of X is removed after the x value has been set. - for (nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - node = this.nodes[nodeId]; - node.xFixed = true; - node.yFixed = true; - if (this.constants.hierarchicalLayout.direction == "UD" || this.constants.hierarchicalLayout.direction == "DU") { - node.y = this.constants.hierarchicalLayout.levelSeparation*node.level; - } - else { - node.x = this.constants.hierarchicalLayout.levelSeparation*node.level; - } - if (distribution[node.level] === undefined) { - distribution[node.level] = {amount: 0, nodes: {}, minPos:0, nodeSpacing:0}; - } - distribution[node.level].amount += 1; - distribution[node.level].nodes[nodeId] = node; + var minX = Number.MAX_VALUE, + minY = Number.MAX_VALUE, + maxX =-Number.MAX_VALUE, + maxY =-Number.MAX_VALUE; + + // get the range of the nodes + for (var i = 0; i < nodeCount; i++) { + var x = nodes[nodeIndices[i]].x; + var y = nodes[nodeIndices[i]].y; + if (nodes[nodeIndices[i]].options.mass > 0) { + if (x < minX) { minX = x; } + if (x > maxX) { maxX = x; } + if (y < minY) { minY = y; } + if (y > maxY) { maxY = y; } } } + // make the range a square + var sizeDiff = Math.abs(maxX - minX) - Math.abs(maxY - minY); // difference between X and Y + if (sizeDiff > 0) {minY -= 0.5 * sizeDiff; maxY += 0.5 * sizeDiff;} // xSize > ySize + else {minX += 0.5 * sizeDiff; maxX -= 0.5 * sizeDiff;} // xSize < ySize - // determine the largest amount of nodes of all levels - var maxCount = 0; - for (level in distribution) { - if (distribution.hasOwnProperty(level)) { - if (maxCount < distribution[level].amount) { - maxCount = distribution[level].amount; - } + + var minimumTreeSize = 1e-5; + var rootSize = Math.max(minimumTreeSize,Math.abs(maxX - minX)); + var halfRootSize = 0.5 * rootSize; + var centerX = 0.5 * (minX + maxX), centerY = 0.5 * (minY + maxY); + + // construct the barnesHutTree + var barnesHutTree = { + root:{ + centerOfMass: {x:0, y:0}, + mass:0, + range: { + minX: centerX-halfRootSize,maxX:centerX+halfRootSize, + minY: centerY-halfRootSize,maxY:centerY+halfRootSize + }, + size: rootSize, + calcSize: 1 / rootSize, + children: { data:null}, + maxWidth: 0, + level: 0, + childrenCount: 4 } - } + }; + this._splitBranch(barnesHutTree.root); - // 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); + // 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); } } - return distribution; + // make global + this.barnesHutTree = barnesHutTree }; /** - * this function allocates nodes in levels based on the recursive branching from the largest hubs. + * this updates the mass of a branch. this is increased by adding a node. * - * @param hubsize + * @param parentBranch + * @param node * @private */ - exports._determineLevels = function(hubsize) { - var nodeId, node; + exports._updateBranchMass = function(parentBranch, node) { + var totalMass = parentBranch.mass + node.options.mass; + var totalMassInv = 1/totalMass; - // determine hubs - for (nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - node = this.nodes[nodeId]; - if (node.edges.length == hubsize) { - node.level = 0; - } - } - } + parentBranch.centerOfMass.x = parentBranch.centerOfMass.x * parentBranch.mass + node.x * node.options.mass; + parentBranch.centerOfMass.x *= totalMassInv; - // branch from hubs - for (nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - node = this.nodes[nodeId]; - if (node.level == 0) { - this._setLevel(1,node.edges,node.id); - } - } - } - }; + 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; - /** - * 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(); }; /** - * 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. + * determine in which branch the node will be placed. * - * @param edges - * @param parentId - * @param distribution - * @param parentLevel + * @param parentBranch + * @param node + * @param skipMassUpdate * @private */ - exports._placeBranchNodes = function(edges, parentId, distribution, parentLevel) { - for (var i = 0; i < edges.length; i++) { - var childNode = null; - if (edges[i].toId == parentId) { - childNode = edges[i].from; - } - else { - childNode = edges[i].to; - } + exports._placeInTree = function(parentBranch,node,skipMassUpdate) { + if (skipMassUpdate != true || skipMassUpdate === undefined) { + // update the mass of the branch. + this._updateBranchMass(parentBranch,node); + } - // 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; - } + 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 { - if (childNode.yFixed && childNode.level > parentLevel) { - childNode.yFixed = false; - childNode.y = distribution[childNode.level].minPos; - nodeMoved = true; - } + else { // in SW + this._placeInRegion(parentBranch,node,"SW"); } - - 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); - } + } + 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"); } } }; /** - * this function is called recursively to enumerate the barnches of the largest hubs and give each node a level. + * actually place the node in a region (or branch) * - * @param level - * @param edges - * @param parentId + * @param parentBranch + * @param node + * @param region * @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 (edges.length > 1) { - this._setLevel(level+1, childNode.edges, childNode.id); + exports._placeInRegion = function(parentBranch,node,region) { + switch (parentBranch.children[region].childrenCount) { + case 0: // place node here + parentBranch.children[region].children.data = node; + parentBranch.children[region].childrenCount = 1; + this._updateBranchMass(parentBranch.children[region],node); + break; + case 1: // convert into children + // if there are two nodes exactly overlapping (on init, on opening of cluster etc.) + // we move one node a pixel and we do not put it in the tree. + if (parentBranch.children[region].children.data.x == node.x && + parentBranch.children[region].children.data.y == node.y) { + node.x += Math.random(); + node.y += Math.random(); } - } + else { + this._splitBranch(parentBranch.children[region]); + this._placeInTree(parentBranch.children[region],node); + } + break; + case 4: // place in branch + this._placeInTree(parentBranch.children[region],node); + break; } }; /** - * Unfix nodes + * this function splits a branch into 4 sub branches. If the branch contained a node, we place it in the subbranch + * after the split is complete. * + * @param parentBranch * @private */ - exports._restoreNodes = function() { - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - this.nodes[nodeId].xFixed = false; - this.nodes[nodeId].yFixed = false; - } - } - }; - - -/***/ }, -/* 61 */ -/***/ function(module, exports, __webpack_require__) { - - /** - * Canvas shapes used by Network - */ - if (typeof CanvasRenderingContext2D !== 'undefined') { - - /** - * Draw a circle shape - */ - CanvasRenderingContext2D.prototype.circle = function(x, y, r) { - this.beginPath(); - this.arc(x, y, r, 0, 2*Math.PI, false); - }; - - /** - * Draw a square shape - * @param {Number} x horizontal center - * @param {Number} y vertical center - * @param {Number} r size, width and height of the square - */ - CanvasRenderingContext2D.prototype.square = function(x, y, r) { - this.beginPath(); - this.rect(x - r, y - r, r * 2, r * 2); - }; - - /** - * Draw a triangle shape - * @param {Number} x horizontal center - * @param {Number} y vertical center - * @param {Number} r radius, half the length of the sides of the triangle - */ - CanvasRenderingContext2D.prototype.triangle = function(x, y, r) { - // http://en.wikipedia.org/wiki/Equilateral_triangle - this.beginPath(); - - var s = r * 2; - var s2 = s / 2; - var ir = Math.sqrt(3) / 6 * s; // radius of inner circle - var h = Math.sqrt(s * s - s2 * s2); // height - - this.moveTo(x, y - (h - ir)); - this.lineTo(x + s2, y + ir); - this.lineTo(x - s2, y + ir); - this.lineTo(x, y - (h - ir)); - this.closePath(); - }; - - /** - * Draw a triangle shape in downward orientation - * @param {Number} x horizontal center - * @param {Number} y vertical center - * @param {Number} r radius - */ - CanvasRenderingContext2D.prototype.triangleDown = function(x, y, r) { - // http://en.wikipedia.org/wiki/Equilateral_triangle - this.beginPath(); - - var s = r * 2; - var s2 = s / 2; - var ir = Math.sqrt(3) / 6 * s; // radius of inner circle - var h = Math.sqrt(s * s - s2 * s2); // height - - this.moveTo(x, y + (h - ir)); - this.lineTo(x + s2, y - ir); - this.lineTo(x - s2, y - ir); - this.lineTo(x, y + (h - ir)); - this.closePath(); - }; - - /** - * Draw a star shape, a star with 5 points - * @param {Number} x horizontal center - * @param {Number} y vertical center - * @param {Number} r radius, half the length of the sides of the triangle - */ - CanvasRenderingContext2D.prototype.star = function(x, y, r) { - // http://www.html5canvastutorials.com/labs/html5-canvas-star-spinner/ - this.beginPath(); + exports._splitBranch = function(parentBranch) { + // if the branch is shaded with a node, replace the node in the new subset. + var containedNode = null; + if (parentBranch.childrenCount == 1) { + containedNode = parentBranch.children.data; + parentBranch.mass = 0; parentBranch.centerOfMass.x = 0; parentBranch.centerOfMass.y = 0; + } + parentBranch.childrenCount = 4; + parentBranch.children.data = null; + this._insertRegion(parentBranch,"NW"); + this._insertRegion(parentBranch,"NE"); + this._insertRegion(parentBranch,"SW"); + this._insertRegion(parentBranch,"SE"); - for (var n = 0; n < 10; n++) { - var radius = (n % 2 === 0) ? r * 1.3 : r * 0.5; - this.lineTo( - x + radius * Math.sin(n * 2 * Math.PI / 10), - y - radius * Math.cos(n * 2 * Math.PI / 10) - ); - } + if (containedNode != null) { + this._placeInTree(parentBranch,containedNode); + } + }; - this.closePath(); - }; - /** - * http://stackoverflow.com/questions/1255512/how-to-draw-a-rounded-rectangle-on-html-canvas - */ - CanvasRenderingContext2D.prototype.roundRect = function(x, y, w, h, r) { - var r2d = Math.PI/180; - if( w - ( 2 * r ) < 0 ) { r = ( w / 2 ); } //ensure that the radius isn't too large for x - if( h - ( 2 * r ) < 0 ) { r = ( h / 2 ); } //ensure that the radius isn't too large for y - this.beginPath(); - this.moveTo(x+r,y); - this.lineTo(x+w-r,y); - this.arc(x+w-r,y+r,r,r2d*270,r2d*360,false); - this.lineTo(x+w,y+h-r); - this.arc(x+w-r,y+h-r,r,0,r2d*90,false); - this.lineTo(x+r,y+h); - this.arc(x+r,y+h-r,r,r2d*90,r2d*180,false); - this.lineTo(x,y+r); - this.arc(x+r,y+r,r,r2d*180,r2d*270,false); - }; + /** + * This function subdivides the region into four new segments. + * Specifically, this inserts a single new segment. + * It fills the children section of the parentBranch + * + * @param parentBranch + * @param region + * @param parentRange + * @private + */ + exports._insertRegion = function(parentBranch, region) { + var minX,maxX,minY,maxY; + var childSize = 0.5 * parentBranch.size; + switch (region) { + case "NW": + minX = parentBranch.range.minX; + maxX = parentBranch.range.minX + childSize; + minY = parentBranch.range.minY; + maxY = parentBranch.range.minY + childSize; + break; + case "NE": + minX = parentBranch.range.minX + childSize; + maxX = parentBranch.range.maxX; + minY = parentBranch.range.minY; + maxY = parentBranch.range.minY + childSize; + break; + case "SW": + minX = parentBranch.range.minX; + maxX = parentBranch.range.minX + childSize; + minY = parentBranch.range.minY + childSize; + maxY = parentBranch.range.maxY; + break; + case "SE": + minX = parentBranch.range.minX + childSize; + maxX = parentBranch.range.maxX; + minY = parentBranch.range.minY + childSize; + maxY = parentBranch.range.maxY; + break; + } - /** - * http://stackoverflow.com/questions/2172798/how-to-draw-an-oval-in-html5-canvas - */ - CanvasRenderingContext2D.prototype.ellipse = function(x, y, w, h) { - var kappa = .5522848, - ox = (w / 2) * kappa, // control point offset horizontal - oy = (h / 2) * kappa, // control point offset vertical - xe = x + w, // x-end - ye = y + h, // y-end - xm = x + w / 2, // x-middle - ym = y + h / 2; // y-middle - this.beginPath(); - this.moveTo(x, ym); - this.bezierCurveTo(x, ym - oy, xm - ox, y, xm, y); - this.bezierCurveTo(xm + ox, y, xe, ym - oy, xe, ym); - this.bezierCurveTo(xe, ym + oy, xm + ox, ye, xm, ye); - this.bezierCurveTo(xm - ox, ye, x, ym + oy, x, ym); + parentBranch.children[region] = { + centerOfMass:{x:0,y:0}, + mass:0, + range:{minX:minX,maxX:maxX,minY:minY,maxY:maxY}, + size: 0.5 * parentBranch.size, + calcSize: 2 * parentBranch.calcSize, + children: {data:null}, + maxWidth: 0, + level: parentBranch.level+1, + childrenCount: 0 }; + }; + /** + * This function is for debugging purposed, it draws the tree. + * + * @param ctx + * @param color + * @private + */ + exports._drawTree = function(ctx,color) { + if (this.barnesHutTree !== undefined) { - /** - * http://stackoverflow.com/questions/2172798/how-to-draw-an-oval-in-html5-canvas - */ - CanvasRenderingContext2D.prototype.database = function(x, y, w, h) { - var f = 1/3; - var wEllipse = w; - var hEllipse = h * f; - - var kappa = .5522848, - ox = (wEllipse / 2) * kappa, // control point offset horizontal - oy = (hEllipse / 2) * kappa, // control point offset vertical - xe = x + wEllipse, // x-end - ye = y + hEllipse, // y-end - xm = x + wEllipse / 2, // x-middle - ym = y + hEllipse / 2, // y-middle - ymb = y + (h - hEllipse/2), // y-midlle, bottom ellipse - yeb = y + h; // y-end, bottom ellipse + ctx.lineWidth = 1; - this.beginPath(); - this.moveTo(xe, ym); + this._drawBranch(this.barnesHutTree.root,ctx,color); + } + }; - this.bezierCurveTo(xe, ym + oy, xm + ox, ye, xm, ye); - this.bezierCurveTo(xm - ox, ye, x, ym + oy, x, ym); - this.bezierCurveTo(x, ym - oy, xm - ox, y, xm, y); - this.bezierCurveTo(xm + ox, y, xe, ym - oy, xe, ym); + /** + * This function is for debugging purposes. It draws the branches recursively. + * + * @param branch + * @param ctx + * @param color + * @private + */ + exports._drawBranch = function(branch,ctx,color) { + if (color === undefined) { + color = "#FF0000"; + } - this.lineTo(xe, ymb); + if (branch.childrenCount == 4) { + this._drawBranch(branch.children.NW,ctx); + this._drawBranch(branch.children.NE,ctx); + this._drawBranch(branch.children.SE,ctx); + this._drawBranch(branch.children.SW,ctx); + } + ctx.strokeStyle = color; + ctx.beginPath(); + ctx.moveTo(branch.range.minX,branch.range.minY); + ctx.lineTo(branch.range.maxX,branch.range.minY); + ctx.stroke(); - this.bezierCurveTo(xe, ymb + oy, xm + ox, yeb, xm, yeb); - this.bezierCurveTo(xm - ox, yeb, x, ymb + oy, x, ymb); + ctx.beginPath(); + ctx.moveTo(branch.range.maxX,branch.range.minY); + ctx.lineTo(branch.range.maxX,branch.range.maxY); + ctx.stroke(); - this.lineTo(x, ym); - }; + ctx.beginPath(); + ctx.moveTo(branch.range.maxX,branch.range.maxY); + ctx.lineTo(branch.range.minX,branch.range.maxY); + ctx.stroke(); + ctx.beginPath(); + ctx.moveTo(branch.range.minX,branch.range.maxY); + ctx.lineTo(branch.range.minX,branch.range.minY); + ctx.stroke(); - /** - * Draw an arrow point (no line) + /* + if (branch.mass > 0) { + ctx.circle(branch.centerOfMass.x, branch.centerOfMass.y, 3*branch.mass); + ctx.stroke(); + } */ - CanvasRenderingContext2D.prototype.arrow = function(x, y, angle, length) { - // tail - var xt = x - length * Math.cos(angle); - var yt = y - length * Math.sin(angle); - - // inner tail - // TODO: allow to customize different shapes - var xi = x - length * 0.9 * Math.cos(angle); - var yi = y - length * 0.9 * Math.sin(angle); - - // left - var xl = xt + length / 3 * Math.cos(angle + 0.5 * Math.PI); - var yl = yt + length / 3 * Math.sin(angle + 0.5 * Math.PI); - - // right - var xr = xt + length / 3 * Math.cos(angle - 0.5 * Math.PI); - var yr = yt + length / 3 * Math.sin(angle - 0.5 * Math.PI); + }; - this.beginPath(); - this.moveTo(x, y); - this.lineTo(xl, yl); - this.lineTo(xi, yi); - this.lineTo(xr, yr); - this.closePath(); - }; - /** - * Sets up the dashedLine functionality for drawing - * Original code came from http://stackoverflow.com/questions/4576724/dotted-stroke-in-canvas - * @author David Jordan - * @date 2012-08-08 - */ - CanvasRenderingContext2D.prototype.dashedLine = function(x,y,x2,y2,dashArray){ - if (!dashArray) dashArray=[10,5]; - if (dashLength==0) dashLength = 0.001; // Hack for Safari - var dashCount = dashArray.length; - this.moveTo(x, y); - var dx = (x2-x), dy = (y2-y); - var slope = dy/dx; - var distRemaining = Math.sqrt( dx*dx + dy*dy ); - var dashIndex=0, draw=true; - while (distRemaining>=0.1){ - var dashLength = dashArray[dashIndex++%dashCount]; - if (dashLength > distRemaining) dashLength = distRemaining; - var xStep = Math.sqrt( dashLength*dashLength / (1 + slope*slope) ); - if (dx<0) xStep = -xStep; - x += xStep; - y += slope*xStep; - this[draw ? 'lineTo' : 'moveTo'](x,y); - distRemaining -= dashLength; - draw = !draw; - } - }; +/***/ }, +/* 61 */ +/***/ function(module, exports, __webpack_require__) { - // TODO: add diamond shape + module.exports = function(module) { + if(!module.webpackPolyfill) { + module.deprecate = function() {}; + module.paths = []; + // module.parent = undefined by default + module.children = []; + module.webpackPolyfill = 1; + } + return module; } diff --git a/dist/vis.map b/dist/vis.map index 06c3c599..a641baab 100644 --- a/dist/vis.map +++ b/dist/vis.map @@ -1 +1 @@ -{"version":3,"file":"vis.map","sources":["./dist/vis.js"],"names":["root","factory","exports","module","define","amd","this","modules","__webpack_require__","moduleId","installedModules","id","loaded","call","m","c","p","util","DOMutil","DataSet","DataView","Graph3d","graph3d","Camera","Filter","Point2d","Point3d","Slider","StepNumber","Timeline","Graph2d","timeline","DataStep","Range","stack","TimeStep","components","items","Item","ItemBox","ItemPoint","ItemRange","Component","CurrentTime","CustomTime","DataAxis","GraphGroup","Group","ItemSet","Legend","LineGraph","TimeAxis","Network","network","Edge","Groups","Images","Node","Popup","dotparser","gephiParser","Graph","Error","moment","hammer","isNumber","object","Number","isString","String","isDate","Date","match","ASPDateRegex","exec","isNaN","parse","isDataTable","google","visualization","DataTable","randomUUID","S4","Math","floor","random","toString","extend","a","i","len","arguments","length","other","prop","hasOwnProperty","selectiveExtend","props","Array","isArray","selectiveDeepExtend","b","TypeError","constructor","Object","undefined","deepExtend","selectiveNotDeepExtend","indexOf","equalArray","convert","type","Boolean","valueOf","isMoment","toDate","getType","toISOString","value","getAbsoluteLeft","elem","getBoundingClientRect","left","window","pageXOffset","getAbsoluteTop","top","pageYOffset","addClassName","className","classes","split","push","join","removeClassName","index","splice","forEach","callback","toArray","array","updateProperty","key","addEventListener","element","action","listener","useCapture","navigator","userAgent","attachEvent","removeEventListener","detachEvent","preventDefault","event","returnValue","getTarget","target","srcElement","nodeType","parentNode","option","asBoolean","defaultValue","asNumber","asString","asSize","asElement","GiveDec","Hex","Value","eval","GiveHex","Dec","parseColor","color","isValidRGB","rgb","substr","RGBToHex","isValidHex","hsv","hexToHSV","lighterColorHSV","h","s","v","min","darkerColorHSV","darkerColorHex","HSVToHex","lighterColorHex","background","border","highlight","hover","hexToRGB","hex","replace","toUpperCase","substring","d","e","f","r","g","red","green","blue","RGBToHSV","minRGB","maxRGB","max","hue","saturation","HSVToRGB","q","t","isOk","test","selectiveBridgeObject","fields","referenceObject","objectTo","create","bridgeObject","mergeOptions","mergeTarget","options","enabled","binarySearch","orderedItems","range","field","field2","maxIterations","iteration","found","low","high","newLow","newHigh","guess","isVisible","start","console","log","binarySearchGeneric","sidePreference","newGuess","prevValue","nextValue","prepareElements","JSONcontainer","elementType","redundant","used","cleanupElements","removeChild","getSVGElement","svgContainer","shift","document","createElementNS","appendChild","getDOMElement","DOMContainer","createElement","drawPoint","x","y","group","point","drawPoints","style","setAttributeNS","size","drawBar","width","height","rect","data","_options","_data","_fieldId","fieldId","_type","_subscribers","add","prototype","on","subscribers","subscribe","off","filter","unsubscribe","_trigger","params","senderId","concat","subscriber","addedIds","me","_addItem","columns","_getColumnNames","row","rows","getNumberOfRows","item","col","cols","getValue","update","updatedIds","addOrUpdate","_updateItem","get","ids","firstType","returnType","allowedValues","itemId","_getItem","order","_sort","_filterFields","_appendRow","result","getIds","getDataSet","map","mappedItems","filteredItem","name","sort","av","bv","remove","removedId","removedIds","_remove","clear","keys","maxField","itemField","minField","distinct","values","fieldType","count","exists","types","raw","converted","JSON","stringify","dataTable","getNumberOfColumns","getColumnId","getColumnLabel","addRow","setValue","_ids","_onEvent","apply","setData","viewOptions","getArguments","defaultFilter","dataSet","added","updated","removed","container","SyntaxError","containerElement","margin","defaultXCenter","defaultYCenter","xLabel","yLabel","zLabel","filterLabel","legendLabel","STYLE","DOT","showPerspective","showGrid","keepAspectRatio","showShadow","showGrayBottom","showTooltip","verticalRatio","animationInterval","animationPreload","camera","eye","dataPoints","colX","colY","colZ","colValue","colFilter","xMin","xStep","xMax","yMin","yStep","yMax","zMin","zStep","zMax","valueMin","valueMax","xBarWidth","yBarWidth","colorAxis","colorGrid","colorDot","colorDotBorder","setOptions","Emitter","_setScale","scale","z","xCenter","yCenter","zCenter","setArmLocation","_convert3Dto2D","point3d","translation","_convertPointToTranslation","_convertTranslationToScreen","ax","ay","az","cx","getCameraLocation","cy","cz","sinTx","sin","getCameraRotation","cosTx","cos","sinTy","cosTy","sinTz","cosTz","dx","dy","dz","bx","by","ex","ey","ez","getArmLength","xcenter","frame","canvas","clientWidth","ycenter","_setBackgroundColor","backgroundColor","fill","stroke","strokeWidth","borderColor","borderWidth","borderStyle","BAR","BARCOLOR","BARSIZE","DOTLINE","DOTCOLOR","DOTSIZE","GRID","LINE","SURFACE","_getStyleNumber","styleName","_determineColumnIndexes","counter","column","getDistinctValues","distinctValues","getColumnRange","minMax","_dataInitialize","rawData","_onChange","dataFilter","setOnLoadCallback","redraw","withBars","defaultXBarWidth","dataX","defaultYBarWidth","dataY","xRange","defaultXMin","defaultXMax","defaultXStep","yRange","defaultYMin","defaultYMax","defaultYStep","zRange","defaultZMin","defaultZMax","defaultZStep","valueRange","defaultValueMin","defaultValueMax","_getDataPoints","sortNumber","obj","dataMatrix","xIndex","yIndex","trans","screen","bottom","pointRight","pointTop","pointCross","hasChildNodes","firstChild","position","overflow","noCanvas","fontWeight","padding","innerHTML","onmousedown","_onMouseDown","ontouchstart","_onTouchStart","onmousewheel","_onWheel","ontooltip","_onTooltip","onkeydown","setSize","_resizeCanvas","clientHeight","animationStart","slider","play","animationStop","stop","_resizeCenter","charAt","parseFloat","setCameraPosition","pos","horizontal","vertical","setArmRotation","distance","setArmLength","getCameraPosition","getArmRotation","_readData","_redrawFilter","animationAutoStart","cameraPosition","styleNumber","tooltip","showAnimationControls","_redrawSlider","_redrawClear","_redrawAxis","_redrawDataGrid","_redrawDataLine","_redrawDataBar","_redrawDataDot","_redrawInfo","_redrawLegend","ctx","getContext","clearRect","widthMin","widthMax","dotSize","right","lineWidth","font","ymin","ymax","_hsv2rgb","strokeStyle","beginPath","moveTo","lineTo","strokeRect","fillStyle","closePath","gridLineLen","step","getCurrent","next","end","textAlign","textBaseline","fillText","label","visible","setValues","setPlayInterval","onchange","getIndex","selectValue","setOnChangeCallback","lineStyle","getLabel","getSelectedValue","from","to","prettyStep","text","xText","yText","zText","offset","xOffset","yOffset","xMin2d","xMax2d","gridLenX","gridLenY","textMargin","armAngle","H","S","V","R","G","B","C","Hi","X","abs","parseInt","cross","topSideVisible","zAvg","transBottom","dist","sortDepth","aDiff","subtract","bDiff","crossproduct","crossProduct","radius","arc","PI","j","surface","corners","xWidth","yWidth","surfaces","center","avg","transCenter","diff","leftButtonDown","_onMouseUp","which","button","touchDown","startMouseX","getMouseX","startMouseY","getMouseY","startStart","startEnd","startArmRotation","cursor","onmousemove","_onMouseMove","onmouseup","diffX","diffY","horizontalNew","verticalNew","snapAngle","snapValue","round","parameters","emit","delay","mouseX","mouseY","tooltipTimeout","clearTimeout","_hideTooltip","dataPoint","_dataPointFromXY","_showTooltip","setTimeout","ontouchmove","_onTouchMove","ontouchend","_onTouchEnd","delta","wheelDelta","detail","oldLength","newLength","_insideTriangle","triangle","sign","as","bs","cs","distMax","closestDataPoint","closestDist","triangle1","triangle2","distX","distY","sqrt","content","line","dot","dom","borderRadius","boxShadow","borderLeft","contentWidth","offsetWidth","contentHeight","offsetHeight","lineHeight","dotWidth","dotHeight","clientX","targetTouches","clientY","armLocation","armRotation","armLength","cameraLocation","cameraRotation","calculateCameraOrientation","rot","graph","onLoadCallback","loadInBackground","isLoaded","getLoadedProgress","getColumn","getValues","dataView","progress","sub","sum","prev","bar","MozBorderRadius","slide","onclick","togglePlay","onChangeCallback","playTimeout","playInterval","playLoop","setIndex","playNext","interval","clearInterval","getPlayInterval","setPlayLoop","doLoop","onChange","indexToLeft","startClientX","startSlideX","leftToIndex","_start","_end","_step","precision","_current","setRange","setStep","calculatePrettyStep","log10","LN10","step1","pow","step2","step5","toPrecision","getStep","coreProp","Core","defaultOptions","autoResize","orientation","maxHeight","minHeight","_create","body","domProps","emitter","bind","snap","toScreen","_toScreen","toGlobalScreen","_toGlobalScreen","toTime","_toTime","toGlobalTime","_toGlobalTime","timeAxis","currentTime","customTime","itemSet","itemsData","groupsData","setItems","_initAutoResize","component","newDataSet","initialLoad","fit","setWindow","setGroups","groups","setSelection","getSelection","getItemRange","dataset","minItem","maxStartItem","maxEndItem","linegraph","getLegend","groupId","isGroupVisible","minimumStep","containerHeight","forcedStepSize","current","autoScale","stepIndex","marginStart","marginEnd","majorSteps","minorSteps","setMinimumStep","setFirst","safeSize","minimumStepValue","orderOfMagnitude","minorStepIdx","magnitudefactor","solutionFound","stepSize","first","niceStart","niceEnd","roundToMinor","marginRange","rounded","hasNext","previous","slice","isMajor","now","hours","minutes","seconds","milliseconds","clone","direction","moveable","zoomable","zoomMin","zoomMax","touch","_onDragStart","_onDrag","_onDragEnd","_onHold","_onMouseWheel","_onTouch","_onPinch","validateDirection","getPointer","pageX","pageY","hammerUtil","changed","_applyRange","newStart","newEnd","getRange","conversion","allowDragging","gesture","deltaX","deltaY","diffRange","fakeGesture","pointer","pointerDate","_pointerToDate","zoom","touches","initDate","move","EPSILON","orderByStart","orderByEnd","aTime","bTime","force","iMax","axis","collidingItem","jj","collision","nostack","SCALE","DAY","MILLISECOND","SECOND","MINUTE","HOUR","WEEKDAY","MONTH","YEAR","setFullYear","getFullYear","setMonth","setDate","setHours","setMinutes","setSeconds","setMilliseconds","getMilliseconds","getSeconds","getMinutes","getHours","getDate","getMonth","setScale","newScale","newStep","setAutoScale","enable","stepYear","stepMonth","stepDay","stepHour","stepMinute","stepSecond","stepMillisecond","date","year","getLabelMinor","format","getLabelMajor","destroy","_isResized","resized","_previousWidth","_previousHeight","showCurrentTime","parent","backgroundVertical","title","currentTimeTimer","showCustomTime","eventParams","Hammer","drag","prevent_default","setCustomTime","time","getCustomTime","dragging","stopPropagation","svg","showMinorLabels","showMajorLabels","icons","majorLinesOffset","minorLinesOffset","labelOffsetX","labelOffsetY","iconWidth","linegraphSVG","DOMelements","lines","labels","conversionFactor","minWidth","stepPixels","stepPixelsForced","lineOffset","master","svgElements","amountOfGroups","addGroup","graphOptions","updateGroup","removeGroup","hide","show","lineContainer","display","_redrawGroupIcons","iconHeight","iconOffset","drawIcon","backgroundHorizontal","changeCalled","activeGroups","_calculateCharSize","minorLabelHeight","minorCharHeight","majorLabelHeight","majorCharHeight","minorLineWidth","minorLineHeight","majorLineWidth","majorLineHeight","_redrawLabels","amountOfSteps","stepDifference","valueAtZero","marginStartPos","maxLabelSize","_redrawLabel","_redrawLine","characterHeight","largestWidth","majorCharWidth","minorCharWidth","convertValue","invertedValue","convertedValue","textMinor","createTextNode","measureCharMinor","textMajor","measureCharMajor","groupsUsingDefaultStyles","usingDefaultStyle","zeroPosition","setZeroPosition","catmullRom","parametrization","alpha","SVGcontainer","path","fillPath","fillHeight","outline","shaded","barWidth","bar1Height","bar2Height","icon","yAxisOrientation","visibleItems","byStart","byEnd","inner","foreground","marker","visibility","Element","getLabelWidth","restack","_updateVisibleItems","markerHeight","lastMarkerHeight","dirty","displayed","offsetTop","offsetLeft","ii","repositionY","labelSet","setParent","_checkIfVisible","removeFromDataSet","removeItem","_constructByEndArray","endArray","initialPosByStart","newVisibleItems","initialPosByEnd","_checkIfInvisible","repositionX","align","groupOrder","selectable","editable","updateTime","onAdd","onUpdate","onMove","onRemove","itemOptions","itemListeners","_onAdd","_onUpdate","_onRemove","groupListeners","_onAddGroups","_onUpdateGroups","_onRemoveGroups","groupIds","selection","stackDirty","touchParams","UNGROUPED","box","_updateUngrouped","centerContainer","_onSelectItem","_onMultiSelectItem","_onAddItem","addCallback","fn","Function","markDirty","unselect","select","getVisibleItems","rawVisibleItems","_deselect","_orderGroups","visibleInterval","zoomed","lastVisibleInterval","lastWidth","firstGroup","_firstGroup","firstMargin","nonFirstMargin","groupMargin","groupResized","firstGroupIndex","firstGroupId","ungrouped","getLabelSet","oldItemsData","getItems","_order","getGroups","itemData","_removeItem","groupData","groupOptions","oldGroupId","oldGroup","itemFromTarget","selected","dragLeftItem","dragRightItem","itemProps","groupFromTarget","changes","ctrlKey","srcEvent","shiftKey","oldSelection","newSelection","xAbs","newItem","itemSetFromTarget","side","iconSize","iconSpacing","textArea","drawLegendIcons","getComputedStyle","paddingTop","defaultGroup","sampling","graphHeight","barChart","dataAxis","legend","lastStart","rangePerPixelInv","_updateGraph","yAxisLeft","yAxisRight","legendLeft","legendRight","_updateAllGroupData","_updateGroup","groupsContent","ungroupedCounter","preprocessedGroup","preprocessedGroupData","processedGroupData","groupRanges","minDate","maxDate","_preprocessData","_updateYAxis","_convertYvalues","_drawLineGraph","_drawBarGraph","minVal","maxVal","yAxisLeftUsed","yAxisRightUsed","minLeft","minRight","maxLeft","maxRight","_toggleAxisVisiblity","drawIcons","axisUsed","coreDistance","_drawPoints","svgHeight","_catmullRom","_linear","dFill","datapoints","xValue","yValue","extractedData","increment","amountOfPoints","xDistance","pointsPerPixel","ceil","_catmullRomUniform","p0","p1","p2","p3","bp1","bp2","normalization","d1","d2","d3","A","N","M","d3powA","d2powA","d3pow2A","d2pow2A","d1pow2A","d1powA","majorLines","majorTexts","minorLines","minorTexts","lineTop","parentChanged","foregroundNextSibling","nextSibling","backgroundNextSibling","_repaintLabels","insertBefore","xFirstMajorLabel","cur","_repaintMinorText","_repaintMajorText","_repaintMajorLine","_repaintMinorLine","leftTime","leftText","widthText","arr","pop","childNodes","nodeValue","_repaintDeleteButton","anchor","deleteButton","itemSetHeight","marginLeft","baseClassName","_repaintDragLeft","_repaintDragRight","contentLeft","parentWidth","boxWidth","dragLeft","dragRight","_initializeMixinLoaders","renderRefreshRate","renderTimestep","renderTime","maxPhysicsTicksPerRender","physicsDiscreteStepsize","initializing","triggerFunctions","edit","editEdge","connect","del","nodes","mass","radiusMin","radiusMax","shape","image","fixed","fontColor","fontSize","fontFace","level","highlightColor","edges","widthSelectionMultiplier","hoverWidth","fontFill","arrowScaleFactor","dash","gap","altLength","inheritColor","configurePhysics","physics","barnesHut","theta","gravitationalConstant","centralGravity","springLength","springConstant","damping","repulsion","nodeDistance","hierarchicalRepulsion","clustering","initialMaxNodes","clusterThreshold","reduceToNodes","chainThreshold","clusterEdgeThreshold","sectorThreshold","screenSizeThreshold","fontSizeMultiplier","maxFontSize","forceAmplification","distanceAmplification","edgeGrowth","nodeScaling","maxNodeSizeIncrements","activeAreaBoxSize","clusterLevelDifference","navigation","keyboard","speed","dataManipulation","initiallyVisible","hierarchicalLayout","levelSeparation","nodeSpacing","freezeForStabilization","smoothCurves","dynamic","roundness","dynamicSmoothCurves","maxVelocity","minVelocity","stabilize","stabilizationIterations","link","editNode","back","addDescription","linkDescription","editEdgeDescription","addError","linkError","editError","editBoundError","deleteError","deleteClusterError","dragNetwork","dragNodes","hideEdgesOnDrag","hideNodesOnDrag","constants","hoverObj","controlNodesActive","images","setOnloadCallback","_redraw","xIncrement","yIncrement","zoomIncrement","_loadPhysicsSystem","_loadSectorSystem","_loadClusterSystem","_loadSelectionSystem","_loadHierarchySystem","_setTranslation","freezeSimulation","cachedFunctions","calculationNodes","calculationNodeIndices","nodeIndices","canvasTopLeft","canvasBottomRight","pointerPosition","areaCenter","previousScale","nodesData","edgesData","nodesListeners","_addNodes","_updateNodes","_removeNodes","edgesListeners","_addEdges","_updateEdges","_removeEdges","moving","timer","_setupHierarchicalLayout","zoomExtent","startWithClustering","mousetrap","MixinLoader","_getScriptPath","scripts","getElementsByTagName","src","_getRange","node","minY","maxY","minX","maxX","nodeId","_findCenter","_centerNetwork","initialZoom","disableStart","zoomLevel","numberOfNodes","factor","yDistance","xZoomLevel","yZoomLevel","_updateNodeIndexList","_clearNodeIndexList","idx","dotData","DOTToGraph","gephi","gephiData","parseGephi","_setNodes","_setEdges","_putDataInSector","_stabilize","onEdit","onEditEdge","onConnect","onDelete","editMode","newColorObj","groupname","_loadNavigationControls","_loadManipulationSystem","_configureSmoothCurves","_createKeyBinds","pinch","_onTap","_onDoubleTap","_onRelease","_onMouseMoveTitle","reset","_moveUp","_yStopMoving","_moveDown","_moveLeft","_xStopMoving","_moveRight","_zoomIn","_stopZoom","_zoomOut","_createManipulatorBar","_deleteSelected","_getPointer","pinched","_getScale","_handleTouch","_handleDragStart","_getNodeAt","_getTranslation","isSelected","_selectObject","objectId","selectionObj","xFixed","yFixed","_handleOnDrag","_XconvertDOMtoCanvas","_XconvertCanvasToDOM","_YconvertDOMtoCanvas","_YconvertCanvasToDOM","_handleTap","_handleDoubleTap","_handleOnHold","_handleOnRelease","_zoom","scaleOld","preScaleDragPointer","DOMtoCanvas","scaleFrac","tx","ty","updateClustersDefault","postScaleDragPointer","canvasToDOM","popupObj","_checkHidePopup","checkShow","_checkShowPopup","popupTimer","edgeId","_getEdgeAt","_hoverObject","_blurObject","lastPopupNode","getTitle","isOverlappingWith","edge","connected","popup","setPosition","setText","manipulationDiv","navigationDivs","oldNodesData","_updateSelection","angle","_resetLevels","_updateCalculationNodes","_reconnectEdges","_updateValueRange","updateLabels","setProperties","properties","oldEdgesData","oldEdge","disconnect","showInternalIds","_createBezierNodes","via","sectors","setValueRange","w","save","translate","_doInAllSectors","restore","offsetX","offsetY","_drawNodes","alwaysShow","setScaleAndPos","inArea","draw","sMax","_drawEdges","_drawControlNodes","_freezeDefinedNodes","_physicsTick","_restoreFrozenNodes","iterations","fixedData","_isMoving","vmin","isMoving","_discreteStepNodes","nodesPresent","discreteStepLimited","discreteStep","vminCorrected","_doInAllActiveSectors","_doInSupportSector","_animationStep","_handleNavigation","calculationTime","maxSteps","timeRequired","requestAnimationFrame","mozRequestAnimationFrame","webkitRequestAnimationFrame","msRequestAnimationFrame","ua","toLowerCase","requiresTimeout","toggleFreeze","parentEdgeId","internalMultiplier","positionBezierNode","mixin","storePosition","dataArray","allowedToMoveX","allowedToMoveY","focusOnNode","nodePosition","requiredScale","canvasCenter","distanceFromCenter","networkConstants","fromId","toId","widthSelected","originalFromId","originalToId","widthFixed","lengthFixed","controlNodesEnabled","controlNodes","positions","connectedNode","_drawLine","_drawArrow","_drawArrowCenter","_drawDashLine","attachEdge","detachEdge","xFrom","yFrom","xTo","yTo","xObj","yObj","_getDistanceToEdge","_getColor","colorObj","_getLineWidth","_line","midpointX","midpointY","_pointOnLine","_label","resize","_circle","_pointOnCircle","networkScaleInv","_getViaCoordinates","xVia","yVia","quadraticCurveTo","measureText","fillRect","mozDash","setLineDash","pattern","lineDashOffset","mozDashOffset","lineCap","dashedLine","percentage","atan2","arrow","edgeSegmentLength","fromBorderDist","distanceToBorder","fromBorderPoint","toBorderDist","toBorderPoint","x1","y1","x2","y2","x3","y3","lastX","lastY","minDistance","_getDistanceToLine","px","py","something","u","nodeIdFrom","nodeIdTo","getControlNodePositions","_enableControlNodes","_disableControlNodes","_getSelectedControlNode","fromDistance","toDistance","_restoreControlNodes","defaultIndex","DEFAULT","load","url","img","Image","onload","imagelist","grouplist","dynamicEdges","reroutedEdges","fontDrawThreshold","horizontalAlignLeft","verticalAlignTop","baseRadiusValue","radiusFixed","preassignedLevel","fx","fy","vx","vy","resetCluster","dynamicEdgesLength","clusterSession","clusterSizeWidthFactor","clusterSizeHeightFactor","clusterSizeRadiusFactor","growthIndicator","networkScale","formationScale","clusterSize","containedNodes","containedEdges","clusterSessions","originalLabel","triggerFunction","groupObj","imageObj","_drawDatabase","_resizeDatabase","_drawBox","_resizeBox","_drawCircle","_resizeCircle","_drawEllipse","_resizeEllipse","_drawImage","_resizeImage","_drawText","_resizeText","_drawDot","_resizeShape","_drawSquare","_drawTriangle","_drawTriangleDown","_drawStar","_reset","clearSizeCache","_setForce","_addForce","isFixed","getDistance","globalAlpha","drawImage","textSize","getTextSize","clusterLineWidth","selectionLineWidth","borderWidthSelected","roundRect","database","diameter","circle","defaultSize","ellipse","_drawShape","radiusMultiplier","baseline","labelUnderNode","lineCount","yLine","inView","clearVelocity","updateVelocity","massBeforeClustering","energyBefore","styleAttr","fontFamily","WebkitBorderRadius","whiteSpace","maxWidth","parseDOT","parseGraph","nextPreview","isAlphaNumeric","regexAlphaNumeric","merge","o","addNode","graphs","attr","addEdge","createEdge","getToken","tokenType","TOKENTYPE","NULL","token","isComment","DELIMITER","c2","DELIMITERS","IDENTIFIER","newSyntaxError","UNKNOWN","chop","strict","parseStatements","parseStatement","subgraph","parseSubgraph","parseEdge","parseAttributeStatement","parseNodeStatement","subgraphs","parseAttributeList","message","maxLength","forEach2","array1","array2","elem1","elem2","convertEdge","dotEdge","graphEdge","graphData","dotNode","graphNode","subEdge","{","}","[","]",";","=",",","->","--","gephiJSON","allowedToMove","gEdges","gNodes","gEdge","source","attributes","gNode","leftContainer","rightContainer","shadowTop","shadowBottom","shadowTopLeft","shadowBottomLeft","shadowTopRight","shadowBottomRight","listeners","events","args","scrollTop","scrollTopMin","_stopAutoResize","what","dataRange","getWindow","borderRootHeight","borderRootWidth","autoHeight","centerWidth","_updateScrollTop","visibilityTop","visibilityBottom","repaint","_startAutoResize","_onResize","lastHeight","watchTimer","setInterval","initialScrollTop","oldScrollTop","_getScrollTop","newScrollTop","_setScrollTop","eventType","getTouchList","collectEventData","CanvasRenderingContext2D","square","s2","ir","triangleDown","star","n","r2d","kappa","ox","oy","xe","ye","xm","ym","bezierCurveTo","wEllipse","hEllipse","ymb","yeb","xt","yt","xi","yi","xl","yl","xr","yr","dashArray","dashLength","dashCount","slope","distRemaining","dashIndex","PhysicsMixin","ClusterMixin","SectorsMixin","SelectionMixin","ManipulationMixin","NavigationMixin","HierarchicalLayoutMixin","_loadMixin","sourceVariable","mixinFunction","_clearMixin","_loadSelectedForceSolver","_loadPhysicsConfiguration","hubThreshold","activeSector","drawingNode","blockConnectingEdgeSelection","forceAppendSelection","editModeDiv","closeDiv","_cleanNavigation","_loadNavigationElements","_callbacks","once","self","removeListener","removeAllListeners","callbacks","cb","hasListeners","__WEBPACK_AMD_DEFINE_RESULT__","global","dfl","defaultParsingFlags","empty","unusedTokens","unusedInput","charsLeftOver","nullInput","invalidMonth","invalidFormat","userInvalidated","iso","deprecate","msg","printMsg","suppressDeprecationWarnings","warn","firstTime","padToken","func","leftZeroFill","ordinalizeToken","period","lang","ordinal","Language","Moment","config","checkOverflow","Duration","duration","normalizedInput","normalizeObjectUnits","years","quarters","quarter","months","month","weeks","week","days","day","hour","minute","second","millisecond","_milliseconds","_days","_months","_bubble","cloneMoment","momentProperties","absRound","number","targetLength","forceSign","output","addOrSubtractDurationFromMoment","mom","isAdding","updateOffset","_d","setTime","rawSetter","rawGetter","rawMonthSetter","input","compareArrays","dontConvert","lengthDiff","diffs","toInt","normalizeUnits","units","lowered","unitAliases","camelFunctions","inputObject","normalizedProp","makeList","setter","getter","method","_lang","results","utc","set","argumentForCoercion","coercedNumber","isFinite","daysInMonth","UTC","getUTCDate","weeksInYear","dow","doy","weekOfYear","daysInYear","isLeapYear","_a","_pf","DATE","_overflowDayOfYear","isValid","_isValid","getTime","_strict","normalizeLanguage","makeAs","model","_isUTC","zone","_offset","local","loadLang","abbr","languages","unloadLang","getLangDefinition","k","hasModule","removeFormattingTokens","makeFormatFunction","formattingTokens","formatTokenFunctions","formatMoment","expandFormat","formatFunctions","invalidDate","replaceLongDateFormatTokens","longDateFormat","localFormattingTokens","lastIndex","getParseRegexForToken","parseTokenOneDigit","parseTokenThreeDigits","parseTokenFourDigits","parseTokenOneToFourDigits","parseTokenSignedNumber","parseTokenSixDigits","parseTokenOneToSixDigits","parseTokenTwoDigits","parseTokenOneToThreeDigits","parseTokenWord","_l","_meridiemParse","parseTokenTimestampMs","parseTokenTimezone","parseTokenT","parseTokenDigits","parseTokenOneOrTwoDigits","parseTokenOrdinal","RegExp","regexpEscape","unescapeFormat","timezoneMinutesFromString","string","possibleTzMatches","tzChunk","parts","parseTimezoneChunker","addTimeToArrayFromToken","datePartArray","monthsParse","_dayOfYear","parseTwoDigitYear","_isPm","isPM","_useUTC","_tzm","weekdaysParse","_w","invalidWeekday","dayOfYearFromWeekInfo","weekYear","weekday","temp","GG","W","E","_week","gg","dayOfYearFromWeeks","dayOfYear","dateFromConfig","currentDate","yearToUse","currentDateArray","makeUTCDate","getUTCMonth","makeDate","setUTCMinutes","getUTCMinutes","dateFromObject","_i","getUTCFullYear","makeDateFromStringAndFormat","_f","ISO_8601","parseISO","parsedInput","tokens","skipped","stringLength","totalParsedInputLength","matched","p4","makeDateFromStringAndArray","tempConfig","bestMoment","scoreToBeat","currentScore","NaN","score","l","isoRegex","isoDates","isoTimes","makeDateFromString","createFromInputFallback","makeDateFromInput","aspNetJsonRegex","ms","setUTCFullYear","parseWeekday","language","substituteTimeAgo","withoutSuffix","isFuture","relativeTime","relativeTimeThresholds","dd","dm","firstDayOfWeek","firstDayOfWeekOfYear","adjustedMoment","daysToDayOfWeek","daysToAdd","getUTCDay","makeMoment","invalid","preparse","pickBy","moments","res","dayOfMonth","unit","makeAccessor","keepTime","makeDurationGetter","makeDurationAsGetter","makeGlobal","shouldDeprecate","ender","oldGlobalMoment","globalScope","VERSION","_isAMomentObject","aspNetTimeSpanJsonRegex","isoDurationRegex","isoFormat","unitMillisecondFactors","Milliseconds","Seconds","Minutes","Hours","Days","Months","Years","D","Q","DDD","dayofyear","isoweekday","isoweek","weekyear","isoweekyear","ordinalizeTokens","paddedTokens","MMM","monthsShort","MMMM","weekdaysMin","ddd","weekdaysShort","dddd","weekdays","isoWeek","YY","YYYY","YYYYY","YYYYYY","gggg","ggggg","isoWeekYear","GGGG","GGGGG","isoWeekday","meridiem","SS","SSS","SSSS","Z","ZZ","zoneAbbr","zz","zoneName","unix","lists","DDDD","_monthsShort","monthName","regex","_monthsParse","_weekdays","_weekdaysShort","_weekdaysMin","weekdayName","_weekdaysParse","_longDateFormat","LT","L","LL","LLL","LLLL","val","isLower","_calendar","sameDay","nextDay","nextWeek","lastDay","lastWeek","sameElse","calendar","_relativeTime","future","past","mm","hh","MM","yy","pastFuture","_ordinal","postformat","_invalidDate","ret","parseIso","isDuration","inp","version","defaultFormat","relativeTimeThreshold","threshold","limit","_abbr","langData","flags","parseZone","isDSTShifted","parsingFlags","invalidAt","inputString","dur","asFloat","that","zoneDiff","startOf","humanize","fromNow","sod","isDST","getDay","endOf","isAfter","isBefore","isSame","getTimezoneOffset","_changeInProgress","hasAlignedHourOffset","isoWeeksInYear","weekInfo","dates","isoWeeks","toJSON","withSuffix","difference","toIsoString","asSeconds","asMonths","require","noGlobal","_addEvent","_characterFromEvent","fromCharCode","_MAP","_KEYCODE_MAP","_stop","tag_name","tagName","contentEditable","_modifiersMatch","modifiers1","modifiers2","_resetSequences","do_not_reset","active_sequences","_sequence_levels","_inside_sequence","_getMatches","character","modifiers","combination","matches","_isModifier","seq","combo","_eventModifiers","altKey","metaKey","_fireCallback","cancelBubble","_handleCharacter","processed_sequence_callback","_handleKey","keyCode","_ignore_next_keyup","_resetSequenceTimer","_reset_timer","_getReverseMap","_REVERSE_MAP","_pickBestAction","_bindSequence","_increaseSequence","_callbackAndReset","_bindSingle","sequence_name","sequence","_SPECIAL_ALIASES","_SHIFT_MAP","_bindMultiple","combinations",8,9,13,16,17,18,20,27,32,33,34,35,36,37,38,39,40,45,46,91,93,224,106,107,109,110,111,186,187,188,189,190,191,192,219,220,221,222,"~","!","@","#","$","%","^","&","*","(",")","_","+",":","\"","<",">","?","|","command","return","escape","_direct_map","unbind","trigger","setup","READY","Event","determineEventTypes","Utils","each","gestures","Detection","register","onTouch","DOCUMENT","EVENT_MOVE","detect","EVENT_END","Instance","defaults","behavior","userSelect","touchAction","touchCallout","contentZooming","userDrag","tapHighlightColor","HAS_POINTEREVENTS","pointerEnabled","msPointerEnabled","HAS_TOUCHEVENTS","IS_MOBILE","NO_MOUSEEVENTS","CALCULATE_INTERVAL","EVENT_TYPES","DIRECTION_DOWN","DIRECTION_LEFT","DIRECTION_UP","DIRECTION_RIGHT","POINTER_MOUSE","POINTER_TOUCH","POINTER_PEN","EVENT_START","EVENT_RELEASE","EVENT_TOUCH","plugins","utils","dest","handler","iterator","context","inStr","find","inArray","hasParent","getCenter","getVelocity","deltaTime","getAngle","touch1","touch2","getDirection","getScale","getRotation","isVertical","setPrefixedCss","toggle","prefixes","toCamelCase","toggleBehavior","falseFn","onselectstart","ondragstart","str","preventMouseEvents","started","shouldDetect","hook","onTouchHandler","ev","triggerType","srcType","isPointer","isMouse","buttons","PointerEvent","matchType","updatePointer","doDetect","touchList","touchListLength","triggerChange","changedLength","changedTouches","evData","identifiers","identifier","pointerType","timeStamp","preventManipulation","stopDetect","pointers","touchlist","pointerEvent","pointerId","pt","MSPOINTER_TYPE_MOUSE","MSPOINTER_TYPE_TOUCH","MSPOINTER_TYPE_PEN","detection","stopped","startDetect","inst","eventData","startEvent","lastEvent","lastCalcEvent","futureCalcEvent","lastCalcData","extendEventData","instOptions","getCalculatedData","recalc","calcEv","calcData","velocity","velocityX","velocityY","interimAngle","interimDirection","startEv","lastEv","rotation","eventStartHandler","eventHandlers","createEvent","initEvent","dispatchEvent","state","dispose","eh","dragGesture","dragMaxTouches","triggered","dragMinDistance","startCenter","dragDistanceCorrection","dragLockToAxis","dragLockMinDistance","lastDirection","dragBlockVertical","dragBlockHorizontal","Drag","Gesture","holdGesture","holdTimeout","holdThreshold","Hold","Release","Infinity","Swipe","swipeMinTouches","swipeMaxTouches","swipeVelocityX","swipeVelocityY","tapGesture","sincePrev","didDoubleTap","hasMoved","tapMaxDistance","tapMaxTime","doubleTapInterval","doubleTapDistance","tapAlways","Tap","Touch","preventMouse","transformGesture","scaleThreshold","rotationThreshold","transformMinScale","transformMinRotation","Transform","clusterToFit","maxNumberOfNodes","reposition","maxLevels","forceAggregateHubs","normalizeClusterLevels","increaseClusterLevel","repositionNodes","openCluster","isMovingBeforeClustering","_nodeInActiveArea","_sector","_addSector","decreaseClusterLevel","_expandClusterNode","_updateDynamicEdges","updateClusters","zoomDirection","recursive","doNotStart","amountOfNodes","_collapseSector","_formClusters","_openClusters","_openClustersBySize","_aggregateHubs","handleChains","chainPercentage","_getChainFraction","_reduceAmountOfChains","_getHubSize","_formClustersByHub","openAll","containedNodeId","childNode","_expelChildFromParent","_unselectAll","_releaseContainedEdges","_connectEdgeBackToChild","_validateEdges","othersPresent","childNodeId","_repositionBezierNodes","_formClustersByZoom","_forceClustersByZoom","minLength","_addToCluster","_clusterToSmallestNeighbour","smallestNeighbour","smallestNeighbourNode","neighbour","onlyEqual","_formClusterFromHub","hubNode","absorptionSizeOffset","allowCluster","edgesIdarray","amountOfInitialEdges","_addToContainedEdges","_connectEdgeToCluster","_containCircularEdgesFromNode","massBefore","correction","edgeToId","edgeFromId","_addToReroutedEdges","maxLevel","minLevel","clusterLevel","targetLevel","average","averageSquared","hubCounter","largestHub","variance","standardDeviation","fraction","reduceAmount","chains","total","_switchToSector","sectorId","sectorType","_switchToActiveSector","_switchToFrozenSector","_switchToSupportSector","_loadLatestSector","_previousSector","_setActiveSector","newId","_forgetLastSector","_createNewSector","_deleteActiveSector","_deleteFrozenSector","_freezeSector","_activateSector","_mergeThisWithFrozen","_collapseThisToSingleCluster","sector","unqiueIdentifier","previousSector","runFunction","argument","_doInAllFrozenSectors","_drawSectorNodes","_drawAllSectorNodes","_getNodesOverlappingWith","overlappingNodes","_getAllNodesOverlappingWith","_pointerToPositionObject","positionObject","_getEdgesOverlappingWith","overlappingEdges","_getAllEdgesOverlappingWith","_addToSelection","_addToHover","_removeFromSelection","doNotTrigger","_unselectClusters","_getSelectedNodeCount","_getSelectedNode","_getSelectedEdge","_getSelectedEdgeCount","_getSelectedObjectCount","_selectionIsEmpty","_clusterInSelection","_selectConnectedEdges","_hoverConnectedEdges","_unselectConnectedEdges","append","highlightEdges","nodeIds","getSelectedNodes","edgeIds","getSelectedEdges","idArray","RangeError","selectNodes","selectEdges","_clearManipulatorBar","_restoreOverloadedFunctions","functionName","_toggleEditMode","toolbar","getElementById","boundFunction","edgeBeingEdited","selectedControlNode","addNodeButton","_createAddNodeToolbar","addEdgeButton","_createAddEdgeToolbar","editButton","_editNode","_createEditEdgeToolbar","editModeButton","backButton","_addNode","_handleConnect","_finishConnect","_selectControlNode","_controlNodeDrag","_releaseControlNode","newNode","_editEdge","alert","smooth","connectFromId","_createEdge","defaultData","finalizedData","sourceNodeId","targetNodeId","selectedNodes","selectedEdges","wrapper","navigationDivActions","_stopMovement","hubsize","definedLevel","undefinedLevel","_changeConstants","_determineLevels","distribution","_getDistribution","_placeNodesByHierarchy","minPos","_placeBranchNodes","amount","maxCount","_setLevel","parentId","parentLevel","nodeMoved","_restoreNodes","graphToggleSmoothCurves","graph_toggleSmooth","graphRepositionNodes","showValueOfRange","graphGenerateOptions","optionsSpecific","radioButton1","radioButton2","checked","backupConstants","optionsDiv","switchConfigurations","radioButton","querySelector","tableId","table","constantsVariableName","valueId","rangeValue","_overWriteGraphConstants","RepulsionMixin","HierarchialRepulsionMixin","BarnesHutMixin","_toggleBarnesHut","barnesHutTree","_initializeForceCalculation","_calculateForces","_calculateGravitationalForces","_calculateNodeForces","_calculateSpringForcesWithSupport","_calculateHierarchicalSpringForces","_calculateSpringForces","supportNodes","supportNodeId","gravity","gravityForce","edgeLength","springForce","combinedClusterSize","node1","node2","node3","_calculateSpringForce","physicsConfiguration","hierarchicalLayoutDirections","parentElement","rangeElement","radioButton3","graph_repositionNodes","graph_generateOptions","nameArray","webpackContext","req","webpackContextResolve","resolve","repulsingForce","a_base","minimumDistance","steepness","springFx","springFy","totalFx","totalFy","correctionFx","correctionFy","nodeCount","_formBarnesHutTree","_getForceContribution","children","NW","NE","SW","SE","parentBranch","childrenCount","centerOfMass","calcSize","MAX_VALUE","sizeDiff","minimumTreeSize","rootSize","halfRootSize","centerX","centerY","_splitBranch","_placeInTree","_updateBranchMass","totalMass","totalMassInv","biggestSize","skipMassUpdate","_placeInRegion","region","containedNode","_insertRegion","childSize","_drawTree","_drawBranch","branch","webpackPolyfill","paths"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"vis.map","sources":["./dist/vis.js"],"names":["root","factory","exports","module","define","amd","this","modules","__webpack_require__","moduleId","installedModules","id","loaded","call","m","c","p","util","DOMutil","DataSet","DataView","Graph3d","graph3d","Camera","Filter","Point2d","Point3d","Slider","StepNumber","Timeline","Graph2d","timeline","DataStep","Range","stack","TimeStep","components","items","Item","ItemBox","ItemPoint","ItemRange","Component","CurrentTime","CustomTime","DataAxis","GraphGroup","Group","ItemSet","Legend","LineGraph","TimeAxis","Network","network","Edge","Groups","Images","Node","Popup","dotparser","gephiParser","Graph","Error","moment","hammer","prepareElements","JSONcontainer","elementType","hasOwnProperty","redundant","used","cleanupElements","i","length","parentNode","removeChild","getSVGElement","svgContainer","element","shift","document","createElementNS","appendChild","push","getDOMElement","DOMContainer","createElement","drawPoint","x","y","group","point","options","drawPoints","style","setAttributeNS","size","className","drawBar","width","height","rect","isNumber","object","Number","isString","String","isDate","Date","match","ASPDateRegex","exec","isNaN","parse","isDataTable","google","visualization","DataTable","randomUUID","S4","Math","floor","random","toString","extend","a","len","arguments","other","prop","selectiveExtend","props","Array","isArray","selectiveDeepExtend","b","TypeError","constructor","Object","undefined","deepExtend","selectiveNotDeepExtend","indexOf","equalArray","convert","type","Boolean","valueOf","isMoment","toDate","getType","toISOString","value","getAbsoluteLeft","elem","getBoundingClientRect","left","window","pageXOffset","getAbsoluteTop","top","pageYOffset","addClassName","classes","split","join","removeClassName","index","splice","forEach","callback","toArray","array","updateProperty","key","addEventListener","action","listener","useCapture","navigator","userAgent","attachEvent","removeEventListener","detachEvent","preventDefault","event","returnValue","getTarget","target","srcElement","nodeType","option","asBoolean","defaultValue","asNumber","asString","asSize","asElement","GiveDec","Hex","Value","eval","GiveHex","Dec","parseColor","color","isValidRGB","rgb","substr","RGBToHex","isValidHex","hsv","hexToHSV","lighterColorHSV","h","s","v","min","darkerColorHSV","darkerColorHex","HSVToHex","lighterColorHex","background","border","highlight","hover","hexToRGB","hex","replace","toUpperCase","substring","d","e","f","r","g","red","green","blue","RGBToHSV","minRGB","maxRGB","max","hue","saturation","HSVToRGB","q","t","isOk","test","selectiveBridgeObject","fields","referenceObject","objectTo","create","bridgeObject","mergeOptions","mergeTarget","enabled","binarySearch","orderedItems","range","field","field2","maxIterations","iteration","found","low","high","newLow","newHigh","guess","isVisible","start","console","log","binarySearchGeneric","sidePreference","newGuess","prevValue","nextValue","data","_options","_data","_fieldId","fieldId","_type","_subscribers","add","prototype","on","subscribers","subscribe","off","filter","unsubscribe","_trigger","params","senderId","concat","subscriber","addedIds","me","_addItem","columns","_getColumnNames","row","rows","getNumberOfRows","item","col","cols","getValue","update","updatedIds","addOrUpdate","_updateItem","get","ids","firstType","returnType","allowedValues","itemId","_getItem","order","_sort","_filterFields","_appendRow","result","getIds","getDataSet","map","mappedItems","filteredItem","name","sort","av","bv","remove","removedId","removedIds","_remove","clear","keys","maxField","itemField","minField","distinct","values","fieldType","count","exists","types","raw","converted","JSON","stringify","dataTable","getNumberOfColumns","getColumnId","getColumnLabel","addRow","setValue","_ids","_onEvent","apply","setData","viewOptions","getArguments","defaultFilter","dataSet","added","updated","removed","container","SyntaxError","containerElement","margin","defaultXCenter","defaultYCenter","xLabel","yLabel","zLabel","filterLabel","legendLabel","STYLE","DOT","showPerspective","showGrid","keepAspectRatio","showShadow","showGrayBottom","showTooltip","verticalRatio","animationInterval","animationPreload","camera","eye","dataPoints","colX","colY","colZ","colValue","colFilter","xMin","xStep","xMax","yMin","yStep","yMax","zMin","zStep","zMax","valueMin","valueMax","xBarWidth","yBarWidth","colorAxis","colorGrid","colorDot","colorDotBorder","setOptions","Emitter","_setScale","scale","z","xCenter","yCenter","zCenter","setArmLocation","_convert3Dto2D","point3d","translation","_convertPointToTranslation","_convertTranslationToScreen","ax","ay","az","cx","getCameraLocation","cy","cz","sinTx","sin","getCameraRotation","cosTx","cos","sinTy","cosTy","sinTz","cosTz","dx","dy","dz","bx","by","ex","ey","ez","getArmLength","xcenter","frame","canvas","clientWidth","ycenter","_setBackgroundColor","backgroundColor","fill","stroke","strokeWidth","borderColor","borderWidth","borderStyle","BAR","BARCOLOR","BARSIZE","DOTLINE","DOTCOLOR","DOTSIZE","GRID","LINE","SURFACE","_getStyleNumber","styleName","_determineColumnIndexes","counter","column","getDistinctValues","distinctValues","getColumnRange","minMax","_dataInitialize","rawData","_onChange","dataFilter","setOnLoadCallback","redraw","withBars","defaultXBarWidth","dataX","defaultYBarWidth","dataY","xRange","defaultXMin","defaultXMax","defaultXStep","yRange","defaultYMin","defaultYMax","defaultYStep","zRange","defaultZMin","defaultZMax","defaultZStep","valueRange","defaultValueMin","defaultValueMax","_getDataPoints","sortNumber","obj","dataMatrix","xIndex","yIndex","trans","screen","bottom","pointRight","pointTop","pointCross","hasChildNodes","firstChild","position","overflow","noCanvas","fontWeight","padding","innerHTML","onmousedown","_onMouseDown","ontouchstart","_onTouchStart","onmousewheel","_onWheel","ontooltip","_onTooltip","onkeydown","setSize","_resizeCanvas","clientHeight","animationStart","slider","play","animationStop","stop","_resizeCenter","charAt","parseFloat","setCameraPosition","pos","horizontal","vertical","setArmRotation","distance","setArmLength","getCameraPosition","getArmRotation","_readData","_redrawFilter","animationAutoStart","cameraPosition","styleNumber","tooltip","showAnimationControls","_redrawSlider","_redrawClear","_redrawAxis","_redrawDataGrid","_redrawDataLine","_redrawDataBar","_redrawDataDot","_redrawInfo","_redrawLegend","ctx","getContext","clearRect","widthMin","widthMax","dotSize","right","lineWidth","font","ymin","ymax","_hsv2rgb","strokeStyle","beginPath","moveTo","lineTo","strokeRect","fillStyle","closePath","gridLineLen","step","getCurrent","next","end","textAlign","textBaseline","fillText","label","visible","setValues","setPlayInterval","onchange","getIndex","selectValue","setOnChangeCallback","lineStyle","getLabel","getSelectedValue","from","to","prettyStep","text","xText","yText","zText","offset","xOffset","yOffset","xMin2d","xMax2d","gridLenX","gridLenY","textMargin","armAngle","H","S","V","R","G","B","C","Hi","X","abs","parseInt","cross","topSideVisible","zAvg","transBottom","dist","sortDepth","aDiff","subtract","bDiff","crossproduct","crossProduct","radius","arc","PI","j","surface","corners","xWidth","yWidth","surfaces","center","avg","transCenter","diff","leftButtonDown","_onMouseUp","which","button","touchDown","startMouseX","getMouseX","startMouseY","getMouseY","startStart","startEnd","startArmRotation","cursor","onmousemove","_onMouseMove","onmouseup","diffX","diffY","horizontalNew","verticalNew","snapAngle","snapValue","round","parameters","emit","delay","mouseX","mouseY","tooltipTimeout","clearTimeout","_hideTooltip","dataPoint","_dataPointFromXY","_showTooltip","setTimeout","ontouchmove","_onTouchMove","ontouchend","_onTouchEnd","delta","wheelDelta","detail","oldLength","newLength","_insideTriangle","triangle","sign","as","bs","cs","distMax","closestDataPoint","closestDist","triangle1","triangle2","distX","distY","sqrt","content","line","dot","dom","borderRadius","boxShadow","borderLeft","contentWidth","offsetWidth","contentHeight","offsetHeight","lineHeight","dotWidth","dotHeight","clientX","targetTouches","clientY","armLocation","armRotation","armLength","cameraLocation","cameraRotation","calculateCameraOrientation","rot","graph","onLoadCallback","loadInBackground","isLoaded","getLoadedProgress","getColumn","getValues","dataView","progress","sub","sum","prev","bar","MozBorderRadius","slide","onclick","togglePlay","onChangeCallback","playTimeout","playInterval","playLoop","setIndex","playNext","interval","clearInterval","getPlayInterval","setPlayLoop","doLoop","onChange","indexToLeft","startClientX","startSlideX","leftToIndex","_start","_end","_step","precision","_current","setRange","setStep","calculatePrettyStep","log10","LN10","step1","pow","step2","step5","toPrecision","getStep","coreProp","Core","defaultOptions","autoResize","orientation","maxHeight","minHeight","_create","body","domProps","emitter","bind","snap","toScreen","_toScreen","toGlobalScreen","_toGlobalScreen","toTime","_toTime","toGlobalTime","_toGlobalTime","timeAxis","currentTime","customTime","itemSet","itemsData","groupsData","setItems","_initAutoResize","component","newDataSet","initialLoad","fit","setWindow","setGroups","groups","setSelection","getSelection","getItemRange","dataset","minItem","maxStartItem","maxEndItem","linegraph","getLegend","groupId","isGroupVisible","minimumStep","containerHeight","forcedStepSize","current","autoScale","stepIndex","marginStart","marginEnd","majorSteps","minorSteps","setMinimumStep","setFirst","safeSize","minimumStepValue","orderOfMagnitude","minorStepIdx","magnitudefactor","solutionFound","stepSize","first","niceStart","niceEnd","roundToMinor","marginRange","rounded","hasNext","previous","slice","isMajor","now","hours","minutes","seconds","milliseconds","clone","direction","moveable","zoomable","zoomMin","zoomMax","touch","_onDragStart","_onDrag","_onDragEnd","_onHold","_onMouseWheel","_onTouch","_onPinch","validateDirection","getPointer","pageX","pageY","hammerUtil","changed","_applyRange","newStart","newEnd","getRange","conversion","allowDragging","gesture","deltaX","deltaY","diffRange","fakeGesture","pointer","pointerDate","_pointerToDate","zoom","touches","initDate","move","EPSILON","orderByStart","orderByEnd","aTime","bTime","force","iMax","axis","collidingItem","jj","collision","nostack","SCALE","DAY","MILLISECOND","SECOND","MINUTE","HOUR","WEEKDAY","MONTH","YEAR","setFullYear","getFullYear","setMonth","setDate","setHours","setMinutes","setSeconds","setMilliseconds","getMilliseconds","getSeconds","getMinutes","getHours","getDate","getMonth","setScale","newScale","newStep","setAutoScale","enable","stepYear","stepMonth","stepDay","stepHour","stepMinute","stepSecond","stepMillisecond","date","year","getLabelMinor","format","getLabelMajor","showCurrentTime","destroy","parent","backgroundVertical","title","currentTimeTimer","_isResized","resized","_previousWidth","_previousHeight","showCustomTime","eventParams","Hammer","drag","prevent_default","setCustomTime","time","getCustomTime","dragging","stopPropagation","svg","showMinorLabels","showMajorLabels","icons","majorLinesOffset","minorLinesOffset","labelOffsetX","labelOffsetY","iconWidth","linegraphSVG","DOMelements","lines","labels","conversionFactor","minWidth","stepPixels","stepPixelsForced","lineOffset","master","svgElements","amountOfGroups","addGroup","graphOptions","updateGroup","removeGroup","hide","show","lineContainer","display","_redrawGroupIcons","iconHeight","iconOffset","drawIcon","backgroundHorizontal","changeCalled","activeGroups","_calculateCharSize","minorLabelHeight","minorCharHeight","majorLabelHeight","majorCharHeight","minorLineWidth","minorLineHeight","majorLineWidth","majorLineHeight","_redrawLabels","amountOfSteps","stepDifference","valueAtZero","marginStartPos","maxLabelSize","_redrawLabel","_redrawLine","characterHeight","largestWidth","majorCharWidth","minorCharWidth","convertValue","invertedValue","convertedValue","textMinor","createTextNode","measureCharMinor","textMajor","measureCharMajor","groupsUsingDefaultStyles","usingDefaultStyle","zeroPosition","setZeroPosition","catmullRom","parametrization","alpha","SVGcontainer","path","fillPath","fillHeight","outline","shaded","barWidth","bar1Height","bar2Height","icon","yAxisOrientation","visibleItems","byStart","byEnd","inner","foreground","marker","visibility","Element","getLabelWidth","restack","_updateVisibleItems","markerHeight","lastMarkerHeight","dirty","displayed","offsetTop","offsetLeft","ii","repositionY","labelSet","setParent","_checkIfVisible","removeFromDataSet","removeItem","_constructByEndArray","endArray","initialPosByStart","newVisibleItems","initialPosByEnd","_checkIfInvisible","repositionX","align","groupOrder","selectable","editable","updateTime","onAdd","onUpdate","onMove","onRemove","itemOptions","itemListeners","_onAdd","_onUpdate","_onRemove","groupListeners","_onAddGroups","_onUpdateGroups","_onRemoveGroups","groupIds","selection","stackDirty","touchParams","_moveToGroup","oldGroup","UNGROUPED","box","_updateUngrouped","centerContainer","_onSelectItem","_onMultiSelectItem","_onAddItem","addCallback","fn","Function","markDirty","unselect","select","getVisibleItems","rawVisibleItems","_deselect","_orderGroups","visibleInterval","zoomed","lastVisibleInterval","lastWidth","firstGroup","_firstGroup","firstMargin","nonFirstMargin","groupMargin","groupResized","firstGroupIndex","firstGroupId","ungrouped","getLabelSet","oldItemsData","getItems","_order","getGroups","itemData","_removeItem","groupData","groupOptions","oldGroupId","itemFromTarget","selected","dragLeftItem","dragRightItem","itemProps","groupFromTarget","changes","ctrlKey","srcEvent","shiftKey","oldSelection","newSelection","xAbs","newItem","itemSetFromTarget","side","iconSize","iconSpacing","textArea","drawLegendIcons","getComputedStyle","paddingTop","defaultGroup","sampling","graphHeight","barChart","allowOverlap","dataAxis","legend","lastStart","rangePerPixelInv","_updateGraph","yAxisLeft","yAxisRight","legendLeft","legendRight","_updateAllGroupData","_updateGroup","groupsContent","ungroupedCounter","preprocessedGroup","preprocessedGroupData","processedGroupData","groupRanges","minDate","maxDate","_preprocessData","_updateYAxis","_convertYvalues","_drawLineGraph","_drawBarGraph","minVal","maxVal","yAxisLeftUsed","yAxisRightUsed","minLeft","minRight","maxLeft","maxRight","_toggleAxisVisiblity","drawIcons","axisUsed","coreDistance","intersections","amount","resolved","drawData","_getSafeDrawData","nextKey","prevKey","_drawPoints","slots","total","slot","svgHeight","_catmullRom","_linear","dFill","datapoints","xValue","yValue","extractedData","increment","amountOfPoints","xDistance","pointsPerPixel","ceil","_catmullRomUniform","p0","p1","p2","p3","bp1","bp2","normalization","d1","d2","d3","A","N","M","d3powA","d2powA","d3pow2A","d2pow2A","d1pow2A","d1powA","majorLines","majorTexts","minorLines","minorTexts","lineTop","parentChanged","foregroundNextSibling","nextSibling","backgroundNextSibling","_repaintLabels","insertBefore","xFirstMajorLabel","cur","_repaintMinorText","_repaintMajorText","_repaintMajorLine","_repaintMinorLine","leftTime","leftText","widthText","arr","pop","childNodes","nodeValue","_repaintDeleteButton","anchor","deleteButton","itemSetHeight","marginLeft","baseClassName","_repaintDragLeft","_repaintDragRight","contentLeft","parentWidth","boxWidth","dragLeft","dragRight","_initializeMixinLoaders","renderRefreshRate","renderTimestep","renderTime","maxPhysicsTicksPerRender","physicsDiscreteStepsize","initializing","triggerFunctions","edit","editEdge","connect","del","nodes","mass","radiusMin","radiusMax","shape","image","fixed","fontColor","fontSize","fontFace","level","highlightColor","edges","widthSelectionMultiplier","hoverWidth","fontFill","arrowScaleFactor","dash","gap","altLength","inheritColor","configurePhysics","physics","barnesHut","theta","gravitationalConstant","centralGravity","springLength","springConstant","damping","repulsion","nodeDistance","hierarchicalRepulsion","clustering","initialMaxNodes","clusterThreshold","reduceToNodes","chainThreshold","clusterEdgeThreshold","sectorThreshold","screenSizeThreshold","fontSizeMultiplier","maxFontSize","forceAmplification","distanceAmplification","edgeGrowth","nodeScaling","maxNodeSizeIncrements","activeAreaBoxSize","clusterLevelDifference","navigation","keyboard","speed","dataManipulation","initiallyVisible","hierarchicalLayout","levelSeparation","nodeSpacing","freezeForStabilization","smoothCurves","dynamic","roundness","dynamicSmoothCurves","maxVelocity","minVelocity","stabilize","stabilizationIterations","link","editNode","back","addDescription","linkDescription","editEdgeDescription","addError","linkError","editError","editBoundError","deleteError","deleteClusterError","dragNetwork","dragNodes","hideEdgesOnDrag","hideNodesOnDrag","constants","hoverObj","controlNodesActive","images","setOnloadCallback","_redraw","xIncrement","yIncrement","zoomIncrement","_loadPhysicsSystem","_loadSectorSystem","_loadClusterSystem","_loadSelectionSystem","_loadHierarchySystem","_setTranslation","freezeSimulation","cachedFunctions","calculationNodes","calculationNodeIndices","nodeIndices","canvasTopLeft","canvasBottomRight","pointerPosition","areaCenter","previousScale","nodesData","edgesData","nodesListeners","_addNodes","_updateNodes","_removeNodes","edgesListeners","_addEdges","_updateEdges","_removeEdges","moving","timer","_setupHierarchicalLayout","zoomExtent","startWithClustering","mousetrap","MixinLoader","_getScriptPath","scripts","getElementsByTagName","src","_getRange","node","minY","maxY","minX","maxX","nodeId","_findCenter","_centerNetwork","initialZoom","disableStart","zoomLevel","numberOfNodes","factor","yDistance","xZoomLevel","yZoomLevel","_updateNodeIndexList","_clearNodeIndexList","idx","dotData","DOTToGraph","gephi","gephiData","parseGephi","_setNodes","_setEdges","_putDataInSector","_stabilize","onEdit","onEditEdge","onConnect","onDelete","editMode","newColorObj","groupname","_loadNavigationControls","_loadManipulationSystem","_configureSmoothCurves","_createKeyBinds","pinch","_onTap","_onDoubleTap","_onRelease","_onMouseMoveTitle","reset","_moveUp","_yStopMoving","_moveDown","_moveLeft","_xStopMoving","_moveRight","_zoomIn","_stopZoom","_zoomOut","_createManipulatorBar","_deleteSelected","_getPointer","pinched","_getScale","_handleTouch","_handleDragStart","_getNodeAt","_getTranslation","isSelected","_selectObject","objectId","selectionObj","xFixed","yFixed","_handleOnDrag","_XconvertDOMtoCanvas","_XconvertCanvasToDOM","_YconvertDOMtoCanvas","_YconvertCanvasToDOM","_handleTap","_handleDoubleTap","_handleOnHold","_handleOnRelease","_zoom","scaleOld","preScaleDragPointer","DOMtoCanvas","scaleFrac","tx","ty","updateClustersDefault","postScaleDragPointer","canvasToDOM","popupObj","_checkHidePopup","checkShow","_checkShowPopup","popupTimer","edgeId","_getEdgeAt","_hoverObject","_blurObject","lastPopupNode","getTitle","isOverlappingWith","edge","connected","popup","setPosition","setText","manipulationDiv","navigationDivs","oldNodesData","_updateSelection","angle","_resetLevels","_updateCalculationNodes","_reconnectEdges","_updateValueRange","updateLabels","setProperties","properties","oldEdgesData","oldEdge","disconnect","showInternalIds","_createBezierNodes","via","sectors","setValueRange","w","save","translate","_doInAllSectors","restore","offsetX","offsetY","_drawNodes","alwaysShow","setScaleAndPos","inArea","draw","sMax","_drawEdges","_drawControlNodes","_freezeDefinedNodes","_physicsTick","_restoreFrozenNodes","iterations","fixedData","_isMoving","vmin","isMoving","_discreteStepNodes","nodesPresent","discreteStepLimited","discreteStep","vminCorrected","_doInAllActiveSectors","_doInSupportSector","_animationStep","_handleNavigation","calculationTime","maxSteps","timeRequired","requestAnimationFrame","mozRequestAnimationFrame","webkitRequestAnimationFrame","msRequestAnimationFrame","ua","toLowerCase","requiresTimeout","toggleFreeze","parentEdgeId","internalMultiplier","positionBezierNode","mixin","storePosition","dataArray","allowedToMoveX","allowedToMoveY","focusOnNode","nodePosition","requiredScale","canvasCenter","distanceFromCenter","networkConstants","fromId","toId","widthSelected","originalFromId","originalToId","widthFixed","lengthFixed","controlNodesEnabled","controlNodes","positions","connectedNode","_drawLine","_drawArrow","_drawArrowCenter","_drawDashLine","attachEdge","detachEdge","xFrom","yFrom","xTo","yTo","xObj","yObj","_getDistanceToEdge","_getColor","colorObj","_getLineWidth","_line","midpointX","midpointY","_pointOnLine","_label","resize","_circle","_pointOnCircle","networkScaleInv","_getViaCoordinates","xVia","yVia","quadraticCurveTo","measureText","fillRect","mozDash","setLineDash","pattern","lineDashOffset","mozDashOffset","lineCap","dashedLine","percentage","atan2","arrow","edgeSegmentLength","fromBorderDist","distanceToBorder","fromBorderPoint","toBorderDist","toBorderPoint","x1","y1","x2","y2","x3","y3","lastX","lastY","minDistance","_getDistanceToLine","px","py","something","u","nodeIdFrom","nodeIdTo","getControlNodePositions","_enableControlNodes","_disableControlNodes","_getSelectedControlNode","fromDistance","toDistance","_restoreControlNodes","defaultIndex","DEFAULT","load","url","img","Image","onload","imagelist","grouplist","dynamicEdges","reroutedEdges","fontDrawThreshold","horizontalAlignLeft","verticalAlignTop","baseRadiusValue","radiusFixed","preassignedLevel","fx","fy","vx","vy","resetCluster","dynamicEdgesLength","clusterSession","clusterSizeWidthFactor","clusterSizeHeightFactor","clusterSizeRadiusFactor","growthIndicator","networkScale","formationScale","clusterSize","containedNodes","containedEdges","clusterSessions","originalLabel","triggerFunction","groupObj","imageObj","_drawDatabase","_resizeDatabase","_drawBox","_resizeBox","_drawCircle","_resizeCircle","_drawEllipse","_resizeEllipse","_drawImage","_resizeImage","_drawText","_resizeText","_drawDot","_resizeShape","_drawSquare","_drawTriangle","_drawTriangleDown","_drawStar","_reset","clearSizeCache","_setForce","_addForce","isFixed","getDistance","globalAlpha","drawImage","textSize","getTextSize","clusterLineWidth","selectionLineWidth","borderWidthSelected","roundRect","database","diameter","circle","defaultSize","ellipse","_drawShape","radiusMultiplier","baseline","labelUnderNode","lineCount","yLine","inView","clearVelocity","updateVelocity","massBeforeClustering","energyBefore","styleAttr","fontFamily","WebkitBorderRadius","whiteSpace","maxWidth","parseDOT","parseGraph","nextPreview","isAlphaNumeric","regexAlphaNumeric","merge","o","addNode","graphs","attr","addEdge","createEdge","getToken","tokenType","TOKENTYPE","NULL","token","isComment","DELIMITER","c2","DELIMITERS","IDENTIFIER","newSyntaxError","UNKNOWN","chop","strict","parseStatements","parseStatement","subgraph","parseSubgraph","parseEdge","parseAttributeStatement","parseNodeStatement","subgraphs","parseAttributeList","message","maxLength","forEach2","array1","array2","elem1","elem2","convertEdge","dotEdge","graphEdge","graphData","dotNode","graphNode","subEdge","{","}","[","]",";","=",",","->","--","gephiJSON","allowedToMove","gEdges","gNodes","gEdge","source","attributes","gNode","leftContainer","rightContainer","shadowTop","shadowBottom","shadowTopLeft","shadowBottomLeft","shadowTopRight","shadowBottomRight","listeners","events","args","scrollTop","scrollTopMin","_stopAutoResize","what","dataRange","getWindow","borderRootHeight","borderRootWidth","autoHeight","centerWidth","_updateScrollTop","visibilityTop","visibilityBottom","repaint","_startAutoResize","_onResize","lastHeight","watchTimer","setInterval","initialScrollTop","oldScrollTop","_getScrollTop","newScrollTop","_setScrollTop","eventType","getTouchList","collectEventData","CanvasRenderingContext2D","square","s2","ir","triangleDown","star","n","r2d","kappa","ox","oy","xe","ye","xm","ym","bezierCurveTo","wEllipse","hEllipse","ymb","yeb","xt","yt","xi","yi","xl","yl","xr","yr","dashArray","dashLength","dashCount","slope","distRemaining","dashIndex","PhysicsMixin","ClusterMixin","SectorsMixin","SelectionMixin","ManipulationMixin","NavigationMixin","HierarchicalLayoutMixin","_loadMixin","sourceVariable","mixinFunction","_clearMixin","_loadSelectedForceSolver","_loadPhysicsConfiguration","hubThreshold","activeSector","drawingNode","blockConnectingEdgeSelection","forceAppendSelection","editModeDiv","closeDiv","_cleanNavigation","_loadNavigationElements","_callbacks","once","self","removeListener","removeAllListeners","callbacks","cb","hasListeners","_addEvent","_characterFromEvent","fromCharCode","_MAP","_KEYCODE_MAP","_stop","tag_name","tagName","contentEditable","_modifiersMatch","modifiers1","modifiers2","_resetSequences","do_not_reset","active_sequences","_sequence_levels","_inside_sequence","_getMatches","character","modifiers","combination","matches","_isModifier","seq","combo","_eventModifiers","altKey","metaKey","_fireCallback","cancelBubble","_handleCharacter","processed_sequence_callback","_handleKey","keyCode","_ignore_next_keyup","_resetSequenceTimer","_reset_timer","_getReverseMap","_REVERSE_MAP","_pickBestAction","_bindSequence","_increaseSequence","_callbackAndReset","_bindSingle","sequence_name","sequence","_SPECIAL_ALIASES","_SHIFT_MAP","_bindMultiple","combinations",8,9,13,16,17,18,20,27,32,33,34,35,36,37,38,39,40,45,46,91,93,224,106,107,109,110,111,186,187,188,189,190,191,192,219,220,221,222,"~","!","@","#","$","%","^","&","*","(",")","_","+",":","\"","<",">","?","|","command","return","escape","_direct_map","unbind","trigger","__WEBPACK_AMD_DEFINE_RESULT__","setup","READY","Event","determineEventTypes","Utils","each","gestures","Detection","register","onTouch","DOCUMENT","EVENT_MOVE","detect","EVENT_END","Instance","VERSION","defaults","behavior","userSelect","touchAction","touchCallout","contentZooming","userDrag","tapHighlightColor","HAS_POINTEREVENTS","pointerEnabled","msPointerEnabled","HAS_TOUCHEVENTS","IS_MOBILE","NO_MOUSEEVENTS","CALCULATE_INTERVAL","EVENT_TYPES","DIRECTION_DOWN","DIRECTION_LEFT","DIRECTION_UP","DIRECTION_RIGHT","POINTER_MOUSE","POINTER_TOUCH","POINTER_PEN","EVENT_START","EVENT_RELEASE","EVENT_TOUCH","plugins","utils","dest","handler","iterator","context","inStr","find","inArray","hasParent","getCenter","getVelocity","deltaTime","getAngle","touch1","touch2","getDirection","getScale","getRotation","isVertical","setPrefixedCss","toggle","prefixes","toCamelCase","toggleBehavior","falseFn","onselectstart","ondragstart","str","preventMouseEvents","started","shouldDetect","hook","onTouchHandler","ev","triggerType","srcType","isPointer","isMouse","buttons","PointerEvent","matchType","updatePointer","doDetect","touchList","touchListLength","triggerChange","changedLength","changedTouches","evData","identifiers","identifier","pointerType","timeStamp","preventManipulation","stopDetect","pointers","touchlist","pointerEvent","pointerId","pt","MSPOINTER_TYPE_MOUSE","MSPOINTER_TYPE_TOUCH","MSPOINTER_TYPE_PEN","detection","stopped","startDetect","inst","eventData","startEvent","lastEvent","lastCalcEvent","futureCalcEvent","lastCalcData","extendEventData","instOptions","getCalculatedData","recalc","calcEv","calcData","velocity","velocityX","velocityY","interimAngle","interimDirection","startEv","lastEv","rotation","eventStartHandler","eventHandlers","createEvent","initEvent","dispatchEvent","state","dispose","eh","dragGesture","dragMaxTouches","triggered","dragMinDistance","startCenter","dragDistanceCorrection","dragLockToAxis","dragLockMinDistance","lastDirection","dragBlockVertical","dragBlockHorizontal","Drag","Gesture","holdGesture","holdTimeout","holdThreshold","Hold","Release","Infinity","Swipe","swipeMinTouches","swipeMaxTouches","swipeVelocityX","swipeVelocityY","tapGesture","sincePrev","didDoubleTap","hasMoved","tapMaxDistance","tapMaxTime","doubleTapInterval","doubleTapDistance","tapAlways","Tap","Touch","preventMouse","transformGesture","scaleThreshold","rotationThreshold","transformMinScale","transformMinRotation","Transform","global","dfl","defaultParsingFlags","empty","unusedTokens","unusedInput","charsLeftOver","nullInput","invalidMonth","invalidFormat","userInvalidated","iso","deprecate","msg","printMsg","suppressDeprecationWarnings","warn","firstTime","padToken","func","leftZeroFill","ordinalizeToken","period","lang","ordinal","Language","Moment","config","checkOverflow","Duration","duration","normalizedInput","normalizeObjectUnits","years","quarters","quarter","months","month","weeks","week","days","day","hour","minute","second","millisecond","_milliseconds","_days","_months","_bubble","cloneMoment","momentProperties","absRound","number","targetLength","forceSign","output","addOrSubtractDurationFromMoment","mom","isAdding","updateOffset","_d","setTime","rawSetter","rawGetter","rawMonthSetter","input","compareArrays","dontConvert","lengthDiff","diffs","toInt","normalizeUnits","units","lowered","unitAliases","camelFunctions","inputObject","normalizedProp","makeList","setter","getter","method","_lang","results","utc","set","argumentForCoercion","coercedNumber","isFinite","daysInMonth","UTC","getUTCDate","weeksInYear","dow","doy","weekOfYear","daysInYear","isLeapYear","_a","_pf","DATE","_overflowDayOfYear","isValid","_isValid","getTime","_strict","normalizeLanguage","makeAs","model","_isUTC","zone","_offset","local","loadLang","abbr","languages","unloadLang","getLangDefinition","k","hasModule","removeFormattingTokens","makeFormatFunction","formattingTokens","formatTokenFunctions","formatMoment","expandFormat","formatFunctions","invalidDate","replaceLongDateFormatTokens","longDateFormat","localFormattingTokens","lastIndex","getParseRegexForToken","parseTokenOneDigit","parseTokenThreeDigits","parseTokenFourDigits","parseTokenOneToFourDigits","parseTokenSignedNumber","parseTokenSixDigits","parseTokenOneToSixDigits","parseTokenTwoDigits","parseTokenOneToThreeDigits","parseTokenWord","_l","_meridiemParse","parseTokenTimestampMs","parseTokenTimezone","parseTokenT","parseTokenDigits","parseTokenOneOrTwoDigits","parseTokenOrdinal","RegExp","regexpEscape","unescapeFormat","timezoneMinutesFromString","string","possibleTzMatches","tzChunk","parts","parseTimezoneChunker","addTimeToArrayFromToken","datePartArray","monthsParse","_dayOfYear","parseTwoDigitYear","_isPm","isPM","_useUTC","_tzm","weekdaysParse","_w","invalidWeekday","dayOfYearFromWeekInfo","weekYear","weekday","temp","GG","W","E","_week","gg","dayOfYearFromWeeks","dayOfYear","dateFromConfig","currentDate","yearToUse","currentDateArray","makeUTCDate","getUTCMonth","makeDate","setUTCMinutes","getUTCMinutes","dateFromObject","_i","getUTCFullYear","makeDateFromStringAndFormat","_f","ISO_8601","parseISO","parsedInput","tokens","skipped","stringLength","totalParsedInputLength","matched","p4","makeDateFromStringAndArray","tempConfig","bestMoment","scoreToBeat","currentScore","NaN","score","l","isoRegex","isoDates","isoTimes","makeDateFromString","createFromInputFallback","makeDateFromInput","aspNetJsonRegex","ms","setUTCFullYear","parseWeekday","language","substituteTimeAgo","withoutSuffix","isFuture","relativeTime","relativeTimeThresholds","dd","dm","firstDayOfWeek","firstDayOfWeekOfYear","adjustedMoment","daysToDayOfWeek","daysToAdd","getUTCDay","makeMoment","invalid","preparse","pickBy","moments","res","dayOfMonth","unit","makeAccessor","keepTime","makeDurationGetter","makeDurationAsGetter","makeGlobal","shouldDeprecate","ender","oldGlobalMoment","globalScope","_isAMomentObject","aspNetTimeSpanJsonRegex","isoDurationRegex","isoFormat","unitMillisecondFactors","Milliseconds","Seconds","Minutes","Hours","Days","Months","Years","D","Q","DDD","dayofyear","isoweekday","isoweek","weekyear","isoweekyear","ordinalizeTokens","paddedTokens","MMM","monthsShort","MMMM","weekdaysMin","ddd","weekdaysShort","dddd","weekdays","isoWeek","YY","YYYY","YYYYY","YYYYYY","gggg","ggggg","isoWeekYear","GGGG","GGGGG","isoWeekday","meridiem","SS","SSS","SSSS","Z","ZZ","zoneAbbr","zz","zoneName","unix","lists","DDDD","_monthsShort","monthName","regex","_monthsParse","_weekdays","_weekdaysShort","_weekdaysMin","weekdayName","_weekdaysParse","_longDateFormat","LT","L","LL","LLL","LLLL","val","isLower","_calendar","sameDay","nextDay","nextWeek","lastDay","lastWeek","sameElse","calendar","_relativeTime","future","past","mm","hh","MM","yy","pastFuture","_ordinal","postformat","_invalidDate","ret","parseIso","isDuration","inp","version","defaultFormat","relativeTimeThreshold","threshold","limit","_abbr","langData","flags","parseZone","isDSTShifted","parsingFlags","invalidAt","inputString","dur","asFloat","that","zoneDiff","startOf","humanize","fromNow","sod","isDST","getDay","endOf","isAfter","isBefore","isSame","getTimezoneOffset","_changeInProgress","hasAlignedHourOffset","isoWeeksInYear","weekInfo","dates","isoWeeks","toJSON","withSuffix","difference","toIsoString","asSeconds","asMonths","require","noGlobal","clusterToFit","maxNumberOfNodes","reposition","maxLevels","forceAggregateHubs","normalizeClusterLevels","increaseClusterLevel","repositionNodes","openCluster","isMovingBeforeClustering","_nodeInActiveArea","_sector","_addSector","decreaseClusterLevel","_expandClusterNode","_updateDynamicEdges","updateClusters","zoomDirection","recursive","doNotStart","amountOfNodes","_collapseSector","_formClusters","_openClusters","_openClustersBySize","_aggregateHubs","handleChains","chainPercentage","_getChainFraction","_reduceAmountOfChains","_getHubSize","_formClustersByHub","openAll","containedNodeId","childNode","_expelChildFromParent","_unselectAll","_releaseContainedEdges","_connectEdgeBackToChild","_validateEdges","othersPresent","childNodeId","_repositionBezierNodes","_formClustersByZoom","_forceClustersByZoom","minLength","_addToCluster","_clusterToSmallestNeighbour","smallestNeighbour","smallestNeighbourNode","neighbour","onlyEqual","_formClusterFromHub","hubNode","absorptionSizeOffset","allowCluster","edgesIdarray","amountOfInitialEdges","_addToContainedEdges","_connectEdgeToCluster","_containCircularEdgesFromNode","massBefore","correction","edgeToId","edgeFromId","_addToReroutedEdges","maxLevel","minLevel","clusterLevel","targetLevel","average","averageSquared","hubCounter","largestHub","variance","standardDeviation","fraction","reduceAmount","chains","_switchToSector","sectorId","sectorType","_switchToActiveSector","_switchToFrozenSector","_switchToSupportSector","_loadLatestSector","_previousSector","_setActiveSector","newId","_forgetLastSector","_createNewSector","_deleteActiveSector","_deleteFrozenSector","_freezeSector","_activateSector","_mergeThisWithFrozen","_collapseThisToSingleCluster","sector","unqiueIdentifier","previousSector","runFunction","argument","_doInAllFrozenSectors","_drawSectorNodes","_drawAllSectorNodes","_getNodesOverlappingWith","overlappingNodes","_getAllNodesOverlappingWith","_pointerToPositionObject","positionObject","_getEdgesOverlappingWith","overlappingEdges","_getAllEdgesOverlappingWith","_addToSelection","_addToHover","_removeFromSelection","doNotTrigger","_unselectClusters","_getSelectedNodeCount","_getSelectedNode","_getSelectedEdge","_getSelectedEdgeCount","_getSelectedObjectCount","_selectionIsEmpty","_clusterInSelection","_selectConnectedEdges","_hoverConnectedEdges","_unselectConnectedEdges","append","highlightEdges","nodeIds","getSelectedNodes","edgeIds","getSelectedEdges","idArray","RangeError","selectNodes","selectEdges","_clearManipulatorBar","_restoreOverloadedFunctions","functionName","_toggleEditMode","toolbar","getElementById","boundFunction","edgeBeingEdited","selectedControlNode","addNodeButton","_createAddNodeToolbar","addEdgeButton","_createAddEdgeToolbar","editButton","_editNode","_createEditEdgeToolbar","editModeButton","backButton","_addNode","_handleConnect","_finishConnect","_selectControlNode","_controlNodeDrag","_releaseControlNode","newNode","_editEdge","alert","smooth","connectFromId","_createEdge","defaultData","finalizedData","sourceNodeId","targetNodeId","selectedNodes","selectedEdges","wrapper","navigationDivActions","_stopMovement","hubsize","definedLevel","undefinedLevel","_changeConstants","_determineLevels","distribution","_getDistribution","_placeNodesByHierarchy","minPos","_placeBranchNodes","maxCount","_setLevel","parentId","parentLevel","nodeMoved","_restoreNodes","graphToggleSmoothCurves","graph_toggleSmooth","graphRepositionNodes","showValueOfRange","graphGenerateOptions","optionsSpecific","radioButton1","radioButton2","checked","backupConstants","optionsDiv","switchConfigurations","radioButton","querySelector","tableId","table","constantsVariableName","valueId","rangeValue","_overWriteGraphConstants","RepulsionMixin","HierarchialRepulsionMixin","BarnesHutMixin","_toggleBarnesHut","barnesHutTree","_initializeForceCalculation","_calculateForces","_calculateGravitationalForces","_calculateNodeForces","_calculateSpringForcesWithSupport","_calculateHierarchicalSpringForces","_calculateSpringForces","supportNodes","supportNodeId","gravity","gravityForce","edgeLength","springForce","combinedClusterSize","node1","node2","node3","_calculateSpringForce","physicsConfiguration","hierarchicalLayoutDirections","parentElement","rangeElement","radioButton3","graph_repositionNodes","graph_generateOptions","nameArray","webpackContext","req","webpackContextResolve","resolve","repulsingForce","a_base","minimumDistance","steepness","springFx","springFy","totalFx","totalFy","correctionFx","correctionFy","nodeCount","_formBarnesHutTree","_getForceContribution","children","NW","NE","SW","SE","parentBranch","childrenCount","centerOfMass","calcSize","MAX_VALUE","sizeDiff","minimumTreeSize","rootSize","halfRootSize","centerX","centerY","_splitBranch","_placeInTree","_updateBranchMass","totalMass","totalMassInv","biggestSize","skipMassUpdate","_placeInRegion","region","containedNode","_insertRegion","childSize","_drawTree","_drawBranch","branch","webpackPolyfill","paths"],"mappings":"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"} \ No newline at end of file diff --git a/dist/vis.min.js b/dist/vis.min.js index f4eafb53..82096b01 100644 --- a/dist/vis.min.js +++ b/dist/vis.min.js @@ -5,7 +5,7 @@ * A dynamic, browser-based visualization library. * * @version 3.2.1-SNAPSHOT - * @date 2014-08-19 + * @date 2014-08-20 * * @license * Copyright (C) 2011-2014 Almende B.V, http://almende.com @@ -22,16 +22,16 @@ * License for the specific language governing permissions and limitations under * the License. */ -!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):"object"==typeof exports?exports.vis=e():t.vis=e()}(this,function(){return function(t){function e(s){if(i[s])return i[s].exports;var o=i[s]={exports:{},id:s,loaded:!1};return t[s].call(o.exports,o,o.exports,e),o.loaded=!0,o.exports}var i={};return e.m=t,e.c=i,e.p="",e(0)}([function(t,e,i){e.util=i(1),e.DOMutil=i(2),e.DataSet=i(3),e.DataView=i(4),e.Graph3d=i(5),e.graph3d={Camera:i(6),Filter:i(7),Point2d:i(8),Point3d:i(9),Slider:i(10),StepNumber:i(11)},e.Timeline=i(12),e.Graph2d=i(13),e.timeline={DataStep:i(14),Range:i(15),stack:i(16),TimeStep:i(17),components:{items:{Item:i(28),ItemBox:i(29),ItemPoint:i(30),ItemRange:i(31)},Component:i(18),CurrentTime:i(19),CustomTime:i(20),DataAxis:i(21),GraphGroup:i(22),Group:i(23),ItemSet:i(24),Legend:i(25),LineGraph:i(26),TimeAxis:i(27)}},e.Network=i(32),e.network={Edge:i(33),Groups:i(34),Images:i(35),Node:i(36),Popup:i(37),dotparser:i(38),gephiParser:i(39)},e.Graph=function(){throw new Error("Graph is renamed to Network. Please create a graph as new vis.Network(...)")},e.moment=i(40),e.hammer=i(41)},function(module,exports,__webpack_require__){var moment=__webpack_require__(40);exports.isNumber=function(t){return t instanceof Number||"number"==typeof t},exports.isString=function(t){return t instanceof String||"string"==typeof t},exports.isDate=function(t){if(t instanceof Date)return!0;if(exports.isString(t)){var e=ASPDateRegex.exec(t);if(e)return!0;if(!isNaN(Date.parse(t)))return!0}return!1},exports.isDataTable=function(t){return"undefined"!=typeof google&&google.visualization&&google.visualization.DataTable&&t instanceof google.visualization.DataTable},exports.randomUUID=function(){var t=function(){return Math.floor(65536*Math.random()).toString(16)};return t()+t()+"-"+t()+"-"+t()+"-"+t()+"-"+t()+t()+t()},exports.extend=function(t){for(var e=1,i=arguments.length;i>e;e++){var s=arguments[e];for(var o in s)s.hasOwnProperty(o)&&(t[o]=s[o])}return t},exports.selectiveExtend=function(t,e){if(!Array.isArray(t))throw new Error("Array with property names expected as first argument");for(var i=2;ii;i++)if(t[i]!=e[i])return!1;return!0},exports.convert=function(t,e){var i;if(void 0===t)return void 0;if(null===t)return null;if(!e)return t;if("string"!=typeof e&&!(e instanceof String))throw new Error("Type must be a string");switch(e){case"boolean":case"Boolean":return Boolean(t);case"number":case"Number":return Number(t.valueOf());case"string":case"String":return String(t);case"Date":if(exports.isNumber(t))return new Date(t);if(t instanceof Date)return new Date(t.valueOf());if(moment.isMoment(t))return new Date(t.valueOf());if(exports.isString(t))return i=ASPDateRegex.exec(t),i?new Date(Number(i[1])):moment(t).toDate();throw new Error("Cannot convert object of type "+exports.getType(t)+" to type Date");case"Moment":if(exports.isNumber(t))return moment(t);if(t instanceof Date)return moment(t.valueOf());if(moment.isMoment(t))return moment(t);if(exports.isString(t))return i=ASPDateRegex.exec(t),moment(i?Number(i[1]):t);throw new Error("Cannot convert object of type "+exports.getType(t)+" to type Date");case"ISODate":if(exports.isNumber(t))return new Date(t);if(t instanceof Date)return t.toISOString();if(moment.isMoment(t))return t.toDate().toISOString();if(exports.isString(t))return i=ASPDateRegex.exec(t),i?new Date(Number(i[1])).toISOString():new Date(t).toISOString();throw new Error("Cannot convert object of type "+exports.getType(t)+" to type ISODate");case"ASPDate":if(exports.isNumber(t))return"/Date("+t+")/";if(t instanceof Date)return"/Date("+t.valueOf()+")/";if(exports.isString(t)){i=ASPDateRegex.exec(t);var s;return s=i?new Date(Number(i[1])).valueOf():new Date(t).valueOf(),"/Date("+s+")/"}throw new Error("Cannot convert object of type "+exports.getType(t)+" to type ASPDate");default:throw new Error('Unknown type "'+e+'"')}};var ASPDateRegex=/^\/?Date\((\-?\d+)/i;exports.getType=function(t){var e=typeof t;return"object"==e?null==t?"null":t instanceof Boolean?"Boolean":t instanceof Number?"Number":t instanceof String?"String":t instanceof Array?"Array":t instanceof Date?"Date":"Object":"number"==e?"Number":"boolean"==e?"Boolean":"string"==e?"String":e},exports.getAbsoluteLeft=function(t){return t.getBoundingClientRect().left+window.pageXOffset},exports.getAbsoluteTop=function(t){return t.getBoundingClientRect().top+window.pageYOffset},exports.addClassName=function(t,e){var i=t.className.split(" ");-1==i.indexOf(e)&&(i.push(e),t.className=i.join(" "))},exports.removeClassName=function(t,e){var i=t.className.split(" "),s=i.indexOf(e);-1!=s&&(i.splice(s,1),t.className=i.join(" "))},exports.forEach=function(t,e){var i,s;if(t instanceof Array)for(i=0,s=t.length;s>i;i++)e(t[i],i,t);else for(i in t)t.hasOwnProperty(i)&&e(t[i],i,t)},exports.toArray=function(t){var e=[];for(var i in t)t.hasOwnProperty(i)&&e.push(t[i]);return e},exports.updateProperty=function(t,e,i){return t[e]!==i?(t[e]=i,!0):!1},exports.addEventListener=function(t,e,i,s){t.addEventListener?(void 0===s&&(s=!1),"mousewheel"===e&&navigator.userAgent.indexOf("Firefox")>=0&&(e="DOMMouseScroll"),t.addEventListener(e,i,s)):t.attachEvent("on"+e,i)},exports.removeEventListener=function(t,e,i,s){t.removeEventListener?(void 0===s&&(s=!1),"mousewheel"===e&&navigator.userAgent.indexOf("Firefox")>=0&&(e="DOMMouseScroll"),t.removeEventListener(e,i,s)):t.detachEvent("on"+e,i)},exports.preventDefault=function(t){t||(t=window.event),t.preventDefault?t.preventDefault():t.returnValue=!1},exports.getTarget=function(t){t||(t=window.event);var e;return t.target?e=t.target:t.srcElement&&(e=t.srcElement),void 0!=e.nodeType&&3==e.nodeType&&(e=e.parentNode),e},exports.option={},exports.option.asBoolean=function(t,e){return"function"==typeof t&&(t=t()),null!=t?0!=t:e||null},exports.option.asNumber=function(t,e){return"function"==typeof t&&(t=t()),null!=t?Number(t)||e||null:e||null},exports.option.asString=function(t,e){return"function"==typeof t&&(t=t()),null!=t?String(t):e||null},exports.option.asSize=function(t,e){return"function"==typeof t&&(t=t()),exports.isString(t)?t:exports.isNumber(t)?t+"px":e||null},exports.option.asElement=function(t,e){return"function"==typeof t&&(t=t()),t||e||null},exports.GiveDec=function(Hex){var Value;return Value="A"==Hex?10:"B"==Hex?11:"C"==Hex?12:"D"==Hex?13:"E"==Hex?14:"F"==Hex?15:eval(Hex)},exports.GiveHex=function(t){var e;return e=10==t?"A":11==t?"B":12==t?"C":13==t?"D":14==t?"E":15==t?"F":""+t},exports.parseColor=function(t){var e;if(exports.isString(t)){if(exports.isValidRGB(t)){var i=t.substr(4).substr(0,t.length-5).split(",");t=exports.RGBToHex(i[0],i[1],i[2])}if(exports.isValidHex(t)){var s=exports.hexToHSV(t),o={h:s.h,s:.45*s.s,v:Math.min(1,1.05*s.v)},n={h:s.h,s:Math.min(1,1.25*s.v),v:.6*s.v},r=exports.HSVToHex(n.h,n.h,n.v),a=exports.HSVToHex(o.h,o.s,o.v);e={background:t,border:r,highlight:{background:a,border:r},hover:{background:a,border:r}}}else e={background:t,border:t,highlight:{background:t,border:t},hover:{background:t,border:t}}}else e={},e.background=t.background||"white",e.border=t.border||e.background,exports.isString(t.highlight)?e.highlight={border:t.highlight,background:t.highlight}:(e.highlight={},e.highlight.background=t.highlight&&t.highlight.background||e.background,e.highlight.border=t.highlight&&t.highlight.border||e.border),exports.isString(t.hover)?e.hover={border:t.hover,background:t.hover}:(e.hover={},e.hover.background=t.hover&&t.hover.background||e.background,e.hover.border=t.hover&&t.hover.border||e.border);return e},exports.hexToRGB=function(t){t=t.replace("#","").toUpperCase();var e=exports.GiveDec(t.substring(0,1)),i=exports.GiveDec(t.substring(1,2)),s=exports.GiveDec(t.substring(2,3)),o=exports.GiveDec(t.substring(3,4)),n=exports.GiveDec(t.substring(4,5)),r=exports.GiveDec(t.substring(5,6)),a=16*e+i,h=16*s+o,i=16*n+r;return{r:a,g:h,b:i}},exports.RGBToHex=function(t,e,i){var s=exports.GiveHex(Math.floor(t/16)),o=exports.GiveHex(t%16),n=exports.GiveHex(Math.floor(e/16)),r=exports.GiveHex(e%16),a=exports.GiveHex(Math.floor(i/16)),h=exports.GiveHex(i%16),d=s+o+n+r+a+h;return"#"+d},exports.RGBToHSV=function(t,e,i){t/=255,e/=255,i/=255;var s=Math.min(t,Math.min(e,i)),o=Math.max(t,Math.max(e,i));if(s==o)return{h:0,s:0,v:s};var n=t==s?e-i:i==s?t-e:i-t,r=t==s?3:i==s?1:5,a=60*(r-n/(o-s))/360,h=(o-s)/o,d=o;return{h:a,s:h,v:d}},exports.HSVToRGB=function(t,e,i){var s,o,n,r=Math.floor(6*t),a=6*t-r,h=i*(1-e),d=i*(1-a*e),l=i*(1-(1-a)*e);switch(r%6){case 0:s=i,o=l,n=h;break;case 1:s=d,o=i,n=h;break;case 2:s=h,o=i,n=l;break;case 3:s=h,o=d,n=i;break;case 4:s=l,o=h,n=i;break;case 5:s=i,o=h,n=d}return{r:Math.floor(255*s),g:Math.floor(255*o),b:Math.floor(255*n)}},exports.HSVToHex=function(t,e,i){var s=exports.HSVToRGB(t,e,i);return exports.RGBToHex(s.r,s.g,s.b)},exports.hexToHSV=function(t){var e=exports.hexToRGB(t);return exports.RGBToHSV(e.r,e.g,e.b)},exports.isValidHex=function(t){var e=/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(t);return e},exports.isValidRGB=function(t){t=t.replace(" ","");var e=/rgb\((\d{1,3}),(\d{1,3}),(\d{1,3})\)/i.test(t);return e},exports.selectiveBridgeObject=function(t,e){if("object"==typeof e){for(var i=Object.create(e),s=0;sa;)o=void 0===s?n[u][i]:n[u][i][s],n[u].isVisible(e)?h=!0:(o=r&&console.log("BinarySearch too many iterations. Aborting.")}return u},exports.binarySearchGeneric=function(t,e,i,s){var o,n,r,a,h=1e4,d=0,l=t,c=!1,p=0,u=l.length,f=p,m=u,g=Math.floor(.5*(u+p));if(0==u)g=-1;else if(1==u)r=l[g][i],g=r==e?0:-1;else{for(u-=1;0==c&&h>d;)n=l[Math.max(0,g-1)][i],r=l[g][i],a=l[Math.min(l.length-1,g+1)][i],r==e||e>n&&r>e||e>r&&a>e?(c=!0,r!=e&&("before"==s?e>n&&r>e&&(g=Math.max(0,g-1)):e>r&&a>e&&(g=Math.min(l.length-1,g+1)))):(e>r?f=Math.floor(.5*(u+p)):m=Math.floor(.5*(u+p)),o=Math.floor(.5*(u+p)),p==f&&u==m?(g=-1,c=!0):(u=m,p=f,g=Math.floor(.5*(u+p)))),d++;d>=h&&console.log("BinarySearch too many iterations. Aborting.")}return g}},function(t,e){e.prepareElements=function(t){for(var e in t)t.hasOwnProperty(e)&&(t[e].redundant=t[e].used,t[e].used=[])},e.cleanupElements=function(t){for(var e in t)if(t.hasOwnProperty(e)&&t[e].redundant){for(var i=0;i0?(s=e[t].redundant[0],e[t].redundant.shift()):(s=document.createElementNS("http://www.w3.org/2000/svg",t),i.appendChild(s)):(s=document.createElementNS("http://www.w3.org/2000/svg",t),e[t]={used:[],redundant:[]},i.appendChild(s)),e[t].used.push(s),s},e.getDOMElement=function(t,e,i){var s;return e.hasOwnProperty(t)?e[t].redundant.length>0?(s=e[t].redundant[0],e[t].redundant.shift()):(s=document.createElement(t),i.appendChild(s)):(s=document.createElement(t),e[t]={used:[],redundant:[]},i.appendChild(s)),e[t].used.push(s),s},e.drawPoint=function(t,i,s,o,n){var r;return"circle"==s.options.drawPoints.style?(r=e.getSVGElement("circle",o,n),r.setAttributeNS(null,"cx",t),r.setAttributeNS(null,"cy",i),r.setAttributeNS(null,"r",.5*s.options.drawPoints.size),r.setAttributeNS(null,"class",s.className+" point")):(r=e.getSVGElement("rect",o,n),r.setAttributeNS(null,"x",t-.5*s.options.drawPoints.size),r.setAttributeNS(null,"y",i-.5*s.options.drawPoints.size),r.setAttributeNS(null,"width",s.options.drawPoints.size),r.setAttributeNS(null,"height",s.options.drawPoints.size),r.setAttributeNS(null,"class",s.className+" point")),r},e.drawBar=function(t,i,s,o,n,r,a){var h=e.getSVGElement("rect",r,a);h.setAttributeNS(null,"x",t-.5*s),h.setAttributeNS(null,"y",i),h.setAttributeNS(null,"width",s),h.setAttributeNS(null,"height",o),h.setAttributeNS(null,"class",n)}},function(t,e,i){function s(t,e){if(!t||Array.isArray(t)||o.isDataTable(t)||(e=t,t=null),this._options=e||{},this._data={},this._fieldId=this._options.fieldId||"id",this._type={},this._options.type)for(var i in this._options.type)if(this._options.type.hasOwnProperty(i)){var s=this._options.type[i];this._type[i]="Date"==s||"ISODate"==s||"ASPDate"==s?"Date":s}if(this._options.convert)throw new Error('Option "convert" is deprecated. Use "type" instead.');this._subscribers={},t&&this.add(t)}var o=i(1);s.prototype.on=function(t,e){var i=this._subscribers[t];i||(i=[],this._subscribers[t]=i),i.push({callback:e})},s.prototype.subscribe=s.prototype.on,s.prototype.off=function(t,e){var i=this._subscribers[t];i&&(this._subscribers[t]=i.filter(function(t){return t.callback!=e}))},s.prototype.unsubscribe=s.prototype.off,s.prototype._trigger=function(t,e,i){if("*"==t)throw new Error("Cannot trigger event *");var s=[];t in this._subscribers&&(s=s.concat(this._subscribers[t])),"*"in this._subscribers&&(s=s.concat(this._subscribers["*"]));for(var o=0;or;r++)i=n._addItem(t[r]),s.push(i);else if(o.isDataTable(t))for(var h=this._getColumnNames(t),d=0,l=t.getNumberOfRows();l>d;d++){for(var c={},p=0,u=h.length;u>p;p++){var f=h[p];c[f]=t.getValue(d,p)}i=n._addItem(c),s.push(i)}else{if(!(t instanceof Object))throw new Error("Unknown dataType");i=n._addItem(t),s.push(i)}return s.length&&this._trigger("add",{items:s},e),s},s.prototype.update=function(t,e){var i=[],s=[],n=this,r=n._fieldId,a=function(t){var e=t[r];n._data[e]?(e=n._updateItem(t),s.push(e)):(e=n._addItem(t),i.push(e))};if(Array.isArray(t))for(var h=0,d=t.length;d>h;h++)a(t[h]);else if(o.isDataTable(t))for(var l=this._getColumnNames(t),c=0,p=t.getNumberOfRows();p>c;c++){for(var u={},f=0,m=l.length;m>f;f++){var g=l[f];u[g]=t.getValue(c,f)}a(u)}else{if(!(t instanceof Object))throw new Error("Unknown dataType");a(t)}return i.length&&this._trigger("add",{items:i},e),s.length&&this._trigger("update",{items:s},e),i.concat(s)},s.prototype.get=function(){var t,e,i,s,n=this,r=o.getType(arguments[0]);"String"==r||"Number"==r?(t=arguments[0],i=arguments[1],s=arguments[2]):"Array"==r?(e=arguments[0],i=arguments[1],s=arguments[2]):(i=arguments[0],s=arguments[1]);var a;if(i&&i.returnType){var h=["DataTable","Array","Object"];if(a=-1==h.indexOf(i.returnType)?"Array":i.returnType,s&&a!=o.getType(s))throw new Error('Type of parameter "data" ('+o.getType(s)+") does not correspond with specified options.type ("+i.type+")");if("DataTable"==a&&!o.isDataTable(s))throw new Error('Parameter "data" must be a DataTable when options.type is "DataTable"')}else a=s&&"DataTable"==o.getType(s)?"DataTable":"Array";var d,l,c,p,u=i&&i.type||this._options.type,f=i&&i.filter,m=[];if(void 0!=t)d=n._getItem(t,u),f&&!f(d)&&(d=null);else if(void 0!=e)for(c=0,p=e.length;p>c;c++)d=n._getItem(e[c],u),(!f||f(d))&&m.push(d);else for(l in this._data)this._data.hasOwnProperty(l)&&(d=n._getItem(l,u),(!f||f(d))&&m.push(d));if(i&&i.order&&void 0==t&&this._sort(m,i.order),i&&i.fields){var g=i.fields;if(void 0!=t)d=this._filterFields(d,g);else for(c=0,p=m.length;p>c;c++)m[c]=this._filterFields(m[c],g)}if("DataTable"==a){var v=this._getColumnNames(s);if(void 0!=t)n._appendRow(s,v,d);else for(c=0;cc;c++)s.push(m[c]);return s}return m},s.prototype.getIds=function(t){var e,i,s,o,n,r=this._data,a=t&&t.filter,h=t&&t.order,d=t&&t.type||this._options.type,l=[];if(a)if(h){n=[];for(s in r)r.hasOwnProperty(s)&&(o=this._getItem(s,d),a(o)&&n.push(o));for(this._sort(n,h),e=0,i=n.length;i>e;e++)l[e]=n[e][this._fieldId]}else for(s in r)r.hasOwnProperty(s)&&(o=this._getItem(s,d),a(o)&&l.push(o[this._fieldId]));else if(h){n=[];for(s in r)r.hasOwnProperty(s)&&n.push(r[s]);for(this._sort(n,h),e=0,i=n.length;i>e;e++)l[e]=n[e][this._fieldId]}else for(s in r)r.hasOwnProperty(s)&&(o=r[s],l.push(o[this._fieldId]));return l},s.prototype.getDataSet=function(){return this},s.prototype.forEach=function(t,e){var i,s,o=e&&e.filter,n=e&&e.type||this._options.type,r=this._data;if(e&&e.order)for(var a=this.get(e),h=0,d=a.length;d>h;h++)i=a[h],s=i[this._fieldId],t(i,s);else for(s in r)r.hasOwnProperty(s)&&(i=this._getItem(s,n),(!o||o(i))&&t(i,s))},s.prototype.map=function(t,e){var i,s=e&&e.filter,o=e&&e.type||this._options.type,n=[],r=this._data;for(var a in r)r.hasOwnProperty(a)&&(i=this._getItem(a,o),(!s||s(i))&&n.push(t(i,a)));return e&&e.order&&this._sort(n,e.order),n},s.prototype._filterFields=function(t,e){var i={};for(var s in t)t.hasOwnProperty(s)&&-1!=e.indexOf(s)&&(i[s]=t[s]);return i},s.prototype._sort=function(t,e){if(o.isString(e)){var i=e;t.sort(function(t,e){var s=t[i],o=e[i];return s>o?1:o>s?-1:0})}else{if("function"!=typeof e)throw new TypeError("Order must be a function or a string");t.sort(e)}},s.prototype.remove=function(t,e){var i,s,o,n=[];if(Array.isArray(t))for(i=0,s=t.length;s>i;i++)o=this._remove(t[i]),null!=o&&n.push(o);else o=this._remove(t),null!=o&&n.push(o);return n.length&&this._trigger("remove",{items:n},e),n},s.prototype._remove=function(t){if(o.isNumber(t)||o.isString(t)){if(this._data[t])return delete this._data[t],t}else if(t instanceof Object){var e=t[this._fieldId];if(e&&this._data[e])return delete this._data[e],e}return null},s.prototype.clear=function(t){var e=Object.keys(this._data);return this._data={},this._trigger("remove",{items:e},t),e},s.prototype.max=function(t){var e=this._data,i=null,s=null;for(var o in e)if(e.hasOwnProperty(o)){var n=e[o],r=n[t];null!=r&&(!i||r>s)&&(i=n,s=r)}return i},s.prototype.min=function(t){var e=this._data,i=null,s=null;for(var o in e)if(e.hasOwnProperty(o)){var n=e[o],r=n[t];null!=r&&(!i||s>r)&&(i=n,s=r)}return i},s.prototype.distinct=function(t){var e,i=this._data,s=[],n=this._options.type&&this._options.type[t]||null,r=0;for(var a in i)if(i.hasOwnProperty(a)){var h=i[a],d=h[t],l=!1;for(e=0;r>e;e++)if(s[e]==d){l=!0;break}l||void 0===d||(s[r]=d,r++)}if(n)for(e=0;ei;i++)e[i]=t.getColumnId(i)||t.getColumnLabel(i);return e},s.prototype._appendRow=function(t,e,i){for(var s=t.addRow(),o=0,n=e.length;n>o;o++){var r=e[o];t.setValue(s,o,i[r])}},t.exports=s},function(t,e,i){function s(t,e){this._data=null,this._ids={},this._options=e||{},this._fieldId="id",this._subscribers={};var i=this;this.listener=function(){i._onEvent.apply(i,arguments)},this.setData(t)}var o=i(1),n=i(3);s.prototype.setData=function(t){var e,i,s;if(this._data){this._data.unsubscribe&&this._data.unsubscribe("*",this.listener),e=[];for(var o in this._ids)this._ids.hasOwnProperty(o)&&e.push(o);this._ids={},this._trigger("remove",{items:e})}if(this._data=t,this._data){for(this._fieldId=this._options.fieldId||this._data&&this._data.options&&this._data.options.fieldId||"id",e=this._data.getIds({filter:this._options&&this._options.filter}),i=0,s=e.length;s>i;i++)o=e[i],this._ids[o]=!0;this._trigger("add",{items:e}),this._data.on&&this._data.on("*",this.listener)}},s.prototype.get=function(){var t,e,i,s=this,n=o.getType(arguments[0]);"String"==n||"Number"==n||"Array"==n?(t=arguments[0],e=arguments[1],i=arguments[2]):(e=arguments[0],i=arguments[1]);var r=o.extend({},this._options,e);this._options.filter&&e&&e.filter&&(r.filter=function(t){return s._options.filter(t)&&e.filter(t)});var a=[];return void 0!=t&&a.push(t),a.push(r),a.push(i),this._data&&this._data.get.apply(this._data,a)},s.prototype.getIds=function(t){var e;if(this._data){var i,s=this._options.filter;i=t&&t.filter?s?function(e){return s(e)&&t.filter(e)}:t.filter:s,e=this._data.getIds({filter:i,order:t&&t.order})}else e=[];return e},s.prototype.getDataSet=function(){for(var t=this;t instanceof s;)t=t._data;return t||null},s.prototype._onEvent=function(t,e,i){var s,o,n,r,a=e&&e.items,h=this._data,d=[],l=[],c=[];if(a&&h){switch(t){case"add":for(s=0,o=a.length;o>s;s++)n=a[s],r=this.get(n),r&&(this._ids[n]=!0,d.push(n));break;case"update":for(s=0,o=a.length;o>s;s++)n=a[s],r=this.get(n),r?this._ids[n]?l.push(n):(this._ids[n]=!0,d.push(n)):this._ids[n]&&(delete this._ids[n],c.push(n));break;case"remove":for(s=0,o=a.length;o>s;s++)n=a[s],this._ids[n]&&(delete this._ids[n],c.push(n))}d.length&&this._trigger("add",{items:d},i),l.length&&this._trigger("update",{items:l},i),c.length&&this._trigger("remove",{items:c},i)}},s.prototype.on=n.prototype.on,s.prototype.off=n.prototype.off,s.prototype._trigger=n.prototype._trigger,s.prototype.subscribe=s.prototype.on,s.prototype.unsubscribe=s.prototype.off,t.exports=s},function(t,e,i){function s(t,e,i){if(!(this instanceof s))throw new SyntaxError("Constructor must be called with the new operator");this.containerElement=t,this.width="400px",this.height="400px",this.margin=10,this.defaultXCenter="55%",this.defaultYCenter="50%",this.xLabel="x",this.yLabel="y",this.zLabel="z",this.filterLabel="time",this.legendLabel="value",this.style=s.STYLE.DOT,this.showPerspective=!0,this.showGrid=!0,this.keepAspectRatio=!0,this.showShadow=!1,this.showGrayBottom=!1,this.showTooltip=!1,this.verticalRatio=.5,this.animationInterval=1e3,this.animationPreload=!1,this.camera=new l,this.eye=new h(0,0,-1),this.dataTable=null,this.dataPoints=null,this.colX=void 0,this.colY=void 0,this.colZ=void 0,this.colValue=void 0,this.colFilter=void 0,this.xMin=0,this.xStep=void 0,this.xMax=1,this.yMin=0,this.yStep=void 0,this.yMax=1,this.zMin=0,this.zStep=void 0,this.zMax=1,this.valueMin=0,this.valueMax=1,this.xBarWidth=1,this.yBarWidth=1,this.colorAxis="#4D4D4D",this.colorGrid="#D3D3D3",this.colorDot="#7DC1FF",this.colorDotBorder="#3267D2",this.create(),this.setOptions(i),e&&this.setData(e)}var o=i(46),n=i(3),r=i(4),a=i(1),h=i(9),d=i(8),l=i(6),c=i(7),p=i(10),u=i(11);o(s.prototype),s.prototype._setScale=function(){this.scale=new h(1/(this.xMax-this.xMin),1/(this.yMax-this.yMin),1/(this.zMax-this.zMin)),this.keepAspectRatio&&(this.scale.x3&&(this.colFilter=3);else{if(this.style!==s.STYLE.DOTCOLOR&&this.style!==s.STYLE.DOTSIZE&&this.style!==s.STYLE.BARCOLOR&&this.style!==s.STYLE.BARSIZE)throw'Unknown style "'+this.style+'"';this.colX=0,this.colY=1,this.colZ=2,this.colValue=3,t.getNumberOfColumns()>4&&(this.colFilter=4)}},s.prototype.getNumberOfRows=function(t){return t.length},s.prototype.getNumberOfColumns=function(t){var e=0;for(var i in t[0])t[0].hasOwnProperty(i)&&e++;return e},s.prototype.getDistinctValues=function(t,e){for(var i=[],s=0;st[s][e]&&(i.min=t[s][e]),i.max0?(s=e[t].redundant[0],e[t].redundant.shift()):(s=document.createElementNS("http://www.w3.org/2000/svg",t),i.appendChild(s)):(s=document.createElementNS("http://www.w3.org/2000/svg",t),e[t]={used:[],redundant:[]},i.appendChild(s)),e[t].used.push(s),s},e.getDOMElement=function(t,e,i){var s;return e.hasOwnProperty(t)?e[t].redundant.length>0?(s=e[t].redundant[0],e[t].redundant.shift()):(s=document.createElement(t),i.appendChild(s)):(s=document.createElement(t),e[t]={used:[],redundant:[]},i.appendChild(s)),e[t].used.push(s),s},e.drawPoint=function(t,i,s,o,n){var r;return"circle"==s.options.drawPoints.style?(r=e.getSVGElement("circle",o,n),r.setAttributeNS(null,"cx",t),r.setAttributeNS(null,"cy",i),r.setAttributeNS(null,"r",.5*s.options.drawPoints.size),r.setAttributeNS(null,"class",s.className+" point")):(r=e.getSVGElement("rect",o,n),r.setAttributeNS(null,"x",t-.5*s.options.drawPoints.size),r.setAttributeNS(null,"y",i-.5*s.options.drawPoints.size),r.setAttributeNS(null,"width",s.options.drawPoints.size),r.setAttributeNS(null,"height",s.options.drawPoints.size),r.setAttributeNS(null,"class",s.className+" point")),r},e.drawBar=function(t,i,s,o,n,r,a){var h=e.getSVGElement("rect",r,a);h.setAttributeNS(null,"x",t-.5*s),h.setAttributeNS(null,"y",i),h.setAttributeNS(null,"width",s),h.setAttributeNS(null,"height",o),h.setAttributeNS(null,"class",n)}},function(module,exports,__webpack_require__){var moment=__webpack_require__(41);exports.isNumber=function(t){return t instanceof Number||"number"==typeof t},exports.isString=function(t){return t instanceof String||"string"==typeof t},exports.isDate=function(t){if(t instanceof Date)return!0;if(exports.isString(t)){var e=ASPDateRegex.exec(t);if(e)return!0;if(!isNaN(Date.parse(t)))return!0}return!1},exports.isDataTable=function(t){return"undefined"!=typeof google&&google.visualization&&google.visualization.DataTable&&t instanceof google.visualization.DataTable},exports.randomUUID=function(){var t=function(){return Math.floor(65536*Math.random()).toString(16)};return t()+t()+"-"+t()+"-"+t()+"-"+t()+"-"+t()+t()+t()},exports.extend=function(t){for(var e=1,i=arguments.length;i>e;e++){var s=arguments[e];for(var o in s)s.hasOwnProperty(o)&&(t[o]=s[o])}return t},exports.selectiveExtend=function(t,e){if(!Array.isArray(t))throw new Error("Array with property names expected as first argument");for(var i=2;ii;i++)if(t[i]!=e[i])return!1;return!0},exports.convert=function(t,e){var i;if(void 0===t)return void 0;if(null===t)return null;if(!e)return t;if("string"!=typeof e&&!(e instanceof String))throw new Error("Type must be a string");switch(e){case"boolean":case"Boolean":return Boolean(t);case"number":case"Number":return Number(t.valueOf());case"string":case"String":return String(t);case"Date":if(exports.isNumber(t))return new Date(t);if(t instanceof Date)return new Date(t.valueOf());if(moment.isMoment(t))return new Date(t.valueOf());if(exports.isString(t))return i=ASPDateRegex.exec(t),i?new Date(Number(i[1])):moment(t).toDate();throw new Error("Cannot convert object of type "+exports.getType(t)+" to type Date");case"Moment":if(exports.isNumber(t))return moment(t);if(t instanceof Date)return moment(t.valueOf());if(moment.isMoment(t))return moment(t);if(exports.isString(t))return i=ASPDateRegex.exec(t),moment(i?Number(i[1]):t);throw new Error("Cannot convert object of type "+exports.getType(t)+" to type Date");case"ISODate":if(exports.isNumber(t))return new Date(t);if(t instanceof Date)return t.toISOString();if(moment.isMoment(t))return t.toDate().toISOString();if(exports.isString(t))return i=ASPDateRegex.exec(t),i?new Date(Number(i[1])).toISOString():new Date(t).toISOString();throw new Error("Cannot convert object of type "+exports.getType(t)+" to type ISODate");case"ASPDate":if(exports.isNumber(t))return"/Date("+t+")/";if(t instanceof Date)return"/Date("+t.valueOf()+")/";if(exports.isString(t)){i=ASPDateRegex.exec(t);var s;return s=i?new Date(Number(i[1])).valueOf():new Date(t).valueOf(),"/Date("+s+")/"}throw new Error("Cannot convert object of type "+exports.getType(t)+" to type ASPDate");default:throw new Error('Unknown type "'+e+'"')}};var ASPDateRegex=/^\/?Date\((\-?\d+)/i;exports.getType=function(t){var e=typeof t;return"object"==e?null==t?"null":t instanceof Boolean?"Boolean":t instanceof Number?"Number":t instanceof String?"String":t instanceof Array?"Array":t instanceof Date?"Date":"Object":"number"==e?"Number":"boolean"==e?"Boolean":"string"==e?"String":e},exports.getAbsoluteLeft=function(t){return t.getBoundingClientRect().left+window.pageXOffset},exports.getAbsoluteTop=function(t){return t.getBoundingClientRect().top+window.pageYOffset},exports.addClassName=function(t,e){var i=t.className.split(" ");-1==i.indexOf(e)&&(i.push(e),t.className=i.join(" "))},exports.removeClassName=function(t,e){var i=t.className.split(" "),s=i.indexOf(e);-1!=s&&(i.splice(s,1),t.className=i.join(" "))},exports.forEach=function(t,e){var i,s;if(t instanceof Array)for(i=0,s=t.length;s>i;i++)e(t[i],i,t);else for(i in t)t.hasOwnProperty(i)&&e(t[i],i,t)},exports.toArray=function(t){var e=[];for(var i in t)t.hasOwnProperty(i)&&e.push(t[i]);return e},exports.updateProperty=function(t,e,i){return t[e]!==i?(t[e]=i,!0):!1},exports.addEventListener=function(t,e,i,s){t.addEventListener?(void 0===s&&(s=!1),"mousewheel"===e&&navigator.userAgent.indexOf("Firefox")>=0&&(e="DOMMouseScroll"),t.addEventListener(e,i,s)):t.attachEvent("on"+e,i)},exports.removeEventListener=function(t,e,i,s){t.removeEventListener?(void 0===s&&(s=!1),"mousewheel"===e&&navigator.userAgent.indexOf("Firefox")>=0&&(e="DOMMouseScroll"),t.removeEventListener(e,i,s)):t.detachEvent("on"+e,i)},exports.preventDefault=function(t){t||(t=window.event),t.preventDefault?t.preventDefault():t.returnValue=!1},exports.getTarget=function(t){t||(t=window.event);var e;return t.target?e=t.target:t.srcElement&&(e=t.srcElement),void 0!=e.nodeType&&3==e.nodeType&&(e=e.parentNode),e},exports.option={},exports.option.asBoolean=function(t,e){return"function"==typeof t&&(t=t()),null!=t?0!=t:e||null},exports.option.asNumber=function(t,e){return"function"==typeof t&&(t=t()),null!=t?Number(t)||e||null:e||null},exports.option.asString=function(t,e){return"function"==typeof t&&(t=t()),null!=t?String(t):e||null},exports.option.asSize=function(t,e){return"function"==typeof t&&(t=t()),exports.isString(t)?t:exports.isNumber(t)?t+"px":e||null},exports.option.asElement=function(t,e){return"function"==typeof t&&(t=t()),t||e||null},exports.GiveDec=function(Hex){var Value;return Value="A"==Hex?10:"B"==Hex?11:"C"==Hex?12:"D"==Hex?13:"E"==Hex?14:"F"==Hex?15:eval(Hex)},exports.GiveHex=function(t){var e;return e=10==t?"A":11==t?"B":12==t?"C":13==t?"D":14==t?"E":15==t?"F":""+t},exports.parseColor=function(t){var e;if(exports.isString(t)){if(exports.isValidRGB(t)){var i=t.substr(4).substr(0,t.length-5).split(",");t=exports.RGBToHex(i[0],i[1],i[2])}if(exports.isValidHex(t)){var s=exports.hexToHSV(t),o={h:s.h,s:.45*s.s,v:Math.min(1,1.05*s.v)},n={h:s.h,s:Math.min(1,1.25*s.v),v:.6*s.v},r=exports.HSVToHex(n.h,n.h,n.v),a=exports.HSVToHex(o.h,o.s,o.v);e={background:t,border:r,highlight:{background:a,border:r},hover:{background:a,border:r}}}else e={background:t,border:t,highlight:{background:t,border:t},hover:{background:t,border:t}}}else e={},e.background=t.background||"white",e.border=t.border||e.background,exports.isString(t.highlight)?e.highlight={border:t.highlight,background:t.highlight}:(e.highlight={},e.highlight.background=t.highlight&&t.highlight.background||e.background,e.highlight.border=t.highlight&&t.highlight.border||e.border),exports.isString(t.hover)?e.hover={border:t.hover,background:t.hover}:(e.hover={},e.hover.background=t.hover&&t.hover.background||e.background,e.hover.border=t.hover&&t.hover.border||e.border);return e},exports.hexToRGB=function(t){t=t.replace("#","").toUpperCase();var e=exports.GiveDec(t.substring(0,1)),i=exports.GiveDec(t.substring(1,2)),s=exports.GiveDec(t.substring(2,3)),o=exports.GiveDec(t.substring(3,4)),n=exports.GiveDec(t.substring(4,5)),r=exports.GiveDec(t.substring(5,6)),a=16*e+i,h=16*s+o,i=16*n+r;return{r:a,g:h,b:i}},exports.RGBToHex=function(t,e,i){var s=exports.GiveHex(Math.floor(t/16)),o=exports.GiveHex(t%16),n=exports.GiveHex(Math.floor(e/16)),r=exports.GiveHex(e%16),a=exports.GiveHex(Math.floor(i/16)),h=exports.GiveHex(i%16),d=s+o+n+r+a+h;return"#"+d},exports.RGBToHSV=function(t,e,i){t/=255,e/=255,i/=255;var s=Math.min(t,Math.min(e,i)),o=Math.max(t,Math.max(e,i));if(s==o)return{h:0,s:0,v:s};var n=t==s?e-i:i==s?t-e:i-t,r=t==s?3:i==s?1:5,a=60*(r-n/(o-s))/360,h=(o-s)/o,d=o;return{h:a,s:h,v:d}},exports.HSVToRGB=function(t,e,i){var s,o,n,r=Math.floor(6*t),a=6*t-r,h=i*(1-e),d=i*(1-a*e),l=i*(1-(1-a)*e);switch(r%6){case 0:s=i,o=l,n=h;break;case 1:s=d,o=i,n=h;break;case 2:s=h,o=i,n=l;break;case 3:s=h,o=d,n=i;break;case 4:s=l,o=h,n=i;break;case 5:s=i,o=h,n=d}return{r:Math.floor(255*s),g:Math.floor(255*o),b:Math.floor(255*n)}},exports.HSVToHex=function(t,e,i){var s=exports.HSVToRGB(t,e,i);return exports.RGBToHex(s.r,s.g,s.b)},exports.hexToHSV=function(t){var e=exports.hexToRGB(t);return exports.RGBToHSV(e.r,e.g,e.b)},exports.isValidHex=function(t){var e=/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(t);return e},exports.isValidRGB=function(t){t=t.replace(" ","");var e=/rgb\((\d{1,3}),(\d{1,3}),(\d{1,3})\)/i.test(t);return e},exports.selectiveBridgeObject=function(t,e){if("object"==typeof e){for(var i=Object.create(e),s=0;sa;)o=void 0===s?n[u][i]:n[u][i][s],n[u].isVisible(e)?h=!0:(o=r&&console.log("BinarySearch too many iterations. Aborting.")}return u},exports.binarySearchGeneric=function(t,e,i,s){var o,n,r,a,h=1e4,d=0,l=t,c=!1,p=0,u=l.length,f=p,m=u,g=Math.floor(.5*(u+p));if(0==u)g=-1;else if(1==u)r=l[g][i],g=r==e?0:-1;else{for(u-=1;0==c&&h>d;)n=l[Math.max(0,g-1)][i],r=l[g][i],a=l[Math.min(l.length-1,g+1)][i],r==e||e>n&&r>e||e>r&&a>e?(c=!0,r!=e&&("before"==s?e>n&&r>e&&(g=Math.max(0,g-1)):e>r&&a>e&&(g=Math.min(l.length-1,g+1)))):(e>r?f=Math.floor(.5*(u+p)):m=Math.floor(.5*(u+p)),o=Math.floor(.5*(u+p)),p==f&&u==m?(g=-1,c=!0):(u=m,p=f,g=Math.floor(.5*(u+p)))),d++;d>=h&&console.log("BinarySearch too many iterations. Aborting.")}return g}},function(t,e,i){function s(t,e){if(!t||Array.isArray(t)||o.isDataTable(t)||(e=t,t=null),this._options=e||{},this._data={},this._fieldId=this._options.fieldId||"id",this._type={},this._options.type)for(var i in this._options.type)if(this._options.type.hasOwnProperty(i)){var s=this._options.type[i];this._type[i]="Date"==s||"ISODate"==s||"ASPDate"==s?"Date":s}if(this._options.convert)throw new Error('Option "convert" is deprecated. Use "type" instead.');this._subscribers={},t&&this.add(t)}var o=i(2);s.prototype.on=function(t,e){var i=this._subscribers[t];i||(i=[],this._subscribers[t]=i),i.push({callback:e})},s.prototype.subscribe=s.prototype.on,s.prototype.off=function(t,e){var i=this._subscribers[t];i&&(this._subscribers[t]=i.filter(function(t){return t.callback!=e}))},s.prototype.unsubscribe=s.prototype.off,s.prototype._trigger=function(t,e,i){if("*"==t)throw new Error("Cannot trigger event *");var s=[];t in this._subscribers&&(s=s.concat(this._subscribers[t])),"*"in this._subscribers&&(s=s.concat(this._subscribers["*"]));for(var o=0;or;r++)i=n._addItem(t[r]),s.push(i);else if(o.isDataTable(t))for(var h=this._getColumnNames(t),d=0,l=t.getNumberOfRows();l>d;d++){for(var c={},p=0,u=h.length;u>p;p++){var f=h[p];c[f]=t.getValue(d,p)}i=n._addItem(c),s.push(i)}else{if(!(t instanceof Object))throw new Error("Unknown dataType");i=n._addItem(t),s.push(i)}return s.length&&this._trigger("add",{items:s},e),s},s.prototype.update=function(t,e){var i=[],s=[],n=this,r=n._fieldId,a=function(t){var e=t[r];n._data[e]?(e=n._updateItem(t),s.push(e)):(e=n._addItem(t),i.push(e))};if(Array.isArray(t))for(var h=0,d=t.length;d>h;h++)a(t[h]);else if(o.isDataTable(t))for(var l=this._getColumnNames(t),c=0,p=t.getNumberOfRows();p>c;c++){for(var u={},f=0,m=l.length;m>f;f++){var g=l[f];u[g]=t.getValue(c,f)}a(u)}else{if(!(t instanceof Object))throw new Error("Unknown dataType");a(t)}return i.length&&this._trigger("add",{items:i},e),s.length&&this._trigger("update",{items:s},e),i.concat(s)},s.prototype.get=function(){var t,e,i,s,n=this,r=o.getType(arguments[0]);"String"==r||"Number"==r?(t=arguments[0],i=arguments[1],s=arguments[2]):"Array"==r?(e=arguments[0],i=arguments[1],s=arguments[2]):(i=arguments[0],s=arguments[1]);var a;if(i&&i.returnType){var h=["DataTable","Array","Object"];if(a=-1==h.indexOf(i.returnType)?"Array":i.returnType,s&&a!=o.getType(s))throw new Error('Type of parameter "data" ('+o.getType(s)+") does not correspond with specified options.type ("+i.type+")");if("DataTable"==a&&!o.isDataTable(s))throw new Error('Parameter "data" must be a DataTable when options.type is "DataTable"')}else a=s&&"DataTable"==o.getType(s)?"DataTable":"Array";var d,l,c,p,u=i&&i.type||this._options.type,f=i&&i.filter,m=[];if(void 0!=t)d=n._getItem(t,u),f&&!f(d)&&(d=null);else if(void 0!=e)for(c=0,p=e.length;p>c;c++)d=n._getItem(e[c],u),(!f||f(d))&&m.push(d);else for(l in this._data)this._data.hasOwnProperty(l)&&(d=n._getItem(l,u),(!f||f(d))&&m.push(d));if(i&&i.order&&void 0==t&&this._sort(m,i.order),i&&i.fields){var g=i.fields;if(void 0!=t)d=this._filterFields(d,g);else for(c=0,p=m.length;p>c;c++)m[c]=this._filterFields(m[c],g)}if("DataTable"==a){var v=this._getColumnNames(s);if(void 0!=t)n._appendRow(s,v,d);else for(c=0;cc;c++)s.push(m[c]);return s}return m},s.prototype.getIds=function(t){var e,i,s,o,n,r=this._data,a=t&&t.filter,h=t&&t.order,d=t&&t.type||this._options.type,l=[];if(a)if(h){n=[];for(s in r)r.hasOwnProperty(s)&&(o=this._getItem(s,d),a(o)&&n.push(o));for(this._sort(n,h),e=0,i=n.length;i>e;e++)l[e]=n[e][this._fieldId]}else for(s in r)r.hasOwnProperty(s)&&(o=this._getItem(s,d),a(o)&&l.push(o[this._fieldId]));else if(h){n=[];for(s in r)r.hasOwnProperty(s)&&n.push(r[s]);for(this._sort(n,h),e=0,i=n.length;i>e;e++)l[e]=n[e][this._fieldId]}else for(s in r)r.hasOwnProperty(s)&&(o=r[s],l.push(o[this._fieldId]));return l},s.prototype.getDataSet=function(){return this},s.prototype.forEach=function(t,e){var i,s,o=e&&e.filter,n=e&&e.type||this._options.type,r=this._data;if(e&&e.order)for(var a=this.get(e),h=0,d=a.length;d>h;h++)i=a[h],s=i[this._fieldId],t(i,s);else for(s in r)r.hasOwnProperty(s)&&(i=this._getItem(s,n),(!o||o(i))&&t(i,s))},s.prototype.map=function(t,e){var i,s=e&&e.filter,o=e&&e.type||this._options.type,n=[],r=this._data;for(var a in r)r.hasOwnProperty(a)&&(i=this._getItem(a,o),(!s||s(i))&&n.push(t(i,a)));return e&&e.order&&this._sort(n,e.order),n},s.prototype._filterFields=function(t,e){var i={};for(var s in t)t.hasOwnProperty(s)&&-1!=e.indexOf(s)&&(i[s]=t[s]);return i},s.prototype._sort=function(t,e){if(o.isString(e)){var i=e;t.sort(function(t,e){var s=t[i],o=e[i];return s>o?1:o>s?-1:0})}else{if("function"!=typeof e)throw new TypeError("Order must be a function or a string");t.sort(e)}},s.prototype.remove=function(t,e){var i,s,o,n=[];if(Array.isArray(t))for(i=0,s=t.length;s>i;i++)o=this._remove(t[i]),null!=o&&n.push(o);else o=this._remove(t),null!=o&&n.push(o);return n.length&&this._trigger("remove",{items:n},e),n},s.prototype._remove=function(t){if(o.isNumber(t)||o.isString(t)){if(this._data[t])return delete this._data[t],t}else if(t instanceof Object){var e=t[this._fieldId];if(e&&this._data[e])return delete this._data[e],e}return null},s.prototype.clear=function(t){var e=Object.keys(this._data);return this._data={},this._trigger("remove",{items:e},t),e},s.prototype.max=function(t){var e=this._data,i=null,s=null;for(var o in e)if(e.hasOwnProperty(o)){var n=e[o],r=n[t];null!=r&&(!i||r>s)&&(i=n,s=r)}return i},s.prototype.min=function(t){var e=this._data,i=null,s=null;for(var o in e)if(e.hasOwnProperty(o)){var n=e[o],r=n[t];null!=r&&(!i||s>r)&&(i=n,s=r)}return i},s.prototype.distinct=function(t){var e,i=this._data,s=[],n=this._options.type&&this._options.type[t]||null,r=0;for(var a in i)if(i.hasOwnProperty(a)){var h=i[a],d=h[t],l=!1;for(e=0;r>e;e++)if(s[e]==d){l=!0;break}l||void 0===d||(s[r]=d,r++)}if(n)for(e=0;ei;i++)e[i]=t.getColumnId(i)||t.getColumnLabel(i);return e},s.prototype._appendRow=function(t,e,i){for(var s=t.addRow(),o=0,n=e.length;n>o;o++){var r=e[o];t.setValue(s,o,i[r])}},t.exports=s},function(t,e,i){function s(t,e){this._data=null,this._ids={},this._options=e||{},this._fieldId="id",this._subscribers={};var i=this;this.listener=function(){i._onEvent.apply(i,arguments)},this.setData(t)}var o=i(2),n=i(3);s.prototype.setData=function(t){var e,i,s;if(this._data){this._data.unsubscribe&&this._data.unsubscribe("*",this.listener),e=[];for(var o in this._ids)this._ids.hasOwnProperty(o)&&e.push(o);this._ids={},this._trigger("remove",{items:e})}if(this._data=t,this._data){for(this._fieldId=this._options.fieldId||this._data&&this._data.options&&this._data.options.fieldId||"id",e=this._data.getIds({filter:this._options&&this._options.filter}),i=0,s=e.length;s>i;i++)o=e[i],this._ids[o]=!0;this._trigger("add",{items:e}),this._data.on&&this._data.on("*",this.listener)}},s.prototype.get=function(){var t,e,i,s=this,n=o.getType(arguments[0]);"String"==n||"Number"==n||"Array"==n?(t=arguments[0],e=arguments[1],i=arguments[2]):(e=arguments[0],i=arguments[1]);var r=o.extend({},this._options,e);this._options.filter&&e&&e.filter&&(r.filter=function(t){return s._options.filter(t)&&e.filter(t)});var a=[];return void 0!=t&&a.push(t),a.push(r),a.push(i),this._data&&this._data.get.apply(this._data,a)},s.prototype.getIds=function(t){var e;if(this._data){var i,s=this._options.filter;i=t&&t.filter?s?function(e){return s(e)&&t.filter(e)}:t.filter:s,e=this._data.getIds({filter:i,order:t&&t.order})}else e=[];return e},s.prototype.getDataSet=function(){for(var t=this;t instanceof s;)t=t._data;return t||null},s.prototype._onEvent=function(t,e,i){var s,o,n,r,a=e&&e.items,h=this._data,d=[],l=[],c=[];if(a&&h){switch(t){case"add":for(s=0,o=a.length;o>s;s++)n=a[s],r=this.get(n),r&&(this._ids[n]=!0,d.push(n));break;case"update":for(s=0,o=a.length;o>s;s++)n=a[s],r=this.get(n),r?this._ids[n]?l.push(n):(this._ids[n]=!0,d.push(n)):this._ids[n]&&(delete this._ids[n],c.push(n));break;case"remove":for(s=0,o=a.length;o>s;s++)n=a[s],this._ids[n]&&(delete this._ids[n],c.push(n))}d.length&&this._trigger("add",{items:d},i),l.length&&this._trigger("update",{items:l},i),c.length&&this._trigger("remove",{items:c},i)}},s.prototype.on=n.prototype.on,s.prototype.off=n.prototype.off,s.prototype._trigger=n.prototype._trigger,s.prototype.subscribe=s.prototype.on,s.prototype.unsubscribe=s.prototype.off,t.exports=s},function(t,e,i){function s(t,e,i){if(!(this instanceof s))throw new SyntaxError("Constructor must be called with the new operator");this.containerElement=t,this.width="400px",this.height="400px",this.margin=10,this.defaultXCenter="55%",this.defaultYCenter="50%",this.xLabel="x",this.yLabel="y",this.zLabel="z",this.filterLabel="time",this.legendLabel="value",this.style=s.STYLE.DOT,this.showPerspective=!0,this.showGrid=!0,this.keepAspectRatio=!0,this.showShadow=!1,this.showGrayBottom=!1,this.showTooltip=!1,this.verticalRatio=.5,this.animationInterval=1e3,this.animationPreload=!1,this.camera=new l,this.eye=new h(0,0,-1),this.dataTable=null,this.dataPoints=null,this.colX=void 0,this.colY=void 0,this.colZ=void 0,this.colValue=void 0,this.colFilter=void 0,this.xMin=0,this.xStep=void 0,this.xMax=1,this.yMin=0,this.yStep=void 0,this.yMax=1,this.zMin=0,this.zStep=void 0,this.zMax=1,this.valueMin=0,this.valueMax=1,this.xBarWidth=1,this.yBarWidth=1,this.colorAxis="#4D4D4D",this.colorGrid="#D3D3D3",this.colorDot="#7DC1FF",this.colorDotBorder="#3267D2",this.create(),this.setOptions(i),e&&this.setData(e)}var o=i(46),n=i(3),r=i(4),a=i(2),h=i(9),d=i(8),l=i(6),c=i(7),p=i(10),u=i(11);o(s.prototype),s.prototype._setScale=function(){this.scale=new h(1/(this.xMax-this.xMin),1/(this.yMax-this.yMin),1/(this.zMax-this.zMin)),this.keepAspectRatio&&(this.scale.x3&&(this.colFilter=3);else{if(this.style!==s.STYLE.DOTCOLOR&&this.style!==s.STYLE.DOTSIZE&&this.style!==s.STYLE.BARCOLOR&&this.style!==s.STYLE.BARSIZE)throw'Unknown style "'+this.style+'"';this.colX=0,this.colY=1,this.colZ=2,this.colValue=3,t.getNumberOfColumns()>4&&(this.colFilter=4)}},s.prototype.getNumberOfRows=function(t){return t.length},s.prototype.getNumberOfColumns=function(t){var e=0;for(var i in t[0])t[0].hasOwnProperty(i)&&e++;return e},s.prototype.getDistinctValues=function(t,e){for(var i=[],s=0;st[s][e]&&(i.min=t[s][e]),i.maxt;t++){var m=(t-p)/(f-p),g=240*m,v=this._hsv2rgb(g,1,1);c.strokeStyle=v,c.beginPath(),c.moveTo(h,r+t),c.lineTo(a,r+t),c.stroke()}c.strokeStyle=this.colorAxis,c.strokeRect(h,r,i,n)}if(this.style===s.STYLE.DOTSIZE&&(c.strokeStyle=this.colorAxis,c.fillStyle=this.colorDot,c.beginPath(),c.moveTo(h,r),c.lineTo(a,r),c.lineTo(a-i+e,d),c.lineTo(h,d),c.closePath(),c.fill(),c.stroke()),this.style===s.STYLE.DOTCOLOR||this.style===s.STYLE.DOTSIZE){var y=5,b=new u(this.valueMin,this.valueMax,(this.valueMax-this.valueMin)/5,!0);for(b.start(),b.getCurrent()0?this.yMin:this.yMax,o=this._convert3Dto2D(new h(x,r,this.zMin)),Math.cos(2*_)>0?(g.textAlign="center",g.textBaseline="top",o.y+=b):Math.sin(2*_)<0?(g.textAlign="right",g.textBaseline="middle"):(g.textAlign="left",g.textBaseline="middle"),g.fillStyle=this.colorAxis,g.fillText(" "+i.getCurrent()+" ",o.x,o.y),i.next()}for(g.lineWidth=1,s=void 0===this.defaultYStep,i=new u(this.yMin,this.yMax,this.yStep,s),i.start(),i.getCurrent()0?this.xMin:this.xMax,o=this._convert3Dto2D(new h(n,i.getCurrent(),this.zMin)),Math.cos(2*_)<0?(g.textAlign="center",g.textBaseline="top",o.y+=b):Math.sin(2*_)>0?(g.textAlign="right",g.textBaseline="middle"):(g.textAlign="left",g.textBaseline="middle"),g.fillStyle=this.colorAxis,g.fillText(" "+i.getCurrent()+" ",o.x,o.y),i.next();for(g.lineWidth=1,s=void 0===this.defaultZStep,i=new u(this.zMin,this.zMax,this.zStep,s),i.start(),i.getCurrent()0?this.xMin:this.xMax,r=Math.sin(_)<0?this.yMin:this.yMax;!i.end();)t=this._convert3Dto2D(new h(n,r,i.getCurrent())),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(t.x,t.y),g.lineTo(t.x-b,t.y),g.stroke(),g.textAlign="right",g.textBaseline="middle",g.fillStyle=this.colorAxis,g.fillText(i.getCurrent()+" ",t.x-5,t.y),i.next();g.lineWidth=1,t=this._convert3Dto2D(new h(n,r,this.zMin)),e=this._convert3Dto2D(new h(n,r,this.zMax)),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(t.x,t.y),g.lineTo(e.x,e.y),g.stroke(),g.lineWidth=1,p=this._convert3Dto2D(new h(this.xMin,this.yMin,this.zMin)),f=this._convert3Dto2D(new h(this.xMax,this.yMin,this.zMin)),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(p.x,p.y),g.lineTo(f.x,f.y),g.stroke(),p=this._convert3Dto2D(new h(this.xMin,this.yMax,this.zMin)),f=this._convert3Dto2D(new h(this.xMax,this.yMax,this.zMin)),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(p.x,p.y),g.lineTo(f.x,f.y),g.stroke(),g.lineWidth=1,t=this._convert3Dto2D(new h(this.xMin,this.yMin,this.zMin)),e=this._convert3Dto2D(new h(this.xMin,this.yMax,this.zMin)),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(t.x,t.y),g.lineTo(e.x,e.y),g.stroke(),t=this._convert3Dto2D(new h(this.xMax,this.yMin,this.zMin)),e=this._convert3Dto2D(new h(this.xMax,this.yMax,this.zMin)),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(t.x,t.y),g.lineTo(e.x,e.y),g.stroke();var w=this.xLabel;w.length>0&&(c=.1/this.scale.y,n=(this.xMin+this.xMax)/2,r=Math.cos(_)>0?this.yMin-c:this.yMax+c,o=this._convert3Dto2D(new h(n,r,this.zMin)),Math.cos(2*_)>0?(g.textAlign="center",g.textBaseline="top"):Math.sin(2*_)<0?(g.textAlign="right",g.textBaseline="middle"):(g.textAlign="left",g.textBaseline="middle"),g.fillStyle=this.colorAxis,g.fillText(w,o.x,o.y));var S=this.yLabel;S.length>0&&(l=.1/this.scale.x,n=Math.sin(_)>0?this.xMin-l:this.xMax+l,r=(this.yMin+this.yMax)/2,o=this._convert3Dto2D(new h(n,r,this.zMin)),Math.cos(2*_)<0?(g.textAlign="center",g.textBaseline="top"):Math.sin(2*_)>0?(g.textAlign="right",g.textBaseline="middle"):(g.textAlign="left",g.textBaseline="middle"),g.fillStyle=this.colorAxis,g.fillText(S,o.x,o.y));var M=this.zLabel;M.length>0&&(d=30,n=Math.cos(_)>0?this.xMin:this.xMax,r=Math.sin(_)<0?this.yMin:this.yMax,a=(this.zMin+this.zMax)/2,o=this._convert3Dto2D(new h(n,r,a)),g.textAlign="right",g.textBaseline="middle",g.fillStyle=this.colorAxis,g.fillText(M,o.x-d,o.y))},s.prototype._hsv2rgb=function(t,e,i){var s,o,n,r,a,h;switch(r=i*e,a=Math.floor(t/60),h=r*(1-Math.abs(t/60%2-1)),a){case 0:s=r,o=h,n=0;break;case 1:s=h,o=r,n=0;break;case 2:s=0,o=r,n=h;break;case 3:s=0,o=h,n=r;break;case 4:s=h,o=0,n=r;break;case 5:s=r,o=0,n=h;break;default:s=0,o=0,n=0}return"RGB("+parseInt(255*s)+","+parseInt(255*o)+","+parseInt(255*n)+")"},s.prototype._redrawDataGrid=function(){var t,e,i,o,n,r,a,d,l,c,p,u,f,m=this.frame.canvas,g=m.getContext("2d");if(!(void 0===this.dataPoints||this.dataPoints.length<=0)){for(n=0;n0}else r=!0;r?(f=(t.point.z+e.point.z+i.point.z+o.point.z)/4,c=240*(1-(f-this.zMin)*this.scale.z/this.verticalRatio),p=1,this.showShadow?(u=Math.min(1+S.x/M/2,1),a=this._hsv2rgb(c,p,u),d=a):(u=1,a=this._hsv2rgb(c,p,u),d=this.colorAxis)):(a="gray",d=this.colorAxis),l=.5,g.lineWidth=l,g.fillStyle=a,g.strokeStyle=d,g.beginPath(),g.moveTo(t.screen.x,t.screen.y),g.lineTo(e.screen.x,e.screen.y),g.lineTo(o.screen.x,o.screen.y),g.lineTo(i.screen.x,i.screen.y),g.closePath(),g.fill(),g.stroke()}}else for(n=0;np&&(p=0);var u,f,m;this.style===s.STYLE.DOTCOLOR?(u=240*(1-(d.point.value-this.valueMin)*this.scale.value),f=this._hsv2rgb(u,1,1),m=this._hsv2rgb(u,1,.8)):this.style===s.STYLE.DOTSIZE?(f=this.colorDot,m=this.colorDotBorder):(u=240*(1-(d.point.z-this.zMin)*this.scale.z/this.verticalRatio),f=this._hsv2rgb(u,1,1),m=this._hsv2rgb(u,1,.8)),i.lineWidth=1,i.strokeStyle=m,i.fillStyle=f,i.beginPath(),i.arc(d.screen.x,d.screen.y,p,0,2*Math.PI,!0),i.fill(),i.stroke()}}},s.prototype._redrawDataBar=function(){var t,e,i,o,n=this.frame.canvas,r=n.getContext("2d");if(!(void 0===this.dataPoints||this.dataPoints.length<=0)){for(t=0;t0&&(t=this.dataPoints[0],s.lineWidth=1,s.strokeStyle="blue",s.beginPath(),s.moveTo(t.screen.x,t.screen.y)),e=1;e0&&s.stroke()}},s.prototype._onMouseDown=function(t){if(t=t||window.event,this.leftButtonDown&&this._onMouseUp(t),this.leftButtonDown=t.which?1===t.which:1===t.button,this.leftButtonDown||this.touchDown){this.startMouseX=getMouseX(t),this.startMouseY=getMouseY(t),this.startStart=new Date(this.start),this.startEnd=new Date(this.end),this.startArmRotation=this.camera.getArmRotation(),this.frame.style.cursor="move";var e=this;this.onmousemove=function(t){e._onMouseMove(t)},this.onmouseup=function(t){e._onMouseUp(t)},a.addEventListener(document,"mousemove",e.onmousemove),a.addEventListener(document,"mouseup",e.onmouseup),a.preventDefault(t)}},s.prototype._onMouseMove=function(t){t=t||window.event;var e=parseFloat(getMouseX(t))-this.startMouseX,i=parseFloat(getMouseY(t))-this.startMouseY,s=this.startArmRotation.horizontal+e/200,o=this.startArmRotation.vertical+i/200,n=4,r=Math.sin(n/360*2*Math.PI);Math.abs(Math.sin(s))0?1:0>t?-1:0}var s=e[0],o=e[1],n=e[2],r=i((o.x-s.x)*(t.y-s.y)-(o.y-s.y)*(t.x-s.x)),a=i((n.x-o.x)*(t.y-o.y)-(n.y-o.y)*(t.x-o.x)),h=i((s.x-n.x)*(t.y-n.y)-(s.y-n.y)*(t.x-n.x));return!(0!=r&&0!=a&&r!=a||0!=a&&0!=h&&a!=h||0!=r&&0!=h&&r!=h)},s.prototype._dataPointFromXY=function(t,e){var i,o=100,n=null,r=null,a=null,h=new d(t,e);if(this.style===s.STYLE.BAR||this.style===s.STYLE.BARCOLOR||this.style===s.STYLE.BARSIZE)for(i=this.dataPoints.length-1;i>=0;i--){n=this.dataPoints[i];var l=n.surfaces;if(l)for(var c=l.length-1;c>=0;c--){var p=l[c],u=p.corners,f=[u[0].screen,u[1].screen,u[2].screen],m=[u[2].screen,u[3].screen,u[0].screen];if(this._insideTriangle(h,f)||this._insideTriangle(h,m))return n}}else for(i=0;ib)&&o>b&&(a=b,r=n)}}return r},s.prototype._showTooltip=function(t){var e,i,s;this.tooltip?(e=this.tooltip.dom.content,i=this.tooltip.dom.line,s=this.tooltip.dom.dot):(e=document.createElement("div"),e.style.position="absolute",e.style.padding="10px",e.style.border="1px solid #4d4d4d",e.style.color="#1a1a1a",e.style.background="rgba(255,255,255,0.7)",e.style.borderRadius="2px",e.style.boxShadow="5px 5px 10px rgba(128,128,128,0.5)",i=document.createElement("div"),i.style.position="absolute",i.style.height="40px",i.style.width="0",i.style.borderLeft="1px solid #4d4d4d",s=document.createElement("div"),s.style.position="absolute",s.style.height="0",s.style.width="0",s.style.border="5px solid #4d4d4d",s.style.borderRadius="5px",this.tooltip={dataPoint:null,dom:{content:e,line:i,dot:s}}),this._hideTooltip(),this.tooltip.dataPoint=t,e.innerHTML="function"==typeof this.showTooltip?this.showTooltip(t.point):"
x:"+t.point.x+"
y:"+t.point.y+"
z:"+t.point.z+"
",e.style.left="0",e.style.top="0",this.frame.appendChild(e),this.frame.appendChild(i),this.frame.appendChild(s);var o=e.offsetWidth,n=e.offsetHeight,r=i.offsetHeight,a=s.offsetWidth,h=s.offsetHeight,d=t.screen.x-o/2;d=Math.min(Math.max(d,10),this.frame.clientWidth-10-o),i.style.left=t.screen.x+"px",i.style.top=t.screen.y-r+"px",e.style.left=d+"px",e.style.top=t.screen.y-r-n+"px",s.style.left=t.screen.x-a/2+"px",s.style.top=t.screen.y-h/2+"px"},s.prototype._hideTooltip=function(){if(this.tooltip){this.tooltip.dataPoint=null;for(var t in this.tooltip.dom)if(this.tooltip.dom.hasOwnProperty(t)){var e=this.tooltip.dom[t];e&&e.parentNode&&e.parentNode.removeChild(e)}}},getMouseX=function(t){return"clientX"in t?t.clientX:t.targetTouches[0]&&t.targetTouches[0].clientX||0},getMouseY=function(t){return"clientY"in t?t.clientY:t.targetTouches[0]&&t.targetTouches[0].clientY||0},t.exports=s},function(t,e,i){var s=i(9);Camera=function(){this.armLocation=new s,this.armRotation={},this.armRotation.horizontal=0,this.armRotation.vertical=0,this.armLength=1.7,this.cameraLocation=new s,this.cameraRotation=new s(.5*Math.PI,0,0),this.calculateCameraOrientation()},Camera.prototype.setArmLocation=function(t,e,i){this.armLocation.x=t,this.armLocation.y=e,this.armLocation.z=i,this.calculateCameraOrientation()},Camera.prototype.setArmRotation=function(t,e){void 0!==t&&(this.armRotation.horizontal=t),void 0!==e&&(this.armRotation.vertical=e,this.armRotation.vertical<0&&(this.armRotation.vertical=0),this.armRotation.vertical>.5*Math.PI&&(this.armRotation.vertical=.5*Math.PI)),(void 0!==t||void 0!==e)&&this.calculateCameraOrientation()},Camera.prototype.getArmRotation=function(){var t={};return t.horizontal=this.armRotation.horizontal,t.vertical=this.armRotation.vertical,t},Camera.prototype.setArmLength=function(t){void 0!==t&&(this.armLength=t,this.armLength<.71&&(this.armLength=.71),this.armLength>5&&(this.armLength=5),this.calculateCameraOrientation())},Camera.prototype.getArmLength=function(){return this.armLength},Camera.prototype.getCameraLocation=function(){return this.cameraLocation},Camera.prototype.getCameraRotation=function(){return this.cameraRotation},Camera.prototype.calculateCameraOrientation=function(){this.cameraLocation.x=this.armLocation.x-this.armLength*Math.sin(this.armRotation.horizontal)*Math.cos(this.armRotation.vertical),this.cameraLocation.y=this.armLocation.y-this.armLength*Math.cos(this.armRotation.horizontal)*Math.cos(this.armRotation.vertical),this.cameraLocation.z=this.armLocation.z+this.armLength*Math.sin(this.armRotation.vertical),this.cameraRotation.x=Math.PI/2-this.armRotation.vertical,this.cameraRotation.y=0,this.cameraRotation.z=-this.armRotation.horizontal},t.exports=Camera},function(t,e,i){function s(t,e,i){this.data=t,this.column=e,this.graph=i,this.index=void 0,this.value=void 0,this.values=i.getDistinctValues(t.get(),this.column),this.values.sort(function(t,e){return t>e?1:e>t?-1:0}),this.values.length>0&&this.selectValue(0),this.dataPoints=[],this.loaded=!1,this.onLoadCallback=void 0,i.animationPreload?(this.loaded=!1,this.loadInBackground()):this.loaded=!0}var o=i(4);s.prototype.isLoaded=function(){return this.loaded},s.prototype.getLoadedProgress=function(){for(var t=this.values.length,e=0;this.dataPoints[e];)e++;return Math.round(e/t*100)},s.prototype.getLabel=function(){return this.graph.filterLabel},s.prototype.getColumn=function(){return this.column},s.prototype.getSelectedValue=function(){return void 0===this.index?void 0:this.values[this.index]},s.prototype.getValues=function(){return this.values},s.prototype.getValue=function(t){if(t>=this.values.length)throw"Error: index out of range";return this.values[t]},s.prototype._getDataPoints=function(t){if(void 0===t&&(t=this.index),void 0===t)return[];var e;if(this.dataPoints[t])e=this.dataPoints[t];else{var i={};i.column=this.column,i.value=this.values[t];var s=new o(this.data,{filter:function(t){return t[i.column]==i.value}}).get();e=this.graph._getDataPoints(s),this.dataPoints[t]=e}return e},s.prototype.setOnLoadCallback=function(t){this.onLoadCallback=t},s.prototype.selectValue=function(t){if(t>=this.values.length)throw"Error: index out of range";this.index=t,this.value=this.values[t]},s.prototype.loadInBackground=function(t){void 0===t&&(t=0);var e=this.graph.frame;if(t0&&(t--,this.setIndex(t))},s.prototype.next=function(){var t=this.getIndex();t0?this.setIndex(0):this.index=void 0},s.prototype.setIndex=function(t){if(!(ts&&(s=0),s>this.values.length-1&&(s=this.values.length-1),s},s.prototype.indexToLeft=function(t){var e=parseFloat(this.frame.bar.style.width)-this.frame.slide.clientWidth-10,i=t/(this.values.length-1)*e,s=i+3;return s},s.prototype._onMouseMove=function(t){var e=t.clientX-this.startClientX,i=this.startSlideX+e,s=this.leftToIndex(i);this.setIndex(s),o.preventDefault()},s.prototype._onMouseUp=function(){this.frame.style.cursor="auto",o.removeEventListener(document,"mousemove",this.onmousemove),o.removeEventListener(document,"mouseup",this.onmouseup),o.preventDefault()},t.exports=s},function(t){function e(t,e,i,s){this._start=0,this._end=0,this._step=1,this.prettyStep=!0,this.precision=5,this._current=0,this.setRange(t,e,i,s)}e.prototype.setRange=function(t,e,i,s){this._start=t?t:0,this._end=e?e:0,this.setStep(i,s)},e.prototype.setStep=function(t,i){void 0===t||0>=t||(void 0!==i&&(this.prettyStep=i),this._step=this.prettyStep===!0?e.calculatePrettyStep(t):t)},e.calculatePrettyStep=function(t){var e=function(t){return Math.log(t)/Math.LN10},i=Math.pow(10,Math.round(e(t))),s=2*Math.pow(10,Math.round(e(t/2))),o=5*Math.pow(10,Math.round(e(t/5))),n=i;return Math.abs(s-t)<=Math.abs(n-t)&&(n=s),Math.abs(o-t)<=Math.abs(n-t)&&(n=o),0>=n&&(n=1),n},e.prototype.getCurrent=function(){return parseFloat(this._current.toPrecision(this.precision))},e.prototype.getStep=function(){return this._step},e.prototype.start=function(){this._current=this._start-this._start%this._step},e.prototype.next=function(){this._current+=this._step},e.prototype.end=function(){return this._current>this._end},t.exports=e},function(t,e,i){function s(t,e,i){for(var n in h.prototype)h.prototype.hasOwnProperty(n)&&!s.prototype.hasOwnProperty(n)&&(s.prototype[n]=h.prototype[n]);if(!(this instanceof s))throw new SyntaxError("Constructor must be called with the new operator");var r=this;this.defaultOptions={start:null,end:null,autoResize:!0,orientation:"bottom",width:null,height:null,maxHeight:null,minHeight:null},this.options=o.deepExtend({},this.defaultOptions),this._create(t),this.components=[],this.body={dom:this.dom,domProps:this.props,emitter:{on:this.on.bind(this),off:this.off.bind(this),emit:this.emit.bind(this)},util:{snap:null,toScreen:r._toScreen.bind(r),toGlobalScreen:r._toGlobalScreen.bind(r),toTime:r._toTime.bind(r),toGlobalTime:r._toGlobalTime.bind(r)}},this.range=new a(this.body),this.components.push(this.range),this.body.range=this.range,this.timeAxis=new d(this.body),this.components.push(this.timeAxis),this.body.util.snap=this.timeAxis.snap.bind(this.timeAxis),this.currentTime=new l(this.body),this.components.push(this.currentTime),this.customTime=new c(this.body),this.components.push(this.customTime),this.itemSet=new p(this.body),this.components.push(this.itemSet),this.itemsData=null,this.groupsData=null,i&&this.setOptions(i),e?this.setItems(e):this.redraw()}var o=(i(46),i(41),i(1)),n=i(3),r=i(4),a=i(15),h=i(42),d=i(27),l=i(19),c=i(20),p=i(24);s.prototype.setOptions=function(t){if(t){var e=["width","height","minHeight","maxHeight","autoResize","start","end","orientation"];o.selectiveExtend(e,this.options,t),this._initAutoResize()}if(this.components.forEach(function(e){e.setOptions(t)}),t&&t.order)throw new Error("Option order is deprecated. There is no replacement for this feature.");this.redraw()},s.prototype.setItems=function(t){var e,i=null==this.itemsData;if(e=t?t instanceof n||t instanceof r?t:new n(t,{type:{start:"Date",end:"Date"}}):null,this.itemsData=e,this.itemSet&&this.itemSet.setItems(e),i&&("start"in this.options||"end"in this.options)){this.fit();var s="start"in this.options?o.convert(this.options.start,"Date"):null,a="end"in this.options?o.convert(this.options.end,"Date"):null;this.setWindow(s,a)}},s.prototype.setGroups=function(t){var e;e=t?t instanceof n||t instanceof r?t:new n(t):null,this.groupsData=e,this.itemSet.setGroups(e)},s.prototype.setSelection=function(t){this.itemSet&&this.itemSet.setSelection(t)},s.prototype.getSelection=function(){return this.itemSet&&this.itemSet.getSelection()||[]},s.prototype.getItemRange=function(){var t=this.itemsData.getDataSet(),e=null,i=null;if(t){var s=t.min("start");e=s?o.convert(s.start,"Date").valueOf():null;var n=t.max("start");n&&(i=o.convert(n.start,"Date").valueOf());var r=t.max("end");r&&(i=null==i?o.convert(r.end,"Date").valueOf():Math.max(i,o.convert(r.end,"Date").valueOf()))}return{min:null!=e?new Date(e):null,max:null!=i?new Date(i):null}},t.exports=s},function(t,e,i){function s(t,e,i,n){for(var r in h.prototype)h.prototype.hasOwnProperty(r)&&!s.prototype.hasOwnProperty(r)&&(s.prototype[r]=h.prototype[r]);var u=this;this.defaultOptions={start:null,end:null,autoResize:!0,orientation:"bottom",width:null,height:null,maxHeight:null,minHeight:null},this.options=o.deepExtend({},this.defaultOptions),this._create(t),this.components=[],this.body={dom:this.dom,domProps:this.props,emitter:{on:this.on.bind(this),off:this.off.bind(this),emit:this.emit.bind(this)},util:{snap:null,toScreen:u._toScreen.bind(u),toGlobalScreen:u._toGlobalScreen.bind(u),toTime:u._toTime.bind(u),toGlobalTime:u._toGlobalTime.bind(u)}},this.range=new a(this.body),this.components.push(this.range),this.body.range=this.range,this.timeAxis=new d(this.body),this.components.push(this.timeAxis),this.body.util.snap=this.timeAxis.snap.bind(this.timeAxis),this.currentTime=new l(this.body),this.components.push(this.currentTime),this.customTime=new c(this.body),this.components.push(this.customTime),this.linegraph=new p(this.body),this.components.push(this.linegraph),this.itemsData=null,this.groupsData=null,i&&this.setOptions(i),n&&this.setGroups(n),e?this.setItems(e):this.redraw()}var o=(i(46),i(41),i(1)),n=i(3),r=i(4),a=i(15),h=i(42),d=i(27),l=i(19),c=i(20),p=i(26);s.prototype.setOptions=function(t){if(t){var e=["width","height","minHeight","maxHeight","autoResize","start","end","orientation"];o.selectiveExtend(e,this.options,t),this._initAutoResize()}if(this.components.forEach(function(e){e.setOptions(t)}),t&&t.order)throw new Error("Option order is deprecated. There is no replacement for this feature.");this.redraw()},s.prototype.setItems=function(t){var e,i=null==this.itemsData;if(e=t?t instanceof n||t instanceof r?t:new n(t,{type:{start:"Date",end:"Date"}}):null,this.itemsData=e,this.linegraph&&this.linegraph.setItems(e),i&&("start"in this.options||"end"in this.options)){this.fit();var s="start"in this.options?o.convert(this.options.start,"Date"):null,a="end"in this.options?o.convert(this.options.end,"Date"):null;this.setWindow(s,a)}},s.prototype.setGroups=function(t){var e;e=t?t instanceof n||t instanceof r?t:new n(t):null,this.groupsData=e,this.linegraph.setGroups(e)},s.prototype.getLegend=function(t,e,i){return void 0===e&&(e=15),void 0===i&&(i=15),void 0!==this.linegraph.groups[t]?this.linegraph.groups[t].getLegend(e,i):"cannot find group:"+t},s.prototype.isGroupVisible=function(t){return void 0!==this.linegraph.groups[t]?this.linegraph.groups[t].visible:!1},s.prototype.getItemRange=function(){var t=null,e=null;for(var i in this.linegraph.groups)if(this.linegraph.groups.hasOwnProperty(i)&&1==this.linegraph.groups[i].visible)for(var s=0;sr?r:t,e=null==e?r:r>e?r:e}return{min:null!=t?new Date(t):null,max:null!=e?new Date(e):null}},t.exports=s},function(t){function e(t,e,i,s,o){this.current=0,this.autoScale=!0,this.stepIndex=0,this.step=1,this.scale=1,this.marginStart,this.marginEnd,this.majorSteps=[1,2,5,10],this.minorSteps=[.25,.5,1,2],this.setRange(t,e,i,s,o)}e.prototype.setRange=function(t,e,i,s,o){this._start=t,this._end=e,t==e&&(this._start=t-.75,this._end=e+1),this.autoScale&&this.setMinimumStep(i,s,o),this.setFirst()},e.prototype.setMinimumStep=function(t,e){var i=this._end-this._start,s=1.1*i,o=t*(s/e),n=Math.round(Math.log(s)/Math.LN10),r=-1,a=Math.pow(10,n),h=0;0>n&&(h=n);for(var d=!1,l=h;Math.abs(l)<=Math.abs(n);l++){a=Math.pow(10,l);for(var c=0;c=o){d=!0,r=c;break}}if(1==d)break}this.stepIndex=r,this.scale=a,this.step=a*this.minorSteps[r]},e.prototype.first=function(){this.setFirst()},e.prototype.setFirst=function(){var t=this._start-this.scale*this.minorSteps[this.stepIndex],e=this._end+this.scale*this.minorSteps[this.stepIndex];this.marginEnd=this.roundToMinor(e),this.marginStart=this.roundToMinor(t),this.marginRange=this.marginEnd-this.marginStart,this.current=this.marginEnd},e.prototype.roundToMinor=function(t){var e=t-t%(this.scale*this.minorSteps[this.stepIndex]);return t%(this.scale*this.minorSteps[this.stepIndex])>.5*this.scale*this.minorSteps[this.stepIndex]?e+this.scale*this.minorSteps[this.stepIndex]:e},e.prototype.hasNext=function(){return this.current>=this.marginStart},e.prototype.next=function(){var t=this.current;this.current-=this.step,this.current==t&&(this.current=this._end)},e.prototype.previous=function(){this.current+=this.step,this.marginEnd+=this.step,this.marginRange=this.marginEnd-this.marginStart},e.prototype.getCurrent=function(){for(var t=""+Number(this.current).toPrecision(5),e=t.length-1;e>0;e--){if("0"!=t[e]){if("."==t[e]||","==t[e]){t=t.slice(0,e);break}break}t=t.slice(0,e)}return t},e.prototype.snap=function(){},e.prototype.isMajor=function(){return this.current%(this.scale*this.majorSteps[this.stepIndex])==0},t.exports=e},function(t,e,i){function s(t,e){var i=h().hours(0).minutes(0).seconds(0).milliseconds(0);this.start=i.clone().add("days",-3).valueOf(),this.end=i.clone().add("days",4).valueOf(),this.body=t,this.defaultOptions={start:null,end:null,direction:"horizontal",moveable:!0,zoomable:!0,min:null,max:null,zoomMin:10,zoomMax:31536e10},this.options=r.extend({},this.defaultOptions),this.props={touch:{}},this.body.emitter.on("dragstart",this._onDragStart.bind(this)),this.body.emitter.on("drag",this._onDrag.bind(this)),this.body.emitter.on("dragend",this._onDragEnd.bind(this)),this.body.emitter.on("hold",this._onHold.bind(this)),this.body.emitter.on("mousewheel",this._onMouseWheel.bind(this)),this.body.emitter.on("DOMMouseScroll",this._onMouseWheel.bind(this)),this.body.emitter.on("touch",this._onTouch.bind(this)),this.body.emitter.on("pinch",this._onPinch.bind(this)),this.setOptions(e)}function o(t){if("horizontal"!=t&&"vertical"!=t)throw new TypeError('Unknown direction "'+t+'". Choose "horizontal" or "vertical".')}function n(t,e){return{x:t.pageX-r.getAbsoluteLeft(e),y:t.pageY-r.getAbsoluteTop(e)}}var r=i(1),a=i(43),h=i(40),d=i(18);s.prototype=new d,s.prototype.setOptions=function(t){if(t){var e=["direction","min","max","zoomMin","zoomMax","moveable","zoomable"];r.selectiveExtend(e,this.options,t),("start"in t||"end"in t)&&this.setRange(t.start,t.end)}},s.prototype.setRange=function(t,e){var i=this._applyRange(t,e);if(i){var s={start:new Date(this.start),end:new Date(this.end)};this.body.emitter.emit("rangechange",s),this.body.emitter.emit("rangechanged",s)}},s.prototype._applyRange=function(t,e){var i,s=null!=t?r.convert(t,"Date").valueOf():this.start,o=null!=e?r.convert(e,"Date").valueOf():this.end,n=null!=this.options.max?r.convert(this.options.max,"Date").valueOf():null,a=null!=this.options.min?r.convert(this.options.min,"Date").valueOf():null;if(isNaN(s)||null===s)throw new Error('Invalid start "'+t+'"');if(isNaN(o)||null===o)throw new Error('Invalid end "'+e+'"');if(s>o&&(o=s),null!==a&&a>s&&(i=a-s,s+=i,o+=i,null!=n&&o>n&&(o=n)),null!==n&&o>n&&(i=o-n,s-=i,o-=i,null!=a&&a>s&&(s=a)),null!==this.options.zoomMin){var h=parseFloat(this.options.zoomMin);0>h&&(h=0),h>o-s&&(this.end-this.start===h?(s=this.start,o=this.end):(i=h-(o-s),s-=i/2,o+=i/2))}if(null!==this.options.zoomMax){var d=parseFloat(this.options.zoomMax);0>d&&(d=0),o-s>d&&(this.end-this.start===d?(s=this.start,o=this.end):(i=o-s-d,s+=i/2,o-=i/2))}var l=this.start!=s||this.end!=o;return this.start=s,this.end=o,l},s.prototype.getRange=function(){return{start:this.start,end:this.end}},s.prototype.conversion=function(t){return s.conversion(this.start,this.end,t)},s.conversion=function(t,e,i){return 0!=i&&e-t!=0?{offset:t,scale:i/(e-t)}:{offset:0,scale:1}},s.prototype._onDragStart=function(){this.options.moveable&&this.props.touch.allowDragging&&(this.props.touch.start=this.start,this.props.touch.end=this.end,this.body.dom.root&&(this.body.dom.root.style.cursor="move"))},s.prototype._onDrag=function(t){if(this.options.moveable){var e=this.options.direction;if(o(e),this.props.touch.allowDragging){var i="horizontal"==e?t.gesture.deltaX:t.gesture.deltaY,s=this.props.touch.end-this.props.touch.start,n="horizontal"==e?this.body.domProps.center.width:this.body.domProps.center.height,r=-i/n*s;this._applyRange(this.props.touch.start+r,this.props.touch.end+r),this.body.emitter.emit("rangechange",{start:new Date(this.start),end:new Date(this.end)})}}},s.prototype._onDragEnd=function(){this.options.moveable&&this.props.touch.allowDragging&&(this.body.dom.root&&(this.body.dom.root.style.cursor="auto"),this.body.emitter.emit("rangechanged",{start:new Date(this.start),end:new Date(this.end)}))},s.prototype._onMouseWheel=function(t){if(this.options.zoomable&&this.options.moveable){var e=0;if(t.wheelDelta?e=t.wheelDelta/120:t.detail&&(e=-t.detail/3),e){var i;i=0>e?1-e/5:1/(1+e/5);var s=a.fakeGesture(this,t),o=n(s.center,this.body.dom.center),r=this._pointerToDate(o);this.zoom(i,r)}t.preventDefault()}},s.prototype._onTouch=function(){this.props.touch.start=this.start,this.props.touch.end=this.end,this.props.touch.allowDragging=!0,this.props.touch.center=null},s.prototype._onHold=function(){this.props.touch.allowDragging=!1},s.prototype._onPinch=function(t){if(this.options.zoomable&&this.options.moveable&&(this.props.touch.allowDragging=!1,t.gesture.touches.length>1)){this.props.touch.center||(this.props.touch.center=n(t.gesture.center,this.body.dom.center));var e=1/t.gesture.scale,i=this._pointerToDate(this.props.touch.center),s=parseInt(i+(this.props.touch.start-i)*e),o=parseInt(i+(this.props.touch.end-i)*e);this.setRange(s,o)}},s.prototype._pointerToDate=function(t){var e,i=this.options.direction;if(o(i),"horizontal"==i){var s=this.body.domProps.center.width;return e=this.conversion(s),t.x/e.scale+e.offset}var n=this.body.domProps.center.height;return e=this.conversion(n),t.y/e.scale+e.offset},s.prototype.zoom=function(t,e){null==e&&(e=(this.start+this.end)/2);var i=e+(this.start-e)*t,s=e+(this.end-e)*t;this.setRange(i,s)},s.prototype.move=function(t){var e=this.end-this.start,i=this.start+e*t,s=this.end+e*t;this.start=i,this.end=s},s.prototype.moveTo=function(t){var e=(this.start+this.end)/2,i=e-t,s=this.start-i,o=this.end-i;this.setRange(s,o)},t.exports=s},function(t,e){var i=.001;e.orderByStart=function(t){t.sort(function(t,e){return t.data.start-e.data.start})},e.orderByEnd=function(t){t.sort(function(t,e){var i="end"in t.data?t.data.end:t.data.start,s="end"in e.data?e.data.end:e.data.start;return i-s})},e.stack=function(t,i,s){var o,n;if(s)for(o=0,n=t.length;n>o;o++)t[o].top=null;for(o=0,n=t.length;n>o;o++){var r=t[o];if(null===r.top){r.top=i.axis;do{for(var a=null,h=0,d=t.length;d>h;h++){var l=t[h];if(null!==l.top&&l!==r&&e.collision(r,l,i.item)){a=l;break}}null!=a&&(r.top=a.top+a.height+i.item.vertical)}while(a)}}},e.nostack=function(t,e){var i,s;for(i=0,s=t.length;s>i;i++)t[i].top=e.axis},e.collision=function(t,e,s){return t.left-s.horizontal+ie.left&&t.top-s.vertical+ie.top}},function(t,e,i){function s(t,e,i){this.current=new Date,this._start=new Date,this._end=new Date,this.autoScale=!0,this.scale=s.SCALE.DAY,this.step=1,this.setRange(t,e,i)}var o=i(40);s.SCALE={MILLISECOND:1,SECOND:2,MINUTE:3,HOUR:4,DAY:5,WEEKDAY:6,MONTH:7,YEAR:8},s.prototype.setRange=function(t,e,i){if(!(t instanceof Date&&e instanceof Date))throw"No legal start or end date in method setRange";this._start=void 0!=t?new Date(t.valueOf()):new Date,this._end=void 0!=e?new Date(e.valueOf()):new Date,this.autoScale&&this.setMinimumStep(i)},s.prototype.first=function(){this.current=new Date(this._start.valueOf()),this.roundToMinor()},s.prototype.roundToMinor=function(){switch(this.scale){case s.SCALE.YEAR:this.current.setFullYear(this.step*Math.floor(this.current.getFullYear()/this.step)),this.current.setMonth(0);case s.SCALE.MONTH:this.current.setDate(1);case s.SCALE.DAY:case s.SCALE.WEEKDAY:this.current.setHours(0);case s.SCALE.HOUR:this.current.setMinutes(0);case s.SCALE.MINUTE:this.current.setSeconds(0);case s.SCALE.SECOND:this.current.setMilliseconds(0)}if(1!=this.step)switch(this.scale){case s.SCALE.MILLISECOND:this.current.setMilliseconds(this.current.getMilliseconds()-this.current.getMilliseconds()%this.step);break;case s.SCALE.SECOND:this.current.setSeconds(this.current.getSeconds()-this.current.getSeconds()%this.step);break;case s.SCALE.MINUTE:this.current.setMinutes(this.current.getMinutes()-this.current.getMinutes()%this.step);break;case s.SCALE.HOUR:this.current.setHours(this.current.getHours()-this.current.getHours()%this.step);break;case s.SCALE.WEEKDAY:case s.SCALE.DAY:this.current.setDate(this.current.getDate()-1-(this.current.getDate()-1)%this.step+1);break;case s.SCALE.MONTH:this.current.setMonth(this.current.getMonth()-this.current.getMonth()%this.step);break;case s.SCALE.YEAR:this.current.setFullYear(this.current.getFullYear()-this.current.getFullYear()%this.step)}},s.prototype.hasNext=function(){return this.current.valueOf()<=this._end.valueOf()},s.prototype.next=function(){var t=this.current.valueOf();if(this.current.getMonth()<6)switch(this.scale){case s.SCALE.MILLISECOND:this.current=new Date(this.current.valueOf()+this.step);break;case s.SCALE.SECOND:this.current=new Date(this.current.valueOf()+1e3*this.step);break;case s.SCALE.MINUTE:this.current=new Date(this.current.valueOf()+1e3*this.step*60);break;case s.SCALE.HOUR:this.current=new Date(this.current.valueOf()+1e3*this.step*60*60);var e=this.current.getHours();this.current.setHours(e-e%this.step);break;case s.SCALE.WEEKDAY:case s.SCALE.DAY:this.current.setDate(this.current.getDate()+this.step);break;case s.SCALE.MONTH:this.current.setMonth(this.current.getMonth()+this.step);break;case s.SCALE.YEAR:this.current.setFullYear(this.current.getFullYear()+this.step)}else switch(this.scale){case s.SCALE.MILLISECOND:this.current=new Date(this.current.valueOf()+this.step);break;case s.SCALE.SECOND:this.current.setSeconds(this.current.getSeconds()+this.step);break;case s.SCALE.MINUTE:this.current.setMinutes(this.current.getMinutes()+this.step);break;case s.SCALE.HOUR:this.current.setHours(this.current.getHours()+this.step);break;case s.SCALE.WEEKDAY:case s.SCALE.DAY:this.current.setDate(this.current.getDate()+this.step);break;case s.SCALE.MONTH:this.current.setMonth(this.current.getMonth()+this.step);break;case s.SCALE.YEAR:this.current.setFullYear(this.current.getFullYear()+this.step)}if(1!=this.step)switch(this.scale){case s.SCALE.MILLISECOND:this.current.getMilliseconds()0&&(this.step=e),this.autoScale=!1},s.prototype.setAutoScale=function(t){this.autoScale=t},s.prototype.setMinimumStep=function(t){if(void 0!=t){var e=31104e6,i=2592e6,o=864e5,n=36e5,r=6e4,a=1e3,h=1;1e3*e>t&&(this.scale=s.SCALE.YEAR,this.step=1e3),500*e>t&&(this.scale=s.SCALE.YEAR,this.step=500),100*e>t&&(this.scale=s.SCALE.YEAR,this.step=100),50*e>t&&(this.scale=s.SCALE.YEAR,this.step=50),10*e>t&&(this.scale=s.SCALE.YEAR,this.step=10),5*e>t&&(this.scale=s.SCALE.YEAR,this.step=5),e>t&&(this.scale=s.SCALE.YEAR,this.step=1),3*i>t&&(this.scale=s.SCALE.MONTH,this.step=3),i>t&&(this.scale=s.SCALE.MONTH,this.step=1),5*o>t&&(this.scale=s.SCALE.DAY,this.step=5),2*o>t&&(this.scale=s.SCALE.DAY,this.step=2),o>t&&(this.scale=s.SCALE.DAY,this.step=1),o/2>t&&(this.scale=s.SCALE.WEEKDAY,this.step=1),4*n>t&&(this.scale=s.SCALE.HOUR,this.step=4),n>t&&(this.scale=s.SCALE.HOUR,this.step=1),15*r>t&&(this.scale=s.SCALE.MINUTE,this.step=15),10*r>t&&(this.scale=s.SCALE.MINUTE,this.step=10),5*r>t&&(this.scale=s.SCALE.MINUTE,this.step=5),r>t&&(this.scale=s.SCALE.MINUTE,this.step=1),15*a>t&&(this.scale=s.SCALE.SECOND,this.step=15),10*a>t&&(this.scale=s.SCALE.SECOND,this.step=10),5*a>t&&(this.scale=s.SCALE.SECOND,this.step=5),a>t&&(this.scale=s.SCALE.SECOND,this.step=1),200*h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=200),100*h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=100),50*h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=50),10*h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=10),5*h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=5),h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=1)}},s.prototype.snap=function(t){var e=new Date(t.valueOf());if(this.scale==s.SCALE.YEAR){var i=e.getFullYear()+Math.round(e.getMonth()/12);e.setFullYear(Math.round(i/this.step)*this.step),e.setMonth(0),e.setDate(0),e.setHours(0),e.setMinutes(0),e.setSeconds(0),e.setMilliseconds(0)}else if(this.scale==s.SCALE.MONTH)e.getDate()>15?(e.setDate(1),e.setMonth(e.getMonth()+1)):e.setDate(1),e.setHours(0),e.setMinutes(0),e.setSeconds(0),e.setMilliseconds(0);else if(this.scale==s.SCALE.DAY){switch(this.step){case 5:case 2:e.setHours(24*Math.round(e.getHours()/24));break;default:e.setHours(12*Math.round(e.getHours()/12))}e.setMinutes(0),e.setSeconds(0),e.setMilliseconds(0)}else if(this.scale==s.SCALE.WEEKDAY){switch(this.step){case 5:case 2:e.setHours(12*Math.round(e.getHours()/12));break;default:e.setHours(6*Math.round(e.getHours()/6))}e.setMinutes(0),e.setSeconds(0),e.setMilliseconds(0)}else if(this.scale==s.SCALE.HOUR){switch(this.step){case 4:e.setMinutes(60*Math.round(e.getMinutes()/60));break;default:e.setMinutes(30*Math.round(e.getMinutes()/30))}e.setSeconds(0),e.setMilliseconds(0)}else if(this.scale==s.SCALE.MINUTE){switch(this.step){case 15:case 10:e.setMinutes(5*Math.round(e.getMinutes()/5)),e.setSeconds(0);break;case 5:e.setSeconds(60*Math.round(e.getSeconds()/60));break;default:e.setSeconds(30*Math.round(e.getSeconds()/30))}e.setMilliseconds(0)}else if(this.scale==s.SCALE.SECOND)switch(this.step){case 15:case 10:e.setSeconds(5*Math.round(e.getSeconds()/5)),e.setMilliseconds(0);break;case 5:e.setMilliseconds(1e3*Math.round(e.getMilliseconds()/1e3));break;default:e.setMilliseconds(500*Math.round(e.getMilliseconds()/500))}else if(this.scale==s.SCALE.MILLISECOND){var o=this.step>5?this.step/2:1;e.setMilliseconds(Math.round(e.getMilliseconds()/o)*o)}return e},s.prototype.isMajor=function(){switch(this.scale){case s.SCALE.MILLISECOND:return 0==this.current.getMilliseconds();case s.SCALE.SECOND:return 0==this.current.getSeconds();case s.SCALE.MINUTE:return 0==this.current.getHours()&&0==this.current.getMinutes();case s.SCALE.HOUR:return 0==this.current.getHours();case s.SCALE.WEEKDAY:case s.SCALE.DAY:return 1==this.current.getDate();case s.SCALE.MONTH:return 0==this.current.getMonth();case s.SCALE.YEAR:return!1;default:return!1}},s.prototype.getLabelMinor=function(t){switch(void 0==t&&(t=this.current),this.scale){case s.SCALE.MILLISECOND:return o(t).format("SSS");case s.SCALE.SECOND:return o(t).format("s");case s.SCALE.MINUTE:return o(t).format("HH:mm");case s.SCALE.HOUR:return o(t).format("HH:mm");case s.SCALE.WEEKDAY:return o(t).format("ddd D");case s.SCALE.DAY:return o(t).format("D");case s.SCALE.MONTH:return o(t).format("MMM");case s.SCALE.YEAR:return o(t).format("YYYY");default:return""}},s.prototype.getLabelMajor=function(t){switch(void 0==t&&(t=this.current),this.scale){case s.SCALE.MILLISECOND:return o(t).format("HH:mm:ss");case s.SCALE.SECOND:return o(t).format("D MMMM HH:mm");case s.SCALE.MINUTE:case s.SCALE.HOUR:return o(t).format("ddd D MMMM");case s.SCALE.WEEKDAY:case s.SCALE.DAY:return o(t).format("MMMM YYYY");case s.SCALE.MONTH:return o(t).format("YYYY");case s.SCALE.YEAR:return"";default:return""}},t.exports=s},function(t){function e(){this.options=null,this.props=null}e.prototype.setOptions=function(t){t&&util.extend(this.options,t)},e.prototype.redraw=function(){return!1},e.prototype.destroy=function(){},e.prototype._isResized=function(){var t=this.props._previousWidth!==this.props.width||this.props._previousHeight!==this.props.height;return this.props._previousWidth=this.props.width,this.props._previousHeight=this.props.height,t},t.exports=e},function(t,e,i){function s(t,e){this.body=t,this.defaultOptions={showCurrentTime:!0},this.options=o.extend({},this.defaultOptions),this._create(),this.setOptions(e)}var o=i(1),n=i(18);s.prototype=new n,s.prototype._create=function(){var t=document.createElement("div");t.className="currenttime",t.style.position="absolute",t.style.top="0px",t.style.height="100%",this.bar=t},s.prototype.destroy=function(){this.options.showCurrentTime=!1,this.redraw(),this.body=null},s.prototype.setOptions=function(t){t&&o.selectiveExtend(["showCurrentTime"],this.options,t)},s.prototype.redraw=function(){if(this.options.showCurrentTime){var t=this.body.dom.backgroundVertical;this.bar.parentNode!=t&&(this.bar.parentNode&&this.bar.parentNode.removeChild(this.bar),t.appendChild(this.bar),this.start());var e=new Date,i=this.body.util.toScreen(e);this.bar.style.left=i+"px",this.bar.title="Current time: "+e}else this.bar.parentNode&&this.bar.parentNode.removeChild(this.bar),this.stop();return!1},s.prototype.start=function(){function t(){e.stop();var i=e.body.range.conversion(e.body.domProps.center.width).scale,s=1/i/10;30>s&&(s=30),s>1e3&&(s=1e3),e.redraw(),e.currentTimeTimer=setTimeout(t,s)}var e=this;t()},s.prototype.stop=function(){void 0!==this.currentTimeTimer&&(clearTimeout(this.currentTimeTimer),delete this.currentTimeTimer)},t.exports=s},function(t,e,i){function s(t,e){this.body=t,this.defaultOptions={showCustomTime:!1},this.options=n.extend({},this.defaultOptions),this.customTime=new Date,this.eventParams={},this._create(),this.setOptions(e)}var o=i(41),n=i(1),r=i(18);s.prototype=new r,s.prototype.setOptions=function(t){t&&n.selectiveExtend(["showCustomTime"],this.options,t)},s.prototype._create=function(){var t=document.createElement("div");t.className="customtime",t.style.position="absolute",t.style.top="0px",t.style.height="100%",this.bar=t;var e=document.createElement("div");e.style.position="relative",e.style.top="0px",e.style.left="-10px",e.style.height="100%",e.style.width="20px",t.appendChild(e),this.hammer=o(t,{prevent_default:!0}),this.hammer.on("dragstart",this._onDragStart.bind(this)),this.hammer.on("drag",this._onDrag.bind(this)),this.hammer.on("dragend",this._onDragEnd.bind(this))},s.prototype.destroy=function(){this.options.showCustomTime=!1,this.redraw(),this.hammer.enable(!1),this.hammer=null,this.body=null},s.prototype.redraw=function(){if(this.options.showCustomTime){var t=this.body.dom.backgroundVertical;this.bar.parentNode!=t&&(this.bar.parentNode&&this.bar.parentNode.removeChild(this.bar),t.appendChild(this.bar));var e=this.body.util.toScreen(this.customTime);this.bar.style.left=e+"px",this.bar.title="Time: "+this.customTime}else this.bar.parentNode&&this.bar.parentNode.removeChild(this.bar);return!1},s.prototype.setCustomTime=function(t){this.customTime=new Date(t.valueOf()),this.redraw()},s.prototype.getCustomTime=function(){return new Date(this.customTime.valueOf())},s.prototype._onDragStart=function(t){this.eventParams.dragging=!0,this.eventParams.customTime=this.customTime,t.stopPropagation(),t.preventDefault()},s.prototype._onDrag=function(t){if(this.eventParams.dragging){var e=t.gesture.deltaX,i=this.body.util.toScreen(this.eventParams.customTime)+e,s=this.body.util.toTime(i);this.setCustomTime(s),this.body.emitter.emit("timechange",{time:new Date(this.customTime.valueOf())}),t.stopPropagation(),t.preventDefault()}},s.prototype._onDragEnd=function(t){this.eventParams.dragging&&(this.body.emitter.emit("timechanged",{time:new Date(this.customTime.valueOf())}),t.stopPropagation(),t.preventDefault())},t.exports=s},function(t,e,i){function s(t,e,i){this.id=o.randomUUID(),this.body=t,this.defaultOptions={orientation:"left",showMinorLabels:!0,showMajorLabels:!0,icons:!0,majorLinesOffset:7,minorLinesOffset:4,labelOffsetX:10,labelOffsetY:2,iconWidth:20,width:"40px",visible:!0},this.linegraphSVG=i,this.props={},this.DOMelements={lines:{},labels:{}},this.dom={},this.range={start:0,end:0},this.options=o.extend({},this.defaultOptions),this.conversionFactor=1,this.setOptions(e),this.width=Number((""+this.options.width).replace("px","")),this.minWidth=this.width,this.height=this.linegraphSVG.offsetHeight,this.stepPixels=25,this.stepPixelsForced=25,this.lineOffset=0,this.master=!0,this.svgElements={},this.groups={},this.amountOfGroups=0,this._create() -}var o=i(1),n=i(2),r=i(18),a=i(14);s.prototype=new r,s.prototype.addGroup=function(t,e){this.groups.hasOwnProperty(t)||(this.groups[t]=e),this.amountOfGroups+=1},s.prototype.updateGroup=function(t,e){this.groups[t]=e},s.prototype.removeGroup=function(t){this.groups.hasOwnProperty(t)&&(delete this.groups[t],this.amountOfGroups-=1)},s.prototype.setOptions=function(t){if(t){var e=!1;this.options.orientation!=t.orientation&&void 0!==t.orientation&&(e=!0);var i=["orientation","showMinorLabels","showMajorLabels","icons","majorLinesOffset","minorLinesOffset","labelOffsetX","labelOffsetY","iconWidth","width","visible"];o.selectiveExtend(i,this.options,t),this.minWidth=Number((""+this.options.width).replace("px","")),1==e&&this.dom.frame&&(this.hide(),this.show())}},s.prototype._create=function(){this.dom.frame=document.createElement("div"),this.dom.frame.style.width=this.options.width,this.dom.frame.style.height=this.height,this.dom.lineContainer=document.createElement("div"),this.dom.lineContainer.style.width="100%",this.dom.lineContainer.style.height=this.height,this.svg=document.createElementNS("http://www.w3.org/2000/svg","svg"),this.svg.style.position="absolute",this.svg.style.top="0px",this.svg.style.height="100%",this.svg.style.width="100%",this.svg.style.display="block",this.dom.frame.appendChild(this.svg)},s.prototype._redrawGroupIcons=function(){n.prepareElements(this.svgElements);var t,e=this.options.iconWidth,i=15,s=4,o=s+.5*i;t="left"==this.options.orientation?s:this.width-e-s;for(var r in this.groups)this.groups.hasOwnProperty(r)&&1==this.groups[r].visible&&(this.groups[r].drawIcon(t,o,this.svgElements,this.svg,e,i),o+=i+s);n.cleanupElements(this.svgElements)},s.prototype.show=function(){this.dom.frame.parentNode||("left"==this.options.orientation?this.body.dom.left.appendChild(this.dom.frame):this.body.dom.right.appendChild(this.dom.frame)),this.dom.lineContainer.parentNode||this.body.dom.backgroundHorizontal.appendChild(this.dom.lineContainer)},s.prototype.hide=function(){this.dom.frame.parentNode&&this.dom.frame.parentNode.removeChild(this.dom.frame),this.dom.lineContainer.parentNode&&this.dom.lineContainer.parentNode.removeChild(this.dom.lineContainer)},s.prototype.setRange=function(t,e){this.range.start=t,this.range.end=e},s.prototype.redraw=function(){var t=!1,e=0;for(var i in this.groups)this.groups.hasOwnProperty(i)&&1==this.groups[i].visible&&e++;if(0==this.amountOfGroups||0==e)this.hide();else{this.show(),this.height=Number(this.linegraphSVG.style.height.replace("px","")),this.dom.lineContainer.style.height=this.height+"px",this.width=1==this.options.visible?Number((""+this.options.width).replace("px","")):0;var s=this.props,o=this.dom.frame;o.className="dataaxis",this._calculateCharSize();var n=this.options.orientation,r=this.options.showMinorLabels,a=this.options.showMajorLabels;s.minorLabelHeight=r?s.minorCharHeight:0,s.majorLabelHeight=a?s.majorCharHeight:0,s.minorLineWidth=this.body.dom.backgroundHorizontal.offsetWidth-this.lineOffset-this.width+2*this.options.minorLinesOffset,s.minorLineHeight=1,s.majorLineWidth=this.body.dom.backgroundHorizontal.offsetWidth-this.lineOffset-this.width+2*this.options.majorLinesOffset,s.majorLineHeight=1,"left"==n?(o.style.top="0",o.style.left="0",o.style.bottom="",o.style.width=this.width+"px",o.style.height=this.height+"px"):(o.style.top="",o.style.bottom="0",o.style.left="0",o.style.width=this.width+"px",o.style.height=this.height+"px"),t=this._redrawLabels(),1==this.options.icons&&this._redrawGroupIcons()}return t},s.prototype._redrawLabels=function(){n.prepareElements(this.DOMelements.lines),n.prepareElements(this.DOMelements.labels);var t=this.options.orientation,e=this.master?this.props.majorCharHeight||10:this.stepPixelsForced,i=new a(this.range.start,this.range.end,e,this.dom.frame.offsetHeight);this.step=i,i.first();var s=this.dom.frame.offsetHeight/(i.marginRange/i.step+1);this.stepPixels=s;var o=this.height/s,r=0;if(0==this.master){s=this.stepPixelsForced,r=Math.round(this.height/s-o);for(var h=0;.5*r>h;h++)i.previous();o=this.height/s}this.valueAtZero=i.marginEnd;var d=0,l=1;i.next(),this.maxLabelSize=0;for(var c=0;l=0&&this._redrawLabel(c-2,i.getCurrent(),t,"yAxis major",this.props.majorCharHeight),this._redrawLine(c,t,"grid horizontal major",this.options.majorLinesOffset,this.props.majorLineWidth)):this._redrawLine(c,t,"grid horizontal minor",this.options.minorLinesOffset,this.props.minorLineWidth),i.next(),l++}this.conversionFactor=d/((o-1)*i.step);var u=1==this.options.icons?this.options.iconWidth+this.options.labelOffsetX+15:this.options.labelOffsetX+15;return this.maxLabelSize>this.width-u&&1==this.options.visible?(this.width=this.maxLabelSize+u,this.options.width=this.width+"px",n.cleanupElements(this.DOMelements.lines),n.cleanupElements(this.DOMelements.labels),this.redraw(),!0):this.maxLabelSizethis.minWidth?(this.width=Math.max(this.minWidth,this.maxLabelSize+u),this.options.width=this.width+"px",n.cleanupElements(this.DOMelements.lines),n.cleanupElements(this.DOMelements.labels),this.redraw(),!0):(n.cleanupElements(this.DOMelements.lines),n.cleanupElements(this.DOMelements.labels),!1)},s.prototype._redrawLabel=function(t,e,i,s,o){var r=n.getDOMElement("div",this.DOMelements.labels,this.dom.frame);r.className=s,r.innerHTML=e,"left"==i?(r.style.left="-"+this.options.labelOffsetX+"px",r.style.textAlign="right"):(r.style.right="-"+this.options.labelOffsetX+"px",r.style.textAlign="left"),r.style.top=t-.5*o+this.options.labelOffsetY+"px",e+="";var a=Math.max(this.props.majorCharWidth,this.props.minorCharWidth);this.maxLabelSizee.axis){var c=d-e.axis;l-=c,o.forEach(h,function(t){t.top-=c})}a=l+e.item.vertical/2}else a=e.axis+e.item.vertical;a=Math.max(a,this.props.label.height);var p=this.dom.foreground;this.top=p.offsetTop,this.left=p.offsetLeft,this.width=p.offsetWidth,s=o.updateProperty(this,"height",a)||s,s=o.updateProperty(this.props.label,"width",this.dom.inner.clientWidth)||s,s=o.updateProperty(this.props.label,"height",this.dom.inner.clientHeight)||s,this.dom.background.style.height=a+"px",this.dom.foreground.style.height=a+"px",this.dom.label.style.height=a+"px";for(var u=0,f=this.visibleItems.length;f>u;u++){var m=this.visibleItems[u];m.repositionY()}return s},s.prototype.show=function(){this.dom.label.parentNode||this.itemSet.dom.labelSet.appendChild(this.dom.label),this.dom.foreground.parentNode||this.itemSet.dom.foreground.appendChild(this.dom.foreground),this.dom.background.parentNode||this.itemSet.dom.background.appendChild(this.dom.background),this.dom.axis.parentNode||this.itemSet.dom.axis.appendChild(this.dom.axis)},s.prototype.hide=function(){var t=this.dom.label;t.parentNode&&t.parentNode.removeChild(t);var e=this.dom.foreground;e.parentNode&&e.parentNode.removeChild(e);var i=this.dom.background;i.parentNode&&i.parentNode.removeChild(i);var s=this.dom.axis;s.parentNode&&s.parentNode.removeChild(s)},s.prototype.add=function(t){if(this.items[t.id]=t,t.setParent(this),-1==this.visibleItems.indexOf(t)){var e=this.itemSet.body.range;this._checkIfVisible(t,this.visibleItems,e)}},s.prototype.remove=function(t){delete this.items[t.id],t.setParent(this.itemSet);var e=this.visibleItems.indexOf(t);-1!=e&&this.visibleItems.splice(e,1)},s.prototype.removeFromDataSet=function(t){this.itemSet.removeItem(t.id)},s.prototype.order=function(){var t=o.toArray(this.items);this.orderedItems.byStart=t,this.orderedItems.byEnd=this._constructByEndArray(t),n.orderByStart(this.orderedItems.byStart),n.orderByEnd(this.orderedItems.byEnd)},s.prototype._constructByEndArray=function(t){for(var e=[],i=0;i0)for(n=0;n=0&&!this._checkIfInvisible(t.byStart[n],r,i);n--);for(n=s+1;n=0&&!this._checkIfInvisible(t.byEnd[n],r,i);n--);for(n=a+1;ne;e++)s=this.selection[e],o=this.items[s],o&&o.unselect();for(this.selection=[],e=0,i=t.length;i>e;e++)s=t[e],o=this.items[s],o&&(this.selection.push(s),o.select())}},s.prototype.getSelection=function(){return this.selection.concat([])},s.prototype.getVisibleItems=function(){var t=this.body.range.getRange(),e=this.body.util.toScreen(t.start),i=this.body.util.toScreen(t.end),s=[];for(var o in this.groups)if(this.groups.hasOwnProperty(o))for(var n=this.groups[o],r=n.visibleItems,a=0;ae&&s.push(h.id)}return s},s.prototype._deselect=function(t){for(var e=this.selection,i=0,s=e.length;s>i;i++)if(e[i]==t){e.splice(i,1);break}},s.prototype.redraw=function(){var t=this.options.margin,e=this.body.range,i=n.option.asSize,s=this.options,o=s.orientation,r=!1,a=this.dom.frame,h=s.editable.updateTime||s.editable.updateGroup;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},f={item:t.item,axis:t.item.vertical/2},m=0,g=t.axis+t.item.vertical;return n.forEach(this.groups,function(t){var i=t==p?u:f,s=t.redraw(e,i,c);r=s||r,m+=t.height}),m=Math.max(m,g),this.stackDirty=!1,a.style.height=i(m),this.props.top=a.offsetTop,this.props.left=a.offsetLeft,this.props.width=a.offsetWidth,this.props.height=m,this.dom.axis.style.top=i("top"==o?this.body.domProps.top.height+this.body.domProps.border.top:this.body.domProps.top.height+this.body.domProps.centerContainer.height),this.dom.axis.style.left=this.body.domProps.border.left+"px",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[u];return i||null},s.prototype._updateUngrouped=function(){var t=this.groups[u];if(this.groupsData)t&&(t.hide(),delete this.groups[u]);else if(!t){var e=null,i=null;t=new d(e,i,this),this.groups[u]=t;for(var s in this.items)this.items.hasOwnProperty(s)&&t.add(this.items[s]);t.show()}},s.prototype.getLabelSet=function(){return this.dom.labelSet},s.prototype.setItems=function(t){var e,i=this,s=this.itemsData;if(t){if(!(t instanceof 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")},s.prototype.getGroups=function(){return this.groupsData},s.prototype.removeItem=function(t){var e=this.itemsData.get(t),i=this.itemsData.getDataSet();e&&this.options.onRemove(e,function(e){e&&i.remove(t)})},s.prototype._onUpdate=function(t){var e=this;t.forEach(function(t){var i=e.itemsData.get(t,e.itemOptions),o=e.items[t],n=i.type||e.options.type||(i.end?"range":"box"),r=s.types[n];if(o&&(r&&o instanceof r?e._updateItem(o,i):(e._removeItem(o),o=null)),!o){if(!r)throw new TypeError("rangeoverflow"==n?'Item type "rangeoverflow" is deprecated. Use css styling instead: .vis.timeline .item.range .content {overflow: visible;}':'Unknown item type "'+n+'"');o=new r(i,e.conversion,e.options),o.id=t,e._addItem(o)}}),this._order(),this.stackDirty=!0,this.body.emitter.emit("change")},s.prototype._onAdd=s.prototype._onUpdate,s.prototype._onRemove=function(t){var e=0,i=this;t.forEach(function(t){var s=i.items[t];s&&(e++,i._removeItem(s))}),e&&(this._order(),this.stackDirty=!0,this.body.emitter.emit("change"))},s.prototype._order=function(){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==u)throw new Error("Illegal group id. "+t+" is a reserved id.");var o=Object.create(e.options);n.extend(o,{height:null}),s=new d(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")},s.prototype._onRemoveGroups=function(t){var e=this.groups;t.forEach(function(t){var i=e[t];i&&(i.hide(),delete e[t])}),this.markDirty(),this.body.emitter.emit("change")},s.prototype._orderGroups=function(){if(this.groupsData){var t=this.groupsData.getIds({order:this.options.groupOrder}),e=!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.groupsData?t.data.group:u,i=this.groups[e];i&&i.add(t)},s.prototype._updateItem=function(t,e){var i=t.data.group;if(t.data=e,t.displayed&&t.redraw(),i!=t.data.group){var s=this.groups[i];s&&s.remove(t);var o=this.groupsData?t.data.group:u,n=this.groups[o];n&&n.add(t)}},s.prototype._removeItem=function(t){t.hide(),delete this.items[t.id];var e=this.selection.indexOf(t.id);-1!=e&&this.selection.splice(e,1);var i=this.groupsData?t.data.group:u,s=this.groups[i];s&&s.remove(t)},s.prototype._constructByEndArray=function(t){for(var e=[],i=0;i0||o.length>0)&&this.body.emitter.emit("select",{items:this.getSelection()}),t.stopPropagation()}},s.prototype._onAddItem=function(t){if(this.options.selectable&&this.options.editable.add){var e=this,i=this.body.util.snap||null,o=s.itemFromTarget(t);if(o){var r=e.itemsData.get(o.id);this.options.onUpdate(r,function(t){t&&e.itemsData.update(t)})}else{var a=n.getAbsoluteLeft(this.dom.frame),h=t.gesture.center.pageX-a,d=this.body.util.toTime(h),l={start:i?i(d):d,content:"new item"};if("range"===this.options.type){var c=this.body.util.toTime(h+this.props.width/5);l.end=i?i(c):c}l[this.itemsData.fieldId]=n.randomUUID();var p=s.groupFromTarget(t);p&&(l.group=p.groupId),this.options.onAdd(l,function(t){t&&e.itemsData.add(l)})}}},s.prototype._onMultiSelectItem=function(t){if(this.options.selectable){var e,i=s.itemFromTarget(t);if(i){e=this.getSelection();var o=e.indexOf(i.id);-1==o?e.push(i.id):e.splice(o,1),this.setSelection(e),this.body.emitter.emit("select",{items:this.getSelection()}),t.stopPropagation()}}},s.itemFromTarget=function(t){for(var e=t.target;e;){if(e.hasOwnProperty("timeline-item"))return e["timeline-item"];e=e.parentNode}return null},s.groupFromTarget=function(t){for(var e=t.target;e;){if(e.hasOwnProperty("timeline-group"))return e["timeline-group"];e=e.parentNode}return null},s.itemSetFromTarget=function(t){for(var e=t.target;e;){if(e.hasOwnProperty("timeline-itemset"))return e["timeline-itemset"];e=e.parentNode}return null},t.exports=s},function(t,e,i){function s(t,e,i){this.body=t,this.defaultOptions={enabled:!0,icons:!0,iconSize:20,iconSpacing:6,left:{visible:!0,position:"top-left"},right:{visible:!0,position:"top-left"}},this.side=i,this.options=o.extend({},this.defaultOptions),this.svgElements={},this.dom={},this.groups={},this.amountOfGroups=0,this._create(),this.setOptions(e)}var o=i(1),n=i(2),r=i(18);s.prototype=new r,s.prototype.addGroup=function(t,e){this.groups.hasOwnProperty(t)||(this.groups[t]=e),this.amountOfGroups+=1},s.prototype.updateGroup=function(t,e){this.groups[t]=e},s.prototype.removeGroup=function(t){this.groups.hasOwnProperty(t)&&(delete this.groups[t],this.amountOfGroups-=1)},s.prototype._create=function(){this.dom.frame=document.createElement("div"),this.dom.frame.className="legend",this.dom.frame.style.position="absolute",this.dom.frame.style.top="10px",this.dom.frame.style.display="block",this.dom.textArea=document.createElement("div"),this.dom.textArea.className="legendText",this.dom.textArea.style.position="relative",this.dom.textArea.style.top="0px",this.svg=document.createElementNS("http://www.w3.org/2000/svg","svg"),this.svg.style.position="absolute",this.svg.style.top="0px",this.svg.style.width=this.options.iconSize+5+"px",this.dom.frame.appendChild(this.svg),this.dom.frame.appendChild(this.dom.textArea)},s.prototype.hide=function(){this.dom.frame.parentNode&&this.dom.frame.parentNode.removeChild(this.dom.frame)},s.prototype.show=function(){this.dom.frame.parentNode||this.body.dom.center.appendChild(this.dom.frame)},s.prototype.setOptions=function(t){var e=["enabled","orientation","icons","left","right"];o.selectiveDeepExtend(e,this.options,t)},s.prototype.redraw=function(){var t=0;for(var e in this.groups)this.groups.hasOwnProperty(e)&&1==this.groups[e].visible&&t++;if(0==this.options[this.side].visible||0==this.amountOfGroups||0==this.options.enabled||0==t)this.hide();else{this.show(),"top-left"==this.options[this.side].position||"bottom-left"==this.options[this.side].position?(this.dom.frame.style.left="4px",this.dom.frame.style.textAlign="left",this.dom.textArea.style.textAlign="left",this.dom.textArea.style.left=this.options.iconSize+15+"px",this.dom.textArea.style.right="",this.svg.style.left="0px",this.svg.style.right=""):(this.dom.frame.style.right="4px",this.dom.frame.style.textAlign="right",this.dom.textArea.style.textAlign="right",this.dom.textArea.style.right=this.options.iconSize+15+"px",this.dom.textArea.style.left="",this.svg.style.right="0px",this.svg.style.left=""),"top-left"==this.options[this.side].position||"top-right"==this.options[this.side].position?(this.dom.frame.style.top=4-Number(this.body.dom.center.style.top.replace("px",""))+"px",this.dom.frame.style.bottom=""):(this.dom.frame.style.bottom=4-Number(this.body.dom.center.style.top.replace("px",""))+"px",this.dom.frame.style.top=""),0==this.options.icons?(this.dom.frame.style.width=this.dom.textArea.offsetWidth+10+"px",this.dom.textArea.style.right="",this.dom.textArea.style.left="",this.svg.style.width="0px"):(this.dom.frame.style.width=this.options.iconSize+15+this.dom.textArea.offsetWidth+10+"px",this.drawLegendIcons()); -var i="";for(var e in this.groups)this.groups.hasOwnProperty(e)&&1==this.groups[e].visible&&(i+=this.groups[e].content+"
");this.dom.textArea.innerHTML=i,this.dom.textArea.style.lineHeight=.75*this.options.iconSize+this.options.iconSpacing+"px"}},s.prototype.drawLegendIcons=function(){if(this.dom.frame.parentNode){n.prepareElements(this.svgElements);var t=window.getComputedStyle(this.dom.frame).paddingTop,e=Number(t.replace("px","")),i=e,s=this.options.iconSize,o=.75*this.options.iconSize,r=e+.5*o+3;this.svg.style.width=s+5+e+"px";for(var a in this.groups)this.groups.hasOwnProperty(a)&&1==this.groups[a].visible&&(this.groups[a].drawIcon(i,r,this.svgElements,this.svg,s,o),r+=o+this.options.iconSpacing);n.cleanupElements(this.svgElements)}},t.exports=s},function(t,e,i){function s(t,e){this.id=o.randomUUID(),this.body=t,this.defaultOptions={yAxisOrientation:"left",defaultGroup:"default",sort:!0,sampling:!0,graphHeight:"400px",shaded:{enabled:!1,orientation:"bottom"},style:"line",barChart:{width:50,align:"center"},catmullRom:{enabled:!0,parametrization:"centripetal",alpha:.5},drawPoints:{enabled:!0,size:6,style:"square"},dataAxis:{showMinorLabels:!0,showMajorLabels:!0,icons:!1,width:"40px",visible:!0},legend:{enabled:!1,icons:!0,left:{visible:!0,position:"top-left"},right:{visible:!0,position:"top-right"}}},this.options=o.extend({},this.defaultOptions),this.dom={},this.props={},this.hammer=null,this.groups={};var i=this;this.itemsData=null,this.groupsData=null,this.itemListeners={add:function(t,e){i._onAdd(e.items)},update:function(t,e){i._onUpdate(e.items)},remove:function(t,e){i._onRemove(e.items)}},this.groupListeners={add:function(t,e){i._onAddGroups(e.items)},update:function(t,e){i._onUpdateGroups(e.items)},remove:function(t,e){i._onRemoveGroups(e.items)}},this.items={},this.selection=[],this.lastStart=this.body.range.start,this.touchParams={},this.svgElements={},this.setOptions(e),this.groupsUsingDefaultStyles=[0],this.body.emitter.on("rangechange",function(){if(0!=i.lastStart){var t=i.body.range.start-i.lastStart,e=i.body.range.end-i.body.range.start;if(0!=i.width){var s=i.width/e,o=t*s;i.svg.style.left=-i.width-o+"px"}}}),this.body.emitter.on("rangechanged",function(){i.lastStart=i.body.range.start,i.svg.style.left=o.option.asSize(-i.width),i._updateGraph.apply(i)}),this._create(),this.body.emitter.emit("change")}var o=i(1),n=i(2),r=i(3),a=i(4),h=i(18),d=i(21),l=i(22),c=i(25),p="__ungrouped__";s.prototype=new h,s.prototype._create=function(){var t=document.createElement("div");t.className="LineGraph",this.dom.frame=t,this.svg=document.createElementNS("http://www.w3.org/2000/svg","svg"),this.svg.style.position="relative",this.svg.style.height=(""+this.options.graphHeight).replace("px","")+"px",this.svg.style.display="block",t.appendChild(this.svg),this.options.dataAxis.orientation="left",this.yAxisLeft=new d(this.body,this.options.dataAxis,this.svg),this.options.dataAxis.orientation="right",this.yAxisRight=new d(this.body,this.options.dataAxis,this.svg),delete this.options.dataAxis.orientation,this.legendLeft=new c(this.body,this.options.legend,"left"),this.legendRight=new c(this.body,this.options.legend,"right"),this.show()},s.prototype.setOptions=function(t){if(t){var e=["sampling","defaultGroup","graphHeight","yAxisOrientation","style","barChart","dataAxis","sort"];o.selectiveDeepExtend(e,this.options,t),o.mergeOptions(this.options,t,"catmullRom"),o.mergeOptions(this.options,t,"drawPoints"),o.mergeOptions(this.options,t,"shaded"),o.mergeOptions(this.options,t,"legend"),t.catmullRom&&"object"==typeof t.catmullRom&&t.catmullRom.parametrization&&("uniform"==t.catmullRom.parametrization?this.options.catmullRom.alpha=0:"chordal"==t.catmullRom.parametrization?this.options.catmullRom.alpha=1:(this.options.catmullRom.parametrization="centripetal",this.options.catmullRom.alpha=.5)),this.yAxisLeft&&void 0!==t.dataAxis&&(this.yAxisLeft.setOptions(this.options.dataAxis),this.yAxisRight.setOptions(this.options.dataAxis)),this.legendLeft&&void 0!==t.legend&&(this.legendLeft.setOptions(this.options.legend),this.legendRight.setOptions(this.options.legend)),this.groups.hasOwnProperty(p)&&this.groups[p].setOptions(t)}this.dom.frame&&this._updateGraph()},s.prototype.hide=function(){this.dom.frame.parentNode&&this.dom.frame.parentNode.removeChild(this.dom.frame)},s.prototype.show=function(){this.dom.frame.parentNode||this.body.dom.center.appendChild(this.dom.frame)},s.prototype.setItems=function(t){var e,i=this,s=this.itemsData;if(t){if(!(t instanceof r||t instanceof a))throw new TypeError("Data must be an instance of DataSet or DataView");this.itemsData=t}else this.itemsData=null;if(s&&(o.forEach(this.itemListeners,function(t,e){s.off(e,t)}),e=s.getIds(),this._onRemove(e)),this.itemsData){var n=this.id;o.forEach(this.itemListeners,function(t,e){i.itemsData.on(e,t,n)}),e=this.itemsData.getIds(),this._onAdd(e)}this._updateUngrouped(),this._updateGraph(),this.redraw()},s.prototype.setGroups=function(t){var e,i=this;if(this.groupsData&&(o.forEach(this.groupListeners,function(t,e){i.groupsData.unsubscribe(e,t)}),e=this.groupsData.getIds(),this.groupsData=null,this._onRemoveGroups(e)),t){if(!(t instanceof r||t instanceof a))throw new TypeError("Data must be an instance of DataSet or DataView");this.groupsData=t}else this.groupsData=null;if(this.groupsData){var s=this.id;o.forEach(this.groupListeners,function(t,e){i.groupsData.on(e,t,s)}),e=this.groupsData.getIds(),this._onAddGroups(e)}this._onUpdate()},s.prototype._onUpdate=function(){this._updateUngrouped(),this._updateAllGroupData(),this._updateGraph(),this.redraw()},s.prototype._onAdd=function(t){this._onUpdate(t)},s.prototype._onRemove=function(t){this._onUpdate(t)},s.prototype._onUpdateGroups=function(t){for(var e=0;e0){for(s=0;su){e.push(g);break}e.push(g)}}else for(var m=0;mp&&g.x0?(i=this._preprocessData(e,t),h.push({min:i.min,max:i.max}),r.push(i.data)):(h.push({}),r.push([]))}else h.push({}),r.push([]);if(d=this._updateYAxis(l,h),1==d)return n.cleanupElements(this.svgElements),void this.body.emitter.emit("change");for(s=0;s0){for(var p=0;pi?i:a,d=s>d?s:d):(r=!0,h=h>i?i:h,l=s>l?s:l))}1==n&&this.yAxisLeft.setRange(a,d),1==r&&this.yAxisRight.setRange(h,l)}return o=this._toggleAxisVisiblity(n,this.yAxisLeft)||o,o=this._toggleAxisVisiblity(r,this.yAxisRight)||o,1==r&&1==n?(this.yAxisLeft.drawIcons=!0,this.yAxisRight.drawIcons=!0):(this.yAxisLeft.drawIcons=!1,this.yAxisRight.drawIcons=!1),this.yAxisRight.master=!n,0==this.yAxisRight.master?(this.yAxisLeft.lineOffset=1==r?this.yAxisRight.width:0,o=this.yAxisLeft.redraw()||o,this.yAxisRight.stepPixelsForced=this.yAxisLeft.stepPixels,o=this.yAxisRight.redraw()||o):o=this.yAxisRight.redraw()||o,o},s.prototype._toggleAxisVisiblity=function(t,e){var i=!1;return 0==t?e.dom.frame.parentNode&&(e.hide(),i=!0):e.dom.frame.parentNode||(e.show(),i=!0),i},s.prototype._drawBarGraph=function(t,e){if(null!=t&&t.length>0){var i,s=.1*e.options.barChart.width,o=0,r=e.options.barChart.width;"left"==e.options.barChart.align?o-=.5*r:"right"==e.options.barChart.align&&(o+=.5*r);for(var a=0;a0&&(i=Math.min(i,Math.abs(t[a-1].x-t[a].x))),r>i&&(r=s>i?s:i),n.drawBar(t[a].x+o,t[a].y,r,e.zeroPosition-t[a].y,e.className+" bar",this.svgElements,this.svg);1==e.options.drawPoints.enabled&&this._drawPoints(t,e,this.svgElements,this.svg,o)}},s.prototype._drawLineGraph=function(t,e){if(null!=t&&t.length>0){var i,s,o=Number(this.svg.style.height.replace("px",""));if(i=n.getSVGElement("path",this.svgElements,this.svg),i.setAttributeNS(null,"class",e.className),s=1==e.options.catmullRom.enabled?this._catmullRom(t,e):this._linear(t),1==e.options.shaded.enabled){var r,a=n.getSVGElement("path",this.svgElements,this.svg);r="top"==e.options.shaded.orientation?"M"+t[0].x+",0 "+s+"L"+t[t.length-1].x+",0":"M"+t[0].x+","+o+" "+s+"L"+t[t.length-1].x+","+o,a.setAttributeNS(null,"class",e.className+" fill"),a.setAttributeNS(null,"d",r)}i.setAttributeNS(null,"d","M"+s),1==e.options.drawPoints.enabled&&this._drawPoints(t,e,this.svgElements,this.svg)}},s.prototype._drawPoints=function(t,e,i,s,o){void 0===o&&(o=0);for(var r=0;rp;p+=r)i=n(t[p].x)+this.width-1,s=t[p].y,o.push({x:i,y:s}),h=h>s?s:h,d=s>d?s:d;return{min:h,max:d,data:o}},s.prototype._convertYvalues=function(t,e){var i,s,o=[],n=this.yAxisLeft,r=Number(this.svg.style.height.replace("px",""));"right"==e.options.yAxisOrientation&&(n=this.yAxisRight);for(var a=0;al;l++)e=0==l?t[0]:t[l-1],i=t[l],s=t[l+1],o=d>l+2?t[l+2]:s,n={x:(-e.x+6*i.x+s.x)*h,y:(-e.y+6*i.y+s.y)*h},r={x:(i.x+6*s.x-o.x)*h,y:(i.y+6*s.y-o.y)*h},a+="C"+n.x+","+n.y+" "+r.x+","+r.y+" "+s.x+","+s.y+" ";return a},s.prototype._catmullRom=function(t,e){var i=e.options.catmullRom.alpha;if(0==i||void 0===i)return this._catmullRomUniform(t);for(var s,o,n,r,a,h,d,l,c,p,u,f,m,g,v,y,b,_,x,w=Math.round(t[0].x)+","+Math.round(t[0].y)+" ",S=t.length,M=0;S-1>M;M++)s=0==M?t[0]:t[M-1],o=t[M],n=t[M+1],r=S>M+2?t[M+2]:n,d=Math.sqrt(Math.pow(s.x-o.x,2)+Math.pow(s.y-o.y,2)),l=Math.sqrt(Math.pow(o.x-n.x,2)+Math.pow(o.y-n.y,2)),c=Math.sqrt(Math.pow(n.x-r.x,2)+Math.pow(n.y-r.y,2)),g=Math.pow(c,i),y=Math.pow(c,2*i),v=Math.pow(l,i),b=Math.pow(l,2*i),x=Math.pow(d,i),_=Math.pow(d,2*i),p=2*_+3*x*v+b,u=2*y+3*g*v+b,f=3*x*(x+v),f>0&&(f=1/f),m=3*g*(g+v),m>0&&(m=1/m),a={x:(-b*s.x+p*o.x+_*n.x)*f,y:(-b*s.y+p*o.y+_*n.y)*f},h={x:(y*o.x+u*n.x-b*r.x)*m,y:(y*o.y+u*n.y-b*r.y)*m},0==a.x&&0==a.y&&(a=o),0==h.x&&0==h.y&&(h=n),w+="C"+a.x+","+a.y+" "+h.x+","+h.y+" "+n.x+","+n.y+" ";return w},s.prototype._linear=function(t){for(var e="",i=0;id;){d++;var l=n.getCurrent(),c=this.body.util.toScreen(l),p=n.isMajor();this.options.showMinorLabels&&this._repaintMinorText(c,n.getLabelMinor(),t),p&&this.options.showMajorLabels?(c>0&&(void 0==h&&(h=c),this._repaintMajorText(c,n.getLabelMajor(),t)),this._repaintMajorLine(c,t)):this._repaintMinorLine(c,t),n.next()}if(this.options.showMajorLabels){var u=this.body.util.toTime(0),f=n.getLabelMajor(u),m=f.length*(this.props.majorCharWidth||10)+10;(void 0==h||h>m)&&this._repaintMajorText(0,f,t)}o.forEach(this.dom.redundant,function(t){for(;t.length;){var e=t.pop();e&&e.parentNode&&e.parentNode.removeChild(e)}})},s.prototype._repaintMinorText=function(t,e,i){var s=this.dom.redundant.minorTexts.shift();if(!s){var o=document.createTextNode("");s=document.createElement("div"),s.appendChild(o),s.className="text minor",this.dom.foreground.appendChild(s)}this.dom.minorTexts.push(s),s.childNodes[0].nodeValue=e,s.style.top="top"==i?this.props.majorLabelHeight+"px":"0",s.style.left=t+"px"},s.prototype._repaintMajorText=function(t,e,i){var s=this.dom.redundant.majorTexts.shift();if(!s){var o=document.createTextNode(e);s=document.createElement("div"),s.className="text major",s.appendChild(o),this.dom.foreground.appendChild(s)}this.dom.majorTexts.push(s),s.childNodes[0].nodeValue=e,s.style.top="top"==i?"0":this.props.minorLabelHeight+"px",s.style.left=t+"px"},s.prototype._repaintMinorLine=function(t,e){var i=this.dom.redundant.minorLines.shift();i||(i=document.createElement("div"),i.className="grid vertical minor",this.dom.background.appendChild(i)),this.dom.minorLines.push(i);var s=this.props;i.style.top="top"==e?s.majorLabelHeight+"px":this.body.domProps.top.height+"px",i.style.height=s.minorLineHeight+"px",i.style.left=t-s.minorLineWidth/2+"px"},s.prototype._repaintMajorLine=function(t,e){var i=this.dom.redundant.majorLines.shift();i||(i=document.createElement("DIV"),i.className="grid vertical major",this.dom.background.appendChild(i)),this.dom.majorLines.push(i);var s=this.props;i.style.top="top"==e?"0":this.body.domProps.top.height+"px",i.style.left=t-s.majorLineWidth/2+"px",i.style.height=s.majorLineHeight+"px"},s.prototype._calculateCharSize=function(){this.dom.measureCharMinor||(this.dom.measureCharMinor=document.createElement("DIV"),this.dom.measureCharMinor.className="text minor measure",this.dom.measureCharMinor.style.position="absolute",this.dom.measureCharMinor.appendChild(document.createTextNode("0")),this.dom.foreground.appendChild(this.dom.measureCharMinor)),this.props.minorCharHeight=this.dom.measureCharMinor.clientHeight,this.props.minorCharWidth=this.dom.measureCharMinor.clientWidth,this.dom.measureCharMajor||(this.dom.measureCharMajor=document.createElement("DIV"),this.dom.measureCharMajor.className="text minor measure",this.dom.measureCharMajor.style.position="absolute",this.dom.measureCharMajor.appendChild(document.createTextNode("0")),this.dom.foreground.appendChild(this.dom.measureCharMajor)),this.props.majorCharHeight=this.dom.measureCharMajor.clientHeight,this.props.majorCharWidth=this.dom.measureCharMajor.clientWidth},s.prototype.snap=function(t){return this.step.snap(t)},t.exports=s},function(t,e,i){function s(t,e,i){this.id=null,this.parent=null,this.data=t,this.dom=null,this.conversion=e||{},this.options=i||{},this.selected=!1,this.displayed=!1,this.dirty=!0,this.top=null,this.left=null,this.width=null,this.height=null}var o=i(41);s.prototype.select=function(){this.selected=!0,this.displayed&&this.redraw()},s.prototype.unselect=function(){this.selected=!1,this.displayed&&this.redraw()},s.prototype.setParent=function(t){this.displayed?(this.hide(),this.parent=t,this.parent&&this.show()):this.parent=t},s.prototype.isVisible=function(){return!1},s.prototype.show=function(){return!1},s.prototype.hide=function(){return!1},s.prototype.redraw=function(){},s.prototype.repositionX=function(){},s.prototype.repositionY=function(){},s.prototype._repaintDeleteButton=function(t){if(this.selected&&this.options.editable.remove&&!this.dom.deleteButton){var e=this,i=document.createElement("div");i.className="delete",i.title="Delete this item",o(i,{preventDefault:!0}).on("tap",function(t){e.parent.removeFromDataSet(e),t.stopPropagation()}),t.appendChild(i),this.dom.deleteButton=i}else!this.selected&&this.dom.deleteButton&&(this.dom.deleteButton.parentNode&&this.dom.deleteButton.parentNode.removeChild(this.dom.deleteButton),this.dom.deleteButton=null)},t.exports=s},function(t,e,i){function s(t,e,i){if(this.props={dot:{width:0,height:0},line:{width:0,height:0}},t&&void 0==t.start)throw new Error('Property "start" missing in item '+t);o.call(this,t,e,i)}var o=i(28);s.prototype=new o(null,null,null),s.prototype.isVisible=function(t){var e=(t.end-t.start)/4;return this.data.start>t.start-e&&this.data.startt.start-e&&this.data.startt.start},s.prototype.redraw=function(){var t=this.dom;if(t||(this.dom={},t=this.dom,t.box=document.createElement("div"),t.content=document.createElement("div"),t.content.className="content",t.box.appendChild(t.content),t.box["timeline-item"]=this),!this.parent)throw new Error("Cannot redraw item: no parent attached");if(!t.box.parentNode){var e=this.parent.dom.foreground;if(!e)throw new Error("Cannot redraw time axis: parent has no foreground container element");e.appendChild(t.box)}if(this.displayed=!0,this.data.content!=this.content){if(this.content=this.data.content,this.content instanceof Element)t.content.innerHTML="",t.content.appendChild(this.content);else{if(void 0==this.data.content)throw new Error('Property "content" missing in item '+this.data.id);t.content.innerHTML=this.content}this.dirty=!0}this.data.title!=this.title&&(t.box.title=this.data.title,this.title=this.data.title);var i=(this.data.className?" "+this.data.className:"")+(this.selected?" selected":"");this.className!=i&&(this.className=i,t.box.className=this.baseClassName+i,this.dirty=!0),this.dirty&&(this.overflow="hidden"!==window.getComputedStyle(t.content).overflow,this.props.content.width=this.dom.content.offsetWidth,this.height=this.dom.box.offsetHeight,this.dirty=!1),this._repaintDeleteButton(t.box),this._repaintDragLeft(),this._repaintDragRight()},s.prototype.show=function(){this.displayed||this.redraw()},s.prototype.hide=function(){if(this.displayed){var t=this.dom.box;t.parentNode&&t.parentNode.removeChild(t),this.top=null,this.left=null,this.displayed=!1}},s.prototype.repositionX=function(){var t,e=this.props,i=this.parent.width,s=this.conversion.toScreen(this.data.start),o=this.conversion.toScreen(this.data.end),n=this.options.padding;-i>s&&(s=-i),o>2*i&&(o=2*i);var r=Math.max(o-s,1);this.overflow?(t=Math.max(-s,0),this.left=s,this.width=r+this.props.content.width):(t=0>s?Math.min(-s,o-s-e.content.width-2*n):0,this.left=s,this.width=r),this.dom.box.style.left=this.left+"px",this.dom.box.style.width=r+"px",this.dom.content.style.left=t+"px"},s.prototype.repositionY=function(){var t=this.options.orientation,e=this.dom.box;e.style.top="top"==t?this.top+"px":this.parent.height-this.top-this.height+"px"},s.prototype._repaintDragLeft=function(){if(this.selected&&this.options.editable.updateTime&&!this.dom.dragLeft){var t=document.createElement("div");t.className="drag-left",t.dragLeftItem=this,o(t,{preventDefault:!0}).on("drag",function(){}),this.dom.box.appendChild(t),this.dom.dragLeft=t}else!this.selected&&this.dom.dragLeft&&(this.dom.dragLeft.parentNode&&this.dom.dragLeft.parentNode.removeChild(this.dom.dragLeft),this.dom.dragLeft=null)},s.prototype._repaintDragRight=function(){if(this.selected&&this.options.editable.updateTime&&!this.dom.dragRight){var t=document.createElement("div");t.className="drag-right",t.dragRightItem=this,o(t,{preventDefault:!0}).on("drag",function(){}),this.dom.box.appendChild(t),this.dom.dragRight=t}else!this.selected&&this.dom.dragRight&&(this.dom.dragRight.parentNode&&this.dom.dragRight.parentNode.removeChild(this.dom.dragRight),this.dom.dragRight=null)},t.exports=s},function(t,e,i){function s(t,e,i){if(!(this instanceof s))throw new SyntaxError("Constructor must be called with the new operator");this._initializeMixinLoaders(),this.containerElement=t,this.renderRefreshRate=60,this.renderTimestep=1e3/this.renderRefreshRate,this.renderTime=.5*this.renderTimestep,this.maxPhysicsTicksPerRender=3,this.physicsDiscreteStepsize=.5,this.initializing=!0,this.triggerFunctions={add:null,edit:null,editEdge:null,connect:null,del:null},this.defaultOptions={nodes:{mass:1,radiusMin:10,radiusMax:30,radius:10,shape:"ellipse",image:void 0,widthMin:16,widthMax:64,fixed:!1,fontColor:"black",fontSize:14,fontFace:"verdana",level:-1,color:{border:"#2B7CE9",background:"#97C2FC",highlight:{border:"#2B7CE9",background:"#D2E5FF"},hover:{border:"#2B7CE9",background:"#D2E5FF"}},borderColor:"#2B7CE9",backgroundColor:"#97C2FC",highlightColor:"#D2E5FF",group:void 0,borderWidth:1},edges:{widthMin:1,widthMax:15,width:1,widthSelectionMultiplier:2,hoverWidth:1.5,style:"line",color:{color:"#848484",highlight:"#848484",hover:"#848484"},fontColor:"#343434",fontSize:14,fontFace:"arial",fontFill:"white",arrowScaleFactor:1,dash:{length:10,gap:5,altLength:void 0},inheritColor:"from"},configurePhysics:!1,physics:{barnesHut:{enabled:!0,theta:1/.6,gravitationalConstant:-2e3,centralGravity:.3,springLength:95,springConstant:.04,damping:.09},repulsion:{centralGravity:0,springLength:200,springConstant:.05,nodeDistance:100,damping:.09},hierarchicalRepulsion:{enabled:!1,centralGravity:0,springLength:100,springConstant:.01,nodeDistance:150,damping:.09},damping:null,centralGravity:null,springLength:null,springConstant:null},clustering:{enabled:!1,initialMaxNodes:100,clusterThreshold:500,reduceToNodes:300,chainThreshold:.4,clusterEdgeThreshold:20,sectorThreshold:100,screenSizeThreshold:.2,fontSizeMultiplier:4,maxFontSize:1e3,forceAmplification:.1,distanceAmplification:.1,edgeGrowth:20,nodeScaling:{width:1,height:1,radius:1},maxNodeSizeIncrements:600,activeAreaBoxSize:80,clusterLevelDifference:2},navigation:{enabled:!1},keyboard:{enabled:!1,speed:{x:10,y:10,zoom:.02}},dataManipulation:{enabled:!1,initiallyVisible:!1},hierarchicalLayout:{enabled:!1,levelSeparation:150,nodeSpacing:100,direction:"UD"},freezeForStabilization:!1,smoothCurves:{enabled:!0,dynamic:!0,type:"continuous",roundness:.5},dynamicSmoothCurves:!0,maxVelocity:30,minVelocity:.1,stabilize:!0,stabilizationIterations:1e3,labels:{add:"Add Node",edit:"Edit",link:"Add Link",del:"Delete selected",editNode:"Edit Node",editEdge:"Edit Edge",back:"Back",addDescription:"Click in an empty space to place a new node.",linkDescription:"Click on a node and drag the edge to another node to connect them.",editEdgeDescription:"Click on the control points and drag them to a node to connect to it.",addError:"The function for add does not support two arguments (data,callback).",linkError:"The function for connect does not support two arguments (data,callback).",editError:"The function for edit does not support two arguments (data, callback).",editBoundError:"No edit function has been bound to this button.",deleteError:"The function for delete does not support two arguments (data, callback).",deleteClusterError:"Clusters cannot be deleted."},tooltip:{delay:300,fontColor:"black",fontSize:14,fontFace:"verdana",color:{border:"#666",background:"#FFFFC6"}},dragNetwork:!0,dragNodes:!0,zoomable:!0,hover:!1,hideEdgesOnDrag:!1,hideNodesOnDrag:!1,width:"100%",height:"100%",selectable:!0},this.constants=a.extend({},this.defaultOptions),this.hoverObj={nodes:{},edges:{}},this.controlNodesActive=!1; -var o=this;this.groups=new u,this.images=new f,this.images.setOnloadCallback(function(){o._redraw()}),this.xIncrement=0,this.yIncrement=0,this.zoomIncrement=0,this._loadPhysicsSystem(),this._create(),this._loadSectorSystem(),this._loadClusterSystem(),this._loadSelectionSystem(),this._loadHierarchySystem(),this._setTranslation(this.frame.clientWidth/2,this.frame.clientHeight/2),this._setScale(1),this.setOptions(i),this.freezeSimulation=!1,this.cachedFunctions={},this.calculationNodes={},this.calculationNodeIndices=[],this.nodeIndices=[],this.nodes={},this.edges={},this.canvasTopLeft={x:0,y:0},this.canvasBottomRight={x:0,y:0},this.pointerPosition={x:0,y:0},this.areaCenter={},this.scale=1,this.previousScale=this.scale,this.nodesData=null,this.edgesData=null,this.nodesListeners={add:function(t,e){o._addNodes(e.items),o.start()},update:function(t,e){o._updateNodes(e.items),o.start()},remove:function(t,e){o._removeNodes(e.items),o.start()}},this.edgesListeners={add:function(t,e){o._addEdges(e.items),o.start()},update:function(t,e){o._updateEdges(e.items),o.start()},remove:function(t,e){o._removeEdges(e.items),o.start()}},this.moving=!0,this.timer=void 0,this.setData(e,this.constants.clustering.enabled||this.constants.hierarchicalLayout.enabled),this.initializing=!1,1==this.constants.hierarchicalLayout.enabled?this._setupHierarchicalLayout():0==this.constants.stabilize&&this.zoomExtent(!0,this.constants.clustering.enabled),this.constants.clustering.enabled&&this.startWithClustering()}var o=i(46),n=i(41),r=i(48),a=i(1),h=i(43),d=i(3),l=i(4),c=i(38),p=i(39),u=i(34),f=i(35),m=i(36),g=i(33),v=i(37),y=i(45);i(44),o(s.prototype),s.prototype._getScriptPath=function(){for(var t=document.getElementsByTagName("script"),e=0;et.x&&(s=t.x),ot.y&&(e=t.y),i=this.constants.clustering.initialMaxNodes?49.07548/(o+142.05338)+91444e-8:12.662/(o+7.4147)+.0964822:1==this.constants.clustering.enabled&&o>=this.constants.clustering.initialMaxNodes?77.5271985/(o+187.266146)+476710517e-13:30.5062972/(o+19.93597763)+.08413486;var n=Math.min(this.frame.canvas.clientWidth/600,this.frame.canvas.clientHeight/600);i*=n}else{var r=1.1*(Math.abs(s.minX)+Math.abs(s.maxX)),a=1.1*(Math.abs(s.minY)+Math.abs(s.maxY)),h=this.frame.canvas.clientWidth/r,d=this.frame.canvas.clientHeight/a;i=d>=h?h:d}i>1&&(i=1),this._setScale(i),this._centerNetwork(s),0==e&&(this.moving=!0,this.start())},s.prototype._updateNodeIndexList=function(){this._clearNodeIndexList();for(var t in this.nodes)this.nodes.hasOwnProperty(t)&&this.nodeIndices.push(t)},s.prototype.setData=function(t,e){if(void 0===e&&(e=!1),t&&t.dot&&(t.nodes||t.edges))throw new SyntaxError('Data must contain either parameter "dot" or parameter pair "nodes" and "edges", but not both.');if(this.setOptions(t&&t.options),t&&t.dot){if(t&&t.dot){var i=c.DOTToGraph(t.dot);return void this.setData(i)}}else if(t&&t.gephi){if(t&&t.gephi){var s=p.parseGephi(t.gephi);return void this.setData(s)}}else this._setNodes(t&&t.nodes),this._setEdges(t&&t.edges);if(this._putDataInSector(),!e)if(this.constants.stabilize){var o=this;setTimeout(function(){o._stabilize(),o.start()},0)}else this.start()},s.prototype.setOptions=function(t){if(t){var e,i=["nodes","edges","smoothCurves","hierarchicalLayout","clustering","navigation","keyboard","dataManipulation","onAdd","onEdit","onEditEdge","onConnect","onDelete"];if(a.selectiveNotDeepExtend(i,this.constants,t),a.selectiveNotDeepExtend(["color"],this.constants.nodes,t.nodes),a.selectiveNotDeepExtend(["color","length"],this.constants.edges,t.edges),t.physics&&(a.mergeOptions(this.constants.physics,t.physics,"barnesHut"),a.mergeOptions(this.constants.physics,t.physics,"repulsion"),t.physics.hierarchicalRepulsion)){this.constants.hierarchicalLayout.enabled=!0,this.constants.physics.hierarchicalRepulsion.enabled=!0,this.constants.physics.barnesHut.enabled=!1;for(e in t.physics.hierarchicalRepulsion)t.physics.hierarchicalRepulsion.hasOwnProperty(e)&&(this.constants.physics.hierarchicalRepulsion[e]=t.physics.hierarchicalRepulsion[e])}if(t.onAdd&&(this.triggerFunctions.add=t.onAdd),t.onEdit&&(this.triggerFunctions.edit=t.onEdit),t.onEditEdge&&(this.triggerFunctions.editEdge=t.onEditEdge),t.onConnect&&(this.triggerFunctions.connect=t.onConnect),t.onDelete&&(this.triggerFunctions.del=t.onDelete),a.mergeOptions(this.constants,t,"smoothCurves"),a.mergeOptions(this.constants,t,"hierarchicalLayout"),a.mergeOptions(this.constants,t,"clustering"),a.mergeOptions(this.constants,t,"navigation"),a.mergeOptions(this.constants,t,"keyboard"),a.mergeOptions(this.constants,t,"dataManipulation"),t.dataManipulation&&(this.editMode=this.constants.dataManipulation.initiallyVisible),t.edges&&(void 0!==t.edges.color&&(a.isString(t.edges.color)?(this.constants.edges.color={},this.constants.edges.color.color=t.edges.color,this.constants.edges.color.highlight=t.edges.color,this.constants.edges.color.hover=t.edges.color):(void 0!==t.edges.color.color&&(this.constants.edges.color.color=t.edges.color.color),void 0!==t.edges.color.highlight&&(this.constants.edges.color.highlight=t.edges.color.highlight),void 0!==t.edges.color.hover&&(this.constants.edges.color.hover=t.edges.color.hover))),t.edges.fontColor||void 0!==t.edges.color&&(a.isString(t.edges.color)?this.constants.edges.fontColor=t.edges.color:void 0!==t.edges.color.color&&(this.constants.edges.fontColor=t.edges.color.color))),t.nodes&&t.nodes.color){var s=a.parseColor(t.nodes.color);this.constants.nodes.color.background=s.background,this.constants.nodes.color.border=s.border,this.constants.nodes.color.highlight.background=s.highlight.background,this.constants.nodes.color.highlight.border=s.highlight.border,this.constants.nodes.color.hover.background=s.hover.background,this.constants.nodes.color.hover.border=s.hover.border}if(t.groups)for(var o in t.groups)if(t.groups.hasOwnProperty(o)){var n=t.groups[o];this.groups.add(o,n)}if(t.tooltip){for(e in t.tooltip)t.tooltip.hasOwnProperty(e)&&(this.constants.tooltip[e]=t.tooltip[e]);t.tooltip.color&&(this.constants.tooltip.color=a.parseColor(t.tooltip.color))}}this._loadPhysicsSystem(),this._loadNavigationControls(),this._loadManipulationSystem(),this._configureSmoothCurves(),this._createKeyBinds(),this.setSize(this.constants.width,this.constants.height),this.moving=!0,this.start()},s.prototype._create=function(){for(;this.containerElement.hasChildNodes();)this.containerElement.removeChild(this.containerElement.firstChild);if(this.frame=document.createElement("div"),this.frame.className="network-frame",this.frame.style.position="relative",this.frame.style.overflow="hidden",this.frame.canvas=document.createElement("canvas"),this.frame.canvas.style.position="relative",this.frame.appendChild(this.frame.canvas),!this.frame.canvas.getContext){var t=document.createElement("DIV");t.style.color="red",t.style.fontWeight="bold",t.style.padding="10px",t.innerHTML="Error: your browser does not support HTML canvas",this.frame.canvas.appendChild(t)}var e=this;this.drag={},this.pinch={},this.hammer=n(this.frame.canvas,{prevent_default:!0}),this.hammer.on("tap",e._onTap.bind(e)),this.hammer.on("doubletap",e._onDoubleTap.bind(e)),this.hammer.on("hold",e._onHold.bind(e)),this.hammer.on("pinch",e._onPinch.bind(e)),this.hammer.on("touch",e._onTouch.bind(e)),this.hammer.on("dragstart",e._onDragStart.bind(e)),this.hammer.on("drag",e._onDrag.bind(e)),this.hammer.on("dragend",e._onDragEnd.bind(e)),this.hammer.on("release",e._onRelease.bind(e)),this.hammer.on("mousewheel",e._onMouseWheel.bind(e)),this.hammer.on("DOMMouseScroll",e._onMouseWheel.bind(e)),this.hammer.on("mousemove",e._onMouseMoveTitle.bind(e)),this.containerElement.appendChild(this.frame)},s.prototype._createKeyBinds=function(){var t=this;this.mousetrap=r,this.mousetrap.reset(),1==this.constants.keyboard.enabled&&(this.mousetrap.bind("up",this._moveUp.bind(t),"keydown"),this.mousetrap.bind("up",this._yStopMoving.bind(t),"keyup"),this.mousetrap.bind("down",this._moveDown.bind(t),"keydown"),this.mousetrap.bind("down",this._yStopMoving.bind(t),"keyup"),this.mousetrap.bind("left",this._moveLeft.bind(t),"keydown"),this.mousetrap.bind("left",this._xStopMoving.bind(t),"keyup"),this.mousetrap.bind("right",this._moveRight.bind(t),"keydown"),this.mousetrap.bind("right",this._xStopMoving.bind(t),"keyup"),this.mousetrap.bind("=",this._zoomIn.bind(t),"keydown"),this.mousetrap.bind("=",this._stopZoom.bind(t),"keyup"),this.mousetrap.bind("-",this._zoomOut.bind(t),"keydown"),this.mousetrap.bind("-",this._stopZoom.bind(t),"keyup"),this.mousetrap.bind("[",this._zoomIn.bind(t),"keydown"),this.mousetrap.bind("[",this._stopZoom.bind(t),"keyup"),this.mousetrap.bind("]",this._zoomOut.bind(t),"keydown"),this.mousetrap.bind("]",this._stopZoom.bind(t),"keyup"),this.mousetrap.bind("pageup",this._zoomIn.bind(t),"keydown"),this.mousetrap.bind("pageup",this._stopZoom.bind(t),"keyup"),this.mousetrap.bind("pagedown",this._zoomOut.bind(t),"keydown"),this.mousetrap.bind("pagedown",this._stopZoom.bind(t),"keyup")),1==this.constants.dataManipulation.enabled&&(this.mousetrap.bind("escape",this._createManipulatorBar.bind(t)),this.mousetrap.bind("del",this._deleteSelected.bind(t)))},s.prototype._getPointer=function(t){return{x:t.pageX-a.getAbsoluteLeft(this.frame.canvas),y:t.pageY-a.getAbsoluteTop(this.frame.canvas)}},s.prototype._onTouch=function(t){this.drag.pointer=this._getPointer(t.gesture.center),this.drag.pinched=!1,this.pinch.scale=this._getScale(),this._handleTouch(this.drag.pointer)},s.prototype._onDragStart=function(){this._handleDragStart()},s.prototype._handleDragStart=function(){var t=this.drag,e=this._getNodeAt(t.pointer);if(t.dragging=!0,t.selection=[],t.translation=this._getTranslation(),t.nodeId=null,null!=e){t.nodeId=e.id,e.isSelected()||this._selectObject(e,!1);for(var i in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(i)){var s=this.selectionObj.nodes[i],o={id:s.id,node:s,x:s.x,y:s.y,xFixed:s.xFixed,yFixed:s.yFixed};s.xFixed=!0,s.yFixed=!0,t.selection.push(o)}}},s.prototype._onDrag=function(t){this._handleOnDrag(t)},s.prototype._handleOnDrag=function(t){if(!this.drag.pinched){var e=this._getPointer(t.gesture.center),i=this,s=this.drag,o=s.selection;if(o&&o.length&&1==this.constants.dragNodes){var n=e.x-s.pointer.x,r=e.y-s.pointer.y;o.forEach(function(t){var e=t.node;t.xFixed||(e.x=i._XconvertDOMtoCanvas(i._XconvertCanvasToDOM(t.x)+n)),t.yFixed||(e.y=i._YconvertDOMtoCanvas(i._YconvertCanvasToDOM(t.y)+r))}),this.moving||(this.moving=!0,this.start())}else if(1==this.constants.dragNetwork){var a=e.x-this.drag.pointer.x,h=e.y-this.drag.pointer.y;this._setTranslation(this.drag.translation.x+a,this.drag.translation.y+h),this._redraw()}}},s.prototype._onDragEnd=function(){this.drag.dragging=!1;var t=this.drag.selection;t&&t.length?(t.forEach(function(t){t.node.xFixed=t.xFixed,t.node.yFixed=t.yFixed}),this.moving=!0,this.start()):this._redraw()},s.prototype._onTap=function(t){var e=this._getPointer(t.gesture.center);this.pointerPosition=e,this._handleTap(e)},s.prototype._onDoubleTap=function(t){var e=this._getPointer(t.gesture.center);this._handleDoubleTap(e)},s.prototype._onHold=function(t){var e=this._getPointer(t.gesture.center);this.pointerPosition=e,this._handleOnHold(e)},s.prototype._onRelease=function(t){var e=this._getPointer(t.gesture.center);this._handleOnRelease(e)},s.prototype._onPinch=function(t){var e=this._getPointer(t.gesture.center);this.drag.pinched=!0,"scale"in this.pinch||(this.pinch.scale=1);var i=this.pinch.scale*t.gesture.scale;this._zoom(i,e)},s.prototype._zoom=function(t,e){if(1==this.constants.zoomable){var i=this._getScale();1e-5>t&&(t=1e-5),t>10&&(t=10);var s=null;void 0!==this.drag&&1==this.drag.dragging&&(s=this.DOMtoCanvas(this.drag.pointer));var o=this._getTranslation(),n=t/i,r=(1-n)*e.x+o.x*n,a=(1-n)*e.y+o.y*n;if(this.areaCenter={x:this._XconvertDOMtoCanvas(e.x),y:this._YconvertDOMtoCanvas(e.y)},this._setScale(t),this._setTranslation(r,a),this.updateClustersDefault(),null!=s){var h=this.canvasToDOM(s);this.drag.pointer.x=h.x,this.drag.pointer.y=h.y}return this._redraw(),t>i?this.emit("zoom",{direction:"+"}):this.emit("zoom",{direction:"-"}),t}},s.prototype._onMouseWheel=function(t){var e=0;if(t.wheelDelta?e=t.wheelDelta/120:t.detail&&(e=-t.detail/3),e){var i=this._getScale(),s=e/10;0>e&&(s/=1-s),i*=1+s;var o=h.fakeGesture(this,t),n=this._getPointer(o.center);this._zoom(i,n)}t.preventDefault()},s.prototype._onMouseMoveTitle=function(t){var e=h.fakeGesture(this,t),i=this._getPointer(e.center);this.popupObj&&this._checkHidePopup(i);var s=this,o=function(){s._checkShowPopup(i)};if(this.popupTimer&&clearInterval(this.popupTimer),this.drag.dragging||(this.popupTimer=setTimeout(o,this.constants.tooltip.delay)),1==this.constants.hover){for(var n in this.hoverObj.edges)this.hoverObj.edges.hasOwnProperty(n)&&(this.hoverObj.edges[n].hover=!1,delete this.hoverObj.edges[n]);var r=this._getNodeAt(i);null==r&&(r=this._getEdgeAt(i)),null!=r&&this._hoverObject(r);for(var a in this.hoverObj.nodes)this.hoverObj.nodes.hasOwnProperty(a)&&(r instanceof m&&r.id!=a||r instanceof g||null==r)&&(this._blurObject(this.hoverObj.nodes[a]),delete this.hoverObj.nodes[a]);this.redraw()}},s.prototype._checkShowPopup=function(t){var e,i={left:this._XconvertDOMtoCanvas(t.x),top:this._YconvertDOMtoCanvas(t.y),right:this._XconvertDOMtoCanvas(t.x),bottom:this._YconvertDOMtoCanvas(t.y)},s=this.popupObj;if(void 0==this.popupObj){var o=this.nodes;for(e in o)if(o.hasOwnProperty(e)){var n=o[e];if(void 0!==n.getTitle()&&n.isOverlappingWith(i)){this.popupObj=n;break}}}if(void 0===this.popupObj){var r=this.edges;for(e in r)if(r.hasOwnProperty(e)){var a=r[e];if(a.connected&&void 0!==a.getTitle()&&a.isOverlappingWith(i)){this.popupObj=a;break}}}if(this.popupObj){if(this.popupObj!=s){var h=this;h.popup||(h.popup=new v(h.frame,h.constants.tooltip)),h.popup.setPosition(t.x-3,t.y-3),h.popup.setText(h.popupObj.getTitle()),h.popup.show()}}else this.popup&&this.popup.hide()},s.prototype._checkHidePopup=function(t){this.popupObj&&this._getNodeAt(t)||(this.popupObj=void 0,this.popup&&this.popup.hide())},s.prototype.setSize=function(t,e){this.frame.style.width=t,this.frame.style.height=e,this.frame.canvas.style.width="100%",this.frame.canvas.style.height="100%",this.frame.canvas.width=this.frame.canvas.clientWidth,this.frame.canvas.height=this.frame.canvas.clientHeight,void 0!==this.manipulationDiv&&(this.manipulationDiv.style.width=this.frame.canvas.clientWidth+"px"),void 0!==this.navigationDivs&&void 0!==this.navigationDivs.wrapper&&(this.navigationDivs.wrapper.style.width=this.frame.canvas.clientWidth+"px",this.navigationDivs.wrapper.style.height=this.frame.canvas.clientHeight+"px"),this.emit("resize",{width:this.frame.canvas.width,height:this.frame.canvas.height})},s.prototype._setNodes=function(t){var e=this.nodesData;if(t instanceof d||t instanceof l)this.nodesData=t;else if(t instanceof Array)this.nodesData=new d,this.nodesData.add(t);else{if(t)throw new TypeError("Array or DataSet expected");this.nodesData=new d}if(e&&a.forEach(this.nodesListeners,function(t,i){e.off(i,t)}),this.nodes={},this.nodesData){var i=this;a.forEach(this.nodesListeners,function(t,e){i.nodesData.on(e,t)});var s=this.nodesData.getIds();this._addNodes(s)}this._updateSelection()},s.prototype._addNodes=function(t){for(var e,i=0,s=t.length;s>i;i++){e=t[i];var o=this.nodesData.get(e),n=new m(o,this.images,this.groups,this.constants);if(this.nodes[e]=n,!(0!=n.xFixed&&0!=n.yFixed||null!==n.x&&null!==n.y)){var r=1*t.length,a=2*Math.PI*Math.random();0==n.xFixed&&(n.x=r*Math.cos(a)),0==n.yFixed&&(n.y=r*Math.sin(a))}this.moving=!0}this._updateNodeIndexList(),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateCalculationNodes(),this._reconnectEdges(),this._updateValueRange(this.nodes),this.updateLabels()},s.prototype._updateNodes=function(t){for(var e=this.nodes,i=this.nodesData,s=0,o=t.length;o>s;s++){var n=t[s],r=e[n],a=i.get(n);r?r.setProperties(a,this.constants):(r=new m(properties,this.images,this.groups,this.constants),e[n]=r)}this.moving=!0,1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateNodeIndexList(),this._reconnectEdges(),this._updateValueRange(e)},s.prototype._removeNodes=function(t){for(var e=this.nodes,i=0,s=t.length;s>i;i++){var o=t[i];delete e[o]}this._updateNodeIndexList(),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateCalculationNodes(),this._reconnectEdges(),this._updateSelection(),this._updateValueRange(e)},s.prototype._setEdges=function(t){var e=this.edgesData;if(t instanceof d||t instanceof l)this.edgesData=t;else if(t instanceof Array)this.edgesData=new d,this.edgesData.add(t);else{if(t)throw new TypeError("Array or DataSet expected");this.edgesData=new d}if(e&&a.forEach(this.edgesListeners,function(t,i){e.off(i,t)}),this.edges={},this.edgesData){var i=this;a.forEach(this.edgesListeners,function(t,e){i.edgesData.on(e,t)});var s=this.edgesData.getIds();this._addEdges(s)}this._reconnectEdges()},s.prototype._addEdges=function(t){for(var e=this.edges,i=this.edgesData,s=0,o=t.length;o>s;s++){var n=t[s],r=e[n];r&&r.disconnect();var a=i.get(n,{showInternalIds:!0});e[n]=new g(a,this,this.constants)}this.moving=!0,this._updateValueRange(e),this._createBezierNodes(),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateCalculationNodes()},s.prototype._updateEdges=function(t){for(var e=this.edges,i=this.edgesData,s=0,o=t.length;o>s;s++){var n=t[s],r=i.get(n),a=e[n];a?(a.disconnect(),a.setProperties(r,this.constants),a.connect()):(a=new g(r,this,this.constants),this.edges[n]=a)}this._createBezierNodes(),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this.moving=!0,this._updateValueRange(e)},s.prototype._removeEdges=function(t){for(var e=this.edges,i=0,s=t.length;s>i;i++){var o=t[i],n=e[o];n&&(null!=n.via&&delete this.sectors.support.nodes[n.via.id],n.disconnect(),delete e[o])}this.moving=!0,this._updateValueRange(e),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateCalculationNodes()},s.prototype._reconnectEdges=function(){var t,e=this.nodes,i=this.edges;for(t in e)e.hasOwnProperty(t)&&(e[t].edges=[]);for(t in i)if(i.hasOwnProperty(t)){var s=i[t];s.from=null,s.to=null,s.connect()}},s.prototype._updateValueRange=function(t){var e,i=void 0,s=void 0;for(e in t)if(t.hasOwnProperty(e)){var o=t[e].getValue();void 0!==o&&(i=void 0===i?o:Math.min(o,i),s=void 0===s?o:Math.max(o,s))}if(void 0!==i&&void 0!==s)for(e in t)t.hasOwnProperty(e)&&t[e].setValueRange(i,s)},s.prototype.redraw=function(){this.setSize(this.constants.width,this.constants.height),this._redraw()},s.prototype._redraw=function(){var t=this.frame.canvas.getContext("2d"),e=this.frame.canvas.width,i=this.frame.canvas.height;t.clearRect(0,0,e,i),t.save(),t.translate(this.translation.x,this.translation.y),t.scale(this.scale,this.scale),this.canvasTopLeft={x:this._XconvertDOMtoCanvas(0),y:this._YconvertDOMtoCanvas(0)},this.canvasBottomRight={x:this._XconvertDOMtoCanvas(this.frame.canvas.clientWidth),y:this._YconvertDOMtoCanvas(this.frame.canvas.clientHeight)},this._doInAllSectors("_drawAllSectorNodes",t),(0==this.drag.dragging||void 0===this.drag.dragging||0==this.constants.hideEdgesOnDrag)&&this._doInAllSectors("_drawEdges",t),(0==this.drag.dragging||void 0===this.drag.dragging||0==this.constants.hideNodesOnDrag)&&this._doInAllSectors("_drawNodes",t,!1),1==this.controlNodesActive&&this._doInAllSectors("_drawControlNodes",t),t.restore()},s.prototype._setTranslation=function(t,e){void 0===this.translation&&(this.translation={x:0,y:0}),void 0!==t&&(this.translation.x=t),void 0!==e&&(this.translation.y=e),this.emit("viewChanged")},s.prototype._getTranslation=function(){return{x:this.translation.x,y:this.translation.y}},s.prototype._setScale=function(t){this.scale=t},s.prototype._getScale=function(){return this.scale},s.prototype._XconvertDOMtoCanvas=function(t){return(t-this.translation.x)/this.scale},s.prototype._XconvertCanvasToDOM=function(t){return t*this.scale+this.translation.x},s.prototype._YconvertDOMtoCanvas=function(t){return(t-this.translation.y)/this.scale},s.prototype._YconvertCanvasToDOM=function(t){return t*this.scale+this.translation.y},s.prototype.canvasToDOM=function(t){return{x:this._XconvertCanvasToDOM(t.x),y:this._YconvertCanvasToDOM(t.y)}},s.prototype.DOMtoCanvas=function(t){return{x:this._XconvertDOMtoCanvas(t.x),y:this._YconvertDOMtoCanvas(t.y)}},s.prototype._drawNodes=function(t,e){void 0===e&&(e=!1);var i=this.nodes,s=[];for(var o in i)i.hasOwnProperty(o)&&(i[o].setScaleAndPos(this.scale,this.canvasTopLeft,this.canvasBottomRight),i[o].isSelected()?s.push(o):(i[o].inArea()||e)&&i[o].draw(t));for(var n=0,r=s.length;r>n;n++)(i[s[n]].inArea()||e)&&i[s[n]].draw(t)},s.prototype._drawEdges=function(t){var e=this.edges;for(var i in e)if(e.hasOwnProperty(i)){var s=e[i];s.setScale(this.scale),s.connected&&e[i].draw(t)}},s.prototype._drawControlNodes=function(t){var e=this.edges;for(var i in e)e.hasOwnProperty(i)&&e[i]._drawControlNodes(t)},s.prototype._stabilize=function(){1==this.constants.freezeForStabilization&&this._freezeDefinedNodes();for(var t=0;this.moving&&t0)for(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);o>.5*this.constants.maxVelocity?this.moving=!0:(this.moving=this._isMoving(o),0==this.moving&&this.emit("stabilized",{iterations:null}),this.moving=this.moving||this.configurePhysics)}},s.prototype._physicsTick=function(){this.freezeSimulation||1==this.moving&&(this._doInAllActiveSectors("_initializeForceCalculation"),this._doInAllActiveSectors("_discreteStepNodes"),1==this.constants.smoothCurves.enabled&&1==this.constants.smoothCurves.dynamic&&this._doInSupportSector("_discreteStepNodes"),this._findCenter(this._getRange()))},s.prototype._animationStep=function(){this.timer=void 0,this._handleNavigation(),this.start();var t=Date.now(),e=1;this._physicsTick();for(var i=Date.now()-t;i<.9*(this.renderTimestep-this.renderTime)&&eh}return!1},s.prototype._getColor=function(){var t=this.options.color;return"to"==this.options.inheritColor?t={highlight:this.to.options.color.highlight.border,hover:this.to.options.color.hover.border,color:this.to.options.color.border}:("from"==this.options.inheritColor||1==this.options.inheritColor)&&(t={highlight:this.from.options.color.highlight.border,hover:this.from.options.color.hover.border,color:this.from.options.color.border}),1==this.selected?t.highlight:1==this.hover?t.hover:t.color},s.prototype._drawLine=function(t){if(t.strokeStyle=this._getColor(),t.lineWidth=this._getLineWidth(),this.from!=this.to){var e,i=this._line(t);if(this.label){if(1==this.options.smoothCurves.enabled&&null!=i){var s=.5*(.5*(this.from.x+i.x)+.5*(this.to.x+i.x)),o=.5*(.5*(this.from.y+i.y)+.5*(this.to.y+i.y));e={x:s,y:o}}else e=this._pointOnLine(.5);this._label(t,this.label,e.x,e.y)}}else{var n,r,a=this.physics.springLength/4,h=this.from;h.width||h.resize(t),h.width>h.height?(n=h.x+h.width/2,r=h.y-a):(n=h.x+a,r=h.y-h.height/2),this._circle(t,n,r,a),e=this._pointOnCircle(n,r,a,.5),this._label(t,this.label,e.x,e.y)}},s.prototype._getLineWidth=function(){return 1==this.selected?Math.min(this.widthSelected,this.options.widthMax)*this.networkScaleInv:1==this.hover?Math.min(this.options.hoverWidth,this.options.widthMax)*this.networkScaleInv:this.options.width*this.networkScaleInv -},s.prototype._getViaCoordinates=function(){var t=null,e=null,i=this.options.smoothCurves.roundness,s=this.options.smoothCurves.type,o=Math.abs(this.from.x-this.to.x),n=Math.abs(this.from.y-this.to.y);return"discrete"==s||"diagonalCross"==s?Math.abs(this.from.x-this.to.x)this.to.y?this.from.xthis.to.x&&(t=this.from.x-i*n,e=this.from.y-i*n):this.from.ythis.to.x&&(t=this.from.x-i*n,e=this.from.y+i*n)),"discrete"==s&&(t=i*n>o?this.from.x:t)):Math.abs(this.from.x-this.to.x)>Math.abs(this.from.y-this.to.y)&&(this.from.y>this.to.y?this.from.xthis.to.x&&(t=this.from.x-i*o,e=this.from.y-i*o):this.from.ythis.to.x&&(t=this.from.x-i*o,e=this.from.y+i*o)),"discrete"==s&&(e=i*o>n?this.from.y:e)):"straightCross"==s?Math.abs(this.from.x-this.to.x)Math.abs(this.from.y-this.to.y)&&(t=this.from.xthis.to.y?this.from.xthis.to.x&&(t=this.from.x-i*n,e=this.from.y-i*n,t=this.to.x>t?this.to.x:t):this.from.ythis.to.x&&(t=this.from.x-i*n,e=this.from.y+i*n,t=this.to.x>t?this.to.x:t)):Math.abs(this.from.x-this.to.x)>Math.abs(this.from.y-this.to.y)&&(this.from.y>this.to.y?this.from.xe?this.to.y:e):this.from.x>this.to.x&&(t=this.from.x-i*o,e=this.from.y-i*o,e=this.to.y>e?this.to.y:e):this.from.ythis.to.x&&(t=this.from.x-i*o,e=this.from.y+i*o,e=this.to.yl.height?(a=l.x+.5*l.width,h=l.y-d):(a=l.x+d,h=l.y-.5*l.height),this._circle(t,a,h,d);var s=.2*Math.PI,o=(10+5*this.options.width)*this.options.arrowScaleFactor;e=this._pointOnCircle(a,h,d,.5),t.arrow(e.x,e.y,s,o),t.fill(),t.stroke(),this.label&&(e=this._pointOnCircle(a,h,d,.5),this._label(t,this.label,e.x,e.y))}},s.prototype._drawArrow=function(t){1==this.selected?(t.strokeStyle=this.options.color.highlight,t.fillStyle=this.options.color.highlight):1==this.hover?(t.strokeStyle=this.options.color.hover,t.fillStyle=this.options.color.hover):(t.strokeStyle=this.options.color.color,t.fillStyle=this.options.color.color),t.lineWidth=this._getLineWidth();var e,i;if(this.from!=this.to){e=Math.atan2(this.to.y-this.from.y,this.to.x-this.from.x);var s,o=this.to.x-this.from.x,n=this.to.y-this.from.y,r=Math.sqrt(o*o+n*n),a=this.from.distanceToBorder(t,e+Math.PI),h=(r-a)/r,d=h*this.from.x+(1-h)*this.to.x,l=h*this.from.y+(1-h)*this.to.y;1==this.options.smoothCurves.dynamic&&1==this.options.smoothCurves.enabled?s=this.via:1==this.options.smoothCurves.enabled&&(s=this._getViaCoordinates()),1==this.options.smoothCurves.enabled&&null!=s.x&&(e=Math.atan2(this.to.y-s.y,this.to.x-s.x),o=this.to.x-s.x,n=this.to.y-s.y,r=Math.sqrt(o*o+n*n));var c,p,u=this.to.distanceToBorder(t,e),f=(r-u)/r;if(1==this.options.smoothCurves.enabled&&null!=s.x?(c=(1-f)*s.x+f*this.to.x,p=(1-f)*s.y+f*this.to.y):(c=(1-f)*this.from.x+f*this.to.x,p=(1-f)*this.from.y+f*this.to.y),t.beginPath(),t.moveTo(d,l),1==this.options.smoothCurves.enabled&&null!=s.x?t.quadraticCurveTo(s.x,s.y,c,p):t.lineTo(c,p),t.stroke(),i=(10+5*this.options.width)*this.options.arrowScaleFactor,t.arrow(c,p,e,i),t.fill(),t.stroke(),this.label){var m;if(1==this.options.smoothCurves.enabled&&null!=s){var g=.5*(.5*(this.from.x+s.x)+.5*(this.to.x+s.x)),v=.5*(.5*(this.from.y+s.y)+.5*(this.to.y+s.y));m={x:g,y:v}}else m=this._pointOnLine(.5);this._label(t,this.label,m.x,m.y)}}else{var y,b,_,x=this.from,w=.25*Math.max(100,this.physics.springLength);x.width||x.resize(t),x.width>x.height?(y=x.x+.5*x.width,b=x.y-w,_={x:y,y:x.y,angle:.9*Math.PI}):(y=x.x+w,b=x.y-.5*x.height,_={x:x.x,y:b,angle:.6*Math.PI}),t.beginPath(),t.arc(y,b,w,0,2*Math.PI,!1),t.stroke();var i=(10+5*this.options.width)*this.options.arrowScaleFactor;t.arrow(_.x,_.y,_.angle,i),t.fill(),t.stroke(),this.label&&(m=this._pointOnCircle(y,b,w,.5),this._label(t,this.label,m.x,m.y))}},s.prototype._getDistanceToEdge=function(t,e,i,s,o,n){if(this.from!=this.to){if(1==this.options.smoothCurves.enabled){var r,a;if(1==this.options.smoothCurves.enabled&&1==this.options.smoothCurves.dynamic)r=this.via.x,a=this.via.y;else{var h=this._getViaCoordinates();r=h.x,a=h.y}var d,l,c,p,u,f,m,g=1e9;for(l=0;10>l;l++)c=.1*l,p=Math.pow(1-c,2)*t+2*c*(1-c)*r+Math.pow(c,2)*i,u=Math.pow(1-c,2)*e+2*c*(1-c)*a+Math.pow(c,2)*s,l>0&&(d=this._getDistanceToLine(f,m,p,u,o,n),g=g>d?d:g),f=p,m=u;return g}return this._getDistanceToLine(t,e,i,s,o,n)}var p,u,v,y,b=this.physics.springLength/4,_=this.from;return _.width||_.resize(ctx),_.width>_.height?(p=_.x+_.width/2,u=_.y-b):(p=_.x+b,u=_.y-_.height/2),v=p-o,y=u-n,Math.abs(Math.sqrt(v*v+y*y)-b)},s.prototype._getDistanceToLine=function(t,e,i,s,o,n){var r=i-t,a=s-e,h=r*r+a*a,d=((o-t)*r+(n-e)*a)/h;d>1?d=1:0>d&&(d=0);var l=t+d*r,c=e+d*a,p=l-o,u=c-n;return Math.sqrt(p*p+u*u)},s.prototype.setScale=function(t){this.networkScaleInv=1/t},s.prototype.select=function(){this.selected=!0},s.prototype.unselect=function(){this.selected=!1},s.prototype.positionBezierNode=function(){null!==this.via&&null!==this.from&&null!==this.to&&(this.via.x=.5*(this.from.x+this.to.x),this.via.y=.5*(this.from.y+this.to.y))},s.prototype._drawControlNodes=function(t){if(1==this.controlNodesEnabled){if(null===this.controlNodes.from&&null===this.controlNodes.to){var e="edgeIdFrom:".concat(this.id),i="edgeIdTo:".concat(this.id),s={nodes:{group:"",radius:8},physics:{damping:0},clustering:{maxNodeSizeIncrements:0,nodeScaling:{width:0,height:0,radius:0}}};this.controlNodes.from=new n({id:e,shape:"dot",color:{background:"#ff4e00",border:"#3c3c3c",highlight:{background:"#07f968"}}},{},{},s),this.controlNodes.to=new n({id:i,shape:"dot",color:{background:"#ff4e00",border:"#3c3c3c",highlight:{background:"#07f968"}}},{},{},s)}0==this.controlNodes.from.selected&&0==this.controlNodes.to.selected&&(this.controlNodes.positions=this.getControlNodePositions(t),this.controlNodes.from.x=this.controlNodes.positions.from.x,this.controlNodes.from.y=this.controlNodes.positions.from.y,this.controlNodes.to.x=this.controlNodes.positions.to.x,this.controlNodes.to.y=this.controlNodes.positions.to.y),this.controlNodes.from.draw(t),this.controlNodes.to.draw(t)}else this.controlNodes={from:null,to:null,positions:{}}},s.prototype._enableControlNodes=function(){this.controlNodesEnabled=!0},s.prototype._disableControlNodes=function(){this.controlNodesEnabled=!1},s.prototype._getSelectedControlNode=function(t,e){var i=this.controlNodes.positions,s=Math.sqrt(Math.pow(t-i.from.x,2)+Math.pow(e-i.from.y,2)),o=Math.sqrt(Math.pow(t-i.to.x,2)+Math.pow(e-i.to.y,2));return 15>s?(this.connectedNode=this.from,this.from=this.controlNodes.from,this.controlNodes.from):15>o?(this.connectedNode=this.to,this.to=this.controlNodes.to,this.controlNodes.to):null},s.prototype._restoreControlNodes=function(){1==this.controlNodes.from.selected&&(this.from=this.connectedNode,this.connectedNode=null,this.controlNodes.from.unselect()),1==this.controlNodes.to.selected&&(this.to=this.connectedNode,this.connectedNode=null,this.controlNodes.to.unselect())},s.prototype.getControlNodePositions=function(t){var e,i=Math.atan2(this.to.y-this.from.y,this.to.x-this.from.x),s=this.to.x-this.from.x,o=this.to.y-this.from.y,n=Math.sqrt(s*s+o*o),r=this.from.distanceToBorder(t,i+Math.PI),a=(n-r)/n,h=a*this.from.x+(1-a)*this.to.x,d=a*this.from.y+(1-a)*this.to.y;1==this.options.smoothCurves.dynamic&&1==this.options.smoothCurves.enabled?e=this.via:1==this.options.smoothCurves.enabled&&(e=this._getViaCoordinates()),1==this.options.smoothCurves.enabled&&null!=e.x&&(i=Math.atan2(this.to.y-e.y,this.to.x-e.x),s=this.to.x-e.x,o=this.to.y-e.y,n=Math.sqrt(s*s+o*o));var l,c,p=this.to.distanceToBorder(t,i),u=(n-p)/n;return 1==this.options.smoothCurves.enabled&&null!=e.x?(l=(1-u)*e.x+u*this.to.x,c=(1-u)*e.y+u*this.to.y):(l=(1-u)*this.from.x+u*this.to.x,c=(1-u)*this.from.y+u*this.to.y),{from:{x:h,y:d},to:{x:l,y:c}}},t.exports=s},function(t,e,i){function s(){this.clear(),this.defaultIndex=0}var o=i(1);s.DEFAULT=[{border:"#2B7CE9",background:"#97C2FC",highlight:{border:"#2B7CE9",background:"#D2E5FF"},hover:{border:"#2B7CE9",background:"#D2E5FF"}},{border:"#FFA500",background:"#FFFF00",highlight:{border:"#FFA500",background:"#FFFFA3"},hover:{border:"#FFA500",background:"#FFFFA3"}},{border:"#FA0A10",background:"#FB7E81",highlight:{border:"#FA0A10",background:"#FFAFB1"},hover:{border:"#FA0A10",background:"#FFAFB1"}},{border:"#41A906",background:"#7BE141",highlight:{border:"#41A906",background:"#A1EC76"},hover:{border:"#41A906",background:"#A1EC76"}},{border:"#E129F0",background:"#EB7DF4",highlight:{border:"#E129F0",background:"#F0B3F5"},hover:{border:"#E129F0",background:"#F0B3F5"}},{border:"#7C29F0",background:"#AD85E4",highlight:{border:"#7C29F0",background:"#D3BDF0"},hover:{border:"#7C29F0",background:"#D3BDF0"}},{border:"#C37F00",background:"#FFA807",highlight:{border:"#C37F00",background:"#FFCA66"},hover:{border:"#C37F00",background:"#FFCA66"}},{border:"#4220FB",background:"#6E6EFD",highlight:{border:"#4220FB",background:"#9B9BFD"},hover:{border:"#4220FB",background:"#9B9BFD"}},{border:"#FD5A77",background:"#FFC0CB",highlight:{border:"#FD5A77",background:"#FFD1D9"},hover:{border:"#FD5A77",background:"#FFD1D9"}},{border:"#4AD63A",background:"#C2FABC",highlight:{border:"#4AD63A",background:"#E6FFE3"},hover:{border:"#4AD63A",background:"#E6FFE3"}}],s.prototype.clear=function(){this.groups={},this.groups.length=function(){var t=0;for(var e in this)this.hasOwnProperty(e)&&t++;return t}},s.prototype.get=function(t){var e=this.groups[t];if(void 0==e){var i=this.defaultIndex%s.DEFAULT.length;this.defaultIndex++,e={},e.color=s.DEFAULT[i],this.groups[t]=e}return e},s.prototype.add=function(t,e){return this.groups[t]=e,e.color&&(e.color=o.parseColor(e.color)),e},t.exports=s},function(t){function e(){this.images={},this.callback=void 0}e.prototype.setOnloadCallback=function(t){this.callback=t},e.prototype.load=function(t){var e=this.images[t];if(void 0==e){var i=this;e=new Image,this.images[t]=e,e.onload=function(){i.callback&&i.callback(this)},e.src=t}return e},t.exports=e},function(t,e,i){function s(t,e,i,s){var n=o.selectiveBridgeObject(["nodes"],s);this.options=n.nodes,this.selected=!1,this.hover=!1,this.edges=[],this.dynamicEdges=[],this.reroutedEdges={},this.fontDrawThreshold=3,this.id=void 0,this.x=null,this.y=null,this.xFixed=!1,this.yFixed=!1,this.horizontalAlignLeft=!0,this.verticalAlignTop=!0,this.baseRadiusValue=s.nodes.radius,this.radiusFixed=!1,this.level=-1,this.preassignedLevel=!1,this.imagelist=e,this.grouplist=i,this.fx=0,this.fy=0,this.vx=0,this.vy=0,this.damping=s.physics.damping,this.fixedData={x:null,y:null},this.setProperties(t,n),this.resetCluster(),this.dynamicEdgesLength=0,this.clusterSession=0,this.clusterSizeWidthFactor=s.clustering.nodeScaling.width,this.clusterSizeHeightFactor=s.clustering.nodeScaling.height,this.clusterSizeRadiusFactor=s.clustering.nodeScaling.radius,this.maxNodeSizeIncrements=s.clustering.maxNodeSizeIncrements,this.growthIndicator=0,this.networkScaleInv=1,this.networkScale=1,this.canvasTopLeft={x:-300,y:-300},this.canvasBottomRight={x:300,y:300},this.parentEdgeId=null}var o=i(1);s.prototype.resetCluster=function(){this.formationScale=void 0,this.clusterSize=1,this.containedNodes={},this.containedEdges={},this.clusterSessions=[]},s.prototype.attachEdge=function(t){-1==this.edges.indexOf(t)&&this.edges.push(t),-1==this.dynamicEdges.indexOf(t)&&this.dynamicEdges.push(t),this.dynamicEdgesLength=this.dynamicEdges.length},s.prototype.detachEdge=function(t){var e=this.edges.indexOf(t);-1!=e&&(this.edges.splice(e,1),this.dynamicEdges.splice(e,1)),this.dynamicEdgesLength=this.dynamicEdges.length},s.prototype.setProperties=function(t,e){if(t){var i=["borderWidth","borderWidthSelected","shape","image","radius","fontColor","fontSize","fontFace","group","mass"];if(o.selectiveDeepExtend(i,this.options,t),this.originalLabel=void 0,void 0!==t.id&&(this.id=t.id),void 0!==t.label&&(this.label=t.label,this.originalLabel=t.label),void 0!==t.title&&(this.title=t.title),void 0!==t.x&&(this.x=t.x),void 0!==t.y&&(this.y=t.y),void 0!==t.value&&(this.value=t.value),void 0!==t.level&&(this.level=t.level,this.preassignedLevel=!0),void 0!==t.horizontalAlignLeft&&(this.horizontalAlignLeft=t.horizontalAlignLeft),void 0!==t.verticalAlignTop&&(this.verticalAlignTop=t.verticalAlignTop),void 0!==t.triggerFunction&&(this.triggerFunction=t.triggerFunction),void 0===this.id)throw"Node must have an id";if("number"==typeof this.options.group||"string"==typeof this.options.group&&""!=this.options.group){var s=this.grouplist.get(this.options.group);for(var n in s)s.hasOwnProperty(n)&&(this.options[n]=s[n])}if(void 0!==t.radius&&(this.baseRadiusValue=this.options.radius),void 0!==t.color&&(this.options.color=o.parseColor(t.color)),void 0!==this.options.image&&""!=this.options.image){if(!this.imagelist)throw"No imagelist provided";this.imageObj=this.imagelist.load(this.options.image)}switch(this.xFixed=this.xFixed||void 0!==t.x&&!t.allowedToMoveX,this.yFixed=this.yFixed||void 0!==t.y&&!t.allowedToMoveY,this.radiusFixed=this.radiusFixed||void 0!==t.radius,"image"==this.options.shape&&(this.options.radiusMin=e.nodes.widthMin,this.options.radiusMax=e.nodes.widthMax),this.options.shape){case"database":this.draw=this._drawDatabase,this.resize=this._resizeDatabase;break;case"box":this.draw=this._drawBox,this.resize=this._resizeBox;break;case"circle":this.draw=this._drawCircle,this.resize=this._resizeCircle;break;case"ellipse":this.draw=this._drawEllipse,this.resize=this._resizeEllipse;break;case"image":this.draw=this._drawImage,this.resize=this._resizeImage;break;case"text":this.draw=this._drawText,this.resize=this._resizeText;break;case"dot":this.draw=this._drawDot,this.resize=this._resizeShape;break;case"square":this.draw=this._drawSquare,this.resize=this._resizeShape;break;case"triangle":this.draw=this._drawTriangle,this.resize=this._resizeShape;break;case"triangleDown":this.draw=this._drawTriangleDown,this.resize=this._resizeShape;break;case"star":this.draw=this._drawStar,this.resize=this._resizeShape;break;default:this.draw=this._drawEllipse,this.resize=this._resizeEllipse}this._reset()}},s.prototype.select=function(){this.selected=!0,this._reset()},s.prototype.unselect=function(){this.selected=!1,this._reset()},s.prototype.clearSizeCache=function(){this._reset()},s.prototype._reset=function(){this.width=void 0,this.height=void 0},s.prototype.getTitle=function(){return"function"==typeof this.title?this.title():this.title},s.prototype.distanceToBorder=function(t,e){var i=1;switch(this.width||this.resize(t),this.options.shape){case"circle":case"dot":return this.options.radius+i;case"ellipse":var s=this.width/2,o=this.height/2,n=Math.sin(e)*s,r=Math.cos(e)*o;return s*o/Math.sqrt(n*n+r*r);case"box":case"image":case"text":default:return this.width?Math.min(Math.abs(this.width/2/Math.cos(e)),Math.abs(this.height/2/Math.sin(e)))+i:0}},s.prototype._setForce=function(t,e){this.fx=t,this.fy=e},s.prototype._addForce=function(t,e){this.fx+=t,this.fy+=e},s.prototype.discreteStep=function(t){if(!this.xFixed){var e=this.damping*this.vx,i=(this.fx-e)/this.options.mass;this.vx+=i*t,this.x+=this.vx*t}if(!this.yFixed){var s=this.damping*this.vy,o=(this.fy-s)/this.options.mass;this.vy+=o*t,this.y+=this.vy*t}},s.prototype.discreteStepLimited=function(t,e){if(this.xFixed)this.fx=0;else{var i=this.damping*this.vx,s=(this.fx-i)/this.options.mass;this.vx+=s*t,this.vx=Math.abs(this.vx)>e?this.vx>0?e:-e:this.vx,this.x+=this.vx*t}if(this.yFixed)this.fy=0;else{var o=this.damping*this.vy,n=(this.fy-o)/this.options.mass;this.vy+=n*t,this.vy=Math.abs(this.vy)>e?this.vy>0?e:-e:this.vy,this.y+=this.vy*t}},s.prototype.isFixed=function(){return this.xFixed&&this.yFixed},s.prototype.isMoving=function(t){return Math.abs(this.vx)>t||Math.abs(this.vy)>t},s.prototype.isSelected=function(){return this.selected},s.prototype.getValue=function(){return this.value},s.prototype.getDistance=function(t,e){var i=this.x-t,s=this.y-e;return Math.sqrt(i*i+s*s)},s.prototype.setValueRange=function(t,e){if(!this.radiusFixed&&void 0!==this.value)if(e==t)this.options.radius=(this.options.radiusMin+this.options.radiusMax)/2;else{var i=(this.options.radiusMax-this.options.radiusMin)/(e-t);this.options.radius=(this.value-t)*i+this.options.radiusMin}this.baseRadiusValue=this.options.radius},s.prototype.draw=function(){throw"Draw method not initialized for node"},s.prototype.resize=function(){throw"Resize method not initialized for node"},s.prototype.isOverlappingWith=function(t){return this.leftt.left&&this.topt.top},s.prototype._resizeImage=function(){if(!this.width||!this.height){var t,e;if(this.value){this.options.radius=this.baseRadiusValue;var i=this.imageObj.height/this.imageObj.width;void 0!==i?(t=this.options.radius||this.imageObj.width,e=this.options.radius*i||this.imageObj.height):(t=0,e=0)}else t=this.imageObj.width,e=this.imageObj.height;this.width=t,this.height=e,this.growthIndicator=0,this.width>0&&this.height>0&&(this.width+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeWidthFactor,this.height+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeHeightFactor,this.options.radius+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.width-t)}},s.prototype._drawImage=function(t){this._resizeImage(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var e;if(0!=this.imageObj.width){if(this.clusterSize>1){var i=this.clusterSize>1?10:0;i*=this.networkScaleInv,i=Math.min(.2*this.width,i),t.globalAlpha=.5,t.drawImage(this.imageObj,this.left-i,this.top-i,this.width+2*i,this.height+2*i)}t.globalAlpha=1,t.drawImage(this.imageObj,this.left,this.top,this.width,this.height),e=this.y+this.height/2}else e=this.y;this._label(t,this.label,this.x,e,void 0,"top")},s.prototype._resizeBox=function(t){if(!this.width){var e=5,i=this.getTextSize(t);this.width=i.width+2*e,this.height=i.height+2*e,this.width+=.5*Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeWidthFactor,this.height+=.5*Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeHeightFactor,this.growthIndicator=this.width-(i.width+2*e)}},s.prototype._drawBox=function(t){this._resizeBox(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var e=2.5,i=this.options.borderWidth,s=this.options.borderWidthSelected||2*this.options.borderWidth;t.strokeStyle=this.selected?this.options.color.highlight.border:this.hover?this.options.color.hover.border:this.options.color.border,this.clusterSize>1&&(t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.roundRect(this.left-2*t.lineWidth,this.top-2*t.lineWidth,this.width+4*t.lineWidth,this.height+4*t.lineWidth,this.options.radius),t.stroke()),t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=this.selected?this.options.color.highlight.background:this.options.color.background,t.roundRect(this.left,this.top,this.width,this.height,this.options.radius),t.fill(),t.stroke(),this._label(t,this.label,this.x,this.y)},s.prototype._resizeDatabase=function(t){if(!this.width){var e=5,i=this.getTextSize(t),s=i.width+2*e;this.width=s,this.height=s,this.width+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeWidthFactor,this.height+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeHeightFactor,this.options.radius+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.width-s}},s.prototype._drawDatabase=function(t){this._resizeDatabase(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var e=2.5,i=this.options.borderWidth,s=this.options.borderWidthSelected||2*this.options.borderWidth;t.strokeStyle=this.selected?this.options.color.highlight.border:this.hover?this.options.color.hover.border:this.options.color.border,this.clusterSize>1&&(t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.database(this.x-this.width/2-2*t.lineWidth,this.y-.5*this.height-2*t.lineWidth,this.width+4*t.lineWidth,this.height+4*t.lineWidth),t.stroke()),t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=this.selected?this.options.color.highlight.background:this.hover?this.options.color.hover.background:this.options.color.background,t.database(this.x-this.width/2,this.y-.5*this.height,this.width,this.height),t.fill(),t.stroke(),this._label(t,this.label,this.x,this.y)},s.prototype._resizeCircle=function(t){if(!this.width){var e=5,i=this.getTextSize(t),s=Math.max(i.width,i.height)+2*e;this.options.radius=s/2,this.width=s,this.height=s,this.options.radius+=.5*Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.options.radius-.5*s}},s.prototype._drawCircle=function(t){this._resizeCircle(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var e=2.5,i=this.options.borderWidth,s=this.options.borderWidthSelected||2*this.options.borderWidth;t.strokeStyle=this.selected?this.options.color.highlight.border:this.hover?this.options.color.hover.border:this.options.color.border,this.clusterSize>1&&(t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.circle(this.x,this.y,this.options.radius+2*t.lineWidth),t.stroke()),t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=this.selected?this.options.color.highlight.background:this.hover?this.options.color.hover.background:this.options.color.background,t.circle(this.x,this.y,this.options.radius),t.fill(),t.stroke(),this._label(t,this.label,this.x,this.y)},s.prototype._resizeEllipse=function(t){if(!this.width){var e=this.getTextSize(t);this.width=1.5*e.width,this.height=2*e.height,this.width1&&(t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.ellipse(this.left-2*t.lineWidth,this.top-2*t.lineWidth,this.width+4*t.lineWidth,this.height+4*t.lineWidth),t.stroke()),t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=this.selected?this.options.color.highlight.background:this.hover?this.options.color.hover.background:this.options.color.background,t.ellipse(this.left,this.top,this.width,this.height),t.fill(),t.stroke(),this._label(t,this.label,this.x,this.y)},s.prototype._drawDot=function(t){this._drawShape(t,"circle")},s.prototype._drawTriangle=function(t){this._drawShape(t,"triangle")},s.prototype._drawTriangleDown=function(t){this._drawShape(t,"triangleDown")},s.prototype._drawSquare=function(t){this._drawShape(t,"square")},s.prototype._drawStar=function(t){this._drawShape(t,"star")},s.prototype._resizeShape=function(){if(!this.width){this.options.radius=this.baseRadiusValue;var t=2*this.options.radius;this.width=t,this.height=t,this.width+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeWidthFactor,this.height+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeHeightFactor,this.options.radius+=.5*Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.width-t}},s.prototype._drawShape=function(t,e){this._resizeShape(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var i=2.5,s=this.options.borderWidth,o=this.options.borderWidthSelected||2*this.options.borderWidth,n=2;switch(e){case"dot":n=2;break;case"square":n=2;break;case"triangle":n=3;break;case"triangleDown":n=3;break;case"star":n=4}t.strokeStyle=this.selected?this.options.color.highlight.border:this.hover?this.options.color.hover.border:this.options.color.border,this.clusterSize>1&&(t.lineWidth=(this.selected?o:s)+(this.clusterSize>1?i:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t[e](this.x,this.y,this.options.radius+n*t.lineWidth),t.stroke()),t.lineWidth=(this.selected?o:s)+(this.clusterSize>1?i:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=this.selected?this.options.color.highlight.background:this.hover?this.options.color.hover.background:this.options.color.background,t[e](this.x,this.y,this.options.radius),t.fill(),t.stroke(),this.label&&this._label(t,this.label,this.x,this.y+this.height/2,void 0,"top",!0)},s.prototype._resizeText=function(t){if(!this.width){var e=5,i=this.getTextSize(t);this.width=i.width+2*e,this.height=i.height+2*e,this.width+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeWidthFactor,this.height+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeHeightFactor,this.options.radius+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.width-(i.width+2*e)}},s.prototype._drawText=function(t){this._resizeText(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2,this._label(t,this.label,this.x,this.y)},s.prototype._label=function(t,e,i,s,o,n,r){if(e&&Number(this.options.fontSize)*this.networkScale>this.fontDrawThreshold){t.font=(this.selected?"bold ":"")+this.options.fontSize+"px "+this.options.fontFace,t.fillStyle=this.options.fontColor||"black",t.textAlign=o||"center",t.textBaseline=n||"middle";var a=e.split("\n"),h=a.length,d=Number(this.options.fontSize)+4,l=s+(1-h)/2*d;1==r&&(l=s+(1-h)/(2*d));for(var c=0;h>c;c++)t.fillText(a[c],i,l),l+=d}},s.prototype.getTextSize=function(t){if(void 0!==this.label){t.font=(this.selected?"bold ":"")+this.options.fontSize+"px "+this.options.fontFace;for(var e=this.label.split("\n"),i=(Number(this.options.fontSize)+4)*e.length,s=0,o=0,n=e.length;n>o;o++)s=Math.max(s,t.measureText(e[o]).width);return{width:s,height:i}}return{width:0,height:0}},s.prototype.inArea=function(){return void 0!==this.width?this.x+this.width*this.networkScaleInv>=this.canvasTopLeft.x&&this.x-this.width*this.networkScaleInv=this.canvasTopLeft.y&&this.y-this.height*this.networkScaleInv=this.canvasTopLeft.x&&this.x=this.canvasTopLeft.y&&this.ys&&(n=s-e-this.padding),no&&(r=o-i-this.padding),ri;i++)if(e.id===r.nodes[i].id){o=r.nodes[i];break}for(o||(o={id:e.id},t.node&&(o.attr=a(o.attr,t.node))),i=n.length-1;i>=0;i--){var h=n[i];h.nodes||(h.nodes=[]),-1==h.nodes.indexOf(o)&&h.nodes.push(o)}e.attr&&(o.attr=a(o.attr,e.attr))}function l(t,e){if(t.edges||(t.edges=[]),t.edges.push(e),t.edge){var i=a({},t.edge);e.attr=a(i,e.attr)}}function c(t,e,i,s,o){var n={from:e,to:i,type:s};return t.edge&&(n.attr=a({},t.edge)),n.attr=a(n.attr||{},o),n}function p(){for(k=C.NULL,O="";" "==L||" "==L||"\n"==L||"\r"==L;)o();do{var t=!1;if("#"==L){for(var e=T-1;" "==D.charAt(e)||" "==D.charAt(e);)e--;if("\n"==D.charAt(e)||""==D.charAt(e)){for(;""!=L&&"\n"!=L;)o();t=!0}}if("/"==L&&"/"==n()){for(;""!=L&&"\n"!=L;)o();t=!0}if("/"==L&&"*"==n()){for(;""!=L;){if("*"==L&&"/"==n()){o(),o();break}o()}t=!0}for(;" "==L||" "==L||"\n"==L||"\r"==L;)o()}while(t);if(""==L)return void(k=C.DELIMITER);var i=L+n();if(E[i])return k=C.DELIMITER,O=i,o(),void o();if(E[L])return k=C.DELIMITER,O=L,void o();if(r(L)||"-"==L){for(O+=L,o();r(L);)O+=L,o();return"false"==O?O=!1:"true"==O?O=!0:isNaN(Number(O))||(O=Number(O)),void(k=C.IDENTIFIER)}if('"'==L){for(o();""!=L&&('"'!=L||'"'==L&&'"'==n());)O+=L,'"'==L&&o(),o();if('"'!=L)throw x('End of string " expected');return o(),void(k=C.IDENTIFIER)}for(k=C.UNKNOWN;""!=L;)O+=L,o();throw new SyntaxError('Syntax error in part "'+w(O,30)+'"')}function u(){var t={};if(s(),p(),"strict"==O&&(t.strict=!0,p()),("graph"==O||"digraph"==O)&&(t.type=O,p()),k==C.IDENTIFIER&&(t.id=O,p()),"{"!=O)throw x("Angle bracket { expected");if(p(),f(t),"}"!=O)throw x("Angle bracket } expected");if(p(),""!==O)throw x("End of file expected");return p(),delete t.node,delete t.edge,delete t.graph,t}function f(t){for(;""!==O&&"}"!=O;)m(t),";"==O&&p()}function m(t){var e=g(t);if(e)return void b(t,e);var i=v(t);if(!i){if(k!=C.IDENTIFIER)throw x("Identifier expected");var s=O;if(p(),"="==O){if(p(),k!=C.IDENTIFIER)throw x("Identifier expected");t[s]=O,p()}else y(t,s)}}function g(t){var e=null;if("subgraph"==O&&(e={},e.type="subgraph",p(),k==C.IDENTIFIER&&(e.id=O,p())),"{"==O){if(p(),e||(e={}),e.parent=t,e.node=t.node,e.edge=t.edge,e.graph=t.graph,f(e),"}"!=O)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"==O?(p(),t.node=_(),"node"):"edge"==O?(p(),t.edge=_(),"edge"):"graph"==O?(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(;"->"==O||"--"==O;){var i,s=O;p();var o=g(t);if(o)i=o;else{if(k!=C.IDENTIFIER)throw x("Identifier or subgraph expected");i=O,d(t,{id:i}),p()}var n=_(),r=c(t,e,i,s,n);l(t,r),e=i}}function _(){for(var t=null;"["==O;){for(p(),t={};""!==O&&"]"!=O;){if(k!=C.IDENTIFIER)throw x("Attribute name expected");var e=O;if(p(),"="!=O)throw x("Equal sign = expected");if(p(),k!=C.IDENTIFIER)throw x("Attribute value expected");var i=O;h(t,e,i),p(),","==O&&p()}if("]"!=O)throw x("Bracket ] expected");p()}return t}function x(t){return new SyntaxError(t+', got "'+w(O,30)+'" (char '+T+")")}function w(t,e){return t.length<=e?t:t.substr(0,27)+"..."}function S(t,e,i){t instanceof Array?t.forEach(function(t){e instanceof Array?e.forEach(function(e){i(t,e)}):i(t,e)}):e instanceof Array?e.forEach(function(e){i(t,e)}):i(t,e)}function M(t){function e(t){var e={from:t.from,to:t.to};return a(e,t.attr),e.style="->"==t.type?"arrow":"line",e}var s=i(t),o={nodes:[],edges:[],options:{}};return s.nodes&&s.nodes.forEach(function(t){var e={id:t.id,label:String(t.label||t.id)};a(e,t.attr),e.image&&(e.shape="image"),o.nodes.push(e)}),s.edges&&s.edges.forEach(function(t){var i,s;i=t.from instanceof Object?t.from.nodes:{id:t.from},s=t.to instanceof Object?t.to.nodes:{id:t.to},t.from instanceof Object&&t.from.edges&&t.from.edges.forEach(function(t){var i=e(t);o.edges.push(i)}),S(i,s,function(i,s){var n=c(o,i.id,s.id,t.type,t.attr),r=e(n);o.edges.push(r)}),t.to instanceof Object&&t.to.edges&&t.to.edges.forEach(function(t){var i=e(t);o.edges.push(i)})}),s.attr&&(o.options=s.attr),o}var C={NULL:0,DELIMITER:1,IDENTIFIER:2,UNKNOWN:3},E={"{":!0,"}":!0,"[":!0,"]":!0,";":!0,"=":!0,",":!0,"->":!0,"--":!0},D="",T=0,L="",O="",k=C.NULL,N=/[a-zA-Z_0-9.:#]/;e.parseDOT=i,e.DOTToGraph=M},function(t,e){function i(t,e){var i=[],s=[];this.options={edges:{inheritColor:!0},nodes:{allowedToMove:!1,parseColor:!1}},void 0!==e&&(this.options.nodes.allowedToMove=e.allowedToMove|!1,this.options.nodes.parseColor=e.parseColor|!1,this.options.edges.inheritColor=e.inheritColor|!0);for(var o=t.edges,n=t.nodes,r=0;r=s&&(s=864e5),e=new Date(e.valueOf()-.05*s),i=new Date(i.valueOf()+.05*s)}(null!==e||null!==i)&&this.range.setRange(e,i)},s.prototype.setWindow=function(t,e){if(1==arguments.length){var i=arguments[0];this.range.setRange(i.start,i.end)}else this.range.setRange(t,e)},s.prototype.getWindow=function(){var t=this.range.getRange();return{start:new Date(t.start),end:new Date(t.end)}},s.prototype.redraw=function(){var t=!1,e=this.options,i=this.props,s=this.dom;if(s){s.root.className="vis timeline root "+e.orientation,s.root.style.maxHeight=r.option.asSize(e.maxHeight,""),s.root.style.minHeight=r.option.asSize(e.minHeight,""),s.root.style.width=r.option.asSize(e.width,""),i.border.left=(s.centerContainer.offsetWidth-s.centerContainer.clientWidth)/2,i.border.right=i.border.left,i.border.top=(s.centerContainer.offsetHeight-s.centerContainer.clientHeight)/2,i.border.bottom=i.border.top;var o=s.root.offsetHeight-s.root.clientHeight,n=s.root.offsetWidth-s.root.clientWidth;i.center.height=s.center.offsetHeight,i.left.height=s.left.offsetHeight,i.right.height=s.right.offsetHeight,i.top.height=s.top.clientHeight||-i.border.top,i.bottom.height=s.bottom.clientHeight||-i.border.bottom;var a=Math.max(i.left.height,i.center.height,i.right.height),h=i.top.height+a+i.bottom.height+o+i.border.top+i.border.bottom;s.root.style.height=r.option.asSize(e.height,h+"px"),i.root.height=s.root.offsetHeight,i.background.height=i.root.height-o;var d=i.root.height-i.top.height-i.bottom.height-o;i.centerContainer.height=d,i.leftContainer.height=d,i.rightContainer.height=i.leftContainer.height,i.root.width=s.root.offsetWidth,i.background.width=i.root.width-n,i.left.width=s.leftContainer.clientWidth||-i.border.left,i.leftContainer.width=i.left.width,i.right.width=s.rightContainer.clientWidth||-i.border.right,i.rightContainer.width=i.right.width;var l=i.root.width-i.left.width-i.right.width-n;i.center.width=l,i.centerContainer.width=l,i.top.width=l,i.bottom.width=l,s.background.style.height=i.background.height+"px",s.backgroundVertical.style.height=i.background.height+"px",s.backgroundHorizontal.style.height=i.centerContainer.height+"px",s.centerContainer.style.height=i.centerContainer.height+"px",s.leftContainer.style.height=i.leftContainer.height+"px",s.rightContainer.style.height=i.rightContainer.height+"px",s.background.style.width=i.background.width+"px",s.backgroundVertical.style.width=i.centerContainer.width+"px",s.backgroundHorizontal.style.width=i.background.width+"px",s.centerContainer.style.width=i.center.width+"px",s.top.style.width=i.top.width+"px",s.bottom.style.width=i.bottom.width+"px",s.background.style.left="0",s.background.style.top="0",s.backgroundVertical.style.left=i.left.width+"px",s.backgroundVertical.style.top="0",s.backgroundHorizontal.style.left="0",s.backgroundHorizontal.style.top=i.top.height+"px",s.centerContainer.style.left=i.left.width+"px",s.centerContainer.style.top=i.top.height+"px",s.leftContainer.style.left="0",s.leftContainer.style.top=i.top.height+"px",s.rightContainer.style.left=i.left.width+i.center.width+"px",s.rightContainer.style.top=i.top.height+"px",s.top.style.left=i.left.width+"px",s.top.style.top="0",s.bottom.style.left=i.left.width+"px",s.bottom.style.top=i.top.height+i.centerContainer.height+"px",this._updateScrollTop();var c=this.props.scrollTop;"bottom"==e.orientation&&(c+=Math.max(this.props.centerContainer.height-this.props.center.height-this.props.border.top-this.props.border.bottom,0)),s.center.style.left="0",s.center.style.top=c+"px",s.left.style.left="0",s.left.style.top=c+"px",s.right.style.left="0",s.right.style.top=c+"px";var p=0==this.props.scrollTop?"hidden":"",u=this.props.scrollTop==this.props.scrollTopMin?"hidden":"";s.shadowTop.style.visibility=p,s.shadowBottom.style.visibility=u,s.shadowTopLeft.style.visibility=p,s.shadowBottomLeft.style.visibility=u,s.shadowTopRight.style.visibility=p,s.shadowBottomRight.style.visibility=u,this.components.forEach(function(e){t=e.redraw()||t}),t&&this.redraw()}},s.prototype.repaint=function(){throw new Error("Function repaint is deprecated. Use redraw instead.")},s.prototype._toTime=function(t){var e=this.range.conversion(this.props.center.width);return new Date(t/e.scale+e.offset)},s.prototype._toGlobalTime=function(t){var e=this.range.conversion(this.props.root.width);return new Date(t/e.scale+e.offset)},s.prototype._toScreen=function(t){var e=this.range.conversion(this.props.center.width);return(t.valueOf()-e.offset)*e.scale},s.prototype._toGlobalScreen=function(t){var e=this.range.conversion(this.props.root.width);return(t.valueOf()-e.offset)*e.scale},s.prototype._initAutoResize=function(){1==this.options.autoResize?this._startAutoResize():this._stopAutoResize()},s.prototype._startAutoResize=function(){var t=this;this._stopAutoResize(),this._onResize=function(){return 1!=t.options.autoResize?void t._stopAutoResize():void(t.dom.root&&(t.dom.root.clientWidth!=t.props.lastWidth||t.dom.root.clientHeight!=t.props.lastHeight)&&(t.props.lastWidth=t.dom.root.clientWidth,t.props.lastHeight=t.dom.root.clientHeight,t.emit("change")))},r.addEventListener(window,"resize",this._onResize),this.watchTimer=setInterval(this._onResize,1e3)},s.prototype._stopAutoResize=function(){this.watchTimer&&(clearInterval(this.watchTimer),this.watchTimer=void 0),r.removeEventListener(window,"resize",this._onResize),this._onResize=null},s.prototype._onTouch=function(){this.touch.allowDragging=!0},s.prototype._onPinch=function(){this.touch.allowDragging=!1},s.prototype._onDragStart=function(){this.touch.initialScrollTop=this.props.scrollTop},s.prototype._onDrag=function(t){if(this.touch.allowDragging){var e=t.gesture.deltaY,i=this._getScrollTop(),s=this._setScrollTop(this.touch.initialScrollTop+e);s!=i&&this.redraw()}},s.prototype._setScrollTop=function(t){return this.props.scrollTop=t,this._updateScrollTop(),this.props.scrollTop},s.prototype._updateScrollTop=function(){var t=Math.min(this.props.centerContainer.height-this.props.center.height,0);return t!=this.props.scrollTopMin&&("bottom"==this.options.orientation&&(this.props.scrollTop+=t-this.props.scrollTopMin),this.props.scrollTopMin=t),this.props.scrollTop>0&&(this.props.scrollTop=0),this.props.scrollTops;s++){var o=s%2===0?1.3*i:.5*i;this.lineTo(t+o*Math.sin(2*s*Math.PI/10),e-o*Math.cos(2*s*Math.PI/10))}this.closePath()},CanvasRenderingContext2D.prototype.roundRect=function(t,e,i,s,o){var n=Math.PI/180;0>i-2*o&&(o=i/2),0>s-2*o&&(o=s/2),this.beginPath(),this.moveTo(t+o,e),this.lineTo(t+i-o,e),this.arc(t+i-o,e+o,o,270*n,360*n,!1),this.lineTo(t+i,e+s-o),this.arc(t+i-o,e+s-o,o,0,90*n,!1),this.lineTo(t+o,e+s),this.arc(t+o,e+s-o,o,90*n,180*n,!1),this.lineTo(t,e+o),this.arc(t+o,e+o,o,180*n,270*n,!1)},CanvasRenderingContext2D.prototype.ellipse=function(t,e,i,s){var o=.5522848,n=i/2*o,r=s/2*o,a=t+i,h=e+s,d=t+i/2,l=e+s/2;this.beginPath(),this.moveTo(t,l),this.bezierCurveTo(t,l-r,d-n,e,d,e),this.bezierCurveTo(d+n,e,a,l-r,a,l),this.bezierCurveTo(a,l+r,d+n,h,d,h),this.bezierCurveTo(d-n,h,t,l+r,t,l)},CanvasRenderingContext2D.prototype.database=function(t,e,i,s){var o=1/3,n=i,r=s*o,a=.5522848,h=n/2*a,d=r/2*a,l=t+n,c=e+r,p=t+n/2,u=e+r/2,f=e+(s-r/2),m=e+s;this.beginPath(),this.moveTo(l,u),this.bezierCurveTo(l,u+d,p+h,c,p,c),this.bezierCurveTo(p-h,c,t,u+d,t,u),this.bezierCurveTo(t,u-d,p-h,e,p,e),this.bezierCurveTo(p+h,e,l,u-d,l,u),this.lineTo(l,f),this.bezierCurveTo(l,f+d,p+h,m,p,m),this.bezierCurveTo(p-h,m,t,f+d,t,f),this.lineTo(t,u)},CanvasRenderingContext2D.prototype.arrow=function(t,e,i,s){var o=t-s*Math.cos(i),n=e-s*Math.sin(i),r=t-.9*s*Math.cos(i),a=e-.9*s*Math.sin(i),h=o+s/3*Math.cos(i+.5*Math.PI),d=n+s/3*Math.sin(i+.5*Math.PI),l=o+s/3*Math.cos(i-.5*Math.PI),c=n+s/3*Math.sin(i-.5*Math.PI);this.beginPath(),this.moveTo(t,e),this.lineTo(h,d),this.lineTo(r,a),this.lineTo(l,c),this.closePath()},CanvasRenderingContext2D.prototype.dashedLine=function(t,e,i,s,o){o||(o=[10,5]),0==p&&(p=.001);var n=o.length;this.moveTo(t,e);for(var r=i-t,a=s-e,h=a/r,d=Math.sqrt(r*r+a*a),l=0,c=!0;d>=.1;){var p=o[l++%n];p>d&&(p=d);var u=Math.sqrt(p*p/(1+h*h));0>r&&(u=-u),t+=u,e+=h*u,this[c?"lineTo":"moveTo"](t,e),d-=p,c=!c}})},function(t,e,i){var s=i(56),o=i(50),n=i(51),r=i(52),a=i(53),h=i(54),d=i(55);e._loadMixin=function(t){for(var e in t)t.hasOwnProperty(e)&&(this[e]=t[e])},e._clearMixin=function(t){for(var e in t)t.hasOwnProperty(e)&&(this[e]=void 0)},e._loadPhysicsSystem=function(){this._loadMixin(s),this._loadSelectedForceSolver(),1==this.constants.configurePhysics&&this._loadPhysicsConfiguration()},e._loadClusterSystem=function(){this.clusterSession=0,this.hubThreshold=5,this._loadMixin(o)},e._loadSectorSystem=function(){this.sectors={},this.activeSector=["default"],this.sectors.active={},this.sectors.active["default"]={nodes:{},edges:{},nodeIndices:[],formationScale:1,drawingNode:void 0},this.sectors.frozen={},this.sectors.support={nodes:{},edges:{},nodeIndices:[],formationScale:1,drawingNode:void 0},this.nodeIndices=this.sectors.active["default"].nodeIndices,this._loadMixin(n)},e._loadSelectionSystem=function(){this.selectionObj={nodes:{},edges:{}},this._loadMixin(r)},e._loadManipulationSystem=function(){this.blockConnectingEdgeSelection=!1,this.forceAppendSelection=!1,1==this.constants.dataManipulation.enabled?(void 0===this.manipulationDiv&&(this.manipulationDiv=document.createElement("div"),this.manipulationDiv.className="network-manipulationDiv",this.manipulationDiv.id="network-manipulationDiv",this.manipulationDiv.style.display=1==this.editMode?"block":"none",this.containerElement.insertBefore(this.manipulationDiv,this.frame)),void 0===this.editModeDiv&&(this.editModeDiv=document.createElement("div"),this.editModeDiv.className="network-manipulation-editMode",this.editModeDiv.id="network-manipulation-editMode",this.editModeDiv.style.display=1==this.editMode?"none":"block",this.containerElement.insertBefore(this.editModeDiv,this.frame)),void 0===this.closeDiv&&(this.closeDiv=document.createElement("div"),this.closeDiv.className="network-manipulation-closeDiv",this.closeDiv.id="network-manipulation-closeDiv",this.closeDiv.style.display=this.manipulationDiv.style.display,this.containerElement.insertBefore(this.closeDiv,this.frame)),this._loadMixin(a),this._createManipulatorBar()):void 0!==this.manipulationDiv&&(this._createManipulatorBar(),this.containerElement.removeChild(this.manipulationDiv),this.containerElement.removeChild(this.editModeDiv),this.containerElement.removeChild(this.closeDiv),this.manipulationDiv=void 0,this.editModeDiv=void 0,this.closeDiv=void 0,this._clearMixin(a))},e._loadNavigationControls=function(){this._loadMixin(h),this._cleanNavigation(),1==this.constants.navigation.enabled&&this._loadNavigationElements()},e._loadHierarchySystem=function(){this._loadMixin(d)}},function(t){function e(t){return t?i(t):void 0}function i(t){for(var i in e.prototype)t[i]=e.prototype[i];return t}t.exports=e,e.prototype.on=e.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks[t]=this._callbacks[t]||[]).push(e),this},e.prototype.once=function(t,e){function i(){s.off(t,i),e.apply(this,arguments)}var s=this;return this._callbacks=this._callbacks||{},i.fn=e,this.on(t,i),this},e.prototype.off=e.prototype.removeListener=e.prototype.removeAllListeners=e.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var i=this._callbacks[t];if(!i)return this;if(1==arguments.length)return delete this._callbacks[t],this;for(var s,o=0;os;++s)i[s].apply(this,e)}return this},e.prototype.listeners=function(t){return this._callbacks=this._callbacks||{},this._callbacks[t]||[]},e.prototype.hasListeners=function(t){return!!this.listeners(t).length}},function(t,e,i){var s;(function(t,o){(function(n){function r(t,e,i){switch(arguments.length){case 2:return null!=t?t:e;case 3:return null!=t?t:null!=e?e:i;default:throw new Error("Implement me")}}function a(){return{empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1}}function h(t,e){function i(){ve.suppressDeprecationWarnings===!1&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+t)}var s=!0;return f(function(){return s&&(i(),s=!1),e.apply(this,arguments)},e)}function d(t,e){return function(i){return v(t.call(this,i),e)}}function l(t,e){return function(i){return this.lang().ordinal(t.call(this,i),e)}}function c(){}function p(t){O(t),f(this,t)}function u(t){var e=S(t),i=e.year||0,s=e.quarter||0,o=e.month||0,n=e.week||0,r=e.day||0,a=e.hour||0,h=e.minute||0,d=e.second||0,l=e.millisecond||0;this._milliseconds=+l+1e3*d+6e4*h+36e5*a,this._days=+r+7*n,this._months=+o+3*s+12*i,this._data={},this._bubble()}function f(t,e){for(var i in e)e.hasOwnProperty(i)&&(t[i]=e[i]);return e.hasOwnProperty("toString")&&(t.toString=e.toString),e.hasOwnProperty("valueOf")&&(t.valueOf=e.valueOf),t}function m(t){var e,i={};for(e in t)t.hasOwnProperty(e)&&ke.hasOwnProperty(e)&&(i[e]=t[e]);return i}function g(t){return 0>t?Math.ceil(t):Math.floor(t)}function v(t,e,i){for(var s=""+Math.abs(t),o=t>=0;s.lengths;s++)(i&&t[s]!==e[s]||!i&&C(t[s])!==C(e[s]))&&r++;return r+n}function w(t){if(t){var e=t.toLowerCase().replace(/(.)s$/,"$1");t=ri[t]||ai[e]||e}return t}function S(t){var e,i,s={};for(i in t)t.hasOwnProperty(i)&&(e=w(i),e&&(s[e]=t[i]));return s}function M(t){var e,i;if(0===t.indexOf("week"))e=7,i="day";else{if(0!==t.indexOf("month"))return;e=12,i="month"}ve[t]=function(s,o){var r,a,h=ve.fn._lang[t],d=[];if("number"==typeof s&&(o=s,s=n),a=function(t){var e=ve().utc().set(i,t);return h.call(ve.fn._lang,e,s||"")},null!=o)return a(o);for(r=0;e>r;r++)d.push(a(r));return d}}function C(t){var e=+t,i=0;return 0!==e&&isFinite(e)&&(i=e>=0?Math.floor(e):Math.ceil(e)),i}function E(t,e){return new Date(Date.UTC(t,e+1,0)).getUTCDate()}function D(t,e,i){return re(ve([t,11,31+e-i]),e,i).week}function T(t){return L(t)?366:365}function L(t){return t%4===0&&t%100!==0||t%400===0}function O(t){var e;t._a&&-2===t._pf.overflow&&(e=t._a[Me]<0||t._a[Me]>11?Me:t._a[Ce]<1||t._a[Ce]>E(t._a[Se],t._a[Me])?Ce:t._a[Ee]<0||t._a[Ee]>23?Ee:t._a[De]<0||t._a[De]>59?De:t._a[Te]<0||t._a[Te]>59?Te:t._a[Le]<0||t._a[Le]>999?Le:-1,t._pf._overflowDayOfYear&&(Se>e||e>Ce)&&(e=Ce),t._pf.overflow=e)}function k(t){return null==t._isValid&&(t._isValid=!isNaN(t._d.getTime())&&t._pf.overflow<0&&!t._pf.empty&&!t._pf.invalidMonth&&!t._pf.nullInput&&!t._pf.invalidFormat&&!t._pf.userInvalidated,t._strict&&(t._isValid=t._isValid&&0===t._pf.charsLeftOver&&0===t._pf.unusedTokens.length)),t._isValid}function N(t){return t?t.toLowerCase().replace("_","-"):t}function I(t,e){return e._isUTC?ve(t).zone(e._offset||0):ve(t).local()}function A(t,e){return e.abbr=t,Oe[t]||(Oe[t]=new c),Oe[t].set(e),Oe[t]}function z(t){delete Oe[t]}function P(t){var e,s,o,n,r=0,a=function(t){if(!Oe[t]&&Ne)try{i(57)("./"+t)}catch(e){}return Oe[t]};if(!t)return ve.fn._lang;if(!b(t)){if(s=a(t))return s;t=[t]}for(;r0;){if(s=a(n.slice(0,e).join("-")))return s;if(o&&o.length>=e&&x(n,o,!0)>=e-1)break;e--}r++}return ve.fn._lang}function R(t){return t.match(/\[[\s\S]/)?t.replace(/^\[|\]$/g,""):t.replace(/\\/g,"")}function F(t){var e,i,s=t.match(Pe);for(e=0,i=s.length;i>e;e++)s[e]=pi[s[e]]?pi[s[e]]:R(s[e]);return function(o){var n="";for(e=0;i>e;e++)n+=s[e]instanceof Function?s[e].call(o,t):s[e];return n}}function H(t,e){return t.isValid()?(e=Y(e,t.lang()),hi[e]||(hi[e]=F(e)),hi[e](t)):t.lang().invalidDate()}function Y(t,e){function i(t){return e.longDateFormat(t)||t}var s=5;for(Re.lastIndex=0;s>=0&&Re.test(t);)t=t.replace(Re,i),Re.lastIndex=0,s-=1;return t}function B(t,e){var i,s=e._strict;switch(t){case"Q":return Ze;case"DDDD":return Ke;case"YYYY":case"GGGG":case"gggg":return s?$e:Ye;case"Y":case"G":case"g":return Qe;case"YYYYYY":case"YYYYY":case"GGGGG":case"ggggg":return s?Je:Be;case"S":if(s)return Ze;case"SS":if(s)return qe;case"SSS":if(s)return Ke;case"DDD":return He;case"MMM":case"MMMM":case"dd":case"ddd":case"dddd":return Ge;case"a":case"A":return P(e._l)._meridiemParse;case"X":return Ue;case"Z":case"ZZ":return je;case"T":return Ve;case"SSSS":return We;case"MM":case"DD":case"YY":case"GG":case"gg":case"HH":case"hh":case"mm":case"ss":case"ww":case"WW":return s?qe:Fe;case"M":case"D":case"d":case"H":case"h":case"m":case"s":case"w":case"W":case"e":case"E":return Fe;case"Do":return Xe;default:return i=new RegExp(K(q(t.replace("\\","")),"i"))}}function W(t){t=t||"";var e=t.match(je)||[],i=e[e.length-1]||[],s=(i+"").match(oi)||["-",0,0],o=+(60*s[1])+C(s[2]);return"+"===s[0]?-o:o}function G(t,e,i){var s,o=i._a;switch(t){case"Q":null!=e&&(o[Me]=3*(C(e)-1));break;case"M":case"MM":null!=e&&(o[Me]=C(e)-1);break;case"MMM":case"MMMM":s=P(i._l).monthsParse(e),null!=s?o[Me]=s:i._pf.invalidMonth=e;break;case"D":case"DD":null!=e&&(o[Ce]=C(e));break;case"Do":null!=e&&(o[Ce]=C(parseInt(e,10)));break;case"DDD":case"DDDD":null!=e&&(i._dayOfYear=C(e));break;case"YY":o[Se]=ve.parseTwoDigitYear(e);break;case"YYYY":case"YYYYY":case"YYYYYY":o[Se]=C(e);break;case"a":case"A":i._isPm=P(i._l).isPM(e);break;case"H":case"HH":case"h":case"hh":o[Ee]=C(e);break;case"m":case"mm":o[De]=C(e);break;case"s":case"ss":o[Te]=C(e);break;case"S":case"SS":case"SSS":case"SSSS":o[Le]=C(1e3*("0."+e));break;case"X":i._d=new Date(1e3*parseFloat(e));break;case"Z":case"ZZ":i._useUTC=!0,i._tzm=W(e);break;case"dd":case"ddd":case"dddd":s=P(i._l).weekdaysParse(e),null!=s?(i._w=i._w||{},i._w.d=s):i._pf.invalidWeekday=e; -break;case"w":case"ww":case"W":case"WW":case"d":case"e":case"E":t=t.substr(0,1);case"gggg":case"GGGG":case"GGGGG":t=t.substr(0,2),e&&(i._w=i._w||{},i._w[t]=C(e));break;case"gg":case"GG":i._w=i._w||{},i._w[t]=ve.parseTwoDigitYear(e)}}function j(t){var e,i,s,o,n,a,h,d;e=t._w,null!=e.GG||null!=e.W||null!=e.E?(n=1,a=4,i=r(e.GG,t._a[Se],re(ve(),1,4).year),s=r(e.W,1),o=r(e.E,1)):(d=P(t._l),n=d._week.dow,a=d._week.doy,i=r(e.gg,t._a[Se],re(ve(),n,a).year),s=r(e.w,1),null!=e.d?(o=e.d,n>o&&++s):o=null!=e.e?e.e+n:n),h=ae(i,s,o,a,n),t._a[Se]=h.year,t._dayOfYear=h.dayOfYear}function V(t){var e,i,s,o,n=[];if(!t._d){for(s=X(t),t._w&&null==t._a[Ce]&&null==t._a[Me]&&j(t),t._dayOfYear&&(o=r(t._a[Se],s[Se]),t._dayOfYear>T(o)&&(t._pf._overflowDayOfYear=!0),i=ie(o,0,t._dayOfYear),t._a[Me]=i.getUTCMonth(),t._a[Ce]=i.getUTCDate()),e=0;3>e&&null==t._a[e];++e)t._a[e]=n[e]=s[e];for(;7>e;e++)t._a[e]=n[e]=null==t._a[e]?2===e?1:0:t._a[e];t._d=(t._useUTC?ie:ee).apply(null,n),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()+t._tzm)}}function U(t){var e;t._d||(e=S(t._i),t._a=[e.year,e.month,e.day,e.hour,e.minute,e.second,e.millisecond],V(t))}function X(t){var e=new Date;return t._useUTC?[e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()]:[e.getFullYear(),e.getMonth(),e.getDate()]}function Z(t){if(t._f===ve.ISO_8601)return void J(t);t._a=[],t._pf.empty=!0;var e,i,s,o,n,r=P(t._l),a=""+t._i,h=a.length,d=0;for(s=Y(t._f,r).match(Pe)||[],e=0;e0&&t._pf.unusedInput.push(n),a=a.slice(a.indexOf(i)+i.length),d+=i.length),pi[o]?(i?t._pf.empty=!1:t._pf.unusedTokens.push(o),G(o,i,t)):t._strict&&!i&&t._pf.unusedTokens.push(o);t._pf.charsLeftOver=h-d,a.length>0&&t._pf.unusedInput.push(a),t._isPm&&t._a[Ee]<12&&(t._a[Ee]+=12),t._isPm===!1&&12===t._a[Ee]&&(t._a[Ee]=0),V(t),O(t)}function q(t){return t.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(t,e,i,s,o){return e||i||s||o})}function K(t){return t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function $(t){var e,i,s,o,n;if(0===t._f.length)return t._pf.invalidFormat=!0,void(t._d=new Date(0/0));for(o=0;on)&&(s=n,i=e));f(t,i||e)}function J(t){var e,i,s=t._i,o=ti.exec(s);if(o){for(t._pf.iso=!0,e=0,i=ii.length;i>e;e++)if(ii[e][1].exec(s)){t._f=ii[e][0]+(o[6]||" ");break}for(e=0,i=si.length;i>e;e++)if(si[e][1].exec(s)){t._f+=si[e][0];break}s.match(je)&&(t._f+="Z"),Z(t)}else t._isValid=!1}function Q(t){J(t),t._isValid===!1&&(delete t._isValid,ve.createFromInputFallback(t))}function te(t){var e=t._i,i=Ie.exec(e);e===n?t._d=new Date:i?t._d=new Date(+i[1]):"string"==typeof e?Q(t):b(e)?(t._a=e.slice(0),V(t)):_(e)?t._d=new Date(+e):"object"==typeof e?U(t):"number"==typeof e?t._d=new Date(e):ve.createFromInputFallback(t)}function ee(t,e,i,s,o,n,r){var a=new Date(t,e,i,s,o,n,r);return 1970>t&&a.setFullYear(t),a}function ie(t){var e=new Date(Date.UTC.apply(null,arguments));return 1970>t&&e.setUTCFullYear(t),e}function se(t,e){if("string"==typeof t)if(isNaN(t)){if(t=e.weekdaysParse(t),"number"!=typeof t)return null}else t=parseInt(t,10);return t}function oe(t,e,i,s,o){return o.relativeTime(e||1,!!i,t,s)}function ne(t,e,i){var s=we(Math.abs(t)/1e3),o=we(s/60),n=we(o/60),r=we(n/24),a=we(r/365),h=s0,h[4]=i,oe.apply({},h)}function re(t,e,i){var s,o=i-e,n=i-t.day();return n>o&&(n-=7),o-7>n&&(n+=7),s=ve(t).add("d",n),{week:Math.ceil(s.dayOfYear()/7),year:s.year()}}function ae(t,e,i,s,o){var n,r,a=ie(t,0,1).getUTCDay();return a=0===a?7:a,i=null!=i?i:o,n=o-a+(a>s?7:0)-(o>a?7:0),r=7*(e-1)+(i-o)+n+1,{year:r>0?t:t-1,dayOfYear:r>0?r:T(t-1)+r}}function he(t){var e=t._i,i=t._f;return null===e||i===n&&""===e?ve.invalid({nullInput:!0}):("string"==typeof e&&(t._i=e=P().preparse(e)),ve.isMoment(e)?(t=m(e),t._d=new Date(+e._d)):i?b(i)?$(t):Z(t):te(t),new p(t))}function de(t,e){var i,s;if(1===e.length&&b(e[0])&&(e=e[0]),!e.length)return ve();for(i=e[0],s=1;s=0?"+":"-";return e+v(Math.abs(t),6)},gg:function(){return v(this.weekYear()%100,2)},gggg:function(){return v(this.weekYear(),4)},ggggg:function(){return v(this.weekYear(),5)},GG:function(){return v(this.isoWeekYear()%100,2)},GGGG:function(){return v(this.isoWeekYear(),4)},GGGGG:function(){return v(this.isoWeekYear(),5)},e:function(){return this.weekday()},E:function(){return this.isoWeekday()},a:function(){return this.lang().meridiem(this.hours(),this.minutes(),!0)},A:function(){return this.lang().meridiem(this.hours(),this.minutes(),!1)},H:function(){return this.hours()},h:function(){return this.hours()%12||12},m:function(){return this.minutes()},s:function(){return this.seconds()},S:function(){return C(this.milliseconds()/100)},SS:function(){return v(C(this.milliseconds()/10),2)},SSS:function(){return v(this.milliseconds(),3)},SSSS:function(){return v(this.milliseconds(),3)},Z:function(){var t=-this.zone(),e="+";return 0>t&&(t=-t,e="-"),e+v(C(t/60),2)+":"+v(C(t)%60,2)},ZZ:function(){var t=-this.zone(),e="+";return 0>t&&(t=-t,e="-"),e+v(C(t/60),2)+v(C(t)%60,2)},z:function(){return this.zoneAbbr()},zz:function(){return this.zoneName()},X:function(){return this.unix()},Q:function(){return this.quarter()}},ui=["months","monthsShort","weekdays","weekdaysShort","weekdaysMin"];li.length;)be=li.pop(),pi[be+"o"]=l(pi[be],be);for(;ci.length;)be=ci.pop(),pi[be+be]=d(pi[be],2);for(pi.DDDD=d(pi.DDD,3),f(c.prototype,{set:function(t){var e,i;for(i in t)e=t[i],"function"==typeof e?this[i]=e:this["_"+i]=e},_months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),months:function(t){return this._months[t.month()]},_monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),monthsShort:function(t){return this._monthsShort[t.month()]},monthsParse:function(t){var e,i,s;for(this._monthsParse||(this._monthsParse=[]),e=0;12>e;e++)if(this._monthsParse[e]||(i=ve.utc([2e3,e]),s="^"+this.months(i,"")+"|^"+this.monthsShort(i,""),this._monthsParse[e]=new RegExp(s.replace(".",""),"i")),this._monthsParse[e].test(t))return e},_weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdays:function(t){return this._weekdays[t.day()]},_weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysShort:function(t){return this._weekdaysShort[t.day()]},_weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),weekdaysMin:function(t){return this._weekdaysMin[t.day()]},weekdaysParse:function(t){var e,i,s;for(this._weekdaysParse||(this._weekdaysParse=[]),e=0;7>e;e++)if(this._weekdaysParse[e]||(i=ve([2e3,1]).day(e),s="^"+this.weekdays(i,"")+"|^"+this.weekdaysShort(i,"")+"|^"+this.weekdaysMin(i,""),this._weekdaysParse[e]=new RegExp(s.replace(".",""),"i")),this._weekdaysParse[e].test(t))return e},_longDateFormat:{LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D YYYY",LLL:"MMMM D YYYY LT",LLLL:"dddd, MMMM D YYYY LT"},longDateFormat:function(t){var e=this._longDateFormat[t];return!e&&this._longDateFormat[t.toUpperCase()]&&(e=this._longDateFormat[t.toUpperCase()].replace(/MMMM|MM|DD|dddd/g,function(t){return t.slice(1)}),this._longDateFormat[t]=e),e},isPM:function(t){return"p"===(t+"").toLowerCase().charAt(0)},_meridiemParse:/[ap]\.?m?\.?/i,meridiem:function(t,e,i){return t>11?i?"pm":"PM":i?"am":"AM"},_calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},calendar:function(t,e){var i=this._calendar[t];return"function"==typeof i?i.apply(e):i},_relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},relativeTime:function(t,e,i,s){var o=this._relativeTime[i];return"function"==typeof o?o(t,e,i,s):o.replace(/%d/i,t)},pastFuture:function(t,e){var i=this._relativeTime[t>0?"future":"past"];return"function"==typeof i?i(e):i.replace(/%s/i,e)},ordinal:function(t){return this._ordinal.replace("%d",t)},_ordinal:"%d",preparse:function(t){return t},postformat:function(t){return t},week:function(t){return re(t,this._week.dow,this._week.doy).week},_week:{dow:0,doy:6},_invalidDate:"Invalid date",invalidDate:function(){return this._invalidDate}}),ve=function(t,e,i,s){var o;return"boolean"==typeof i&&(s=i,i=n),o={},o._isAMomentObject=!0,o._i=t,o._f=e,o._l=i,o._strict=s,o._isUTC=!1,o._pf=a(),he(o)},ve.suppressDeprecationWarnings=!1,ve.createFromInputFallback=h("moment construction falls back to js Date. This is discouraged and will be removed in upcoming major release. Please refer to https://github.com/moment/moment/issues/1407 for more info.",function(t){t._d=new Date(t._i)}),ve.min=function(){var t=[].slice.call(arguments,0);return de("isBefore",t)},ve.max=function(){var t=[].slice.call(arguments,0);return de("isAfter",t)},ve.utc=function(t,e,i,s){var o;return"boolean"==typeof i&&(s=i,i=n),o={},o._isAMomentObject=!0,o._useUTC=!0,o._isUTC=!0,o._l=i,o._i=t,o._f=e,o._strict=s,o._pf=a(),he(o).utc()},ve.unix=function(t){return ve(1e3*t)},ve.duration=function(t,e){var i,s,o,n=t,r=null;return ve.isDuration(t)?n={ms:t._milliseconds,d:t._days,M:t._months}:"number"==typeof t?(n={},e?n[e]=t:n.milliseconds=t):(r=Ae.exec(t))?(i="-"===r[1]?-1:1,n={y:0,d:C(r[Ce])*i,h:C(r[Ee])*i,m:C(r[De])*i,s:C(r[Te])*i,ms:C(r[Le])*i}):(r=ze.exec(t))&&(i="-"===r[1]?-1:1,o=function(t){var e=t&&parseFloat(t.replace(",","."));return(isNaN(e)?0:e)*i},n={y:o(r[2]),M:o(r[3]),d:o(r[4]),h:o(r[5]),m:o(r[6]),s:o(r[7]),w:o(r[8])}),s=new u(n),ve.isDuration(t)&&t.hasOwnProperty("_lang")&&(s._lang=t._lang),s},ve.version=_e,ve.defaultFormat=ei,ve.ISO_8601=function(){},ve.momentProperties=ke,ve.updateOffset=function(){},ve.relativeTimeThreshold=function(t,e){return di[t]===n?!1:(di[t]=e,!0)},ve.lang=function(t,e){var i;return t?(e?A(N(t),e):null===e?(z(t),t="en"):Oe[t]||P(t),i=ve.duration.fn._lang=ve.fn._lang=P(t),i._abbr):ve.fn._lang._abbr},ve.langData=function(t){return t&&t._lang&&t._lang._abbr&&(t=t._lang._abbr),P(t)},ve.isMoment=function(t){return t instanceof p||null!=t&&t.hasOwnProperty("_isAMomentObject")},ve.isDuration=function(t){return t instanceof u},be=ui.length-1;be>=0;--be)M(ui[be]);ve.normalizeUnits=function(t){return w(t)},ve.invalid=function(t){var e=ve.utc(0/0);return null!=t?f(e._pf,t):e._pf.userInvalidated=!0,e},ve.parseZone=function(){return ve.apply(null,arguments).parseZone()},ve.parseTwoDigitYear=function(t){return C(t)+(C(t)>68?1900:2e3)},f(ve.fn=p.prototype,{clone:function(){return ve(this)},valueOf:function(){return+this._d+6e4*(this._offset||0)},unix:function(){return Math.floor(+this/1e3)},toString:function(){return this.clone().lang("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},toDate:function(){return this._offset?new Date(+this):this._d},toISOString:function(){var t=ve(this).utc();return 00:!1},parsingFlags:function(){return f({},this._pf)},invalidAt:function(){return this._pf.overflow},utc:function(){return this.zone(0)},local:function(){return this.zone(0),this._isUTC=!1,this},format:function(t){var e=H(this,t||ve.defaultFormat);return this.lang().postformat(e)},add:function(t,e){var i;return i="string"==typeof t&&"string"==typeof e?ve.duration(isNaN(+e)?+t:+e,isNaN(+e)?e:t):"string"==typeof t?ve.duration(+e,t):ve.duration(t,e),y(this,i,1),this},subtract:function(t,e){var i;return i="string"==typeof t&&"string"==typeof e?ve.duration(isNaN(+e)?+t:+e,isNaN(+e)?e:t):"string"==typeof t?ve.duration(+e,t):ve.duration(t,e),y(this,i,-1),this},diff:function(t,e,i){var s,o,n=I(t,this),r=6e4*(this.zone()-n.zone());return e=w(e),"year"===e||"month"===e?(s=432e5*(this.daysInMonth()+n.daysInMonth()),o=12*(this.year()-n.year())+(this.month()-n.month()),o+=(this-ve(this).startOf("month")-(n-ve(n).startOf("month")))/s,o-=6e4*(this.zone()-ve(this).startOf("month").zone()-(n.zone()-ve(n).startOf("month").zone()))/s,"year"===e&&(o/=12)):(s=this-n,o="second"===e?s/1e3:"minute"===e?s/6e4:"hour"===e?s/36e5:"day"===e?(s-r)/864e5:"week"===e?(s-r)/6048e5:s),i?o:g(o)},from:function(t,e){return ve.duration(this.diff(t)).lang(this.lang()._abbr).humanize(!e)},fromNow:function(t){return this.from(ve(),t)},calendar:function(t){var e=t||ve(),i=I(e,this).startOf("day"),s=this.diff(i,"days",!0),o=-6>s?"sameElse":-1>s?"lastWeek":0>s?"lastDay":1>s?"sameDay":2>s?"nextDay":7>s?"nextWeek":"sameElse";return this.format(this.lang().calendar(o,this))},isLeapYear:function(){return L(this.year())},isDST:function(){return this.zone()+ve(t).startOf(e)},isBefore:function(t,e){return e="undefined"!=typeof e?e:"millisecond",+this.clone().startOf(e)<+ve(t).startOf(e)},isSame:function(t,e){return e=e||"ms",+this.clone().startOf(e)===+I(t,this).startOf(e)},min:h("moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548",function(t){return t=ve.apply(null,arguments),this>t?this:t}),max:h("moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548",function(t){return t=ve.apply(null,arguments),t>this?this:t}),zone:function(t,e){var i=this._offset||0;return null==t?this._isUTC?i:this._d.getTimezoneOffset():("string"==typeof t&&(t=W(t)),Math.abs(t)<16&&(t=60*t),this._offset=t,this._isUTC=!0,i!==t&&(!e||this._changeInProgress?y(this,ve.duration(i-t,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,ve.updateOffset(this,!0),this._changeInProgress=null)),this)},zoneAbbr:function(){return this._isUTC?"UTC":""},zoneName:function(){return this._isUTC?"Coordinated Universal Time":""},parseZone:function(){return this._tzm?this.zone(this._tzm):"string"==typeof this._i&&this.zone(this._i),this},hasAlignedHourOffset:function(t){return t=t?ve(t).zone():0,(this.zone()-t)%60===0},daysInMonth:function(){return E(this.year(),this.month())},dayOfYear:function(t){var e=we((ve(this).startOf("day")-ve(this).startOf("year"))/864e5)+1;return null==t?e:this.add("d",t-e)},quarter:function(t){return null==t?Math.ceil((this.month()+1)/3):this.month(3*(t-1)+this.month()%3)},weekYear:function(t){var e=re(this,this.lang()._week.dow,this.lang()._week.doy).year;return null==t?e:this.add("y",t-e)},isoWeekYear:function(t){var e=re(this,1,4).year;return null==t?e:this.add("y",t-e)},week:function(t){var e=this.lang().week(this);return null==t?e:this.add("d",7*(t-e))},isoWeek:function(t){var e=re(this,1,4).week;return null==t?e:this.add("d",7*(t-e))},weekday:function(t){var e=(this.day()+7-this.lang()._week.dow)%7;return null==t?e:this.add("d",t-e)},isoWeekday:function(t){return null==t?this.day()||7:this.day(this.day()%7?t:t-7)},isoWeeksInYear:function(){return D(this.year(),1,4)},weeksInYear:function(){var t=this._lang._week;return D(this.year(),t.dow,t.doy)},get:function(t){return t=w(t),this[t]()},set:function(t,e){return t=w(t),"function"==typeof this[t]&&this[t](e),this},lang:function(t){return t===n?this._lang:(this._lang=P(t),this)}}),ve.fn.millisecond=ve.fn.milliseconds=ue("Milliseconds",!1),ve.fn.second=ve.fn.seconds=ue("Seconds",!1),ve.fn.minute=ve.fn.minutes=ue("Minutes",!1),ve.fn.hour=ve.fn.hours=ue("Hours",!0),ve.fn.date=ue("Date",!0),ve.fn.dates=h("dates accessor is deprecated. Use date instead.",ue("Date",!0)),ve.fn.year=ue("FullYear",!0),ve.fn.years=h("years accessor is deprecated. Use year instead.",ue("FullYear",!0)),ve.fn.days=ve.fn.day,ve.fn.months=ve.fn.month,ve.fn.weeks=ve.fn.week,ve.fn.isoWeeks=ve.fn.isoWeek,ve.fn.quarters=ve.fn.quarter,ve.fn.toJSON=ve.fn.toISOString,f(ve.duration.fn=u.prototype,{_bubble:function(){var t,e,i,s,o=this._milliseconds,n=this._days,r=this._months,a=this._data;a.milliseconds=o%1e3,t=g(o/1e3),a.seconds=t%60,e=g(t/60),a.minutes=e%60,i=g(e/60),a.hours=i%24,n+=g(i/24),a.days=n%30,r+=g(n/30),a.months=r%12,s=g(r/12),a.years=s},weeks:function(){return g(this.days()/7)},valueOf:function(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*C(this._months/12)},humanize:function(t){var e=+this,i=ne(e,!t,this.lang());return t&&(i=this.lang().pastFuture(e,i)),this.lang().postformat(i)},add:function(t,e){var i=ve.duration(t,e);return this._milliseconds+=i._milliseconds,this._days+=i._days,this._months+=i._months,this._bubble(),this},subtract:function(t,e){var i=ve.duration(t,e);return this._milliseconds-=i._milliseconds,this._days-=i._days,this._months-=i._months,this._bubble(),this},get:function(t){return t=w(t),this[t.toLowerCase()+"s"]()},as:function(t){return t=w(t),this["as"+t.charAt(0).toUpperCase()+t.slice(1)+"s"]()},lang:ve.fn.lang,toIsoString:function(){var t=Math.abs(this.years()),e=Math.abs(this.months()),i=Math.abs(this.days()),s=Math.abs(this.hours()),o=Math.abs(this.minutes()),n=Math.abs(this.seconds()+this.milliseconds()/1e3);return this.asSeconds()?(this.asSeconds()<0?"-":"")+"P"+(t?t+"Y":"")+(e?e+"M":"")+(i?i+"D":"")+(s||o||n?"T":"")+(s?s+"H":"")+(o?o+"M":"")+(n?n+"S":""):"P0D"}});for(be in ni)ni.hasOwnProperty(be)&&(me(be,ni[be]),fe(be.toLowerCase()));me("Weeks",6048e5),ve.duration.fn.asMonths=function(){return(+this-31536e6*this.years())/2592e6+12*this.years()},ve.lang("en",{ordinal:function(t){var e=t%10,i=1===C(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th";return t+i}}),Ne?o.exports=ve:(s=function(t,e,i){return i.config&&i.config()&&i.config().noGlobal===!0&&(xe.moment=ye),ve}.call(e,i,e,o),!(s!==n&&(o.exports=s)),ge(!0))}).call(this)}).call(e,function(){return this}(),i(61)(t))},function(t){function e(t,e,i){return t.addEventListener?t.addEventListener(e,i,!1):void t.attachEvent("on"+e,i)}function i(t){return"keypress"==t.type?String.fromCharCode(t.which):_[t.which]?_[t.which]:x[t.which]?x[t.which]:String.fromCharCode(t.which).toLowerCase()}function s(t){var e=t.target||t.srcElement,i=e.tagName;return(" "+e.className+" ").indexOf(" mousetrap ")>-1?!1:"INPUT"==i||"SELECT"==i||"TEXTAREA"==i||e.contentEditable&&"true"==e.contentEditable}function o(t,e){return t.sort().join(",")===e.sort().join(",")}function n(t){t=t||{};var e,i=!1;for(e in E)t[e]?i=!0:E[e]=0;i||(T=!1)}function r(t,e,i,s,n){var r,a,h=[];if(!M[t])return[];for("keyup"==i&&c(t)&&(e=[t]),r=0;r95&&112>t||_.hasOwnProperty(t)&&(y[_[t]]=t)}return y}function f(t,e,i){return i||(i=u()[t]?"keydown":"keypress"),"keypress"==i&&e.length&&(i="keydown"),i}function m(t,e,s,o){E[t]=0,o||(o=f(e[0],[]));var r,a=function(){T=o,++E[t],p()},d=function(t){h(s,t),"keyup"!==o&&(D=i(t)),setTimeout(n,10)};for(r=0;r1)return m(t,d,e,i);for(h="+"===t?["+"]:t.split("+"),n=0;n":".","?":"/","|":"\\"},S={option:"alt",command:"meta","return":"enter",escape:"esc"},M={},C={},E={},D=!1,T=!1,L=1;20>L;++L)_[111+L]="f"+L;for(L=0;9>=L;++L)_[L+96]=L;e(document,"keypress",l),e(document,"keydown",l),e(document,"keyup",l);var O={bind:function(t,e,i){return v(t instanceof Array?t:[t],e,i),C[t+":"+i]=e,this},unbind:function(t,e){return C[t+":"+e]&&(delete C[t+":"+e],this.bind(t,function(){},e)),this},trigger:function(t,e){return C[t+":"+e](),this},reset:function(){return M={},C={},this}};t.exports=O},function(t,e,i){var s;!function(o,n){"use strict";function r(){a.READY||(w.determineEventTypes(),x.each(a.gestures,function(t){M.register(t)}),w.onTouch(a.DOCUMENT,v,M.detect),w.onTouch(a.DOCUMENT,y,M.detect),a.READY=!0)}var a=function C(t,e){return new C.Instance(t,e||{})};a.VERSION="1.1.3",a.defaults={behavior:{userSelect:"none",touchAction:"pan-y",touchCallout:"none",contentZooming:"none",userDrag:"none",tapHighlightColor:"rgba(0,0,0,0)"}},a.DOCUMENT=document,a.HAS_POINTEREVENTS=navigator.pointerEnabled||navigator.msPointerEnabled,a.HAS_TOUCHEVENTS="ontouchstart"in o,a.IS_MOBILE=/mobile|tablet|ip(ad|hone|od)|android|silk/i.test(navigator.userAgent),a.NO_MOUSEEVENTS=a.HAS_TOUCHEVENTS&&a.IS_MOBILE||a.HAS_POINTEREVENTS,a.CALCULATE_INTERVAL=25;var h={},d=a.DIRECTION_DOWN="down",l=a.DIRECTION_LEFT="left",c=a.DIRECTION_UP="up",p=a.DIRECTION_RIGHT="right",u=a.POINTER_MOUSE="mouse",f=a.POINTER_TOUCH="touch",m=a.POINTER_PEN="pen",g=a.EVENT_START="start",v=a.EVENT_MOVE="move",y=a.EVENT_END="end",b=a.EVENT_RELEASE="release",_=a.EVENT_TOUCH="touch";a.READY=!1,a.plugins=a.plugins||{},a.gestures=a.gestures||{};var x=a.utils={extend:function(t,e,i){for(var s in e)!e.hasOwnProperty(s)||t[s]!==n&&i||(t[s]=e[s]);return t},on:function(t,e,i){t.addEventListener(e,i,!1)},off:function(t,e,i){t.removeEventListener(e,i,!1)},each:function(t,e,i){var s,o;if("forEach"in t)t.forEach(e,i);else if(t.length!==n){for(s=0,o=t.length;o>s;s++)if(e.call(i,t[s],s,t)===!1)return}else for(s in t)if(t.hasOwnProperty(s)&&e.call(i,t[s],s,t)===!1)return},inStr:function(t,e){return t.indexOf(e)>-1},inArray:function(t,e){if(t.indexOf){var i=t.indexOf(e);return-1===i?!1:i}for(var s=0,o=t.length;o>s;s++)if(t[s]===e)return s;return!1},toArray:function(t){return Array.prototype.slice.call(t,0)},hasParent:function(t,e){for(;t;){if(t==e)return!0;t=t.parentNode}return!1},getCenter:function(t){var e=[],i=[],s=[],o=[],n=Math.min,r=Math.max;return 1===t.length?{pageX:t[0].pageX,pageY:t[0].pageY,clientX:t[0].clientX,clientY:t[0].clientY}:(x.each(t,function(t){e.push(t.pageX),i.push(t.pageY),s.push(t.clientX),o.push(t.clientY)}),{pageX:(n.apply(Math,e)+r.apply(Math,e))/2,pageY:(n.apply(Math,i)+r.apply(Math,i))/2,clientX:(n.apply(Math,s)+r.apply(Math,s))/2,clientY:(n.apply(Math,o)+r.apply(Math,o))/2})},getVelocity:function(t,e,i){return{x:Math.abs(e/t)||0,y:Math.abs(i/t)||0}},getAngle:function(t,e){var i=e.clientX-t.clientX,s=e.clientY-t.clientY;return 180*Math.atan2(s,i)/Math.PI},getDirection:function(t,e){var i=Math.abs(t.clientX-e.clientX),s=Math.abs(t.clientY-e.clientY);return i>=s?t.clientX-e.clientX>0?l:p:t.clientY-e.clientY>0?c:d},getDistance:function(t,e){var i=e.clientX-t.clientX,s=e.clientY-t.clientY;return Math.sqrt(i*i+s*s)},getScale:function(t,e){return t.length>=2&&e.length>=2?this.getDistance(e[0],e[1])/this.getDistance(t[0],t[1]):1},getRotation:function(t,e){return t.length>=2&&e.length>=2?this.getAngle(e[1],e[0])-this.getAngle(t[1],t[0]):0},isVertical:function(t){return t==c||t==d},setPrefixedCss:function(t,e,i,s){var o=["","Webkit","Moz","O","ms"];e=x.toCamelCase(e);for(var n=0;n0&&this.started&&(r=v),this.started=!0;var d=this.collectEventData(i,r,o,t);return e!=y&&s.call(M,d),a&&(d.changedLength=h,d.eventType=a,s.call(M,d),d.eventType=r,delete d.changedLength),r==y&&(s.call(M,d),this.started=!1),r},determineEventTypes:function(){var t;return t=a.HAS_POINTEREVENTS?o.PointerEvent?["pointerdown","pointermove","pointerup pointercancel lostpointercapture"]:["MSPointerDown","MSPointerMove","MSPointerUp MSPointerCancel MSLostPointerCapture"]:a.NO_MOUSEEVENTS?["touchstart","touchmove","touchend touchcancel"]:["touchstart mousedown","touchmove mousemove","touchend touchcancel mouseup"],h[g]=t[0],h[v]=t[1],h[y]=t[2],h},getTouchList:function(t,e){if(a.HAS_POINTEREVENTS)return S.getTouchList();if(t.touches){if(e==v)return t.touches;var i=[],s=[].concat(x.toArray(t.touches),x.toArray(t.changedTouches)),o=[];return x.each(s,function(t){x.inArray(i,t.identifier)===!1&&o.push(t),i.push(t.identifier)}),o}return t.identifier=1,[t]},collectEventData:function(t,e,i,s){var o=f;return x.inStr(s.type,"mouse")||S.matchType(u,s)?o=u:S.matchType(m,s)&&(o=m),{center:x.getCenter(i),timeStamp:Date.now(),target:s.target,touches:i,eventType:e,pointerType:o,srcEvent:s,preventDefault:function(){var t=this.srcEvent;t.preventManipulation&&t.preventManipulation(),t.preventDefault&&t.preventDefault()},stopPropagation:function(){this.srcEvent.stopPropagation()},stopDetect:function(){return M.stopDetect()}}}},S=a.PointerEvent={pointers:{},getTouchList:function(){var t=[];return x.each(this.pointers,function(e){t.push(e)}),t},updatePointer:function(t,e){t==y||t!=y&&1!==e.buttons?delete this.pointers[e.pointerId]:(e.identifier=e.pointerId,this.pointers[e.pointerId]=e)},matchType:function(t,e){if(!e.pointerType)return!1;var i=e.pointerType,s={};return s[u]=i===(e.MSPOINTER_TYPE_MOUSE||u),s[f]=i===(e.MSPOINTER_TYPE_TOUCH||f),s[m]=i===(e.MSPOINTER_TYPE_PEN||m),s[t]},reset:function(){this.pointers={} -}},M=a.detection={gestures:[],current:null,previous:null,stopped:!1,startDetect:function(t,e){this.current||(this.stopped=!1,this.current={inst:t,startEvent:x.extend({},e),lastEvent:!1,lastCalcEvent:!1,futureCalcEvent:!1,lastCalcData:{},name:""},this.detect(e))},detect:function(t){if(this.current&&!this.stopped){t=this.extendEventData(t);var e=this.current.inst,i=e.options;return x.each(this.gestures,function(s){!this.stopped&&e.enabled&&i[s.name]&&s.handler.call(s,t,e)},this),this.current&&(this.current.lastEvent=t),t.eventType==y&&this.stopDetect(),t}},stopDetect:function(){this.previous=x.extend({},this.current),this.current=null,this.stopped=!0},getCalculatedData:function(t,e,i,s,o){var n=this.current,r=!1,h=n.lastCalcEvent,d=n.lastCalcData;h&&t.timeStamp-h.timeStamp>a.CALCULATE_INTERVAL&&(e=h.center,i=t.timeStamp-h.timeStamp,s=t.center.clientX-h.center.clientX,o=t.center.clientY-h.center.clientY,r=!0),(t.eventType==_||t.eventType==b)&&(n.futureCalcEvent=t),(!n.lastCalcEvent||r)&&(d.velocity=x.getVelocity(i,s,o),d.angle=x.getAngle(e,t.center),d.direction=x.getDirection(e,t.center),n.lastCalcEvent=n.futureCalcEvent||t,n.futureCalcEvent=t),t.velocityX=d.velocity.x,t.velocityY=d.velocity.y,t.interimAngle=d.angle,t.interimDirection=d.direction},extendEventData:function(t){var e=this.current,i=e.startEvent,s=e.lastEvent||i;(t.eventType==_||t.eventType==b)&&(i.touches=[],x.each(t.touches,function(t){i.touches.push({clientX:t.clientX,clientY:t.clientY})}));var o=t.timeStamp-i.timeStamp,n=t.center.clientX-i.center.clientX,r=t.center.clientY-i.center.clientY;return this.getCalculatedData(t,s.center,o,n,r),x.extend(t,{startEvent:i,deltaTime:o,deltaX:n,deltaY:r,distance:x.getDistance(i.center,t.center),angle:x.getAngle(i.center,t.center),direction:x.getDirection(i.center,t.center),scale:x.getScale(i.touches,t.touches),rotation:x.getRotation(i.touches,t.touches)}),t},register:function(t){var e=t.defaults||{};return e[t.name]===n&&(e[t.name]=!0),x.extend(a.defaults,e,!0),t.index=t.index||1e3,this.gestures.push(t),this.gestures.sort(function(t,e){return t.indexe.index?1:0}),this.gestures}};a.Instance=function(t,e){var i=this;r(),this.element=t,this.enabled=!0,x.each(e,function(t,i){delete e[i],e[x.toCamelCase(i)]=t}),this.options=x.extend(x.extend({},a.defaults),e||{}),this.options.behavior&&x.toggleBehavior(this.element,this.options.behavior,!0),this.eventStartHandler=w.onTouch(t,g,function(t){i.enabled&&t.eventType==g?M.startDetect(i,t):t.eventType==_&&M.detect(t)}),this.eventHandlers=[]},a.Instance.prototype={on:function(t,e){var i=this;return w.on(i.element,t,e,function(t){i.eventHandlers.push({gesture:t,handler:e})}),i},off:function(t,e){var i=this;return w.off(i.element,t,e,function(t){var s=x.inArray({gesture:t,handler:e});s!==!1&&i.eventHandlers.splice(s,1)}),i},trigger:function(t,e){e||(e={});var i=a.DOCUMENT.createEvent("Event");i.initEvent(t,!0,!0),i.gesture=e;var s=this.element;return x.hasParent(e.target,s)&&(s=e.target),s.dispatchEvent(i),this},enable:function(t){return this.enabled=t,this},dispose:function(){var t,e;for(x.toggleBehavior(this.element,this.options.behavior,!1),t=-1;e=this.eventHandlers[++t];)x.off(this.element,e.gesture,e.handler);return this.eventHandlers=[],w.off(this.element,h[g],this.eventStartHandler),null}},function(t){function e(e,s){var o=M.current;if(!(s.options.dragMaxTouches>0&&e.touches.length>s.options.dragMaxTouches))switch(e.eventType){case g:i=!1;break;case v:if(e.distance0)){var r=Math.abs(s.options.dragMinDistance/e.distance);n.pageX+=e.deltaX*r,n.pageY+=e.deltaY*r,n.clientX+=e.deltaX*r,n.clientY+=e.deltaY*r,e=M.extendEventData(e)}(o.lastEvent.dragLockToAxis||s.options.dragLockToAxis&&s.options.dragLockMinDistance<=e.distance)&&(e.dragLockToAxis=!0);var a=o.lastEvent.direction;e.dragLockToAxis&&a!==e.direction&&(e.direction=x.isVertical(a)?e.deltaY<0?c:d:e.deltaX<0?l:p),i||(s.trigger(t+"start",e),i=!0),s.trigger(t,e),s.trigger(t+e.direction,e);var h=x.isVertical(e.direction);(s.options.dragBlockVertical&&h||s.options.dragBlockHorizontal&&!h)&&e.preventDefault();break;case b:i&&e.changedLength<=s.options.dragMaxTouches&&(s.trigger(t+"end",e),i=!1);break;case y:i=!1}}var i=!1;a.gestures.Drag={name:t,index:50,handler:e,defaults:{dragMinDistance:10,dragDistanceCorrection:!0,dragMaxTouches:1,dragBlockHorizontal:!1,dragBlockVertical:!1,dragLockToAxis:!1,dragLockMinDistance:25}}}("drag"),a.gestures.Gesture={name:"gesture",index:1337,handler:function(t,e){e.trigger(this.name,t)}},function(t){function e(e,s){var o=s.options,n=M.current;switch(e.eventType){case g:clearTimeout(i),n.name=t,i=setTimeout(function(){n&&n.name==t&&s.trigger(t,e)},o.holdTimeout);break;case v:e.distance>o.holdThreshold&&clearTimeout(i);break;case b:clearTimeout(i)}}var i;a.gestures.Hold={name:t,index:10,defaults:{holdTimeout:500,holdThreshold:2},handler:e}}("hold"),a.gestures.Release={name:"release",index:1/0,handler:function(t,e){t.eventType==b&&e.trigger(this.name,t)}},a.gestures.Swipe={name:"swipe",index:40,defaults:{swipeMinTouches:1,swipeMaxTouches:1,swipeVelocityX:.6,swipeVelocityY:.6},handler:function(t,e){if(t.eventType==b){var i=t.touches.length,s=e.options;if(is.swipeMaxTouches)return;(t.velocityX>s.swipeVelocityX||t.velocityY>s.swipeVelocityY)&&(e.trigger(this.name,t),e.trigger(this.name+t.direction,t))}}},function(t){function e(e,s){var o,n,r=s.options,a=M.current,h=M.previous;switch(e.eventType){case g:i=!1;break;case v:i=i||e.distance>r.tapMaxDistance;break;case y:!x.inStr(e.srcEvent.type,"cancel")&&e.deltaTimes.options.transformMinRotation&&s.trigger("rotate",e),o>s.options.transformMinScale&&(s.trigger("pinch",e),s.trigger("pinch"+(e.scale<1?"in":"out"),e));break;case b:i&&e.changedLength<2&&(s.trigger(t+"end",e),i=!1)}}var i=!1;a.gestures.Transform={name:t,index:45,defaults:{transformMinScale:.01,transformMinRotation:1},handler:e}}("transform"),s=function(){return a}.call(e,i,e,t),!(s!==n&&(t.exports=s))}(window)},function(t,e){e.startWithClustering=function(){this.clusterToFit(this.constants.clustering.initialMaxNodes,!0),this.updateLabels(),this.stabilize&&this._stabilize(),this.start()},e.clusterToFit=function(t,e){for(var i=this.nodeIndices.length,s=50,o=0;i>t&&s>o;)o%3==0?(this.forceAggregateHubs(!0),this.normalizeClusterLevels()):this.increaseClusterLevel(),i=this.nodeIndices.length,o+=1;o>0&&1==e&&this.repositionNodes(),this._updateCalculationNodes()},e.openCluster=function(t){var e=this.moving;if(t.clusterSize>this.constants.clustering.sectorThreshold&&this._nodeInActiveArea(t)&&("default"!=this._sector()||1!=this.nodeIndices.length)){this._addSector(t);for(var i=0;this.nodeIndices.lengthi;)this.decreaseClusterLevel(),i+=1}else this._expandClusterNode(t,!1,!0),this._updateNodeIndexList(),this._updateDynamicEdges(),this._updateCalculationNodes(),this.updateLabels();this.moving!=e&&this.start()},e.updateClustersDefault=function(){1==this.constants.clustering.enabled&&this.updateClusters(0,!1,!1)},e.increaseClusterLevel=function(){this.updateClusters(-1,!1,!0)},e.decreaseClusterLevel=function(){this.updateClusters(1,!1,!0)},e.updateClusters=function(t,e,i,s){var o=this.moving,n=this.nodeIndices.length;this.previousScale>this.scale&&0==t&&this._collapseSector(),this.previousScale>this.scale||-1==t?this._formClusters(i):(this.previousScalethis.scale||-1==t)&&(this._aggregateHubs(i),this._updateNodeIndexList()),(this.previousScale>this.scale||-1==t)&&(this.handleChains(),this._updateNodeIndexList()),this.previousScale=this.scale,this._updateDynamicEdges(),this.updateLabels(),this.nodeIndices.lengththis.constants.clustering.chainThreshold&&this._reduceAmountOfChains(1-this.constants.clustering.chainThreshold/t)},e._aggregateHubs=function(t){this._getHubSize(),this._formClustersByHub(t,!1)},e.forceAggregateHubs=function(t){var e=this.moving,i=this.nodeIndices.length;this._aggregateHubs(!0),this._updateNodeIndexList(),this._updateDynamicEdges(),this.updateLabels(),this.nodeIndices.length!=i&&(this.clusterSession+=1),(0==t||void 0===t)&&this.moving!=e&&this.start()},e._openClustersBySize=function(){for(var t in this.nodes)if(this.nodes.hasOwnProperty(t)){var e=this.nodes[t];1==e.inView()&&(e.width*this.scale>this.constants.clustering.screenSizeThreshold*this.frame.canvas.clientWidth||e.height*this.scale>this.constants.clustering.screenSizeThreshold*this.frame.canvas.clientHeight)&&this.openCluster(e)}},e._openClusters=function(t,e){for(var i=0;i1&&(t.clusterSizei)){var r=n.from,a=n.to;n.to.options.mass>n.from.options.mass&&(r=n.to,a=n.from),1==a.dynamicEdgesLength?this._addToCluster(r,a,!1):1==r.dynamicEdgesLength&&this._addToCluster(a,r,!1)}}},e._forceClustersByZoom=function(){for(var t in this.nodes)if(this.nodes.hasOwnProperty(t)){var e=this.nodes[t];if(1==e.dynamicEdgesLength&&0!=e.dynamicEdges.length){var i=e.dynamicEdges[0],s=i.toId==e.id?this.nodes[i.fromId]:this.nodes[i.toId];e.id!=s.id&&(s.options.mass>e.options.mass?this._addToCluster(s,e,!0):this._addToCluster(e,s,!0))}}},e._clusterToSmallestNeighbour=function(t){for(var e=-1,i=null,s=0;so.clusterSessions.length&&(e=o.clusterSessions.length,i=o)}null!=o&&void 0!==this.nodes[o.id]&&this._addToCluster(o,t,!0)},e._formClustersByHub=function(t,e){for(var i in this.nodes)this.nodes.hasOwnProperty(i)&&this._formClusterFromHub(this.nodes[i],t,e)},e._formClusterFromHub=function(t,e,i,s){if(void 0===s&&(s=0),t.dynamicEdgesLength>=this.hubThreshold&&0==i||t.dynamicEdgesLength==this.hubThreshold&&1==i){for(var o,n,r,a=this.constants.clustering.clusterEdgeThreshold/this.scale,h=!1,d=[],l=t.dynamicEdges.length,c=0;l>c;c++)d.push(t.dynamicEdges[c].id);if(0==e)for(h=!1,c=0;l>c;c++){var p=this.edges[d[c]];if(void 0!==p&&p.connected&&p.toId!=p.fromId&&(o=p.to.x-p.from.x,n=p.to.y-p.from.y,r=Math.sqrt(o*o+n*n),a>r)){h=!0;break}}if(!e&&h||e)for(c=0;l>c;c++)if(p=this.edges[d[c]],void 0!==p){var u=this.nodes[p.fromId==t.id?p.toId:p.fromId];u.dynamicEdges.length<=this.hubThreshold+s&&u.id!=t.id&&this._addToCluster(t,u,e)}}},e._addToCluster=function(t,e,i){t.containedNodes[e.id]=e;for(var s=0;s1)for(var s=0;s1&&(e.label="[".concat(String(e.clusterSize),"]"))}for(t in this.nodes)this.nodes.hasOwnProperty(t)&&(e=this.nodes[t],1==e.clusterSize&&(e.label=void 0!==e.originalLabel?e.originalLabel:String(e.id)))},e.normalizeClusterLevels=function(){var t,e=0,i=1e9,s=0;for(t in this.nodes)this.nodes.hasOwnProperty(t)&&(s=this.nodes[t].clusterSessions.length,s>e&&(e=s),i>s&&(i=s));if(e-i>this.constants.clustering.clusterLevelDifference){var o=this.nodeIndices.length,n=e-this.constants.clustering.clusterLevelDifference;for(t in this.nodes)this.nodes.hasOwnProperty(t)&&this.nodes[t].clusterSessions.lengths&&(s=n.dynamicEdgesLength),t+=n.dynamicEdgesLength,e+=Math.pow(n.dynamicEdgesLength,2),i+=1}t/=i,e/=i;var r=e-Math.pow(t,2),a=Math.sqrt(r);this.hubThreshold=Math.floor(t+2*a),this.hubThreshold>s&&(this.hubThreshold=s)},e._reduceAmountOfChains=function(t){this.hubThreshold=2;var e=Math.floor(this.nodeIndices.length*t);for(var i in this.nodes)this.nodes.hasOwnProperty(i)&&2==this.nodes[i].dynamicEdgesLength&&this.nodes[i].dynamicEdges.length>=2&&e>0&&(this._formClusterFromHub(this.nodes[i],!0,!0,1),e-=1)},e._getChainFraction=function(){var t=0,e=0;for(var i in this.nodes)this.nodes.hasOwnProperty(i)&&(2==this.nodes[i].dynamicEdgesLength&&this.nodes[i].dynamicEdges.length>=2&&(t+=1),e+=1);return t/e}},function(t,e,i){var s=i(1);e._putDataInSector=function(){this.sectors.active[this._sector()].nodes=this.nodes,this.sectors.active[this._sector()].edges=this.edges,this.sectors.active[this._sector()].nodeIndices=this.nodeIndices},e._switchToSector=function(t,e){void 0===e||"active"==e?this._switchToActiveSector(t):this._switchToFrozenSector(t)},e._switchToActiveSector=function(t){this.nodeIndices=this.sectors.active[t].nodeIndices,this.nodes=this.sectors.active[t].nodes,this.edges=this.sectors.active[t].edges},e._switchToSupportSector=function(){this.nodeIndices=this.sectors.support.nodeIndices,this.nodes=this.sectors.support.nodes,this.edges=this.sectors.support.edges},e._switchToFrozenSector=function(t){this.nodeIndices=this.sectors.frozen[t].nodeIndices,this.nodes=this.sectors.frozen[t].nodes,this.edges=this.sectors.frozen[t].edges},e._loadLatestSector=function(){this._switchToSector(this._sector())},e._sector=function(){return this.activeSector[this.activeSector.length-1]},e._previousSector=function(){if(this.activeSector.length>1)return this.activeSector[this.activeSector.length-2];throw new TypeError("there are not enough sectors in the this.activeSector array.")},e._setActiveSector=function(t){this.activeSector.push(t)},e._forgetLastSector=function(){this.activeSector.pop()},e._createNewSector=function(t){this.sectors.active[t]={nodes:{},edges:{},nodeIndices:[],formationScale:this.scale,drawingNode:void 0},this.sectors.active[t].drawingNode=new Node({id:t,color:{background:"#eaefef",border:"495c5e"}},{},{},this.constants),this.sectors.active[t].drawingNode.clusterSize=2},e._deleteActiveSector=function(t){delete this.sectors.active[t]},e._deleteFrozenSector=function(t){delete this.sectors.frozen[t]},e._freezeSector=function(t){this.sectors.frozen[t]=this.sectors.active[t],this._deleteActiveSector(t)},e._activateSector=function(t){this.sectors.active[t]=this.sectors.frozen[t],this._deleteFrozenSector(t)},e._mergeThisWithFrozen=function(t){for(var e in this.nodes)this.nodes.hasOwnProperty(e)&&(this.sectors.frozen[t].nodes[e]=this.nodes[e]);for(var i in this.edges)this.edges.hasOwnProperty(i)&&(this.sectors.frozen[t].edges[i]=this.edges[i]);for(var s=0;s1?this[t](s[0],s[1]):this[t](e)}this._loadLatestSector()},e._doInSupportSector=function(t,e){if(void 0===e)this._switchToSupportSector(),this[t]();else{this._switchToSupportSector();var i=Array.prototype.splice.call(arguments,1);i.length>1?this[t](i[0],i[1]):this[t](e)}this._loadLatestSector()},e._doInAllFrozenSectors=function(t,e){if(void 0===e)for(var i in this.sectors.frozen)this.sectors.frozen.hasOwnProperty(i)&&(this._switchToFrozenSector(i),this[t]());else for(var i in this.sectors.frozen)if(this.sectors.frozen.hasOwnProperty(i)){this._switchToFrozenSector(i);var s=Array.prototype.splice.call(arguments,1);s.length>1?this[t](s[0],s[1]):this[t](e)}this._loadLatestSector()},e._doInAllSectors=function(t,e){var i=Array.prototype.splice.call(arguments,1);void 0===e?(this._doInAllActiveSectors(t),this._doInAllFrozenSectors(t)):i.length>1?(this._doInAllActiveSectors(t,i[0],i[1]),this._doInAllFrozenSectors(t,i[0],i[1])):(this._doInAllActiveSectors(t,e),this._doInAllFrozenSectors(t,e))},e._clearNodeIndexList=function(){var t=this._sector();this.sectors.active[t].nodeIndices=[],this.nodeIndices=this.sectors.active[t].nodeIndices},e._drawSectorNodes=function(t,e){var i,s=1e9,o=-1e9,n=1e9,r=-1e9;for(var a in this.sectors[e])if(this.sectors[e].hasOwnProperty(a)&&void 0!==this.sectors[e][a].drawingNode){this._switchToSector(a,e),s=1e9,o=-1e9,n=1e9,r=-1e9;for(var h in this.nodes)this.nodes.hasOwnProperty(h)&&(i=this.nodes[h],i.resize(t),n>i.x-.5*i.width&&(n=i.x-.5*i.width),ri.y-.5*i.height&&(s=i.y-.5*i.height),o0?this.nodes[i[i.length-1]]:null},e._getEdgesOverlappingWith=function(t,e){var i=this.edges;for(var s in i)i.hasOwnProperty(s)&&i[s].isOverlappingWith(t)&&e.push(s)},e._getAllEdgesOverlappingWith=function(t){var e=[];return this._doInAllActiveSectors("_getEdgesOverlappingWith",t,e),e},e._getEdgeAt=function(t){var e=this._pointerToPositionObject(t),i=this._getAllEdgesOverlappingWith(e);return i.length>0?this.edges[i[i.length-1]]:null},e._addToSelection=function(t){t instanceof s?this.selectionObj.nodes[t.id]=t:this.selectionObj.edges[t.id]=t},e._addToHover=function(t){t instanceof s?this.hoverObj.nodes[t.id]=t:this.hoverObj.edges[t.id]=t},e._removeFromSelection=function(t){t instanceof s?delete this.selectionObj.nodes[t.id]:delete this.selectionObj.edges[t.id]},e._unselectAll=function(t){void 0===t&&(t=!1);for(var e in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(e)&&this.selectionObj.nodes[e].unselect();for(var i in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(i)&&this.selectionObj.edges[i].unselect();this.selectionObj={nodes:{},edges:{}},0==t&&this.emit("select",this.getSelection())},e._unselectClusters=function(t){void 0===t&&(t=!1);for(var e in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(e)&&this.selectionObj.nodes[e].clusterSize>1&&(this.selectionObj.nodes[e].unselect(),this._removeFromSelection(this.selectionObj.nodes[e]));0==t&&this.emit("select",this.getSelection())},e._getSelectedNodeCount=function(){var t=0;for(var e in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(e)&&(t+=1);return t},e._getSelectedNode=function(){for(var t in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(t))return this.selectionObj.nodes[t];return null},e._getSelectedEdge=function(){for(var t in this.selectionObj.edges)if(this.selectionObj.edges.hasOwnProperty(t))return this.selectionObj.edges[t];return null},e._getSelectedEdgeCount=function(){var t=0;for(var e in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(e)&&(t+=1);return t},e._getSelectedObjectCount=function(){var t=0;for(var e in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(e)&&(t+=1);for(var i in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(i)&&(t+=1);return t},e._selectionIsEmpty=function(){for(var t in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(t))return!1;for(var e in this.selectionObj.edges)if(this.selectionObj.edges.hasOwnProperty(e))return!1;return!0},e._clusterInSelection=function(){for(var t in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(t)&&this.selectionObj.nodes[t].clusterSize>1)return!0;return!1},e._selectConnectedEdges=function(t){for(var e=0;ee;e++){s=t[e];var o=this.nodes[s];if(!o)throw new RangeError('Node with id "'+s+'" not found');this._selectObject(o,!0,!0)}console.log("setSelection is deprecated. Please use selectNodes instead."),this.redraw()},e.selectNodes=function(t,e){var i,s,o;if(!t||void 0==t.length)throw"Selection must be an array with ids";for(this._unselectAll(!0),i=0,s=t.length;s>i;i++){o=t[i];var n=this.nodes[o];if(!n)throw new RangeError('Node with id "'+o+'" not found');this._selectObject(n,!0,!0,e)}this.redraw()},e.selectEdges=function(t){var e,i,s;if(!t||void 0==t.length)throw"Selection must be an array with ids";for(this._unselectAll(!0),e=0,i=t.length;i>e;e++){s=t[e];var o=this.edges[s];if(!o)throw new RangeError('Edge with id "'+s+'" not found');this._selectObject(o,!0,!0,highlightEdges)}this.redraw()},e._updateSelection=function(){for(var t in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(t)&&(this.nodes.hasOwnProperty(t)||delete this.selectionObj.nodes[t]);for(var e in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(e)&&(this.edges.hasOwnProperty(e)||delete this.selectionObj.edges[e])}},function(t,e,i){var s=i(1),o=i(36),n=i(33);e._clearManipulatorBar=function(){for(;this.manipulationDiv.hasChildNodes();)this.manipulationDiv.removeChild(this.manipulationDiv.firstChild)},e._restoreOverloadedFunctions=function(){for(var t in this.cachedFunctions)this.cachedFunctions.hasOwnProperty(t)&&(this[t]=this.cachedFunctions[t])},e._toggleEditMode=function(){this.editMode=!this.editMode;var t=document.getElementById("network-manipulationDiv"),e=document.getElementById("network-manipulation-closeDiv"),i=document.getElementById("network-manipulation-editMode");1==this.editMode?(t.style.display="block",e.style.display="block",i.style.display="none",e.onclick=this._toggleEditMode.bind(this)):(t.style.display="none",e.style.display="none",i.style.display="block",e.onclick=null),this._createManipulatorBar()},e._createManipulatorBar=function(){if(this.boundFunction&&this.off("select",this.boundFunction),void 0!==this.edgeBeingEdited&&(this.edgeBeingEdited._disableControlNodes(),this.edgeBeingEdited=void 0,this.selectedControlNode=null,this.controlNodesActive=!1),this._restoreOverloadedFunctions(),this.freezeSimulation=!1,this.blockConnectingEdgeSelection=!1,this.forceAppendSelection=!1,1==this.editMode){for(;this.manipulationDiv.hasChildNodes();)this.manipulationDiv.removeChild(this.manipulationDiv.firstChild); -this.manipulationDiv.innerHTML=""+this.constants.labels.add+"
"+this.constants.labels.link+"",1==this._getSelectedNodeCount()&&this.triggerFunctions.edit?this.manipulationDiv.innerHTML+="
"+this.constants.labels.editNode+"":1==this._getSelectedEdgeCount()&&0==this._getSelectedNodeCount()&&(this.manipulationDiv.innerHTML+="
"+this.constants.labels.editEdge+""),0==this._selectionIsEmpty()&&(this.manipulationDiv.innerHTML+="
"+this.constants.labels.del+"");var t=document.getElementById("network-manipulate-addNode");t.onclick=this._createAddNodeToolbar.bind(this);var e=document.getElementById("network-manipulate-connectNode");if(e.onclick=this._createAddEdgeToolbar.bind(this),1==this._getSelectedNodeCount()&&this.triggerFunctions.edit){var i=document.getElementById("network-manipulate-editNode");i.onclick=this._editNode.bind(this)}else if(1==this._getSelectedEdgeCount()&&0==this._getSelectedNodeCount()){var i=document.getElementById("network-manipulate-editEdge");i.onclick=this._createEditEdgeToolbar.bind(this)}if(0==this._selectionIsEmpty()){var s=document.getElementById("network-manipulate-delete");s.onclick=this._deleteSelected.bind(this)}var o=document.getElementById("network-manipulation-closeDiv");o.onclick=this._toggleEditMode.bind(this),this.boundFunction=this._createManipulatorBar.bind(this),this.on("select",this.boundFunction)}else{this.editModeDiv.innerHTML=""+this.constants.labels.edit+"";var n=document.getElementById("network-manipulate-editModeButton");n.onclick=this._toggleEditMode.bind(this)}},e._createAddNodeToolbar=function(){this._clearManipulatorBar(),this.boundFunction&&this.off("select",this.boundFunction),this.manipulationDiv.innerHTML=""+this.constants.labels.back+"
"+this.constants.labels.addDescription+"";var t=document.getElementById("network-manipulate-back");t.onclick=this._createManipulatorBar.bind(this),this.boundFunction=this._addNode.bind(this),this.on("select",this.boundFunction)},e._createAddEdgeToolbar=function(){this._clearManipulatorBar(),this._unselectAll(!0),this.freezeSimulation=!0,this.boundFunction&&this.off("select",this.boundFunction),this._unselectAll(),this.forceAppendSelection=!1,this.blockConnectingEdgeSelection=!0,this.manipulationDiv.innerHTML=""+this.constants.labels.back+"
"+this.constants.labels.linkDescription+"";var t=document.getElementById("network-manipulate-back");t.onclick=this._createManipulatorBar.bind(this),this.boundFunction=this._handleConnect.bind(this),this.on("select",this.boundFunction),this.cachedFunctions._handleTouch=this._handleTouch,this.cachedFunctions._handleOnRelease=this._handleOnRelease,this._handleTouch=this._handleConnect,this._handleOnRelease=this._finishConnect,this._redraw()},e._createEditEdgeToolbar=function(){this._clearManipulatorBar(),this.controlNodesActive=!0,this.boundFunction&&this.off("select",this.boundFunction),this.edgeBeingEdited=this._getSelectedEdge(),this.edgeBeingEdited._enableControlNodes(),this.manipulationDiv.innerHTML=""+this.constants.labels.back+"
"+this.constants.labels.editEdgeDescription+"";var t=document.getElementById("network-manipulate-back");t.onclick=this._createManipulatorBar.bind(this),this.cachedFunctions._handleTouch=this._handleTouch,this.cachedFunctions._handleOnRelease=this._handleOnRelease,this.cachedFunctions._handleTap=this._handleTap,this.cachedFunctions._handleDragStart=this._handleDragStart,this.cachedFunctions._handleOnDrag=this._handleOnDrag,this._handleTouch=this._selectControlNode,this._handleTap=function(){},this._handleOnDrag=this._controlNodeDrag,this._handleDragStart=function(){},this._handleOnRelease=this._releaseControlNode,this._redraw()},e._selectControlNode=function(t){this.edgeBeingEdited.controlNodes.from.unselect(),this.edgeBeingEdited.controlNodes.to.unselect(),this.selectedControlNode=this.edgeBeingEdited._getSelectedControlNode(this._XconvertDOMtoCanvas(t.x),this._YconvertDOMtoCanvas(t.y)),null!==this.selectedControlNode&&(this.selectedControlNode.select(),this.freezeSimulation=!0),this._redraw()},e._controlNodeDrag=function(t){var e=this._getPointer(t.gesture.center);null!==this.selectedControlNode&&void 0!==this.selectedControlNode&&(this.selectedControlNode.x=this._XconvertDOMtoCanvas(e.x),this.selectedControlNode.y=this._YconvertDOMtoCanvas(e.y)),this._redraw()},e._releaseControlNode=function(t){var e=this._getNodeAt(t);null!=e?(1==this.edgeBeingEdited.controlNodes.from.selected&&(this._editEdge(e.id,this.edgeBeingEdited.to.id),this.edgeBeingEdited.controlNodes.from.unselect()),1==this.edgeBeingEdited.controlNodes.to.selected&&(this._editEdge(this.edgeBeingEdited.from.id,e.id),this.edgeBeingEdited.controlNodes.to.unselect())):this.edgeBeingEdited._restoreControlNodes(),this.freezeSimulation=!1,this._redraw()},e._handleConnect=function(t){if(0==this._getSelectedNodeCount()){var e=this._getNodeAt(t);null!=e&&(e.clusterSize>1?alert("Cannot create edges to a cluster."):(this._selectObject(e,!1),this.sectors.support.nodes.targetNode=new o({id:"targetNode"},{},{},this.constants),this.sectors.support.nodes.targetNode.x=e.x,this.sectors.support.nodes.targetNode.y=e.y,this.sectors.support.nodes.targetViaNode=new o({id:"targetViaNode"},{},{},this.constants),this.sectors.support.nodes.targetViaNode.x=e.x,this.sectors.support.nodes.targetViaNode.y=e.y,this.sectors.support.nodes.targetViaNode.parentEdgeId="connectionEdge",this.edges.connectionEdge=new n({id:"connectionEdge",from:e.id,to:this.sectors.support.nodes.targetNode.id},this,this.constants),this.edges.connectionEdge.from=e,this.edges.connectionEdge.connected=!0,this.edges.connectionEdge.smooth=!0,this.edges.connectionEdge.selected=!0,this.edges.connectionEdge.to=this.sectors.support.nodes.targetNode,this.edges.connectionEdge.via=this.sectors.support.nodes.targetViaNode,this.cachedFunctions._handleOnDrag=this._handleOnDrag,this._handleOnDrag=function(t){var e=this._getPointer(t.gesture.center);this.sectors.support.nodes.targetNode.x=this._XconvertDOMtoCanvas(e.x),this.sectors.support.nodes.targetNode.y=this._YconvertDOMtoCanvas(e.y),this.sectors.support.nodes.targetViaNode.x=.5*(this._XconvertDOMtoCanvas(e.x)+this.edges.connectionEdge.from.x),this.sectors.support.nodes.targetViaNode.y=this._YconvertDOMtoCanvas(e.y)},this.moving=!0,this.start()))}},e._finishConnect=function(t){if(1==this._getSelectedNodeCount()){this._handleOnDrag=this.cachedFunctions._handleOnDrag,delete this.cachedFunctions._handleOnDrag;var e=this.edges.connectionEdge.fromId;delete this.edges.connectionEdge,delete this.sectors.support.nodes.targetNode,delete this.sectors.support.nodes.targetViaNode;var i=this._getNodeAt(t);null!=i&&(i.clusterSize>1?alert("Cannot create edges to a cluster."):(this._createEdge(e,i.id),this._createManipulatorBar())),this._unselectAll()}},e._addNode=function(){if(this._selectionIsEmpty()&&1==this.editMode){var t=this._pointerToPositionObject(this.pointerPosition),e={id:s.randomUUID(),x:t.left,y:t.top,label:"new",allowedToMoveX:!0,allowedToMoveY:!0};if(this.triggerFunctions.add)if(2==this.triggerFunctions.add.length){var i=this;this.triggerFunctions.add(e,function(t){i.nodesData.add(t),i._createManipulatorBar(),i.moving=!0,i.start()})}else alert(this.constants.labels.addError),this._createManipulatorBar(),this.moving=!0,this.start();else this.nodesData.add(e),this._createManipulatorBar(),this.moving=!0,this.start()}},e._createEdge=function(t,e){if(1==this.editMode){var i={from:t,to:e};if(this.triggerFunctions.connect)if(2==this.triggerFunctions.connect.length){var s=this;this.triggerFunctions.connect(i,function(t){s.edgesData.add(t),s.moving=!0,s.start()})}else alert(this.constants.labels.linkError),this.moving=!0,this.start();else this.edgesData.add(i),this.moving=!0,this.start()}},e._editEdge=function(t,e){if(1==this.editMode){var i={id:this.edgeBeingEdited.id,from:t,to:e};if(this.triggerFunctions.editEdge)if(2==this.triggerFunctions.editEdge.length){var s=this;this.triggerFunctions.editEdge(i,function(t){s.edgesData.update(t),s.moving=!0,s.start()})}else alert(this.constants.labels.linkError),this.moving=!0,this.start();else this.edgesData.update(i),this.moving=!0,this.start()}},e._editNode=function(){if(this.triggerFunctions.edit&&1==this.editMode){var t=this._getSelectedNode(),e={id:t.id,label:t.label,group:t.options.group,shape:t.options.shape,color:{background:t.options.color.background,border:t.options.color.border,highlight:{background:t.options.color.highlight.background,border:t.options.color.highlight.border}}};if(2==this.triggerFunctions.edit.length){var i=this;this.triggerFunctions.edit(e,function(t){i.nodesData.update(t),i._createManipulatorBar(),i.moving=!0,i.start()})}else alert(this.constants.labels.editError)}else alert(this.constants.labels.editBoundError)},e._deleteSelected=function(){if(!this._selectionIsEmpty()&&1==this.editMode)if(this._clusterInSelection())alert(this.constants.labels.deleteClusterError);else{var t=this.getSelectedNodes(),e=this.getSelectedEdges();if(this.triggerFunctions.del){var i=this,s={nodes:t,edges:e};(this.triggerFunctions.del.length=2)?this.triggerFunctions.del(s,function(t){i.edgesData.remove(t.edges),i.nodesData.remove(t.nodes),i._unselectAll(),i.moving=!0,i.start()}):alert(this.constants.labels.deleteError)}else this.edgesData.remove(e),this.nodesData.remove(t),this._unselectAll(),this.moving=!0,this.start()}}},function(t,e,i){var s=i(1),o=i(41);e._cleanNavigation=function(){var t=document.getElementById("network-navigation_wrapper");null!=t&&this.containerElement.removeChild(t),document.onmouseup=null},e._loadNavigationElements=function(){this._cleanNavigation(),this.navigationDivs={};var t=["up","down","left","right","zoomIn","zoomOut","zoomExtends"],e=["_moveUp","_moveDown","_moveLeft","_moveRight","_zoomIn","_zoomOut","zoomExtent"];this.navigationDivs.wrapper=document.createElement("div"),this.navigationDivs.wrapper.id="network-navigation_wrapper",this.navigationDivs.wrapper.style.position="absolute",this.navigationDivs.wrapper.style.width=this.frame.canvas.clientWidth+"px",this.navigationDivs.wrapper.style.height=this.frame.canvas.clientHeight+"px",this.containerElement.insertBefore(this.navigationDivs.wrapper,this.frame);for(var i=this,s=0;s0){"RL"==this.constants.hierarchicalLayout.direction||"DU"==this.constants.hierarchicalLayout.direction?this.constants.hierarchicalLayout.levelSeparation*=-1:this.constants.hierarchicalLayout.levelSeparation=Math.abs(this.constants.hierarchicalLayout.levelSeparation),"RL"==this.constants.hierarchicalLayout.direction||"LR"==this.constants.hierarchicalLayout.direction?1==this.constants.smoothCurves.enabled&&(this.constants.smoothCurves.type="vertical"):1==this.constants.smoothCurves.enabled&&(this.constants.smoothCurves.type="horizontal");var t,e,i=0,s=!1,o=!1;for(e in this.nodes)this.nodes.hasOwnProperty(e)&&(t=this.nodes[e],-1!=t.level?s=!0:o=!0,is&&(n.xFixed=!1,n.x=i[n.level].minPos,r=!0):n.yFixed&&n.level>s&&(n.yFixed=!1,n.y=i[n.level].minPos,r=!0),1==r&&(i[n.level].minPos+=i[n.level].nodeSpacing,n.edges.length>1&&this._placeBranchNodes(n.edges,n.id,i,n.level))}},e._setLevel=function(t,e,i){for(var s=0;st)&&(o.level=t,e.length>1&&this._setLevel(t+1,o.edges,o.id))}},e._restoreNodes=function(){for(var t in this.nodes)this.nodes.hasOwnProperty(t)&&(this.nodes[t].xFixed=!1,this.nodes[t].yFixed=!1)}},function(t,e,i){function s(){this.constants.smoothCurves.enabled=!this.constants.smoothCurves.enabled;var t=document.getElementById("graph_toggleSmooth");t.style.background=1==this.constants.smoothCurves.enabled?"#A4FF56":"#FF8532",this._configureSmoothCurves(!1)}function o(){for(var t in this.calculationNodes)this.calculationNodes.hasOwnProperty(t)&&(this.calculationNodes[t].vx=0,this.calculationNodes[t].vy=0,this.calculationNodes[t].fx=0,this.calculationNodes[t].fy=0);1==this.constants.hierarchicalLayout.enabled?(this._setupHierarchicalLayout(),a.call(this,"graph_H_nd",1,"physics_hierarchicalRepulsion_nodeDistance"),a.call(this,"graph_H_cg",1,"physics_centralGravity"),a.call(this,"graph_H_sc",1,"physics_springConstant"),a.call(this,"graph_H_sl",1,"physics_springLength"),a.call(this,"graph_H_damp",1,"physics_damping")):this.repositionNodes(),this.moving=!0,this.start()}function n(){var t="No options are required, default values used.",e=[],i=document.getElementById("graph_physicsMethod1"),s=document.getElementById("graph_physicsMethod2");if(1==i.checked){if(this.constants.physics.barnesHut.gravitationalConstant!=this.backupConstants.physics.barnesHut.gravitationalConstant&&e.push("gravitationalConstant: "+this.constants.physics.barnesHut.gravitationalConstant),this.constants.physics.centralGravity!=this.backupConstants.physics.barnesHut.centralGravity&&e.push("centralGravity: "+this.constants.physics.centralGravity),this.constants.physics.springLength!=this.backupConstants.physics.barnesHut.springLength&&e.push("springLength: "+this.constants.physics.springLength),this.constants.physics.springConstant!=this.backupConstants.physics.barnesHut.springConstant&&e.push("springConstant: "+this.constants.physics.springConstant),this.constants.physics.damping!=this.backupConstants.physics.barnesHut.damping&&e.push("damping: "+this.constants.physics.damping),0!=e.length){t="var options = {",t+="physics: {barnesHut: {";for(var o=0;othis.constants.clustering.clusterThreshold&&1==this.constants.clustering.enabled&&this.clusterToFit(this.constants.clustering.reduceToNodes,!1),this._calculateForces())},e._calculateForces=function(){this._calculateGravitationalForces(),this._calculateNodeForces(),this.constants.physics.springConstant>0&&(1==this.constants.smoothCurves.enabled&&1==this.constants.smoothCurves.dynamic?this._calculateSpringForcesWithSupport():1==this.constants.physics.hierarchicalRepulsion.enabled?this._calculateHierarchicalSpringForces():this._calculateSpringForces())},e._updateCalculationNodes=function(){if(1==this.constants.smoothCurves.enabled&&1==this.constants.smoothCurves.dynamic){this.calculationNodes={},this.calculationNodeIndices=[];for(var t in this.nodes)this.nodes.hasOwnProperty(t)&&(this.calculationNodes[t]=this.nodes[t]);var e=this.sectors.support.nodes;for(var i in e)e.hasOwnProperty(i)&&(this.edges.hasOwnProperty(e[i].parentEdgeId)?this.calculationNodes[i]=e[i]:e[i]._setForce(0,0));for(var s in this.calculationNodes)this.calculationNodes.hasOwnProperty(s)&&this.calculationNodeIndices.push(s)}else this.calculationNodes=this.nodes,this.calculationNodeIndices=this.nodeIndices},e._calculateGravitationalForces=function(){var t,e,i,s,o,n=this.calculationNodes,r=this.constants.physics.centralGravity,a=0;for(o=0;oSimulation Mode:Barnes HutRepulsionHierarchical
Options:
',this.containerElement.parentElement.insertBefore(this.physicsConfiguration,this.containerElement),this.optionsDiv=document.createElement("div"),this.optionsDiv.style.fontSize="14px",this.optionsDiv.style.fontFamily="verdana",this.containerElement.parentElement.insertBefore(this.optionsDiv,this.containerElement); +var i=this;this.frame.slide.onmousedown=function(t){i._onMouseDown(t)},this.frame.prev.onclick=function(t){i.prev(t)},this.frame.play.onclick=function(t){i.togglePlay(t)},this.frame.next.onclick=function(t){i.next(t)}}this.onChangeCallback=void 0,this.values=[],this.index=void 0,this.playTimeout=void 0,this.playInterval=1e3,this.playLoop=!0}var o=i(2);s.prototype.prev=function(){var t=this.getIndex();t>0&&(t--,this.setIndex(t))},s.prototype.next=function(){var t=this.getIndex();t0?this.setIndex(0):this.index=void 0},s.prototype.setIndex=function(t){if(!(ts&&(s=0),s>this.values.length-1&&(s=this.values.length-1),s},s.prototype.indexToLeft=function(t){var e=parseFloat(this.frame.bar.style.width)-this.frame.slide.clientWidth-10,i=t/(this.values.length-1)*e,s=i+3;return s},s.prototype._onMouseMove=function(t){var e=t.clientX-this.startClientX,i=this.startSlideX+e,s=this.leftToIndex(i);this.setIndex(s),o.preventDefault()},s.prototype._onMouseUp=function(){this.frame.style.cursor="auto",o.removeEventListener(document,"mousemove",this.onmousemove),o.removeEventListener(document,"mouseup",this.onmouseup),o.preventDefault()},t.exports=s},function(t){function e(t,e,i,s){this._start=0,this._end=0,this._step=1,this.prettyStep=!0,this.precision=5,this._current=0,this.setRange(t,e,i,s)}e.prototype.setRange=function(t,e,i,s){this._start=t?t:0,this._end=e?e:0,this.setStep(i,s)},e.prototype.setStep=function(t,i){void 0===t||0>=t||(void 0!==i&&(this.prettyStep=i),this._step=this.prettyStep===!0?e.calculatePrettyStep(t):t)},e.calculatePrettyStep=function(t){var e=function(t){return Math.log(t)/Math.LN10},i=Math.pow(10,Math.round(e(t))),s=2*Math.pow(10,Math.round(e(t/2))),o=5*Math.pow(10,Math.round(e(t/5))),n=i;return Math.abs(s-t)<=Math.abs(n-t)&&(n=s),Math.abs(o-t)<=Math.abs(n-t)&&(n=o),0>=n&&(n=1),n},e.prototype.getCurrent=function(){return parseFloat(this._current.toPrecision(this.precision))},e.prototype.getStep=function(){return this._step},e.prototype.start=function(){this._current=this._start-this._start%this._step},e.prototype.next=function(){this._current+=this._step},e.prototype.end=function(){return this._current>this._end},t.exports=e},function(t,e,i){function s(t,e,i){for(var n in h.prototype)h.prototype.hasOwnProperty(n)&&!s.prototype.hasOwnProperty(n)&&(s.prototype[n]=h.prototype[n]);if(!(this instanceof s))throw new SyntaxError("Constructor must be called with the new operator");var r=this;this.defaultOptions={start:null,end:null,autoResize:!0,orientation:"bottom",width:null,height:null,maxHeight:null,minHeight:null},this.options=o.deepExtend({},this.defaultOptions),this._create(t),this.components=[],this.body={dom:this.dom,domProps:this.props,emitter:{on:this.on.bind(this),off:this.off.bind(this),emit:this.emit.bind(this)},util:{snap:null,toScreen:r._toScreen.bind(r),toGlobalScreen:r._toGlobalScreen.bind(r),toTime:r._toTime.bind(r),toGlobalTime:r._toGlobalTime.bind(r)}},this.range=new a(this.body),this.components.push(this.range),this.body.range=this.range,this.timeAxis=new d(this.body),this.components.push(this.timeAxis),this.body.util.snap=this.timeAxis.snap.bind(this.timeAxis),this.currentTime=new l(this.body),this.components.push(this.currentTime),this.customTime=new c(this.body),this.components.push(this.customTime),this.itemSet=new p(this.body),this.components.push(this.itemSet),this.itemsData=null,this.groupsData=null,i&&this.setOptions(i),e?this.setItems(e):this.redraw()}var o=(i(46),i(40),i(2)),n=i(3),r=i(4),a=i(15),h=i(42),d=i(27),l=i(18),c=i(20),p=i(24);s.prototype.setOptions=function(t){if(t){var e=["width","height","minHeight","maxHeight","autoResize","start","end","orientation"];o.selectiveExtend(e,this.options,t),this._initAutoResize()}if(this.components.forEach(function(e){e.setOptions(t)}),t&&t.order)throw new Error("Option order is deprecated. There is no replacement for this feature.");this.redraw()},s.prototype.setItems=function(t){var e,i=null==this.itemsData;if(e=t?t instanceof n||t instanceof r?t:new n(t,{type:{start:"Date",end:"Date"}}):null,this.itemsData=e,this.itemSet&&this.itemSet.setItems(e),i&&("start"in this.options||"end"in this.options)){this.fit();var s="start"in this.options?o.convert(this.options.start,"Date"):null,a="end"in this.options?o.convert(this.options.end,"Date"):null;this.setWindow(s,a)}},s.prototype.setGroups=function(t){var e;e=t?t instanceof n||t instanceof r?t:new n(t):null,this.groupsData=e,this.itemSet.setGroups(e)},s.prototype.setSelection=function(t){this.itemSet&&this.itemSet.setSelection(t)},s.prototype.getSelection=function(){return this.itemSet&&this.itemSet.getSelection()||[]},s.prototype.getItemRange=function(){var t=this.itemsData.getDataSet(),e=null,i=null;if(t){var s=t.min("start");e=s?o.convert(s.start,"Date").valueOf():null;var n=t.max("start");n&&(i=o.convert(n.start,"Date").valueOf());var r=t.max("end");r&&(i=null==i?o.convert(r.end,"Date").valueOf():Math.max(i,o.convert(r.end,"Date").valueOf()))}return{min:null!=e?new Date(e):null,max:null!=i?new Date(i):null}},t.exports=s},function(t,e,i){function s(t,e,i,n){for(var r in h.prototype)h.prototype.hasOwnProperty(r)&&!s.prototype.hasOwnProperty(r)&&(s.prototype[r]=h.prototype[r]);var u=this;this.defaultOptions={start:null,end:null,autoResize:!0,orientation:"bottom",width:null,height:null,maxHeight:null,minHeight:null},this.options=o.deepExtend({},this.defaultOptions),this._create(t),this.components=[],this.body={dom:this.dom,domProps:this.props,emitter:{on:this.on.bind(this),off:this.off.bind(this),emit:this.emit.bind(this)},util:{snap:null,toScreen:u._toScreen.bind(u),toGlobalScreen:u._toGlobalScreen.bind(u),toTime:u._toTime.bind(u),toGlobalTime:u._toGlobalTime.bind(u)}},this.range=new a(this.body),this.components.push(this.range),this.body.range=this.range,this.timeAxis=new d(this.body),this.components.push(this.timeAxis),this.body.util.snap=this.timeAxis.snap.bind(this.timeAxis),this.currentTime=new l(this.body),this.components.push(this.currentTime),this.customTime=new c(this.body),this.components.push(this.customTime),this.linegraph=new p(this.body),this.components.push(this.linegraph),this.itemsData=null,this.groupsData=null,i&&this.setOptions(i),n&&this.setGroups(n),e?this.setItems(e):this.redraw()}var o=(i(46),i(40),i(2)),n=i(3),r=i(4),a=i(15),h=i(42),d=i(27),l=i(18),c=i(20),p=i(26);s.prototype.setOptions=function(t){if(t){var e=["width","height","minHeight","maxHeight","autoResize","start","end","orientation"];o.selectiveExtend(e,this.options,t),this._initAutoResize()}if(this.components.forEach(function(e){e.setOptions(t)}),t&&t.order)throw new Error("Option order is deprecated. There is no replacement for this feature.");this.redraw()},s.prototype.setItems=function(t){var e,i=null==this.itemsData;if(e=t?t instanceof n||t instanceof r?t:new n(t,{type:{start:"Date",end:"Date"}}):null,this.itemsData=e,this.linegraph&&this.linegraph.setItems(e),i&&("start"in this.options||"end"in this.options)){this.fit();var s="start"in this.options?o.convert(this.options.start,"Date"):null,a="end"in this.options?o.convert(this.options.end,"Date"):null;this.setWindow(s,a)}},s.prototype.setGroups=function(t){var e;e=t?t instanceof n||t instanceof r?t:new n(t):null,this.groupsData=e,this.linegraph.setGroups(e)},s.prototype.getLegend=function(t,e,i){return void 0===e&&(e=15),void 0===i&&(i=15),void 0!==this.linegraph.groups[t]?this.linegraph.groups[t].getLegend(e,i):"cannot find group:"+t},s.prototype.isGroupVisible=function(t){return void 0!==this.linegraph.groups[t]?this.linegraph.groups[t].visible:!1},s.prototype.getItemRange=function(){var t=null,e=null;for(var i in this.linegraph.groups)if(this.linegraph.groups.hasOwnProperty(i)&&1==this.linegraph.groups[i].visible)for(var s=0;sr?r:t,e=null==e?r:r>e?r:e}return{min:null!=t?new Date(t):null,max:null!=e?new Date(e):null}},t.exports=s},function(t){function e(t,e,i,s,o){this.current=0,this.autoScale=!0,this.stepIndex=0,this.step=1,this.scale=1,this.marginStart,this.marginEnd,this.majorSteps=[1,2,5,10],this.minorSteps=[.25,.5,1,2],this.setRange(t,e,i,s,o)}e.prototype.setRange=function(t,e,i,s,o){this._start=t,this._end=e,t==e&&(this._start=t-.75,this._end=e+1),this.autoScale&&this.setMinimumStep(i,s,o),this.setFirst()},e.prototype.setMinimumStep=function(t,e){var i=this._end-this._start,s=1.1*i,o=t*(s/e),n=Math.round(Math.log(s)/Math.LN10),r=-1,a=Math.pow(10,n),h=0;0>n&&(h=n);for(var d=!1,l=h;Math.abs(l)<=Math.abs(n);l++){a=Math.pow(10,l);for(var c=0;c=o){d=!0,r=c;break}}if(1==d)break}this.stepIndex=r,this.scale=a,this.step=a*this.minorSteps[r]},e.prototype.first=function(){this.setFirst()},e.prototype.setFirst=function(){var t=this._start-this.scale*this.minorSteps[this.stepIndex],e=this._end+this.scale*this.minorSteps[this.stepIndex];this.marginEnd=this.roundToMinor(e),this.marginStart=this.roundToMinor(t),this.marginRange=this.marginEnd-this.marginStart,this.current=this.marginEnd},e.prototype.roundToMinor=function(t){var e=t-t%(this.scale*this.minorSteps[this.stepIndex]);return t%(this.scale*this.minorSteps[this.stepIndex])>.5*this.scale*this.minorSteps[this.stepIndex]?e+this.scale*this.minorSteps[this.stepIndex]:e},e.prototype.hasNext=function(){return this.current>=this.marginStart},e.prototype.next=function(){var t=this.current;this.current-=this.step,this.current==t&&(this.current=this._end)},e.prototype.previous=function(){this.current+=this.step,this.marginEnd+=this.step,this.marginRange=this.marginEnd-this.marginStart},e.prototype.getCurrent=function(){for(var t=""+Number(this.current).toPrecision(5),e=t.length-1;e>0;e--){if("0"!=t[e]){if("."==t[e]||","==t[e]){t=t.slice(0,e);break}break}t=t.slice(0,e)}return t},e.prototype.snap=function(){},e.prototype.isMajor=function(){return this.current%(this.scale*this.majorSteps[this.stepIndex])==0},t.exports=e},function(t,e,i){function s(t,e){var i=h().hours(0).minutes(0).seconds(0).milliseconds(0);this.start=i.clone().add("days",-3).valueOf(),this.end=i.clone().add("days",4).valueOf(),this.body=t,this.defaultOptions={start:null,end:null,direction:"horizontal",moveable:!0,zoomable:!0,min:null,max:null,zoomMin:10,zoomMax:31536e10},this.options=r.extend({},this.defaultOptions),this.props={touch:{}},this.body.emitter.on("dragstart",this._onDragStart.bind(this)),this.body.emitter.on("drag",this._onDrag.bind(this)),this.body.emitter.on("dragend",this._onDragEnd.bind(this)),this.body.emitter.on("hold",this._onHold.bind(this)),this.body.emitter.on("mousewheel",this._onMouseWheel.bind(this)),this.body.emitter.on("DOMMouseScroll",this._onMouseWheel.bind(this)),this.body.emitter.on("touch",this._onTouch.bind(this)),this.body.emitter.on("pinch",this._onPinch.bind(this)),this.setOptions(e)}function o(t){if("horizontal"!=t&&"vertical"!=t)throw new TypeError('Unknown direction "'+t+'". Choose "horizontal" or "vertical".')}function n(t,e){return{x:t.pageX-r.getAbsoluteLeft(e),y:t.pageY-r.getAbsoluteTop(e)}}var r=i(2),a=i(43),h=i(41),d=i(19);s.prototype=new d,s.prototype.setOptions=function(t){if(t){var e=["direction","min","max","zoomMin","zoomMax","moveable","zoomable"];r.selectiveExtend(e,this.options,t),("start"in t||"end"in t)&&this.setRange(t.start,t.end)}},s.prototype.setRange=function(t,e){var i=this._applyRange(t,e);if(i){var s={start:new Date(this.start),end:new Date(this.end)};this.body.emitter.emit("rangechange",s),this.body.emitter.emit("rangechanged",s)}},s.prototype._applyRange=function(t,e){var i,s=null!=t?r.convert(t,"Date").valueOf():this.start,o=null!=e?r.convert(e,"Date").valueOf():this.end,n=null!=this.options.max?r.convert(this.options.max,"Date").valueOf():null,a=null!=this.options.min?r.convert(this.options.min,"Date").valueOf():null;if(isNaN(s)||null===s)throw new Error('Invalid start "'+t+'"');if(isNaN(o)||null===o)throw new Error('Invalid end "'+e+'"');if(s>o&&(o=s),null!==a&&a>s&&(i=a-s,s+=i,o+=i,null!=n&&o>n&&(o=n)),null!==n&&o>n&&(i=o-n,s-=i,o-=i,null!=a&&a>s&&(s=a)),null!==this.options.zoomMin){var h=parseFloat(this.options.zoomMin);0>h&&(h=0),h>o-s&&(this.end-this.start===h?(s=this.start,o=this.end):(i=h-(o-s),s-=i/2,o+=i/2))}if(null!==this.options.zoomMax){var d=parseFloat(this.options.zoomMax);0>d&&(d=0),o-s>d&&(this.end-this.start===d?(s=this.start,o=this.end):(i=o-s-d,s+=i/2,o-=i/2))}var l=this.start!=s||this.end!=o;return this.start=s,this.end=o,l},s.prototype.getRange=function(){return{start:this.start,end:this.end}},s.prototype.conversion=function(t){return s.conversion(this.start,this.end,t)},s.conversion=function(t,e,i){return 0!=i&&e-t!=0?{offset:t,scale:i/(e-t)}:{offset:0,scale:1}},s.prototype._onDragStart=function(){this.options.moveable&&this.props.touch.allowDragging&&(this.props.touch.start=this.start,this.props.touch.end=this.end,this.body.dom.root&&(this.body.dom.root.style.cursor="move"))},s.prototype._onDrag=function(t){if(this.options.moveable){var e=this.options.direction;if(o(e),this.props.touch.allowDragging){var i="horizontal"==e?t.gesture.deltaX:t.gesture.deltaY,s=this.props.touch.end-this.props.touch.start,n="horizontal"==e?this.body.domProps.center.width:this.body.domProps.center.height,r=-i/n*s;this._applyRange(this.props.touch.start+r,this.props.touch.end+r),this.body.emitter.emit("rangechange",{start:new Date(this.start),end:new Date(this.end)})}}},s.prototype._onDragEnd=function(){this.options.moveable&&this.props.touch.allowDragging&&(this.body.dom.root&&(this.body.dom.root.style.cursor="auto"),this.body.emitter.emit("rangechanged",{start:new Date(this.start),end:new Date(this.end)}))},s.prototype._onMouseWheel=function(t){if(this.options.zoomable&&this.options.moveable){var e=0;if(t.wheelDelta?e=t.wheelDelta/120:t.detail&&(e=-t.detail/3),e){var i;i=0>e?1-e/5:1/(1+e/5);var s=a.fakeGesture(this,t),o=n(s.center,this.body.dom.center),r=this._pointerToDate(o);this.zoom(i,r)}t.preventDefault()}},s.prototype._onTouch=function(){this.props.touch.start=this.start,this.props.touch.end=this.end,this.props.touch.allowDragging=!0,this.props.touch.center=null},s.prototype._onHold=function(){this.props.touch.allowDragging=!1},s.prototype._onPinch=function(t){if(this.options.zoomable&&this.options.moveable&&(this.props.touch.allowDragging=!1,t.gesture.touches.length>1)){this.props.touch.center||(this.props.touch.center=n(t.gesture.center,this.body.dom.center));var e=1/t.gesture.scale,i=this._pointerToDate(this.props.touch.center),s=parseInt(i+(this.props.touch.start-i)*e),o=parseInt(i+(this.props.touch.end-i)*e);this.setRange(s,o)}},s.prototype._pointerToDate=function(t){var e,i=this.options.direction;if(o(i),"horizontal"==i){var s=this.body.domProps.center.width;return e=this.conversion(s),t.x/e.scale+e.offset}var n=this.body.domProps.center.height;return e=this.conversion(n),t.y/e.scale+e.offset},s.prototype.zoom=function(t,e){null==e&&(e=(this.start+this.end)/2);var i=e+(this.start-e)*t,s=e+(this.end-e)*t;this.setRange(i,s)},s.prototype.move=function(t){var e=this.end-this.start,i=this.start+e*t,s=this.end+e*t;this.start=i,this.end=s},s.prototype.moveTo=function(t){var e=(this.start+this.end)/2,i=e-t,s=this.start-i,o=this.end-i;this.setRange(s,o)},t.exports=s},function(t,e){var i=.001;e.orderByStart=function(t){t.sort(function(t,e){return t.data.start-e.data.start})},e.orderByEnd=function(t){t.sort(function(t,e){var i="end"in t.data?t.data.end:t.data.start,s="end"in e.data?e.data.end:e.data.start;return i-s})},e.stack=function(t,i,s){var o,n;if(s)for(o=0,n=t.length;n>o;o++)t[o].top=null;for(o=0,n=t.length;n>o;o++){var r=t[o];if(null===r.top){r.top=i.axis;do{for(var a=null,h=0,d=t.length;d>h;h++){var l=t[h];if(null!==l.top&&l!==r&&e.collision(r,l,i.item)){a=l;break}}null!=a&&(r.top=a.top+a.height+i.item.vertical)}while(a)}}},e.nostack=function(t,e){var i,s;for(i=0,s=t.length;s>i;i++)t[i].top=e.axis},e.collision=function(t,e,s){return t.left-s.horizontal+ie.left&&t.top-s.vertical+ie.top}},function(t,e,i){function s(t,e,i){this.current=new Date,this._start=new Date,this._end=new Date,this.autoScale=!0,this.scale=s.SCALE.DAY,this.step=1,this.setRange(t,e,i)}var o=i(41);s.SCALE={MILLISECOND:1,SECOND:2,MINUTE:3,HOUR:4,DAY:5,WEEKDAY:6,MONTH:7,YEAR:8},s.prototype.setRange=function(t,e,i){if(!(t instanceof Date&&e instanceof Date))throw"No legal start or end date in method setRange";this._start=void 0!=t?new Date(t.valueOf()):new Date,this._end=void 0!=e?new Date(e.valueOf()):new Date,this.autoScale&&this.setMinimumStep(i)},s.prototype.first=function(){this.current=new Date(this._start.valueOf()),this.roundToMinor()},s.prototype.roundToMinor=function(){switch(this.scale){case s.SCALE.YEAR:this.current.setFullYear(this.step*Math.floor(this.current.getFullYear()/this.step)),this.current.setMonth(0);case s.SCALE.MONTH:this.current.setDate(1);case s.SCALE.DAY:case s.SCALE.WEEKDAY:this.current.setHours(0);case s.SCALE.HOUR:this.current.setMinutes(0);case s.SCALE.MINUTE:this.current.setSeconds(0);case s.SCALE.SECOND:this.current.setMilliseconds(0)}if(1!=this.step)switch(this.scale){case s.SCALE.MILLISECOND:this.current.setMilliseconds(this.current.getMilliseconds()-this.current.getMilliseconds()%this.step);break;case s.SCALE.SECOND:this.current.setSeconds(this.current.getSeconds()-this.current.getSeconds()%this.step);break;case s.SCALE.MINUTE:this.current.setMinutes(this.current.getMinutes()-this.current.getMinutes()%this.step);break;case s.SCALE.HOUR:this.current.setHours(this.current.getHours()-this.current.getHours()%this.step);break;case s.SCALE.WEEKDAY:case s.SCALE.DAY:this.current.setDate(this.current.getDate()-1-(this.current.getDate()-1)%this.step+1);break;case s.SCALE.MONTH:this.current.setMonth(this.current.getMonth()-this.current.getMonth()%this.step);break;case s.SCALE.YEAR:this.current.setFullYear(this.current.getFullYear()-this.current.getFullYear()%this.step)}},s.prototype.hasNext=function(){return this.current.valueOf()<=this._end.valueOf()},s.prototype.next=function(){var t=this.current.valueOf();if(this.current.getMonth()<6)switch(this.scale){case s.SCALE.MILLISECOND:this.current=new Date(this.current.valueOf()+this.step);break;case s.SCALE.SECOND:this.current=new Date(this.current.valueOf()+1e3*this.step);break;case s.SCALE.MINUTE:this.current=new Date(this.current.valueOf()+1e3*this.step*60);break;case s.SCALE.HOUR:this.current=new Date(this.current.valueOf()+1e3*this.step*60*60);var e=this.current.getHours();this.current.setHours(e-e%this.step);break;case s.SCALE.WEEKDAY:case s.SCALE.DAY:this.current.setDate(this.current.getDate()+this.step);break;case s.SCALE.MONTH:this.current.setMonth(this.current.getMonth()+this.step);break;case s.SCALE.YEAR:this.current.setFullYear(this.current.getFullYear()+this.step)}else switch(this.scale){case s.SCALE.MILLISECOND:this.current=new Date(this.current.valueOf()+this.step);break;case s.SCALE.SECOND:this.current.setSeconds(this.current.getSeconds()+this.step);break;case s.SCALE.MINUTE:this.current.setMinutes(this.current.getMinutes()+this.step);break;case s.SCALE.HOUR:this.current.setHours(this.current.getHours()+this.step);break;case s.SCALE.WEEKDAY:case s.SCALE.DAY:this.current.setDate(this.current.getDate()+this.step);break;case s.SCALE.MONTH:this.current.setMonth(this.current.getMonth()+this.step);break;case s.SCALE.YEAR:this.current.setFullYear(this.current.getFullYear()+this.step)}if(1!=this.step)switch(this.scale){case s.SCALE.MILLISECOND:this.current.getMilliseconds()0&&(this.step=e),this.autoScale=!1},s.prototype.setAutoScale=function(t){this.autoScale=t},s.prototype.setMinimumStep=function(t){if(void 0!=t){var e=31104e6,i=2592e6,o=864e5,n=36e5,r=6e4,a=1e3,h=1;1e3*e>t&&(this.scale=s.SCALE.YEAR,this.step=1e3),500*e>t&&(this.scale=s.SCALE.YEAR,this.step=500),100*e>t&&(this.scale=s.SCALE.YEAR,this.step=100),50*e>t&&(this.scale=s.SCALE.YEAR,this.step=50),10*e>t&&(this.scale=s.SCALE.YEAR,this.step=10),5*e>t&&(this.scale=s.SCALE.YEAR,this.step=5),e>t&&(this.scale=s.SCALE.YEAR,this.step=1),3*i>t&&(this.scale=s.SCALE.MONTH,this.step=3),i>t&&(this.scale=s.SCALE.MONTH,this.step=1),5*o>t&&(this.scale=s.SCALE.DAY,this.step=5),2*o>t&&(this.scale=s.SCALE.DAY,this.step=2),o>t&&(this.scale=s.SCALE.DAY,this.step=1),o/2>t&&(this.scale=s.SCALE.WEEKDAY,this.step=1),4*n>t&&(this.scale=s.SCALE.HOUR,this.step=4),n>t&&(this.scale=s.SCALE.HOUR,this.step=1),15*r>t&&(this.scale=s.SCALE.MINUTE,this.step=15),10*r>t&&(this.scale=s.SCALE.MINUTE,this.step=10),5*r>t&&(this.scale=s.SCALE.MINUTE,this.step=5),r>t&&(this.scale=s.SCALE.MINUTE,this.step=1),15*a>t&&(this.scale=s.SCALE.SECOND,this.step=15),10*a>t&&(this.scale=s.SCALE.SECOND,this.step=10),5*a>t&&(this.scale=s.SCALE.SECOND,this.step=5),a>t&&(this.scale=s.SCALE.SECOND,this.step=1),200*h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=200),100*h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=100),50*h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=50),10*h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=10),5*h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=5),h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=1)}},s.prototype.snap=function(t){var e=new Date(t.valueOf());if(this.scale==s.SCALE.YEAR){var i=e.getFullYear()+Math.round(e.getMonth()/12);e.setFullYear(Math.round(i/this.step)*this.step),e.setMonth(0),e.setDate(0),e.setHours(0),e.setMinutes(0),e.setSeconds(0),e.setMilliseconds(0)}else if(this.scale==s.SCALE.MONTH)e.getDate()>15?(e.setDate(1),e.setMonth(e.getMonth()+1)):e.setDate(1),e.setHours(0),e.setMinutes(0),e.setSeconds(0),e.setMilliseconds(0);else if(this.scale==s.SCALE.DAY){switch(this.step){case 5:case 2:e.setHours(24*Math.round(e.getHours()/24));break;default:e.setHours(12*Math.round(e.getHours()/12))}e.setMinutes(0),e.setSeconds(0),e.setMilliseconds(0)}else if(this.scale==s.SCALE.WEEKDAY){switch(this.step){case 5:case 2:e.setHours(12*Math.round(e.getHours()/12));break;default:e.setHours(6*Math.round(e.getHours()/6))}e.setMinutes(0),e.setSeconds(0),e.setMilliseconds(0)}else if(this.scale==s.SCALE.HOUR){switch(this.step){case 4:e.setMinutes(60*Math.round(e.getMinutes()/60));break;default:e.setMinutes(30*Math.round(e.getMinutes()/30))}e.setSeconds(0),e.setMilliseconds(0)}else if(this.scale==s.SCALE.MINUTE){switch(this.step){case 15:case 10:e.setMinutes(5*Math.round(e.getMinutes()/5)),e.setSeconds(0);break;case 5:e.setSeconds(60*Math.round(e.getSeconds()/60));break;default:e.setSeconds(30*Math.round(e.getSeconds()/30))}e.setMilliseconds(0)}else if(this.scale==s.SCALE.SECOND)switch(this.step){case 15:case 10:e.setSeconds(5*Math.round(e.getSeconds()/5)),e.setMilliseconds(0);break;case 5:e.setMilliseconds(1e3*Math.round(e.getMilliseconds()/1e3));break;default:e.setMilliseconds(500*Math.round(e.getMilliseconds()/500))}else if(this.scale==s.SCALE.MILLISECOND){var o=this.step>5?this.step/2:1;e.setMilliseconds(Math.round(e.getMilliseconds()/o)*o)}return e},s.prototype.isMajor=function(){switch(this.scale){case s.SCALE.MILLISECOND:return 0==this.current.getMilliseconds();case s.SCALE.SECOND:return 0==this.current.getSeconds();case s.SCALE.MINUTE:return 0==this.current.getHours()&&0==this.current.getMinutes();case s.SCALE.HOUR:return 0==this.current.getHours();case s.SCALE.WEEKDAY:case s.SCALE.DAY:return 1==this.current.getDate();case s.SCALE.MONTH:return 0==this.current.getMonth();case s.SCALE.YEAR:return!1;default:return!1}},s.prototype.getLabelMinor=function(t){switch(void 0==t&&(t=this.current),this.scale){case s.SCALE.MILLISECOND:return o(t).format("SSS");case s.SCALE.SECOND:return o(t).format("s");case s.SCALE.MINUTE:return o(t).format("HH:mm");case s.SCALE.HOUR:return o(t).format("HH:mm");case s.SCALE.WEEKDAY:return o(t).format("ddd D");case s.SCALE.DAY:return o(t).format("D");case s.SCALE.MONTH:return o(t).format("MMM");case s.SCALE.YEAR:return o(t).format("YYYY");default:return""}},s.prototype.getLabelMajor=function(t){switch(void 0==t&&(t=this.current),this.scale){case s.SCALE.MILLISECOND:return o(t).format("HH:mm:ss");case s.SCALE.SECOND:return o(t).format("D MMMM HH:mm");case s.SCALE.MINUTE:case s.SCALE.HOUR:return o(t).format("ddd D MMMM");case s.SCALE.WEEKDAY:case s.SCALE.DAY:return o(t).format("MMMM YYYY");case s.SCALE.MONTH:return o(t).format("YYYY");case s.SCALE.YEAR:return"";default:return""}},t.exports=s},function(t,e,i){function s(t,e){this.body=t,this.defaultOptions={showCurrentTime:!0},this.options=o.extend({},this.defaultOptions),this._create(),this.setOptions(e)}var o=i(2),n=i(19);s.prototype=new n,s.prototype._create=function(){var t=document.createElement("div");t.className="currenttime",t.style.position="absolute",t.style.top="0px",t.style.height="100%",this.bar=t},s.prototype.destroy=function(){this.options.showCurrentTime=!1,this.redraw(),this.body=null},s.prototype.setOptions=function(t){t&&o.selectiveExtend(["showCurrentTime"],this.options,t)},s.prototype.redraw=function(){if(this.options.showCurrentTime){var t=this.body.dom.backgroundVertical;this.bar.parentNode!=t&&(this.bar.parentNode&&this.bar.parentNode.removeChild(this.bar),t.appendChild(this.bar),this.start());var e=new Date,i=this.body.util.toScreen(e);this.bar.style.left=i+"px",this.bar.title="Current time: "+e}else this.bar.parentNode&&this.bar.parentNode.removeChild(this.bar),this.stop();return!1},s.prototype.start=function(){function t(){e.stop();var i=e.body.range.conversion(e.body.domProps.center.width).scale,s=1/i/10;30>s&&(s=30),s>1e3&&(s=1e3),e.redraw(),e.currentTimeTimer=setTimeout(t,s)}var e=this;t()},s.prototype.stop=function(){void 0!==this.currentTimeTimer&&(clearTimeout(this.currentTimeTimer),delete this.currentTimeTimer)},t.exports=s},function(t){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={showCustomTime:!1},this.options=n.extend({},this.defaultOptions),this.customTime=new Date,this.eventParams={},this._create(),this.setOptions(e)}var o=i(40),n=i(2),r=i(19);s.prototype=new r,s.prototype.setOptions=function(t){t&&n.selectiveExtend(["showCustomTime"],this.options,t)},s.prototype._create=function(){var t=document.createElement("div");t.className="customtime",t.style.position="absolute",t.style.top="0px",t.style.height="100%",this.bar=t;var e=document.createElement("div");e.style.position="relative",e.style.top="0px",e.style.left="-10px",e.style.height="100%",e.style.width="20px",t.appendChild(e),this.hammer=o(t,{prevent_default:!0}),this.hammer.on("dragstart",this._onDragStart.bind(this)),this.hammer.on("drag",this._onDrag.bind(this)),this.hammer.on("dragend",this._onDragEnd.bind(this))},s.prototype.destroy=function(){this.options.showCustomTime=!1,this.redraw(),this.hammer.enable(!1),this.hammer=null,this.body=null},s.prototype.redraw=function(){if(this.options.showCustomTime){var t=this.body.dom.backgroundVertical;this.bar.parentNode!=t&&(this.bar.parentNode&&this.bar.parentNode.removeChild(this.bar),t.appendChild(this.bar));var e=this.body.util.toScreen(this.customTime);this.bar.style.left=e+"px",this.bar.title="Time: "+this.customTime}else this.bar.parentNode&&this.bar.parentNode.removeChild(this.bar);return!1},s.prototype.setCustomTime=function(t){this.customTime=new Date(t.valueOf()),this.redraw()},s.prototype.getCustomTime=function(){return new Date(this.customTime.valueOf())},s.prototype._onDragStart=function(t){this.eventParams.dragging=!0,this.eventParams.customTime=this.customTime,t.stopPropagation(),t.preventDefault()},s.prototype._onDrag=function(t){if(this.eventParams.dragging){var e=t.gesture.deltaX,i=this.body.util.toScreen(this.eventParams.customTime)+e,s=this.body.util.toTime(i);this.setCustomTime(s),this.body.emitter.emit("timechange",{time:new Date(this.customTime.valueOf())}),t.stopPropagation(),t.preventDefault()}},s.prototype._onDragEnd=function(t){this.eventParams.dragging&&(this.body.emitter.emit("timechanged",{time:new Date(this.customTime.valueOf())}),t.stopPropagation(),t.preventDefault())},t.exports=s},function(t,e,i){function s(t,e,i){this.id=o.randomUUID(),this.body=t,this.defaultOptions={orientation:"left",showMinorLabels:!0,showMajorLabels:!0,icons:!0,majorLinesOffset:7,minorLinesOffset:4,labelOffsetX:10,labelOffsetY:2,iconWidth:20,width:"40px",visible:!0},this.linegraphSVG=i,this.props={},this.DOMelements={lines:{},labels:{}},this.dom={},this.range={start:0,end:0},this.options=o.extend({},this.defaultOptions),this.conversionFactor=1,this.setOptions(e),this.width=Number((""+this.options.width).replace("px","")),this.minWidth=this.width,this.height=this.linegraphSVG.offsetHeight,this.stepPixels=25,this.stepPixelsForced=25,this.lineOffset=0,this.master=!0,this.svgElements={},this.groups={},this.amountOfGroups=0,this._create() +}var o=i(2),n=i(1),r=i(19),a=i(14);s.prototype=new r,s.prototype.addGroup=function(t,e){this.groups.hasOwnProperty(t)||(this.groups[t]=e),this.amountOfGroups+=1},s.prototype.updateGroup=function(t,e){this.groups[t]=e},s.prototype.removeGroup=function(t){this.groups.hasOwnProperty(t)&&(delete this.groups[t],this.amountOfGroups-=1)},s.prototype.setOptions=function(t){if(t){var e=!1;this.options.orientation!=t.orientation&&void 0!==t.orientation&&(e=!0);var i=["orientation","showMinorLabels","showMajorLabels","icons","majorLinesOffset","minorLinesOffset","labelOffsetX","labelOffsetY","iconWidth","width","visible"];o.selectiveExtend(i,this.options,t),this.minWidth=Number((""+this.options.width).replace("px","")),1==e&&this.dom.frame&&(this.hide(),this.show())}},s.prototype._create=function(){this.dom.frame=document.createElement("div"),this.dom.frame.style.width=this.options.width,this.dom.frame.style.height=this.height,this.dom.lineContainer=document.createElement("div"),this.dom.lineContainer.style.width="100%",this.dom.lineContainer.style.height=this.height,this.svg=document.createElementNS("http://www.w3.org/2000/svg","svg"),this.svg.style.position="absolute",this.svg.style.top="0px",this.svg.style.height="100%",this.svg.style.width="100%",this.svg.style.display="block",this.dom.frame.appendChild(this.svg)},s.prototype._redrawGroupIcons=function(){n.prepareElements(this.svgElements);var t,e=this.options.iconWidth,i=15,s=4,o=s+.5*i;t="left"==this.options.orientation?s:this.width-e-s;for(var r in this.groups)this.groups.hasOwnProperty(r)&&1==this.groups[r].visible&&(this.groups[r].drawIcon(t,o,this.svgElements,this.svg,e,i),o+=i+s);n.cleanupElements(this.svgElements)},s.prototype.show=function(){this.dom.frame.parentNode||("left"==this.options.orientation?this.body.dom.left.appendChild(this.dom.frame):this.body.dom.right.appendChild(this.dom.frame)),this.dom.lineContainer.parentNode||this.body.dom.backgroundHorizontal.appendChild(this.dom.lineContainer)},s.prototype.hide=function(){this.dom.frame.parentNode&&this.dom.frame.parentNode.removeChild(this.dom.frame),this.dom.lineContainer.parentNode&&this.dom.lineContainer.parentNode.removeChild(this.dom.lineContainer)},s.prototype.setRange=function(t,e){this.range.start=t,this.range.end=e},s.prototype.redraw=function(){var t=!1,e=0;for(var i in this.groups)this.groups.hasOwnProperty(i)&&1==this.groups[i].visible&&e++;if(0==this.amountOfGroups||0==e)this.hide();else{this.show(),this.height=Number(this.linegraphSVG.style.height.replace("px","")),this.dom.lineContainer.style.height=this.height+"px",this.width=1==this.options.visible?Number((""+this.options.width).replace("px","")):0;var s=this.props,o=this.dom.frame;o.className="dataaxis",this._calculateCharSize();var n=this.options.orientation,r=this.options.showMinorLabels,a=this.options.showMajorLabels;s.minorLabelHeight=r?s.minorCharHeight:0,s.majorLabelHeight=a?s.majorCharHeight:0,s.minorLineWidth=this.body.dom.backgroundHorizontal.offsetWidth-this.lineOffset-this.width+2*this.options.minorLinesOffset,s.minorLineHeight=1,s.majorLineWidth=this.body.dom.backgroundHorizontal.offsetWidth-this.lineOffset-this.width+2*this.options.majorLinesOffset,s.majorLineHeight=1,"left"==n?(o.style.top="0",o.style.left="0",o.style.bottom="",o.style.width=this.width+"px",o.style.height=this.height+"px"):(o.style.top="",o.style.bottom="0",o.style.left="0",o.style.width=this.width+"px",o.style.height=this.height+"px"),t=this._redrawLabels(),1==this.options.icons&&this._redrawGroupIcons()}return t},s.prototype._redrawLabels=function(){n.prepareElements(this.DOMelements.lines),n.prepareElements(this.DOMelements.labels);var t=this.options.orientation,e=this.master?this.props.majorCharHeight||10:this.stepPixelsForced,i=new a(this.range.start,this.range.end,e,this.dom.frame.offsetHeight);this.step=i,i.first();var s=this.dom.frame.offsetHeight/(i.marginRange/i.step+1);this.stepPixels=s;var o=this.height/s,r=0;if(0==this.master){s=this.stepPixelsForced,r=Math.round(this.height/s-o);for(var h=0;.5*r>h;h++)i.previous();o=this.height/s}this.valueAtZero=i.marginEnd;var d=0,l=1;i.next(),this.maxLabelSize=0;for(var c=0;l=0&&this._redrawLabel(c-2,i.getCurrent(),t,"yAxis major",this.props.majorCharHeight),this._redrawLine(c,t,"grid horizontal major",this.options.majorLinesOffset,this.props.majorLineWidth)):this._redrawLine(c,t,"grid horizontal minor",this.options.minorLinesOffset,this.props.minorLineWidth),i.next(),l++}this.conversionFactor=d/((o-1)*i.step);var u=1==this.options.icons?this.options.iconWidth+this.options.labelOffsetX+15:this.options.labelOffsetX+15;return this.maxLabelSize>this.width-u&&1==this.options.visible?(this.width=this.maxLabelSize+u,this.options.width=this.width+"px",n.cleanupElements(this.DOMelements.lines),n.cleanupElements(this.DOMelements.labels),this.redraw(),!0):this.maxLabelSizethis.minWidth?(this.width=Math.max(this.minWidth,this.maxLabelSize+u),this.options.width=this.width+"px",n.cleanupElements(this.DOMelements.lines),n.cleanupElements(this.DOMelements.labels),this.redraw(),!0):(n.cleanupElements(this.DOMelements.lines),n.cleanupElements(this.DOMelements.labels),!1)},s.prototype._redrawLabel=function(t,e,i,s,o){var r=n.getDOMElement("div",this.DOMelements.labels,this.dom.frame);r.className=s,r.innerHTML=e,"left"==i?(r.style.left="-"+this.options.labelOffsetX+"px",r.style.textAlign="right"):(r.style.right="-"+this.options.labelOffsetX+"px",r.style.textAlign="left"),r.style.top=t-.5*o+this.options.labelOffsetY+"px",e+="";var a=Math.max(this.props.majorCharWidth,this.props.minorCharWidth);this.maxLabelSizee.axis){var c=d-e.axis;l-=c,o.forEach(h,function(t){t.top-=c})}a=l+e.item.vertical/2}else a=e.axis+e.item.vertical;a=Math.max(a,this.props.label.height);var p=this.dom.foreground;this.top=p.offsetTop,this.left=p.offsetLeft,this.width=p.offsetWidth,s=o.updateProperty(this,"height",a)||s,s=o.updateProperty(this.props.label,"width",this.dom.inner.clientWidth)||s,s=o.updateProperty(this.props.label,"height",this.dom.inner.clientHeight)||s,this.dom.background.style.height=a+"px",this.dom.foreground.style.height=a+"px",this.dom.label.style.height=a+"px";for(var u=0,f=this.visibleItems.length;f>u;u++){var m=this.visibleItems[u];m.repositionY()}return s},s.prototype.show=function(){this.dom.label.parentNode||this.itemSet.dom.labelSet.appendChild(this.dom.label),this.dom.foreground.parentNode||this.itemSet.dom.foreground.appendChild(this.dom.foreground),this.dom.background.parentNode||this.itemSet.dom.background.appendChild(this.dom.background),this.dom.axis.parentNode||this.itemSet.dom.axis.appendChild(this.dom.axis)},s.prototype.hide=function(){var t=this.dom.label;t.parentNode&&t.parentNode.removeChild(t);var e=this.dom.foreground;e.parentNode&&e.parentNode.removeChild(e);var i=this.dom.background;i.parentNode&&i.parentNode.removeChild(i);var s=this.dom.axis;s.parentNode&&s.parentNode.removeChild(s)},s.prototype.add=function(t){if(this.items[t.id]=t,t.setParent(this),-1==this.visibleItems.indexOf(t)){var e=this.itemSet.body.range;this._checkIfVisible(t,this.visibleItems,e)}},s.prototype.remove=function(t){delete this.items[t.id],t.setParent(this.itemSet);var e=this.visibleItems.indexOf(t);-1!=e&&this.visibleItems.splice(e,1)},s.prototype.removeFromDataSet=function(t){this.itemSet.removeItem(t.id)},s.prototype.order=function(){var t=o.toArray(this.items);this.orderedItems.byStart=t,this.orderedItems.byEnd=this._constructByEndArray(t),n.orderByStart(this.orderedItems.byStart),n.orderByEnd(this.orderedItems.byEnd)},s.prototype._constructByEndArray=function(t){for(var e=[],i=0;i0)for(n=0;n=0&&!this._checkIfInvisible(t.byStart[n],r,i);n--);for(n=s+1;n=0&&!this._checkIfInvisible(t.byEnd[n],r,i);n--);for(n=a+1;ne;e++)s=this.selection[e],o=this.items[s],o&&o.unselect();for(this.selection=[],e=0,i=t.length;i>e;e++)s=t[e],o=this.items[s],o&&(this.selection.push(s),o.select())}},s.prototype.getSelection=function(){return this.selection.concat([])},s.prototype.getVisibleItems=function(){var t=this.body.range.getRange(),e=this.body.util.toScreen(t.start),i=this.body.util.toScreen(t.end),s=[];for(var o in this.groups)if(this.groups.hasOwnProperty(o))for(var n=this.groups[o],r=n.visibleItems,a=0;ae&&s.push(h.id)}return s},s.prototype._deselect=function(t){for(var e=this.selection,i=0,s=e.length;s>i;i++)if(e[i]==t){e.splice(i,1);break}},s.prototype.redraw=function(){var t=this.options.margin,e=this.body.range,i=r.option.asSize,s=this.options,o=s.orientation,n=!1,a=this.dom.frame,h=s.editable.updateTime||s.editable.updateGroup;a.className="itemset"+(h?" editable":""),n=this._orderGroups()||n;var d=e.end-e.start,l=d!=this.lastVisibleInterval||this.props.width!=this.props.lastWidth;l&&(this.stackDirty=!0),this.lastVisibleInterval=d,this.props.lastWidth=this.props.width;var c=this.stackDirty,p=this._firstGroup(),u={item:t.item,axis:t.axis},f={item:t.item,axis:t.item.vertical/2},m=0,g=t.axis+t.item.vertical;return r.forEach(this.groups,function(t){var i=t==p?u:f,s=t.redraw(e,i,c);n=s||n,m+=t.height}),m=Math.max(m,g),this.stackDirty=!1,a.style.height=i(m),this.props.top=a.offsetTop,this.props.left=a.offsetLeft,this.props.width=a.offsetWidth,this.props.height=m,this.dom.axis.style.top=i("top"==o?this.body.domProps.top.height+this.body.domProps.border.top:this.body.domProps.top.height+this.body.domProps.centerContainer.height),this.dom.axis.style.left=this.body.domProps.border.left+"px",n=this._isResized()||n},s.prototype._firstGroup=function(){var t="top"==this.options.orientation?0:this.groupIds.length-1,e=this.groupIds[t],i=this.groups[e]||this.groups[f];return i||null},s.prototype._updateUngrouped=function(){var t=this.groups[f];if(this.groupsData)t&&(t.hide(),delete this.groups[f]);else if(!t){var e=null,i=null;t=new l(e,i,this),this.groups[f]=t;for(var s in this.items)this.items.hasOwnProperty(s)&&t.add(this.items[s]);t.show()}},s.prototype.getLabelSet=function(){return this.dom.labelSet},s.prototype.setItems=function(t){var e,i=this,s=this.itemsData;if(t){if(!(t instanceof a||t instanceof h))throw new TypeError("Data must be an instance of DataSet or DataView");this.itemsData=t}else this.itemsData=null;if(s&&(r.forEach(this.itemListeners,function(t,e){s.off(e,t)}),e=s.getIds(),this._onRemove(e)),this.itemsData){var o=this.id;r.forEach(this.itemListeners,function(t,e){i.itemsData.on(e,t,o)}),e=this.itemsData.getIds(),this._onAdd(e),this._updateUngrouped()}},s.prototype.getItems=function(){return this.itemsData},s.prototype.setGroups=function(t){var e,i=this;if(this.groupsData&&(r.forEach(this.groupListeners,function(t,e){i.groupsData.unsubscribe(e,t)}),e=this.groupsData.getIds(),this.groupsData=null,this._onRemoveGroups(e)),t){if(!(t instanceof a||t instanceof h))throw new TypeError("Data must be an instance of DataSet or DataView");this.groupsData=t}else this.groupsData=null;if(this.groupsData){var s=this.id;r.forEach(this.groupListeners,function(t,e){i.groupsData.on(e,t,s)}),e=this.groupsData.getIds(),this._onAddGroups(e)}this._updateUngrouped(),this._order(),this.body.emitter.emit("change")},s.prototype.getGroups=function(){return this.groupsData},s.prototype.removeItem=function(t){var e=this.itemsData.get(t),i=this.itemsData.getDataSet();e&&this.options.onRemove(e,function(e){e&&i.remove(t)})},s.prototype._onUpdate=function(t){var e=this;t.forEach(function(t){var i=e.itemsData.get(t,e.itemOptions),o=e.items[t],n=i.type||e.options.type||(i.end?"range":"box"),r=s.types[n];if(o&&(r&&o instanceof r?e._updateItem(o,i):(e._removeItem(o),o=null)),!o){if(!r)throw new TypeError("rangeoverflow"==n?'Item type "rangeoverflow" is deprecated. Use css styling instead: .vis.timeline .item.range .content {overflow: visible;}':'Unknown item type "'+n+'"');o=new r(i,e.conversion,e.options),o.id=t,e._addItem(o)}}),this._order(),this.stackDirty=!0,this.body.emitter.emit("change")},s.prototype._onAdd=s.prototype._onUpdate,s.prototype._onRemove=function(t){var e=0,i=this;t.forEach(function(t){var s=i.items[t];s&&(e++,i._removeItem(s))}),e&&(this._order(),this.stackDirty=!0,this.body.emitter.emit("change"))},s.prototype._order=function(){r.forEach(this.groups,function(t){t.order()})},s.prototype._onUpdateGroups=function(t){this._onAddGroups(t)},s.prototype._onAddGroups=function(t){var e=this;t.forEach(function(t){var i=e.groupsData.get(t),s=e.groups[t];if(s)s.setData(i);else{if(t==f)throw new Error("Illegal group id. "+t+" is a reserved id.");var o=Object.create(e.options);r.extend(o,{height:null}),s=new l(t,i,e),e.groups[t]=s;for(var n in e.items)if(e.items.hasOwnProperty(n)){var a=e.items[n];a.data.group==t&&s.add(a)}s.order(),s.show()}}),this.body.emitter.emit("change")},s.prototype._onRemoveGroups=function(t){var e=this.groups;t.forEach(function(t){var i=e[t];i&&(i.hide(),delete e[t])}),this.markDirty(),this.body.emitter.emit("change")},s.prototype._orderGroups=function(){if(this.groupsData){var t=this.groupsData.getIds({order:this.options.groupOrder}),e=!r.equalArray(t,this.groupIds);if(e){var i=this.groups;t.forEach(function(t){i[t].hide()}),t.forEach(function(t){i[t].show()}),this.groupIds=t}return e}return!1},s.prototype._addItem=function(t){this.items[t.id]=t;var e=this.groupsData?t.data.group:f,i=this.groups[e];i&&i.add(t)},s.prototype._updateItem=function(t,e){var i=t.data.group;if(t.data=e,t.displayed&&t.redraw(),i!=t.data.group){var s=this.groups[i];s&&s.remove(t);var o=this.groupsData?t.data.group:f,n=this.groups[o];n&&n.add(t)}},s.prototype._removeItem=function(t){t.hide(),delete this.items[t.id];var e=this.selection.indexOf(t.id);-1!=e&&this.selection.splice(e,1);var i=this.groupsData?t.data.group:f,s=this.groups[i];s&&s.remove(t)},s.prototype._constructByEndArray=function(t){for(var e=[],i=0;i0||o.length>0)&&this.body.emitter.emit("select",{items:this.getSelection()}),t.stopPropagation()}},s.prototype._onAddItem=function(t){if(this.options.selectable&&this.options.editable.add){var e=this,i=this.body.util.snap||null,o=s.itemFromTarget(t);if(o){var n=e.itemsData.get(o.id);this.options.onUpdate(n,function(t){t&&e.itemsData.update(t)})}else{var a=r.getAbsoluteLeft(this.dom.frame),h=t.gesture.center.pageX-a,d=this.body.util.toTime(h),l={start:i?i(d):d,content:"new item"};if("range"===this.options.type){var c=this.body.util.toTime(h+this.props.width/5);l.end=i?i(c):c}l[this.itemsData.fieldId]=r.randomUUID();var p=s.groupFromTarget(t);p&&(l.group=p.groupId),this.options.onAdd(l,function(t){t&&e.itemsData.add(l)})}}},s.prototype._onMultiSelectItem=function(t){if(this.options.selectable){var e,i=s.itemFromTarget(t);if(i){e=this.getSelection();var o=e.indexOf(i.id);-1==o?e.push(i.id):e.splice(o,1),this.setSelection(e),this.body.emitter.emit("select",{items:this.getSelection()}),t.stopPropagation()}}},s.itemFromTarget=function(t){for(var e=t.target;e;){if(e.hasOwnProperty("timeline-item"))return e["timeline-item"];e=e.parentNode}return null},s.groupFromTarget=function(t){for(var e=t.target;e;){if(e.hasOwnProperty("timeline-group"))return e["timeline-group"];e=e.parentNode}return null},s.itemSetFromTarget=function(t){for(var e=t.target;e;){if(e.hasOwnProperty("timeline-itemset"))return e["timeline-itemset"];e=e.parentNode}return null},t.exports=s},function(t,e,i){function s(t,e,i){this.body=t,this.defaultOptions={enabled:!0,icons:!0,iconSize:20,iconSpacing:6,left:{visible:!0,position:"top-left"},right:{visible:!0,position:"top-left"}},this.side=i,this.options=o.extend({},this.defaultOptions),this.svgElements={},this.dom={},this.groups={},this.amountOfGroups=0,this._create(),this.setOptions(e)}var o=i(2),n=i(1),r=i(19);s.prototype=new r,s.prototype.addGroup=function(t,e){this.groups.hasOwnProperty(t)||(this.groups[t]=e),this.amountOfGroups+=1},s.prototype.updateGroup=function(t,e){this.groups[t]=e},s.prototype.removeGroup=function(t){this.groups.hasOwnProperty(t)&&(delete this.groups[t],this.amountOfGroups-=1)},s.prototype._create=function(){this.dom.frame=document.createElement("div"),this.dom.frame.className="legend",this.dom.frame.style.position="absolute",this.dom.frame.style.top="10px",this.dom.frame.style.display="block",this.dom.textArea=document.createElement("div"),this.dom.textArea.className="legendText",this.dom.textArea.style.position="relative",this.dom.textArea.style.top="0px",this.svg=document.createElementNS("http://www.w3.org/2000/svg","svg"),this.svg.style.position="absolute",this.svg.style.top="0px",this.svg.style.width=this.options.iconSize+5+"px",this.dom.frame.appendChild(this.svg),this.dom.frame.appendChild(this.dom.textArea)},s.prototype.hide=function(){this.dom.frame.parentNode&&this.dom.frame.parentNode.removeChild(this.dom.frame)},s.prototype.show=function(){this.dom.frame.parentNode||this.body.dom.center.appendChild(this.dom.frame)},s.prototype.setOptions=function(t){var e=["enabled","orientation","icons","left","right"];o.selectiveDeepExtend(e,this.options,t)},s.prototype.redraw=function(){var t=0;for(var e in this.groups)this.groups.hasOwnProperty(e)&&1==this.groups[e].visible&&t++;if(0==this.options[this.side].visible||0==this.amountOfGroups||0==this.options.enabled||0==t)this.hide();else{this.show(),"top-left"==this.options[this.side].position||"bottom-left"==this.options[this.side].position?(this.dom.frame.style.left="4px",this.dom.frame.style.textAlign="left",this.dom.textArea.style.textAlign="left",this.dom.textArea.style.left=this.options.iconSize+15+"px",this.dom.textArea.style.right="",this.svg.style.left="0px",this.svg.style.right=""):(this.dom.frame.style.right="4px",this.dom.frame.style.textAlign="right",this.dom.textArea.style.textAlign="right",this.dom.textArea.style.right=this.options.iconSize+15+"px",this.dom.textArea.style.left="",this.svg.style.right="0px",this.svg.style.left=""),"top-left"==this.options[this.side].position||"top-right"==this.options[this.side].position?(this.dom.frame.style.top=4-Number(this.body.dom.center.style.top.replace("px",""))+"px",this.dom.frame.style.bottom=""):(this.dom.frame.style.bottom=4-Number(this.body.dom.center.style.top.replace("px",""))+"px",this.dom.frame.style.top=""),0==this.options.icons?(this.dom.frame.style.width=this.dom.textArea.offsetWidth+10+"px",this.dom.textArea.style.right="",this.dom.textArea.style.left="",this.svg.style.width="0px"):(this.dom.frame.style.width=this.options.iconSize+15+this.dom.textArea.offsetWidth+10+"px",this.drawLegendIcons()); +var i="";for(var e in this.groups)this.groups.hasOwnProperty(e)&&1==this.groups[e].visible&&(i+=this.groups[e].content+"
");this.dom.textArea.innerHTML=i,this.dom.textArea.style.lineHeight=.75*this.options.iconSize+this.options.iconSpacing+"px"}},s.prototype.drawLegendIcons=function(){if(this.dom.frame.parentNode){n.prepareElements(this.svgElements);var t=window.getComputedStyle(this.dom.frame).paddingTop,e=Number(t.replace("px","")),i=e,s=this.options.iconSize,o=.75*this.options.iconSize,r=e+.5*o+3;this.svg.style.width=s+5+e+"px";for(var a in this.groups)this.groups.hasOwnProperty(a)&&1==this.groups[a].visible&&(this.groups[a].drawIcon(i,r,this.svgElements,this.svg,s,o),r+=o+this.options.iconSpacing);n.cleanupElements(this.svgElements)}},t.exports=s},function(t,e,i){function s(t,e){this.id=o.randomUUID(),this.body=t,this.defaultOptions={yAxisOrientation:"left",defaultGroup:"default",sort:!0,sampling:!0,graphHeight:"400px",shaded:{enabled:!1,orientation:"bottom"},style:"line",barChart:{width:50,allowOverlap:!0,align:"center"},catmullRom:{enabled:!0,parametrization:"centripetal",alpha:.5},drawPoints:{enabled:!0,size:6,style:"square"},dataAxis:{showMinorLabels:!0,showMajorLabels:!0,icons:!1,width:"40px",visible:!0},legend:{enabled:!1,icons:!0,left:{visible:!0,position:"top-left"},right:{visible:!0,position:"top-right"}}},this.options=o.extend({},this.defaultOptions),this.dom={},this.props={},this.hammer=null,this.groups={};var i=this;this.itemsData=null,this.groupsData=null,this.itemListeners={add:function(t,e){i._onAdd(e.items)},update:function(t,e){i._onUpdate(e.items)},remove:function(t,e){i._onRemove(e.items)}},this.groupListeners={add:function(t,e){i._onAddGroups(e.items)},update:function(t,e){i._onUpdateGroups(e.items)},remove:function(t,e){i._onRemoveGroups(e.items)}},this.items={},this.selection=[],this.lastStart=this.body.range.start,this.touchParams={},this.svgElements={},this.setOptions(e),this.groupsUsingDefaultStyles=[0],this.body.emitter.on("rangechange",function(){if(0!=i.lastStart){var t=i.body.range.start-i.lastStart,e=i.body.range.end-i.body.range.start;if(0!=i.width){var s=i.width/e,o=t*s;i.svg.style.left=-i.width-o+"px"}}}),this.body.emitter.on("rangechanged",function(){i.lastStart=i.body.range.start,i.svg.style.left=o.option.asSize(-i.width),i._updateGraph.apply(i)}),this._create(),this.body.emitter.emit("change")}var o=i(2),n=i(1),r=i(3),a=i(4),h=i(19),d=i(21),l=i(22),c=i(25),p="__ungrouped__";s.prototype=new h,s.prototype._create=function(){var t=document.createElement("div");t.className="LineGraph",this.dom.frame=t,this.svg=document.createElementNS("http://www.w3.org/2000/svg","svg"),this.svg.style.position="relative",this.svg.style.height=(""+this.options.graphHeight).replace("px","")+"px",this.svg.style.display="block",t.appendChild(this.svg),this.options.dataAxis.orientation="left",this.yAxisLeft=new d(this.body,this.options.dataAxis,this.svg),this.options.dataAxis.orientation="right",this.yAxisRight=new d(this.body,this.options.dataAxis,this.svg),delete this.options.dataAxis.orientation,this.legendLeft=new c(this.body,this.options.legend,"left"),this.legendRight=new c(this.body,this.options.legend,"right"),this.show()},s.prototype.setOptions=function(t){if(t){var e=["sampling","defaultGroup","graphHeight","yAxisOrientation","style","barChart","dataAxis","sort"];o.selectiveDeepExtend(e,this.options,t),o.mergeOptions(this.options,t,"catmullRom"),o.mergeOptions(this.options,t,"drawPoints"),o.mergeOptions(this.options,t,"shaded"),o.mergeOptions(this.options,t,"legend"),t.catmullRom&&"object"==typeof t.catmullRom&&t.catmullRom.parametrization&&("uniform"==t.catmullRom.parametrization?this.options.catmullRom.alpha=0:"chordal"==t.catmullRom.parametrization?this.options.catmullRom.alpha=1:(this.options.catmullRom.parametrization="centripetal",this.options.catmullRom.alpha=.5)),this.yAxisLeft&&void 0!==t.dataAxis&&(this.yAxisLeft.setOptions(this.options.dataAxis),this.yAxisRight.setOptions(this.options.dataAxis)),this.legendLeft&&void 0!==t.legend&&(this.legendLeft.setOptions(this.options.legend),this.legendRight.setOptions(this.options.legend)),this.groups.hasOwnProperty(p)&&this.groups[p].setOptions(t)}this.dom.frame&&this._updateGraph()},s.prototype.hide=function(){this.dom.frame.parentNode&&this.dom.frame.parentNode.removeChild(this.dom.frame)},s.prototype.show=function(){this.dom.frame.parentNode||this.body.dom.center.appendChild(this.dom.frame)},s.prototype.setItems=function(t){var e,i=this,s=this.itemsData;if(t){if(!(t instanceof r||t instanceof a))throw new TypeError("Data must be an instance of DataSet or DataView");this.itemsData=t}else this.itemsData=null;if(s&&(o.forEach(this.itemListeners,function(t,e){s.off(e,t)}),e=s.getIds(),this._onRemove(e)),this.itemsData){var n=this.id;o.forEach(this.itemListeners,function(t,e){i.itemsData.on(e,t,n)}),e=this.itemsData.getIds(),this._onAdd(e)}this._updateUngrouped(),this._updateGraph(),this.redraw()},s.prototype.setGroups=function(t){var e,i=this;if(this.groupsData&&(o.forEach(this.groupListeners,function(t,e){i.groupsData.unsubscribe(e,t)}),e=this.groupsData.getIds(),this.groupsData=null,this._onRemoveGroups(e)),t){if(!(t instanceof r||t instanceof a))throw new TypeError("Data must be an instance of DataSet or DataView");this.groupsData=t}else this.groupsData=null;if(this.groupsData){var s=this.id;o.forEach(this.groupListeners,function(t,e){i.groupsData.on(e,t,s)}),e=this.groupsData.getIds(),this._onAddGroups(e)}this._onUpdate()},s.prototype._onUpdate=function(){this._updateUngrouped(),this._updateAllGroupData(),this._updateGraph(),this.redraw()},s.prototype._onAdd=function(t){this._onUpdate(t)},s.prototype._onRemove=function(t){this._onUpdate(t)},s.prototype._onUpdateGroups=function(t){for(var e=0;e0){for(s=0;su){e.push(g);break}e.push(g)}}else for(var m=0;mp&&g.x0?(i=this._preprocessData(e,t),h.push({min:i.min,max:i.max}),r.push(i.data)):(h.push({}),r.push([]))}else h.push({}),r.push([]);if(d=this._updateYAxis(l,h),1==d)return n.cleanupElements(this.svgElements),void this.body.emitter.emit("change");for(s=0;s0){for(var p=0;pi?i:a,d=s>d?s:d):(r=!0,h=h>i?i:h,l=s>l?s:l))}1==n&&this.yAxisLeft.setRange(a,d),1==r&&this.yAxisRight.setRange(h,l)}return o=this._toggleAxisVisiblity(n,this.yAxisLeft)||o,o=this._toggleAxisVisiblity(r,this.yAxisRight)||o,1==r&&1==n?(this.yAxisLeft.drawIcons=!0,this.yAxisRight.drawIcons=!0):(this.yAxisLeft.drawIcons=!1,this.yAxisRight.drawIcons=!1),this.yAxisRight.master=!n,0==this.yAxisRight.master?(this.yAxisLeft.lineOffset=1==r?this.yAxisRight.width:0,o=this.yAxisLeft.redraw()||o,this.yAxisRight.stepPixelsForced=this.yAxisLeft.stepPixels,o=this.yAxisRight.redraw()||o):o=this.yAxisRight.redraw()||o,o},s.prototype._toggleAxisVisiblity=function(t,e){var i=!1;return 0==t?e.dom.frame.parentNode&&(e.hide(),i=!0):e.dom.frame.parentNode||(e.show(),i=!0),i},s.prototype._drawBarGraph=function(t,e){if(null!=t&&t.length>0){for(var i,s=.1*e.options.barChart.width,o=0,r={},a=0;a0&&(i=Math.min(i,Math.abs(t[a-1].x-t[a].x))),0==i&&(void 0===r[t[a].x]&&(r[t[a].x]={amount:0,resolved:0}),r[t[a].x].amount+=1);for(var h,a=0;a0&&(i=Math.min(i,Math.abs(t[a-1].x-h)));var d=this._getSafeDrawData(i,e,s)}else{var l=a+(r[h].amount-r[h].resolved),c=a-(r[h].resolved+1);l0&&(i=Math.min(i,Math.abs(t[c].x-h)));var d=this._getSafeDrawData(i,e,s);r[h].resolved+=1,0==e.options.barChart.allowOverlap&&(d.width=d.width/r[h].amount,d.offset+=r[h].resolved*d.width-.5*d.width*(r[h].amount+1),"left"==e.options.barChart.align?o-=.5*d.width:"right"==e.options.barChart.align&&(o+=.5*d.width))}n.drawBar(t[a].x+d.offset,t[a].y,d.width,e.zeroPosition-t[a].y,e.className+" bar",this.svgElements,this.svg)}1==e.options.drawPoints.enabled&&this._drawPoints(t,e,this.svgElements,this.svg,o)}},s.prototype._getSafeDrawData=function(t,e,i){var s,o;return t0?(s=i>t?i:t,o=0,e.options.slots&&(s/=e.options.slots.total,o=e.options.slots.slot*s-.5*s*(e.options.slots.total+1)),"left"==e.options.barChart.align?o-=.5*t:"right"==e.options.barChart.align&&(o+=.5*t)):(s=e.options.barChart.width,o=0,e.options.slots&&(s/=e.options.slots.total,o=e.options.slots.slot*s-.5*s*(e.options.slots.total+1)),"left"==e.options.barChart.align?o-=.5*e.options.barChart.width:"right"==e.options.barChart.align&&(o+=.5*e.options.barChart.width)),{width:s,offset:o}},s.prototype._drawLineGraph=function(t,e){if(null!=t&&t.length>0){var i,s,o=Number(this.svg.style.height.replace("px",""));if(i=n.getSVGElement("path",this.svgElements,this.svg),i.setAttributeNS(null,"class",e.className),s=1==e.options.catmullRom.enabled?this._catmullRom(t,e):this._linear(t),1==e.options.shaded.enabled){var r,a=n.getSVGElement("path",this.svgElements,this.svg);r="top"==e.options.shaded.orientation?"M"+t[0].x+",0 "+s+"L"+t[t.length-1].x+",0":"M"+t[0].x+","+o+" "+s+"L"+t[t.length-1].x+","+o,a.setAttributeNS(null,"class",e.className+" fill"),a.setAttributeNS(null,"d",r)}i.setAttributeNS(null,"d","M"+s),1==e.options.drawPoints.enabled&&this._drawPoints(t,e,this.svgElements,this.svg)}},s.prototype._drawPoints=function(t,e,i,s,o){void 0===o&&(o=0);for(var r=0;rp;p+=r)i=n(t[p].x)+this.width-1,s=t[p].y,o.push({x:i,y:s}),h=h>s?s:h,d=s>d?s:d;return{min:h,max:d,data:o}},s.prototype._convertYvalues=function(t,e){var i,s,o=[],n=this.yAxisLeft,r=Number(this.svg.style.height.replace("px",""));"right"==e.options.yAxisOrientation&&(n=this.yAxisRight);for(var a=0;al;l++)e=0==l?t[0]:t[l-1],i=t[l],s=t[l+1],o=d>l+2?t[l+2]:s,n={x:(-e.x+6*i.x+s.x)*h,y:(-e.y+6*i.y+s.y)*h},r={x:(i.x+6*s.x-o.x)*h,y:(i.y+6*s.y-o.y)*h},a+="C"+n.x+","+n.y+" "+r.x+","+r.y+" "+s.x+","+s.y+" ";return a},s.prototype._catmullRom=function(t,e){var i=e.options.catmullRom.alpha;if(0==i||void 0===i)return this._catmullRomUniform(t);for(var s,o,n,r,a,h,d,l,c,p,u,f,m,g,v,y,b,_,x,w=Math.round(t[0].x)+","+Math.round(t[0].y)+" ",S=t.length,M=0;S-1>M;M++)s=0==M?t[0]:t[M-1],o=t[M],n=t[M+1],r=S>M+2?t[M+2]:n,d=Math.sqrt(Math.pow(s.x-o.x,2)+Math.pow(s.y-o.y,2)),l=Math.sqrt(Math.pow(o.x-n.x,2)+Math.pow(o.y-n.y,2)),c=Math.sqrt(Math.pow(n.x-r.x,2)+Math.pow(n.y-r.y,2)),g=Math.pow(c,i),y=Math.pow(c,2*i),v=Math.pow(l,i),b=Math.pow(l,2*i),x=Math.pow(d,i),_=Math.pow(d,2*i),p=2*_+3*x*v+b,u=2*y+3*g*v+b,f=3*x*(x+v),f>0&&(f=1/f),m=3*g*(g+v),m>0&&(m=1/m),a={x:(-b*s.x+p*o.x+_*n.x)*f,y:(-b*s.y+p*o.y+_*n.y)*f},h={x:(y*o.x+u*n.x-b*r.x)*m,y:(y*o.y+u*n.y-b*r.y)*m},0==a.x&&0==a.y&&(a=o),0==h.x&&0==h.y&&(h=n),w+="C"+a.x+","+a.y+" "+h.x+","+h.y+" "+n.x+","+n.y+" ";return w},s.prototype._linear=function(t){for(var e="",i=0;id;){d++;var l=n.getCurrent(),c=this.body.util.toScreen(l),p=n.isMajor();this.options.showMinorLabels&&this._repaintMinorText(c,n.getLabelMinor(),t),p&&this.options.showMajorLabels?(c>0&&(void 0==h&&(h=c),this._repaintMajorText(c,n.getLabelMajor(),t)),this._repaintMajorLine(c,t)):this._repaintMinorLine(c,t),n.next()}if(this.options.showMajorLabels){var u=this.body.util.toTime(0),f=n.getLabelMajor(u),m=f.length*(this.props.majorCharWidth||10)+10;(void 0==h||h>m)&&this._repaintMajorText(0,f,t)}o.forEach(this.dom.redundant,function(t){for(;t.length;){var e=t.pop();e&&e.parentNode&&e.parentNode.removeChild(e)}})},s.prototype._repaintMinorText=function(t,e,i){var s=this.dom.redundant.minorTexts.shift();if(!s){var o=document.createTextNode("");s=document.createElement("div"),s.appendChild(o),s.className="text minor",this.dom.foreground.appendChild(s)}this.dom.minorTexts.push(s),s.childNodes[0].nodeValue=e,s.style.top="top"==i?this.props.majorLabelHeight+"px":"0",s.style.left=t+"px"},s.prototype._repaintMajorText=function(t,e,i){var s=this.dom.redundant.majorTexts.shift();if(!s){var o=document.createTextNode(e);s=document.createElement("div"),s.className="text major",s.appendChild(o),this.dom.foreground.appendChild(s)}this.dom.majorTexts.push(s),s.childNodes[0].nodeValue=e,s.style.top="top"==i?"0":this.props.minorLabelHeight+"px",s.style.left=t+"px"},s.prototype._repaintMinorLine=function(t,e){var i=this.dom.redundant.minorLines.shift();i||(i=document.createElement("div"),i.className="grid vertical minor",this.dom.background.appendChild(i)),this.dom.minorLines.push(i);var s=this.props;i.style.top="top"==e?s.majorLabelHeight+"px":this.body.domProps.top.height+"px",i.style.height=s.minorLineHeight+"px",i.style.left=t-s.minorLineWidth/2+"px"},s.prototype._repaintMajorLine=function(t,e){var i=this.dom.redundant.majorLines.shift();i||(i=document.createElement("DIV"),i.className="grid vertical major",this.dom.background.appendChild(i)),this.dom.majorLines.push(i);var s=this.props;i.style.top="top"==e?"0":this.body.domProps.top.height+"px",i.style.left=t-s.majorLineWidth/2+"px",i.style.height=s.majorLineHeight+"px"},s.prototype._calculateCharSize=function(){this.dom.measureCharMinor||(this.dom.measureCharMinor=document.createElement("DIV"),this.dom.measureCharMinor.className="text minor measure",this.dom.measureCharMinor.style.position="absolute",this.dom.measureCharMinor.appendChild(document.createTextNode("0")),this.dom.foreground.appendChild(this.dom.measureCharMinor)),this.props.minorCharHeight=this.dom.measureCharMinor.clientHeight,this.props.minorCharWidth=this.dom.measureCharMinor.clientWidth,this.dom.measureCharMajor||(this.dom.measureCharMajor=document.createElement("DIV"),this.dom.measureCharMajor.className="text minor measure",this.dom.measureCharMajor.style.position="absolute",this.dom.measureCharMajor.appendChild(document.createTextNode("0")),this.dom.foreground.appendChild(this.dom.measureCharMajor)),this.props.majorCharHeight=this.dom.measureCharMajor.clientHeight,this.props.majorCharWidth=this.dom.measureCharMajor.clientWidth},s.prototype.snap=function(t){return this.step.snap(t)},t.exports=s},function(t,e,i){function s(t,e,i){this.id=null,this.parent=null,this.data=t,this.dom=null,this.conversion=e||{},this.options=i||{},this.selected=!1,this.displayed=!1,this.dirty=!0,this.top=null,this.left=null,this.width=null,this.height=null}var o=i(40);s.prototype.select=function(){this.selected=!0,this.displayed&&this.redraw()},s.prototype.unselect=function(){this.selected=!1,this.displayed&&this.redraw()},s.prototype.setParent=function(t){this.displayed?(this.hide(),this.parent=t,this.parent&&this.show()):this.parent=t},s.prototype.isVisible=function(){return!1},s.prototype.show=function(){return!1},s.prototype.hide=function(){return!1},s.prototype.redraw=function(){},s.prototype.repositionX=function(){},s.prototype.repositionY=function(){},s.prototype._repaintDeleteButton=function(t){if(this.selected&&this.options.editable.remove&&!this.dom.deleteButton){var e=this,i=document.createElement("div");i.className="delete",i.title="Delete this item",o(i,{preventDefault:!0}).on("tap",function(t){e.parent.removeFromDataSet(e),t.stopPropagation()}),t.appendChild(i),this.dom.deleteButton=i}else!this.selected&&this.dom.deleteButton&&(this.dom.deleteButton.parentNode&&this.dom.deleteButton.parentNode.removeChild(this.dom.deleteButton),this.dom.deleteButton=null)},t.exports=s},function(t,e,i){function s(t,e,i){if(this.props={dot:{width:0,height:0},line:{width:0,height:0}},t&&void 0==t.start)throw new Error('Property "start" missing in item '+t);o.call(this,t,e,i)}var o=i(28);s.prototype=new o(null,null,null),s.prototype.isVisible=function(t){var e=(t.end-t.start)/4;return this.data.start>t.start-e&&this.data.startt.start-e&&this.data.startt.start},s.prototype.redraw=function(){var t=this.dom;if(t||(this.dom={},t=this.dom,t.box=document.createElement("div"),t.content=document.createElement("div"),t.content.className="content",t.box.appendChild(t.content),t.box["timeline-item"]=this),!this.parent)throw new Error("Cannot redraw item: no parent attached");if(!t.box.parentNode){var e=this.parent.dom.foreground;if(!e)throw new Error("Cannot redraw time axis: parent has no foreground container element");e.appendChild(t.box)}if(this.displayed=!0,this.data.content!=this.content){if(this.content=this.data.content,this.content instanceof Element)t.content.innerHTML="",t.content.appendChild(this.content);else{if(void 0==this.data.content)throw new Error('Property "content" missing in item '+this.data.id);t.content.innerHTML=this.content}this.dirty=!0}this.data.title!=this.title&&(t.box.title=this.data.title,this.title=this.data.title);var i=(this.data.className?" "+this.data.className:"")+(this.selected?" selected":"");this.className!=i&&(this.className=i,t.box.className=this.baseClassName+i,this.dirty=!0),this.dirty&&(this.overflow="hidden"!==window.getComputedStyle(t.content).overflow,this.props.content.width=this.dom.content.offsetWidth,this.height=this.dom.box.offsetHeight,this.dirty=!1),this._repaintDeleteButton(t.box),this._repaintDragLeft(),this._repaintDragRight()},s.prototype.show=function(){this.displayed||this.redraw()},s.prototype.hide=function(){if(this.displayed){var t=this.dom.box;t.parentNode&&t.parentNode.removeChild(t),this.top=null,this.left=null,this.displayed=!1}},s.prototype.repositionX=function(){var t,e=this.props,i=this.parent.width,s=this.conversion.toScreen(this.data.start),o=this.conversion.toScreen(this.data.end),n=this.options.padding;-i>s&&(s=-i),o>2*i&&(o=2*i);var r=Math.max(o-s,1);this.overflow?(t=Math.max(-s,0),this.left=s,this.width=r+this.props.content.width):(t=0>s?Math.min(-s,o-s-e.content.width-2*n):0,this.left=s,this.width=r),this.dom.box.style.left=this.left+"px",this.dom.box.style.width=r+"px",this.dom.content.style.left=t+"px"},s.prototype.repositionY=function(){var t=this.options.orientation,e=this.dom.box;e.style.top="top"==t?this.top+"px":this.parent.height-this.top-this.height+"px"},s.prototype._repaintDragLeft=function(){if(this.selected&&this.options.editable.updateTime&&!this.dom.dragLeft){var t=document.createElement("div");t.className="drag-left",t.dragLeftItem=this,o(t,{preventDefault:!0}).on("drag",function(){}),this.dom.box.appendChild(t),this.dom.dragLeft=t}else!this.selected&&this.dom.dragLeft&&(this.dom.dragLeft.parentNode&&this.dom.dragLeft.parentNode.removeChild(this.dom.dragLeft),this.dom.dragLeft=null)},s.prototype._repaintDragRight=function(){if(this.selected&&this.options.editable.updateTime&&!this.dom.dragRight){var t=document.createElement("div");t.className="drag-right",t.dragRightItem=this,o(t,{preventDefault:!0}).on("drag",function(){}),this.dom.box.appendChild(t),this.dom.dragRight=t}else!this.selected&&this.dom.dragRight&&(this.dom.dragRight.parentNode&&this.dom.dragRight.parentNode.removeChild(this.dom.dragRight),this.dom.dragRight=null) +},t.exports=s},function(t,e,i){function s(t,e,i){if(!(this instanceof s))throw new SyntaxError("Constructor must be called with the new operator");this._initializeMixinLoaders(),this.containerElement=t,this.renderRefreshRate=60,this.renderTimestep=1e3/this.renderRefreshRate,this.renderTime=.5*this.renderTimestep,this.maxPhysicsTicksPerRender=3,this.physicsDiscreteStepsize=.5,this.initializing=!0,this.triggerFunctions={add:null,edit:null,editEdge:null,connect:null,del:null},this.defaultOptions={nodes:{mass:1,radiusMin:10,radiusMax:30,radius:10,shape:"ellipse",image:void 0,widthMin:16,widthMax:64,fixed:!1,fontColor:"black",fontSize:14,fontFace:"verdana",level:-1,color:{border:"#2B7CE9",background:"#97C2FC",highlight:{border:"#2B7CE9",background:"#D2E5FF"},hover:{border:"#2B7CE9",background:"#D2E5FF"}},borderColor:"#2B7CE9",backgroundColor:"#97C2FC",highlightColor:"#D2E5FF",group:void 0,borderWidth:1},edges:{widthMin:1,widthMax:15,width:1,widthSelectionMultiplier:2,hoverWidth:1.5,style:"line",color:{color:"#848484",highlight:"#848484",hover:"#848484"},fontColor:"#343434",fontSize:14,fontFace:"arial",fontFill:"white",arrowScaleFactor:1,dash:{length:10,gap:5,altLength:void 0},inheritColor:"from"},configurePhysics:!1,physics:{barnesHut:{enabled:!0,theta:1/.6,gravitationalConstant:-2e3,centralGravity:.3,springLength:95,springConstant:.04,damping:.09},repulsion:{centralGravity:0,springLength:200,springConstant:.05,nodeDistance:100,damping:.09},hierarchicalRepulsion:{enabled:!1,centralGravity:0,springLength:100,springConstant:.01,nodeDistance:150,damping:.09},damping:null,centralGravity:null,springLength:null,springConstant:null},clustering:{enabled:!1,initialMaxNodes:100,clusterThreshold:500,reduceToNodes:300,chainThreshold:.4,clusterEdgeThreshold:20,sectorThreshold:100,screenSizeThreshold:.2,fontSizeMultiplier:4,maxFontSize:1e3,forceAmplification:.1,distanceAmplification:.1,edgeGrowth:20,nodeScaling:{width:1,height:1,radius:1},maxNodeSizeIncrements:600,activeAreaBoxSize:80,clusterLevelDifference:2},navigation:{enabled:!1},keyboard:{enabled:!1,speed:{x:10,y:10,zoom:.02}},dataManipulation:{enabled:!1,initiallyVisible:!1},hierarchicalLayout:{enabled:!1,levelSeparation:150,nodeSpacing:100,direction:"UD"},freezeForStabilization:!1,smoothCurves:{enabled:!0,dynamic:!0,type:"continuous",roundness:.5},dynamicSmoothCurves:!0,maxVelocity:30,minVelocity:.1,stabilize:!0,stabilizationIterations:1e3,labels:{add:"Add Node",edit:"Edit",link:"Add Link",del:"Delete selected",editNode:"Edit Node",editEdge:"Edit Edge",back:"Back",addDescription:"Click in an empty space to place a new node.",linkDescription:"Click on a node and drag the edge to another node to connect them.",editEdgeDescription:"Click on the control points and drag them to a node to connect to it.",addError:"The function for add does not support two arguments (data,callback).",linkError:"The function for connect does not support two arguments (data,callback).",editError:"The function for edit does not support two arguments (data, callback).",editBoundError:"No edit function has been bound to this button.",deleteError:"The function for delete does not support two arguments (data, callback).",deleteClusterError:"Clusters cannot be deleted."},tooltip:{delay:300,fontColor:"black",fontSize:14,fontFace:"verdana",color:{border:"#666",background:"#FFFFC6"}},dragNetwork:!0,dragNodes:!0,zoomable:!0,hover:!1,hideEdgesOnDrag:!1,hideNodesOnDrag:!1,width:"100%",height:"100%",selectable:!0},this.constants=a.extend({},this.defaultOptions),this.hoverObj={nodes:{},edges:{}},this.controlNodesActive=!1;var o=this;this.groups=new u,this.images=new f,this.images.setOnloadCallback(function(){o._redraw()}),this.xIncrement=0,this.yIncrement=0,this.zoomIncrement=0,this._loadPhysicsSystem(),this._create(),this._loadSectorSystem(),this._loadClusterSystem(),this._loadSelectionSystem(),this._loadHierarchySystem(),this._setTranslation(this.frame.clientWidth/2,this.frame.clientHeight/2),this._setScale(1),this.setOptions(i),this.freezeSimulation=!1,this.cachedFunctions={},this.calculationNodes={},this.calculationNodeIndices=[],this.nodeIndices=[],this.nodes={},this.edges={},this.canvasTopLeft={x:0,y:0},this.canvasBottomRight={x:0,y:0},this.pointerPosition={x:0,y:0},this.areaCenter={},this.scale=1,this.previousScale=this.scale,this.nodesData=null,this.edgesData=null,this.nodesListeners={add:function(t,e){o._addNodes(e.items),o.start()},update:function(t,e){o._updateNodes(e.items),o.start()},remove:function(t,e){o._removeNodes(e.items),o.start()}},this.edgesListeners={add:function(t,e){o._addEdges(e.items),o.start()},update:function(t,e){o._updateEdges(e.items),o.start()},remove:function(t,e){o._removeEdges(e.items),o.start()}},this.moving=!0,this.timer=void 0,this.setData(e,this.constants.clustering.enabled||this.constants.hierarchicalLayout.enabled),this.initializing=!1,1==this.constants.hierarchicalLayout.enabled?this._setupHierarchicalLayout():0==this.constants.stabilize&&this.zoomExtent(!0,this.constants.clustering.enabled),this.constants.clustering.enabled&&this.startWithClustering()}var o=i(46),n=i(40),r=i(47),a=i(2),h=i(43),d=i(3),l=i(4),c=i(38),p=i(39),u=i(34),f=i(35),m=i(36),g=i(33),v=i(37),y=i(45);i(44),o(s.prototype),s.prototype._getScriptPath=function(){for(var t=document.getElementsByTagName("script"),e=0;et.x&&(s=t.x),ot.y&&(e=t.y),i=this.constants.clustering.initialMaxNodes?49.07548/(o+142.05338)+91444e-8:12.662/(o+7.4147)+.0964822:1==this.constants.clustering.enabled&&o>=this.constants.clustering.initialMaxNodes?77.5271985/(o+187.266146)+476710517e-13:30.5062972/(o+19.93597763)+.08413486;var n=Math.min(this.frame.canvas.clientWidth/600,this.frame.canvas.clientHeight/600);i*=n}else{var r=1.1*(Math.abs(s.minX)+Math.abs(s.maxX)),a=1.1*(Math.abs(s.minY)+Math.abs(s.maxY)),h=this.frame.canvas.clientWidth/r,d=this.frame.canvas.clientHeight/a;i=d>=h?h:d}i>1&&(i=1),this._setScale(i),this._centerNetwork(s),0==e&&(this.moving=!0,this.start())},s.prototype._updateNodeIndexList=function(){this._clearNodeIndexList();for(var t in this.nodes)this.nodes.hasOwnProperty(t)&&this.nodeIndices.push(t)},s.prototype.setData=function(t,e){if(void 0===e&&(e=!1),t&&t.dot&&(t.nodes||t.edges))throw new SyntaxError('Data must contain either parameter "dot" or parameter pair "nodes" and "edges", but not both.');if(this.setOptions(t&&t.options),t&&t.dot){if(t&&t.dot){var i=c.DOTToGraph(t.dot);return void this.setData(i)}}else if(t&&t.gephi){if(t&&t.gephi){var s=p.parseGephi(t.gephi);return void this.setData(s)}}else this._setNodes(t&&t.nodes),this._setEdges(t&&t.edges);if(this._putDataInSector(),!e)if(this.constants.stabilize){var o=this;setTimeout(function(){o._stabilize(),o.start()},0)}else this.start()},s.prototype.setOptions=function(t){if(t){var e,i=["nodes","edges","smoothCurves","hierarchicalLayout","clustering","navigation","keyboard","dataManipulation","onAdd","onEdit","onEditEdge","onConnect","onDelete"];if(a.selectiveNotDeepExtend(i,this.constants,t),a.selectiveNotDeepExtend(["color"],this.constants.nodes,t.nodes),a.selectiveNotDeepExtend(["color","length"],this.constants.edges,t.edges),t.physics&&(a.mergeOptions(this.constants.physics,t.physics,"barnesHut"),a.mergeOptions(this.constants.physics,t.physics,"repulsion"),t.physics.hierarchicalRepulsion)){this.constants.hierarchicalLayout.enabled=!0,this.constants.physics.hierarchicalRepulsion.enabled=!0,this.constants.physics.barnesHut.enabled=!1;for(e in t.physics.hierarchicalRepulsion)t.physics.hierarchicalRepulsion.hasOwnProperty(e)&&(this.constants.physics.hierarchicalRepulsion[e]=t.physics.hierarchicalRepulsion[e])}if(t.onAdd&&(this.triggerFunctions.add=t.onAdd),t.onEdit&&(this.triggerFunctions.edit=t.onEdit),t.onEditEdge&&(this.triggerFunctions.editEdge=t.onEditEdge),t.onConnect&&(this.triggerFunctions.connect=t.onConnect),t.onDelete&&(this.triggerFunctions.del=t.onDelete),a.mergeOptions(this.constants,t,"smoothCurves"),a.mergeOptions(this.constants,t,"hierarchicalLayout"),a.mergeOptions(this.constants,t,"clustering"),a.mergeOptions(this.constants,t,"navigation"),a.mergeOptions(this.constants,t,"keyboard"),a.mergeOptions(this.constants,t,"dataManipulation"),t.dataManipulation&&(this.editMode=this.constants.dataManipulation.initiallyVisible),t.edges&&(void 0!==t.edges.color&&(a.isString(t.edges.color)?(this.constants.edges.color={},this.constants.edges.color.color=t.edges.color,this.constants.edges.color.highlight=t.edges.color,this.constants.edges.color.hover=t.edges.color):(void 0!==t.edges.color.color&&(this.constants.edges.color.color=t.edges.color.color),void 0!==t.edges.color.highlight&&(this.constants.edges.color.highlight=t.edges.color.highlight),void 0!==t.edges.color.hover&&(this.constants.edges.color.hover=t.edges.color.hover))),t.edges.fontColor||void 0!==t.edges.color&&(a.isString(t.edges.color)?this.constants.edges.fontColor=t.edges.color:void 0!==t.edges.color.color&&(this.constants.edges.fontColor=t.edges.color.color))),t.nodes&&t.nodes.color){var s=a.parseColor(t.nodes.color);this.constants.nodes.color.background=s.background,this.constants.nodes.color.border=s.border,this.constants.nodes.color.highlight.background=s.highlight.background,this.constants.nodes.color.highlight.border=s.highlight.border,this.constants.nodes.color.hover.background=s.hover.background,this.constants.nodes.color.hover.border=s.hover.border}if(t.groups)for(var o in t.groups)if(t.groups.hasOwnProperty(o)){var n=t.groups[o];this.groups.add(o,n)}if(t.tooltip){for(e in t.tooltip)t.tooltip.hasOwnProperty(e)&&(this.constants.tooltip[e]=t.tooltip[e]);t.tooltip.color&&(this.constants.tooltip.color=a.parseColor(t.tooltip.color))}}this._loadPhysicsSystem(),this._loadNavigationControls(),this._loadManipulationSystem(),this._configureSmoothCurves(),this._createKeyBinds(),this.setSize(this.constants.width,this.constants.height),this.moving=!0,this.start()},s.prototype._create=function(){for(;this.containerElement.hasChildNodes();)this.containerElement.removeChild(this.containerElement.firstChild);if(this.frame=document.createElement("div"),this.frame.className="network-frame",this.frame.style.position="relative",this.frame.style.overflow="hidden",this.frame.canvas=document.createElement("canvas"),this.frame.canvas.style.position="relative",this.frame.appendChild(this.frame.canvas),!this.frame.canvas.getContext){var t=document.createElement("DIV");t.style.color="red",t.style.fontWeight="bold",t.style.padding="10px",t.innerHTML="Error: your browser does not support HTML canvas",this.frame.canvas.appendChild(t)}var e=this;this.drag={},this.pinch={},this.hammer=n(this.frame.canvas,{prevent_default:!0}),this.hammer.on("tap",e._onTap.bind(e)),this.hammer.on("doubletap",e._onDoubleTap.bind(e)),this.hammer.on("hold",e._onHold.bind(e)),this.hammer.on("pinch",e._onPinch.bind(e)),this.hammer.on("touch",e._onTouch.bind(e)),this.hammer.on("dragstart",e._onDragStart.bind(e)),this.hammer.on("drag",e._onDrag.bind(e)),this.hammer.on("dragend",e._onDragEnd.bind(e)),this.hammer.on("release",e._onRelease.bind(e)),this.hammer.on("mousewheel",e._onMouseWheel.bind(e)),this.hammer.on("DOMMouseScroll",e._onMouseWheel.bind(e)),this.hammer.on("mousemove",e._onMouseMoveTitle.bind(e)),this.containerElement.appendChild(this.frame)},s.prototype._createKeyBinds=function(){var t=this;this.mousetrap=r,this.mousetrap.reset(),1==this.constants.keyboard.enabled&&(this.mousetrap.bind("up",this._moveUp.bind(t),"keydown"),this.mousetrap.bind("up",this._yStopMoving.bind(t),"keyup"),this.mousetrap.bind("down",this._moveDown.bind(t),"keydown"),this.mousetrap.bind("down",this._yStopMoving.bind(t),"keyup"),this.mousetrap.bind("left",this._moveLeft.bind(t),"keydown"),this.mousetrap.bind("left",this._xStopMoving.bind(t),"keyup"),this.mousetrap.bind("right",this._moveRight.bind(t),"keydown"),this.mousetrap.bind("right",this._xStopMoving.bind(t),"keyup"),this.mousetrap.bind("=",this._zoomIn.bind(t),"keydown"),this.mousetrap.bind("=",this._stopZoom.bind(t),"keyup"),this.mousetrap.bind("-",this._zoomOut.bind(t),"keydown"),this.mousetrap.bind("-",this._stopZoom.bind(t),"keyup"),this.mousetrap.bind("[",this._zoomIn.bind(t),"keydown"),this.mousetrap.bind("[",this._stopZoom.bind(t),"keyup"),this.mousetrap.bind("]",this._zoomOut.bind(t),"keydown"),this.mousetrap.bind("]",this._stopZoom.bind(t),"keyup"),this.mousetrap.bind("pageup",this._zoomIn.bind(t),"keydown"),this.mousetrap.bind("pageup",this._stopZoom.bind(t),"keyup"),this.mousetrap.bind("pagedown",this._zoomOut.bind(t),"keydown"),this.mousetrap.bind("pagedown",this._stopZoom.bind(t),"keyup")),1==this.constants.dataManipulation.enabled&&(this.mousetrap.bind("escape",this._createManipulatorBar.bind(t)),this.mousetrap.bind("del",this._deleteSelected.bind(t)))},s.prototype._getPointer=function(t){return{x:t.pageX-a.getAbsoluteLeft(this.frame.canvas),y:t.pageY-a.getAbsoluteTop(this.frame.canvas)}},s.prototype._onTouch=function(t){this.drag.pointer=this._getPointer(t.gesture.center),this.drag.pinched=!1,this.pinch.scale=this._getScale(),this._handleTouch(this.drag.pointer)},s.prototype._onDragStart=function(){this._handleDragStart()},s.prototype._handleDragStart=function(){var t=this.drag,e=this._getNodeAt(t.pointer);if(t.dragging=!0,t.selection=[],t.translation=this._getTranslation(),t.nodeId=null,null!=e){t.nodeId=e.id,e.isSelected()||this._selectObject(e,!1);for(var i in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(i)){var s=this.selectionObj.nodes[i],o={id:s.id,node:s,x:s.x,y:s.y,xFixed:s.xFixed,yFixed:s.yFixed};s.xFixed=!0,s.yFixed=!0,t.selection.push(o)}}},s.prototype._onDrag=function(t){this._handleOnDrag(t)},s.prototype._handleOnDrag=function(t){if(!this.drag.pinched){var e=this._getPointer(t.gesture.center),i=this,s=this.drag,o=s.selection;if(o&&o.length&&1==this.constants.dragNodes){var n=e.x-s.pointer.x,r=e.y-s.pointer.y;o.forEach(function(t){var e=t.node;t.xFixed||(e.x=i._XconvertDOMtoCanvas(i._XconvertCanvasToDOM(t.x)+n)),t.yFixed||(e.y=i._YconvertDOMtoCanvas(i._YconvertCanvasToDOM(t.y)+r))}),this.moving||(this.moving=!0,this.start())}else if(1==this.constants.dragNetwork){var a=e.x-this.drag.pointer.x,h=e.y-this.drag.pointer.y;this._setTranslation(this.drag.translation.x+a,this.drag.translation.y+h),this._redraw()}}},s.prototype._onDragEnd=function(){this.drag.dragging=!1;var t=this.drag.selection;t&&t.length?(t.forEach(function(t){t.node.xFixed=t.xFixed,t.node.yFixed=t.yFixed}),this.moving=!0,this.start()):this._redraw()},s.prototype._onTap=function(t){var e=this._getPointer(t.gesture.center);this.pointerPosition=e,this._handleTap(e)},s.prototype._onDoubleTap=function(t){var e=this._getPointer(t.gesture.center);this._handleDoubleTap(e)},s.prototype._onHold=function(t){var e=this._getPointer(t.gesture.center);this.pointerPosition=e,this._handleOnHold(e)},s.prototype._onRelease=function(t){var e=this._getPointer(t.gesture.center);this._handleOnRelease(e)},s.prototype._onPinch=function(t){var e=this._getPointer(t.gesture.center);this.drag.pinched=!0,"scale"in this.pinch||(this.pinch.scale=1);var i=this.pinch.scale*t.gesture.scale;this._zoom(i,e)},s.prototype._zoom=function(t,e){if(1==this.constants.zoomable){var i=this._getScale();1e-5>t&&(t=1e-5),t>10&&(t=10);var s=null;void 0!==this.drag&&1==this.drag.dragging&&(s=this.DOMtoCanvas(this.drag.pointer));var o=this._getTranslation(),n=t/i,r=(1-n)*e.x+o.x*n,a=(1-n)*e.y+o.y*n;if(this.areaCenter={x:this._XconvertDOMtoCanvas(e.x),y:this._YconvertDOMtoCanvas(e.y)},this._setScale(t),this._setTranslation(r,a),this.updateClustersDefault(),null!=s){var h=this.canvasToDOM(s);this.drag.pointer.x=h.x,this.drag.pointer.y=h.y}return this._redraw(),t>i?this.emit("zoom",{direction:"+"}):this.emit("zoom",{direction:"-"}),t}},s.prototype._onMouseWheel=function(t){var e=0;if(t.wheelDelta?e=t.wheelDelta/120:t.detail&&(e=-t.detail/3),e){var i=this._getScale(),s=e/10;0>e&&(s/=1-s),i*=1+s;var o=h.fakeGesture(this,t),n=this._getPointer(o.center);this._zoom(i,n)}t.preventDefault()},s.prototype._onMouseMoveTitle=function(t){var e=h.fakeGesture(this,t),i=this._getPointer(e.center);this.popupObj&&this._checkHidePopup(i);var s=this,o=function(){s._checkShowPopup(i)};if(this.popupTimer&&clearInterval(this.popupTimer),this.drag.dragging||(this.popupTimer=setTimeout(o,this.constants.tooltip.delay)),1==this.constants.hover){for(var n in this.hoverObj.edges)this.hoverObj.edges.hasOwnProperty(n)&&(this.hoverObj.edges[n].hover=!1,delete this.hoverObj.edges[n]);var r=this._getNodeAt(i);null==r&&(r=this._getEdgeAt(i)),null!=r&&this._hoverObject(r);for(var a in this.hoverObj.nodes)this.hoverObj.nodes.hasOwnProperty(a)&&(r instanceof m&&r.id!=a||r instanceof g||null==r)&&(this._blurObject(this.hoverObj.nodes[a]),delete this.hoverObj.nodes[a]);this.redraw()}},s.prototype._checkShowPopup=function(t){var e,i={left:this._XconvertDOMtoCanvas(t.x),top:this._YconvertDOMtoCanvas(t.y),right:this._XconvertDOMtoCanvas(t.x),bottom:this._YconvertDOMtoCanvas(t.y)},s=this.popupObj;if(void 0==this.popupObj){var o=this.nodes;for(e in o)if(o.hasOwnProperty(e)){var n=o[e];if(void 0!==n.getTitle()&&n.isOverlappingWith(i)){this.popupObj=n;break}}}if(void 0===this.popupObj){var r=this.edges;for(e in r)if(r.hasOwnProperty(e)){var a=r[e];if(a.connected&&void 0!==a.getTitle()&&a.isOverlappingWith(i)){this.popupObj=a;break}}}if(this.popupObj){if(this.popupObj!=s){var h=this;h.popup||(h.popup=new v(h.frame,h.constants.tooltip)),h.popup.setPosition(t.x-3,t.y-3),h.popup.setText(h.popupObj.getTitle()),h.popup.show()}}else this.popup&&this.popup.hide()},s.prototype._checkHidePopup=function(t){this.popupObj&&this._getNodeAt(t)||(this.popupObj=void 0,this.popup&&this.popup.hide())},s.prototype.setSize=function(t,e){this.frame.style.width=t,this.frame.style.height=e,this.frame.canvas.style.width="100%",this.frame.canvas.style.height="100%",this.frame.canvas.width=this.frame.canvas.clientWidth,this.frame.canvas.height=this.frame.canvas.clientHeight,void 0!==this.manipulationDiv&&(this.manipulationDiv.style.width=this.frame.canvas.clientWidth+"px"),void 0!==this.navigationDivs&&void 0!==this.navigationDivs.wrapper&&(this.navigationDivs.wrapper.style.width=this.frame.canvas.clientWidth+"px",this.navigationDivs.wrapper.style.height=this.frame.canvas.clientHeight+"px"),this.emit("resize",{width:this.frame.canvas.width,height:this.frame.canvas.height})},s.prototype._setNodes=function(t){var e=this.nodesData;if(t instanceof d||t instanceof l)this.nodesData=t;else if(t instanceof Array)this.nodesData=new d,this.nodesData.add(t);else{if(t)throw new TypeError("Array or DataSet expected");this.nodesData=new d}if(e&&a.forEach(this.nodesListeners,function(t,i){e.off(i,t)}),this.nodes={},this.nodesData){var i=this;a.forEach(this.nodesListeners,function(t,e){i.nodesData.on(e,t)});var s=this.nodesData.getIds();this._addNodes(s)}this._updateSelection()},s.prototype._addNodes=function(t){for(var e,i=0,s=t.length;s>i;i++){e=t[i];var o=this.nodesData.get(e),n=new m(o,this.images,this.groups,this.constants);if(this.nodes[e]=n,!(0!=n.xFixed&&0!=n.yFixed||null!==n.x&&null!==n.y)){var r=1*t.length,a=2*Math.PI*Math.random();0==n.xFixed&&(n.x=r*Math.cos(a)),0==n.yFixed&&(n.y=r*Math.sin(a))}this.moving=!0}this._updateNodeIndexList(),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateCalculationNodes(),this._reconnectEdges(),this._updateValueRange(this.nodes),this.updateLabels()},s.prototype._updateNodes=function(t){for(var e=this.nodes,i=this.nodesData,s=0,o=t.length;o>s;s++){var n=t[s],r=e[n],a=i.get(n);r?r.setProperties(a,this.constants):(r=new m(properties,this.images,this.groups,this.constants),e[n]=r)}this.moving=!0,1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateNodeIndexList(),this._reconnectEdges(),this._updateValueRange(e)},s.prototype._removeNodes=function(t){for(var e=this.nodes,i=0,s=t.length;s>i;i++){var o=t[i];delete e[o]}this._updateNodeIndexList(),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateCalculationNodes(),this._reconnectEdges(),this._updateSelection(),this._updateValueRange(e)},s.prototype._setEdges=function(t){var e=this.edgesData;if(t instanceof d||t instanceof l)this.edgesData=t;else if(t instanceof Array)this.edgesData=new d,this.edgesData.add(t);else{if(t)throw new TypeError("Array or DataSet expected");this.edgesData=new d}if(e&&a.forEach(this.edgesListeners,function(t,i){e.off(i,t)}),this.edges={},this.edgesData){var i=this;a.forEach(this.edgesListeners,function(t,e){i.edgesData.on(e,t)});var s=this.edgesData.getIds();this._addEdges(s)}this._reconnectEdges()},s.prototype._addEdges=function(t){for(var e=this.edges,i=this.edgesData,s=0,o=t.length;o>s;s++){var n=t[s],r=e[n];r&&r.disconnect();var a=i.get(n,{showInternalIds:!0});e[n]=new g(a,this,this.constants)}this.moving=!0,this._updateValueRange(e),this._createBezierNodes(),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateCalculationNodes()},s.prototype._updateEdges=function(t){for(var e=this.edges,i=this.edgesData,s=0,o=t.length;o>s;s++){var n=t[s],r=i.get(n),a=e[n];a?(a.disconnect(),a.setProperties(r,this.constants),a.connect()):(a=new g(r,this,this.constants),this.edges[n]=a)}this._createBezierNodes(),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this.moving=!0,this._updateValueRange(e)},s.prototype._removeEdges=function(t){for(var e=this.edges,i=0,s=t.length;s>i;i++){var o=t[i],n=e[o];n&&(null!=n.via&&delete this.sectors.support.nodes[n.via.id],n.disconnect(),delete e[o])}this.moving=!0,this._updateValueRange(e),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateCalculationNodes()},s.prototype._reconnectEdges=function(){var t,e=this.nodes,i=this.edges;for(t in e)e.hasOwnProperty(t)&&(e[t].edges=[]);for(t in i)if(i.hasOwnProperty(t)){var s=i[t];s.from=null,s.to=null,s.connect()}},s.prototype._updateValueRange=function(t){var e,i=void 0,s=void 0;for(e in t)if(t.hasOwnProperty(e)){var o=t[e].getValue();void 0!==o&&(i=void 0===i?o:Math.min(o,i),s=void 0===s?o:Math.max(o,s))}if(void 0!==i&&void 0!==s)for(e in t)t.hasOwnProperty(e)&&t[e].setValueRange(i,s)},s.prototype.redraw=function(){this.setSize(this.constants.width,this.constants.height),this._redraw()},s.prototype._redraw=function(){var t=this.frame.canvas.getContext("2d"),e=this.frame.canvas.width,i=this.frame.canvas.height;t.clearRect(0,0,e,i),t.save(),t.translate(this.translation.x,this.translation.y),t.scale(this.scale,this.scale),this.canvasTopLeft={x:this._XconvertDOMtoCanvas(0),y:this._YconvertDOMtoCanvas(0)},this.canvasBottomRight={x:this._XconvertDOMtoCanvas(this.frame.canvas.clientWidth),y:this._YconvertDOMtoCanvas(this.frame.canvas.clientHeight)},this._doInAllSectors("_drawAllSectorNodes",t),(0==this.drag.dragging||void 0===this.drag.dragging||0==this.constants.hideEdgesOnDrag)&&this._doInAllSectors("_drawEdges",t),(0==this.drag.dragging||void 0===this.drag.dragging||0==this.constants.hideNodesOnDrag)&&this._doInAllSectors("_drawNodes",t,!1),1==this.controlNodesActive&&this._doInAllSectors("_drawControlNodes",t),t.restore()},s.prototype._setTranslation=function(t,e){void 0===this.translation&&(this.translation={x:0,y:0}),void 0!==t&&(this.translation.x=t),void 0!==e&&(this.translation.y=e),this.emit("viewChanged")},s.prototype._getTranslation=function(){return{x:this.translation.x,y:this.translation.y}},s.prototype._setScale=function(t){this.scale=t},s.prototype._getScale=function(){return this.scale},s.prototype._XconvertDOMtoCanvas=function(t){return(t-this.translation.x)/this.scale},s.prototype._XconvertCanvasToDOM=function(t){return t*this.scale+this.translation.x},s.prototype._YconvertDOMtoCanvas=function(t){return(t-this.translation.y)/this.scale},s.prototype._YconvertCanvasToDOM=function(t){return t*this.scale+this.translation.y},s.prototype.canvasToDOM=function(t){return{x:this._XconvertCanvasToDOM(t.x),y:this._YconvertCanvasToDOM(t.y)}},s.prototype.DOMtoCanvas=function(t){return{x:this._XconvertDOMtoCanvas(t.x),y:this._YconvertDOMtoCanvas(t.y)}},s.prototype._drawNodes=function(t,e){void 0===e&&(e=!1);var i=this.nodes,s=[];for(var o in i)i.hasOwnProperty(o)&&(i[o].setScaleAndPos(this.scale,this.canvasTopLeft,this.canvasBottomRight),i[o].isSelected()?s.push(o):(i[o].inArea()||e)&&i[o].draw(t));for(var n=0,r=s.length;r>n;n++)(i[s[n]].inArea()||e)&&i[s[n]].draw(t)},s.prototype._drawEdges=function(t){var e=this.edges;for(var i in e)if(e.hasOwnProperty(i)){var s=e[i];s.setScale(this.scale),s.connected&&e[i].draw(t)}},s.prototype._drawControlNodes=function(t){var e=this.edges;for(var i in e)e.hasOwnProperty(i)&&e[i]._drawControlNodes(t)},s.prototype._stabilize=function(){1==this.constants.freezeForStabilization&&this._freezeDefinedNodes();for(var t=0;this.moving&&t0)for(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);o>.5*this.constants.maxVelocity?this.moving=!0:(this.moving=this._isMoving(o),0==this.moving&&this.emit("stabilized",{iterations:null}),this.moving=this.moving||this.configurePhysics)}},s.prototype._physicsTick=function(){this.freezeSimulation||1==this.moving&&(this._doInAllActiveSectors("_initializeForceCalculation"),this._doInAllActiveSectors("_discreteStepNodes"),1==this.constants.smoothCurves.enabled&&1==this.constants.smoothCurves.dynamic&&this._doInSupportSector("_discreteStepNodes"),this._findCenter(this._getRange()))},s.prototype._animationStep=function(){this.timer=void 0,this._handleNavigation(),this.start();var t=Date.now(),e=1;this._physicsTick();for(var i=Date.now()-t;i<.9*(this.renderTimestep-this.renderTime)&&eh}return!1},s.prototype._getColor=function(){var t=this.options.color;return"to"==this.options.inheritColor?t={highlight:this.to.options.color.highlight.border,hover:this.to.options.color.hover.border,color:this.to.options.color.border}:("from"==this.options.inheritColor||1==this.options.inheritColor)&&(t={highlight:this.from.options.color.highlight.border,hover:this.from.options.color.hover.border,color:this.from.options.color.border}),1==this.selected?t.highlight:1==this.hover?t.hover:t.color},s.prototype._drawLine=function(t){if(t.strokeStyle=this._getColor(),t.lineWidth=this._getLineWidth(),this.from!=this.to){var e,i=this._line(t);if(this.label){if(1==this.options.smoothCurves.enabled&&null!=i){var s=.5*(.5*(this.from.x+i.x)+.5*(this.to.x+i.x)),o=.5*(.5*(this.from.y+i.y)+.5*(this.to.y+i.y));e={x:s,y:o}}else e=this._pointOnLine(.5);this._label(t,this.label,e.x,e.y)}}else{var n,r,a=this.physics.springLength/4,h=this.from;h.width||h.resize(t),h.width>h.height?(n=h.x+h.width/2,r=h.y-a):(n=h.x+a,r=h.y-h.height/2),this._circle(t,n,r,a),e=this._pointOnCircle(n,r,a,.5),this._label(t,this.label,e.x,e.y)}},s.prototype._getLineWidth=function(){return 1==this.selected?Math.min(this.widthSelected,this.options.widthMax)*this.networkScaleInv:1==this.hover?Math.min(this.options.hoverWidth,this.options.widthMax)*this.networkScaleInv:this.options.width*this.networkScaleInv},s.prototype._getViaCoordinates=function(){var t=null,e=null,i=this.options.smoothCurves.roundness,s=this.options.smoothCurves.type,o=Math.abs(this.from.x-this.to.x),n=Math.abs(this.from.y-this.to.y);return"discrete"==s||"diagonalCross"==s?Math.abs(this.from.x-this.to.x)this.to.y?this.from.xthis.to.x&&(t=this.from.x-i*n,e=this.from.y-i*n):this.from.ythis.to.x&&(t=this.from.x-i*n,e=this.from.y+i*n)),"discrete"==s&&(t=i*n>o?this.from.x:t)):Math.abs(this.from.x-this.to.x)>Math.abs(this.from.y-this.to.y)&&(this.from.y>this.to.y?this.from.xthis.to.x&&(t=this.from.x-i*o,e=this.from.y-i*o):this.from.ythis.to.x&&(t=this.from.x-i*o,e=this.from.y+i*o)),"discrete"==s&&(e=i*o>n?this.from.y:e)):"straightCross"==s?Math.abs(this.from.x-this.to.x)Math.abs(this.from.y-this.to.y)&&(t=this.from.xthis.to.y?this.from.xthis.to.x&&(t=this.from.x-i*n,e=this.from.y-i*n,t=this.to.x>t?this.to.x:t):this.from.ythis.to.x&&(t=this.from.x-i*n,e=this.from.y+i*n,t=this.to.x>t?this.to.x:t)):Math.abs(this.from.x-this.to.x)>Math.abs(this.from.y-this.to.y)&&(this.from.y>this.to.y?this.from.xe?this.to.y:e):this.from.x>this.to.x&&(t=this.from.x-i*o,e=this.from.y-i*o,e=this.to.y>e?this.to.y:e):this.from.ythis.to.x&&(t=this.from.x-i*o,e=this.from.y+i*o,e=this.to.yl.height?(a=l.x+.5*l.width,h=l.y-d):(a=l.x+d,h=l.y-.5*l.height),this._circle(t,a,h,d);var s=.2*Math.PI,o=(10+5*this.options.width)*this.options.arrowScaleFactor;e=this._pointOnCircle(a,h,d,.5),t.arrow(e.x,e.y,s,o),t.fill(),t.stroke(),this.label&&(e=this._pointOnCircle(a,h,d,.5),this._label(t,this.label,e.x,e.y))}},s.prototype._drawArrow=function(t){1==this.selected?(t.strokeStyle=this.options.color.highlight,t.fillStyle=this.options.color.highlight):1==this.hover?(t.strokeStyle=this.options.color.hover,t.fillStyle=this.options.color.hover):(t.strokeStyle=this.options.color.color,t.fillStyle=this.options.color.color),t.lineWidth=this._getLineWidth();var e,i;if(this.from!=this.to){e=Math.atan2(this.to.y-this.from.y,this.to.x-this.from.x);var s,o=this.to.x-this.from.x,n=this.to.y-this.from.y,r=Math.sqrt(o*o+n*n),a=this.from.distanceToBorder(t,e+Math.PI),h=(r-a)/r,d=h*this.from.x+(1-h)*this.to.x,l=h*this.from.y+(1-h)*this.to.y;1==this.options.smoothCurves.dynamic&&1==this.options.smoothCurves.enabled?s=this.via:1==this.options.smoothCurves.enabled&&(s=this._getViaCoordinates()),1==this.options.smoothCurves.enabled&&null!=s.x&&(e=Math.atan2(this.to.y-s.y,this.to.x-s.x),o=this.to.x-s.x,n=this.to.y-s.y,r=Math.sqrt(o*o+n*n));var c,p,u=this.to.distanceToBorder(t,e),f=(r-u)/r;if(1==this.options.smoothCurves.enabled&&null!=s.x?(c=(1-f)*s.x+f*this.to.x,p=(1-f)*s.y+f*this.to.y):(c=(1-f)*this.from.x+f*this.to.x,p=(1-f)*this.from.y+f*this.to.y),t.beginPath(),t.moveTo(d,l),1==this.options.smoothCurves.enabled&&null!=s.x?t.quadraticCurveTo(s.x,s.y,c,p):t.lineTo(c,p),t.stroke(),i=(10+5*this.options.width)*this.options.arrowScaleFactor,t.arrow(c,p,e,i),t.fill(),t.stroke(),this.label){var m;if(1==this.options.smoothCurves.enabled&&null!=s){var g=.5*(.5*(this.from.x+s.x)+.5*(this.to.x+s.x)),v=.5*(.5*(this.from.y+s.y)+.5*(this.to.y+s.y));m={x:g,y:v}}else m=this._pointOnLine(.5);this._label(t,this.label,m.x,m.y)}}else{var y,b,_,x=this.from,w=.25*Math.max(100,this.physics.springLength);x.width||x.resize(t),x.width>x.height?(y=x.x+.5*x.width,b=x.y-w,_={x:y,y:x.y,angle:.9*Math.PI}):(y=x.x+w,b=x.y-.5*x.height,_={x:x.x,y:b,angle:.6*Math.PI}),t.beginPath(),t.arc(y,b,w,0,2*Math.PI,!1),t.stroke();var i=(10+5*this.options.width)*this.options.arrowScaleFactor;t.arrow(_.x,_.y,_.angle,i),t.fill(),t.stroke(),this.label&&(m=this._pointOnCircle(y,b,w,.5),this._label(t,this.label,m.x,m.y))}},s.prototype._getDistanceToEdge=function(t,e,i,s,o,n){if(this.from!=this.to){if(1==this.options.smoothCurves.enabled){var r,a;if(1==this.options.smoothCurves.enabled&&1==this.options.smoothCurves.dynamic)r=this.via.x,a=this.via.y;else{var h=this._getViaCoordinates();r=h.x,a=h.y}var d,l,c,p,u,f,m,g=1e9;for(l=0;10>l;l++)c=.1*l,p=Math.pow(1-c,2)*t+2*c*(1-c)*r+Math.pow(c,2)*i,u=Math.pow(1-c,2)*e+2*c*(1-c)*a+Math.pow(c,2)*s,l>0&&(d=this._getDistanceToLine(f,m,p,u,o,n),g=g>d?d:g),f=p,m=u;return g}return this._getDistanceToLine(t,e,i,s,o,n)}var p,u,v,y,b=this.physics.springLength/4,_=this.from;return _.width||_.resize(ctx),_.width>_.height?(p=_.x+_.width/2,u=_.y-b):(p=_.x+b,u=_.y-_.height/2),v=p-o,y=u-n,Math.abs(Math.sqrt(v*v+y*y)-b)},s.prototype._getDistanceToLine=function(t,e,i,s,o,n){var r=i-t,a=s-e,h=r*r+a*a,d=((o-t)*r+(n-e)*a)/h;d>1?d=1:0>d&&(d=0);var l=t+d*r,c=e+d*a,p=l-o,u=c-n;return Math.sqrt(p*p+u*u)},s.prototype.setScale=function(t){this.networkScaleInv=1/t},s.prototype.select=function(){this.selected=!0},s.prototype.unselect=function(){this.selected=!1},s.prototype.positionBezierNode=function(){null!==this.via&&null!==this.from&&null!==this.to&&(this.via.x=.5*(this.from.x+this.to.x),this.via.y=.5*(this.from.y+this.to.y))},s.prototype._drawControlNodes=function(t){if(1==this.controlNodesEnabled){if(null===this.controlNodes.from&&null===this.controlNodes.to){var e="edgeIdFrom:".concat(this.id),i="edgeIdTo:".concat(this.id),s={nodes:{group:"",radius:8},physics:{damping:0},clustering:{maxNodeSizeIncrements:0,nodeScaling:{width:0,height:0,radius:0}}};this.controlNodes.from=new n({id:e,shape:"dot",color:{background:"#ff4e00",border:"#3c3c3c",highlight:{background:"#07f968"}}},{},{},s),this.controlNodes.to=new n({id:i,shape:"dot",color:{background:"#ff4e00",border:"#3c3c3c",highlight:{background:"#07f968"}}},{},{},s)}0==this.controlNodes.from.selected&&0==this.controlNodes.to.selected&&(this.controlNodes.positions=this.getControlNodePositions(t),this.controlNodes.from.x=this.controlNodes.positions.from.x,this.controlNodes.from.y=this.controlNodes.positions.from.y,this.controlNodes.to.x=this.controlNodes.positions.to.x,this.controlNodes.to.y=this.controlNodes.positions.to.y),this.controlNodes.from.draw(t),this.controlNodes.to.draw(t)}else this.controlNodes={from:null,to:null,positions:{}}},s.prototype._enableControlNodes=function(){this.controlNodesEnabled=!0},s.prototype._disableControlNodes=function(){this.controlNodesEnabled=!1},s.prototype._getSelectedControlNode=function(t,e){var i=this.controlNodes.positions,s=Math.sqrt(Math.pow(t-i.from.x,2)+Math.pow(e-i.from.y,2)),o=Math.sqrt(Math.pow(t-i.to.x,2)+Math.pow(e-i.to.y,2));return 15>s?(this.connectedNode=this.from,this.from=this.controlNodes.from,this.controlNodes.from):15>o?(this.connectedNode=this.to,this.to=this.controlNodes.to,this.controlNodes.to):null},s.prototype._restoreControlNodes=function(){1==this.controlNodes.from.selected&&(this.from=this.connectedNode,this.connectedNode=null,this.controlNodes.from.unselect()),1==this.controlNodes.to.selected&&(this.to=this.connectedNode,this.connectedNode=null,this.controlNodes.to.unselect())},s.prototype.getControlNodePositions=function(t){var e,i=Math.atan2(this.to.y-this.from.y,this.to.x-this.from.x),s=this.to.x-this.from.x,o=this.to.y-this.from.y,n=Math.sqrt(s*s+o*o),r=this.from.distanceToBorder(t,i+Math.PI),a=(n-r)/n,h=a*this.from.x+(1-a)*this.to.x,d=a*this.from.y+(1-a)*this.to.y;1==this.options.smoothCurves.dynamic&&1==this.options.smoothCurves.enabled?e=this.via:1==this.options.smoothCurves.enabled&&(e=this._getViaCoordinates()),1==this.options.smoothCurves.enabled&&null!=e.x&&(i=Math.atan2(this.to.y-e.y,this.to.x-e.x),s=this.to.x-e.x,o=this.to.y-e.y,n=Math.sqrt(s*s+o*o));var l,c,p=this.to.distanceToBorder(t,i),u=(n-p)/n;return 1==this.options.smoothCurves.enabled&&null!=e.x?(l=(1-u)*e.x+u*this.to.x,c=(1-u)*e.y+u*this.to.y):(l=(1-u)*this.from.x+u*this.to.x,c=(1-u)*this.from.y+u*this.to.y),{from:{x:h,y:d},to:{x:l,y:c}}},t.exports=s},function(t,e,i){function s(){this.clear(),this.defaultIndex=0}var o=i(2);s.DEFAULT=[{border:"#2B7CE9",background:"#97C2FC",highlight:{border:"#2B7CE9",background:"#D2E5FF"},hover:{border:"#2B7CE9",background:"#D2E5FF"}},{border:"#FFA500",background:"#FFFF00",highlight:{border:"#FFA500",background:"#FFFFA3"},hover:{border:"#FFA500",background:"#FFFFA3"}},{border:"#FA0A10",background:"#FB7E81",highlight:{border:"#FA0A10",background:"#FFAFB1"},hover:{border:"#FA0A10",background:"#FFAFB1"}},{border:"#41A906",background:"#7BE141",highlight:{border:"#41A906",background:"#A1EC76"},hover:{border:"#41A906",background:"#A1EC76"}},{border:"#E129F0",background:"#EB7DF4",highlight:{border:"#E129F0",background:"#F0B3F5"},hover:{border:"#E129F0",background:"#F0B3F5"}},{border:"#7C29F0",background:"#AD85E4",highlight:{border:"#7C29F0",background:"#D3BDF0"},hover:{border:"#7C29F0",background:"#D3BDF0"}},{border:"#C37F00",background:"#FFA807",highlight:{border:"#C37F00",background:"#FFCA66"},hover:{border:"#C37F00",background:"#FFCA66"}},{border:"#4220FB",background:"#6E6EFD",highlight:{border:"#4220FB",background:"#9B9BFD"},hover:{border:"#4220FB",background:"#9B9BFD"}},{border:"#FD5A77",background:"#FFC0CB",highlight:{border:"#FD5A77",background:"#FFD1D9"},hover:{border:"#FD5A77",background:"#FFD1D9"}},{border:"#4AD63A",background:"#C2FABC",highlight:{border:"#4AD63A",background:"#E6FFE3"},hover:{border:"#4AD63A",background:"#E6FFE3"}}],s.prototype.clear=function(){this.groups={},this.groups.length=function(){var t=0;for(var e in this)this.hasOwnProperty(e)&&t++;return t}},s.prototype.get=function(t){var e=this.groups[t];if(void 0==e){var i=this.defaultIndex%s.DEFAULT.length;this.defaultIndex++,e={},e.color=s.DEFAULT[i],this.groups[t]=e}return e},s.prototype.add=function(t,e){return this.groups[t]=e,e.color&&(e.color=o.parseColor(e.color)),e},t.exports=s},function(t){function e(){this.images={},this.callback=void 0}e.prototype.setOnloadCallback=function(t){this.callback=t},e.prototype.load=function(t){var e=this.images[t];if(void 0==e){var i=this;e=new Image,this.images[t]=e,e.onload=function(){i.callback&&i.callback(this)},e.src=t}return e},t.exports=e},function(t,e,i){function s(t,e,i,s){var n=o.selectiveBridgeObject(["nodes"],s);this.options=n.nodes,this.selected=!1,this.hover=!1,this.edges=[],this.dynamicEdges=[],this.reroutedEdges={},this.fontDrawThreshold=3,this.id=void 0,this.x=null,this.y=null,this.xFixed=!1,this.yFixed=!1,this.horizontalAlignLeft=!0,this.verticalAlignTop=!0,this.baseRadiusValue=s.nodes.radius,this.radiusFixed=!1,this.level=-1,this.preassignedLevel=!1,this.imagelist=e,this.grouplist=i,this.fx=0,this.fy=0,this.vx=0,this.vy=0,this.damping=s.physics.damping,this.fixedData={x:null,y:null},this.setProperties(t,n),this.resetCluster(),this.dynamicEdgesLength=0,this.clusterSession=0,this.clusterSizeWidthFactor=s.clustering.nodeScaling.width,this.clusterSizeHeightFactor=s.clustering.nodeScaling.height,this.clusterSizeRadiusFactor=s.clustering.nodeScaling.radius,this.maxNodeSizeIncrements=s.clustering.maxNodeSizeIncrements,this.growthIndicator=0,this.networkScaleInv=1,this.networkScale=1,this.canvasTopLeft={x:-300,y:-300},this.canvasBottomRight={x:300,y:300},this.parentEdgeId=null}var o=i(2);s.prototype.resetCluster=function(){this.formationScale=void 0,this.clusterSize=1,this.containedNodes={},this.containedEdges={},this.clusterSessions=[]},s.prototype.attachEdge=function(t){-1==this.edges.indexOf(t)&&this.edges.push(t),-1==this.dynamicEdges.indexOf(t)&&this.dynamicEdges.push(t),this.dynamicEdgesLength=this.dynamicEdges.length},s.prototype.detachEdge=function(t){var e=this.edges.indexOf(t);-1!=e&&(this.edges.splice(e,1),this.dynamicEdges.splice(e,1)),this.dynamicEdgesLength=this.dynamicEdges.length},s.prototype.setProperties=function(t,e){if(t){var i=["borderWidth","borderWidthSelected","shape","image","radius","fontColor","fontSize","fontFace","group","mass"];if(o.selectiveDeepExtend(i,this.options,t),this.originalLabel=void 0,void 0!==t.id&&(this.id=t.id),void 0!==t.label&&(this.label=t.label,this.originalLabel=t.label),void 0!==t.title&&(this.title=t.title),void 0!==t.x&&(this.x=t.x),void 0!==t.y&&(this.y=t.y),void 0!==t.value&&(this.value=t.value),void 0!==t.level&&(this.level=t.level,this.preassignedLevel=!0),void 0!==t.horizontalAlignLeft&&(this.horizontalAlignLeft=t.horizontalAlignLeft),void 0!==t.verticalAlignTop&&(this.verticalAlignTop=t.verticalAlignTop),void 0!==t.triggerFunction&&(this.triggerFunction=t.triggerFunction),void 0===this.id)throw"Node must have an id";if("number"==typeof this.options.group||"string"==typeof this.options.group&&""!=this.options.group){var s=this.grouplist.get(this.options.group);for(var n in s)s.hasOwnProperty(n)&&(this.options[n]=s[n])}if(void 0!==t.radius&&(this.baseRadiusValue=this.options.radius),void 0!==t.color&&(this.options.color=o.parseColor(t.color)),void 0!==this.options.image&&""!=this.options.image){if(!this.imagelist)throw"No imagelist provided";this.imageObj=this.imagelist.load(this.options.image)}switch(this.xFixed=this.xFixed||void 0!==t.x&&!t.allowedToMoveX,this.yFixed=this.yFixed||void 0!==t.y&&!t.allowedToMoveY,this.radiusFixed=this.radiusFixed||void 0!==t.radius,"image"==this.options.shape&&(this.options.radiusMin=e.nodes.widthMin,this.options.radiusMax=e.nodes.widthMax),this.options.shape){case"database":this.draw=this._drawDatabase,this.resize=this._resizeDatabase;break;case"box":this.draw=this._drawBox,this.resize=this._resizeBox;break;case"circle":this.draw=this._drawCircle,this.resize=this._resizeCircle;break;case"ellipse":this.draw=this._drawEllipse,this.resize=this._resizeEllipse;break;case"image":this.draw=this._drawImage,this.resize=this._resizeImage;break;case"text":this.draw=this._drawText,this.resize=this._resizeText;break;case"dot":this.draw=this._drawDot,this.resize=this._resizeShape;break;case"square":this.draw=this._drawSquare,this.resize=this._resizeShape;break;case"triangle":this.draw=this._drawTriangle,this.resize=this._resizeShape;break;case"triangleDown":this.draw=this._drawTriangleDown,this.resize=this._resizeShape;break;case"star":this.draw=this._drawStar,this.resize=this._resizeShape;break;default:this.draw=this._drawEllipse,this.resize=this._resizeEllipse}this._reset()}},s.prototype.select=function(){this.selected=!0,this._reset()},s.prototype.unselect=function(){this.selected=!1,this._reset()},s.prototype.clearSizeCache=function(){this._reset()},s.prototype._reset=function(){this.width=void 0,this.height=void 0},s.prototype.getTitle=function(){return"function"==typeof this.title?this.title():this.title},s.prototype.distanceToBorder=function(t,e){var i=1;switch(this.width||this.resize(t),this.options.shape){case"circle":case"dot":return this.options.radius+i;case"ellipse":var s=this.width/2,o=this.height/2,n=Math.sin(e)*s,r=Math.cos(e)*o;return s*o/Math.sqrt(n*n+r*r);case"box":case"image":case"text":default:return this.width?Math.min(Math.abs(this.width/2/Math.cos(e)),Math.abs(this.height/2/Math.sin(e)))+i:0}},s.prototype._setForce=function(t,e){this.fx=t,this.fy=e},s.prototype._addForce=function(t,e){this.fx+=t,this.fy+=e},s.prototype.discreteStep=function(t){if(!this.xFixed){var e=this.damping*this.vx,i=(this.fx-e)/this.options.mass;this.vx+=i*t,this.x+=this.vx*t}if(!this.yFixed){var s=this.damping*this.vy,o=(this.fy-s)/this.options.mass;this.vy+=o*t,this.y+=this.vy*t}},s.prototype.discreteStepLimited=function(t,e){if(this.xFixed)this.fx=0;else{var i=this.damping*this.vx,s=(this.fx-i)/this.options.mass;this.vx+=s*t,this.vx=Math.abs(this.vx)>e?this.vx>0?e:-e:this.vx,this.x+=this.vx*t}if(this.yFixed)this.fy=0;else{var o=this.damping*this.vy,n=(this.fy-o)/this.options.mass;this.vy+=n*t,this.vy=Math.abs(this.vy)>e?this.vy>0?e:-e:this.vy,this.y+=this.vy*t}},s.prototype.isFixed=function(){return this.xFixed&&this.yFixed},s.prototype.isMoving=function(t){return Math.abs(this.vx)>t||Math.abs(this.vy)>t},s.prototype.isSelected=function(){return this.selected},s.prototype.getValue=function(){return this.value},s.prototype.getDistance=function(t,e){var i=this.x-t,s=this.y-e;return Math.sqrt(i*i+s*s)},s.prototype.setValueRange=function(t,e){if(!this.radiusFixed&&void 0!==this.value)if(e==t)this.options.radius=(this.options.radiusMin+this.options.radiusMax)/2;else{var i=(this.options.radiusMax-this.options.radiusMin)/(e-t);this.options.radius=(this.value-t)*i+this.options.radiusMin}this.baseRadiusValue=this.options.radius},s.prototype.draw=function(){throw"Draw method not initialized for node"},s.prototype.resize=function(){throw"Resize method not initialized for node"},s.prototype.isOverlappingWith=function(t){return this.leftt.left&&this.topt.top},s.prototype._resizeImage=function(){if(!this.width||!this.height){var t,e;if(this.value){this.options.radius=this.baseRadiusValue;var i=this.imageObj.height/this.imageObj.width;void 0!==i?(t=this.options.radius||this.imageObj.width,e=this.options.radius*i||this.imageObj.height):(t=0,e=0)}else t=this.imageObj.width,e=this.imageObj.height;this.width=t,this.height=e,this.growthIndicator=0,this.width>0&&this.height>0&&(this.width+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeWidthFactor,this.height+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeHeightFactor,this.options.radius+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.width-t)}},s.prototype._drawImage=function(t){this._resizeImage(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var e;if(0!=this.imageObj.width){if(this.clusterSize>1){var i=this.clusterSize>1?10:0;i*=this.networkScaleInv,i=Math.min(.2*this.width,i),t.globalAlpha=.5,t.drawImage(this.imageObj,this.left-i,this.top-i,this.width+2*i,this.height+2*i)}t.globalAlpha=1,t.drawImage(this.imageObj,this.left,this.top,this.width,this.height),e=this.y+this.height/2}else e=this.y;this._label(t,this.label,this.x,e,void 0,"top")},s.prototype._resizeBox=function(t){if(!this.width){var e=5,i=this.getTextSize(t);this.width=i.width+2*e,this.height=i.height+2*e,this.width+=.5*Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeWidthFactor,this.height+=.5*Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeHeightFactor,this.growthIndicator=this.width-(i.width+2*e)}},s.prototype._drawBox=function(t){this._resizeBox(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var e=2.5,i=this.options.borderWidth,s=this.options.borderWidthSelected||2*this.options.borderWidth;t.strokeStyle=this.selected?this.options.color.highlight.border:this.hover?this.options.color.hover.border:this.options.color.border,this.clusterSize>1&&(t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.roundRect(this.left-2*t.lineWidth,this.top-2*t.lineWidth,this.width+4*t.lineWidth,this.height+4*t.lineWidth,this.options.radius),t.stroke()),t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=this.selected?this.options.color.highlight.background:this.options.color.background,t.roundRect(this.left,this.top,this.width,this.height,this.options.radius),t.fill(),t.stroke(),this._label(t,this.label,this.x,this.y)},s.prototype._resizeDatabase=function(t){if(!this.width){var e=5,i=this.getTextSize(t),s=i.width+2*e;this.width=s,this.height=s,this.width+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeWidthFactor,this.height+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeHeightFactor,this.options.radius+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.width-s}},s.prototype._drawDatabase=function(t){this._resizeDatabase(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var e=2.5,i=this.options.borderWidth,s=this.options.borderWidthSelected||2*this.options.borderWidth;t.strokeStyle=this.selected?this.options.color.highlight.border:this.hover?this.options.color.hover.border:this.options.color.border,this.clusterSize>1&&(t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.database(this.x-this.width/2-2*t.lineWidth,this.y-.5*this.height-2*t.lineWidth,this.width+4*t.lineWidth,this.height+4*t.lineWidth),t.stroke()),t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=this.selected?this.options.color.highlight.background:this.hover?this.options.color.hover.background:this.options.color.background,t.database(this.x-this.width/2,this.y-.5*this.height,this.width,this.height),t.fill(),t.stroke(),this._label(t,this.label,this.x,this.y)},s.prototype._resizeCircle=function(t){if(!this.width){var e=5,i=this.getTextSize(t),s=Math.max(i.width,i.height)+2*e;this.options.radius=s/2,this.width=s,this.height=s,this.options.radius+=.5*Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.options.radius-.5*s}},s.prototype._drawCircle=function(t){this._resizeCircle(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var e=2.5,i=this.options.borderWidth,s=this.options.borderWidthSelected||2*this.options.borderWidth;t.strokeStyle=this.selected?this.options.color.highlight.border:this.hover?this.options.color.hover.border:this.options.color.border,this.clusterSize>1&&(t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.circle(this.x,this.y,this.options.radius+2*t.lineWidth),t.stroke()),t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=this.selected?this.options.color.highlight.background:this.hover?this.options.color.hover.background:this.options.color.background,t.circle(this.x,this.y,this.options.radius),t.fill(),t.stroke(),this._label(t,this.label,this.x,this.y)},s.prototype._resizeEllipse=function(t){if(!this.width){var e=this.getTextSize(t);this.width=1.5*e.width,this.height=2*e.height,this.width1&&(t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.ellipse(this.left-2*t.lineWidth,this.top-2*t.lineWidth,this.width+4*t.lineWidth,this.height+4*t.lineWidth),t.stroke()),t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=this.selected?this.options.color.highlight.background:this.hover?this.options.color.hover.background:this.options.color.background,t.ellipse(this.left,this.top,this.width,this.height),t.fill(),t.stroke(),this._label(t,this.label,this.x,this.y)},s.prototype._drawDot=function(t){this._drawShape(t,"circle")},s.prototype._drawTriangle=function(t){this._drawShape(t,"triangle")},s.prototype._drawTriangleDown=function(t){this._drawShape(t,"triangleDown")},s.prototype._drawSquare=function(t){this._drawShape(t,"square")},s.prototype._drawStar=function(t){this._drawShape(t,"star")},s.prototype._resizeShape=function(){if(!this.width){this.options.radius=this.baseRadiusValue;var t=2*this.options.radius;this.width=t,this.height=t,this.width+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeWidthFactor,this.height+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeHeightFactor,this.options.radius+=.5*Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.width-t}},s.prototype._drawShape=function(t,e){this._resizeShape(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var i=2.5,s=this.options.borderWidth,o=this.options.borderWidthSelected||2*this.options.borderWidth,n=2;switch(e){case"dot":n=2;break;case"square":n=2;break;case"triangle":n=3;break;case"triangleDown":n=3;break;case"star":n=4}t.strokeStyle=this.selected?this.options.color.highlight.border:this.hover?this.options.color.hover.border:this.options.color.border,this.clusterSize>1&&(t.lineWidth=(this.selected?o:s)+(this.clusterSize>1?i:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t[e](this.x,this.y,this.options.radius+n*t.lineWidth),t.stroke()),t.lineWidth=(this.selected?o:s)+(this.clusterSize>1?i:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=this.selected?this.options.color.highlight.background:this.hover?this.options.color.hover.background:this.options.color.background,t[e](this.x,this.y,this.options.radius),t.fill(),t.stroke(),this.label&&this._label(t,this.label,this.x,this.y+this.height/2,void 0,"top",!0) +},s.prototype._resizeText=function(t){if(!this.width){var e=5,i=this.getTextSize(t);this.width=i.width+2*e,this.height=i.height+2*e,this.width+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeWidthFactor,this.height+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeHeightFactor,this.options.radius+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.width-(i.width+2*e)}},s.prototype._drawText=function(t){this._resizeText(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2,this._label(t,this.label,this.x,this.y)},s.prototype._label=function(t,e,i,s,o,n,r){if(e&&Number(this.options.fontSize)*this.networkScale>this.fontDrawThreshold){t.font=(this.selected?"bold ":"")+this.options.fontSize+"px "+this.options.fontFace,t.fillStyle=this.options.fontColor||"black",t.textAlign=o||"center",t.textBaseline=n||"middle";var a=e.split("\n"),h=a.length,d=Number(this.options.fontSize)+4,l=s+(1-h)/2*d;1==r&&(l=s+(1-h)/(2*d));for(var c=0;h>c;c++)t.fillText(a[c],i,l),l+=d}},s.prototype.getTextSize=function(t){if(void 0!==this.label){t.font=(this.selected?"bold ":"")+this.options.fontSize+"px "+this.options.fontFace;for(var e=this.label.split("\n"),i=(Number(this.options.fontSize)+4)*e.length,s=0,o=0,n=e.length;n>o;o++)s=Math.max(s,t.measureText(e[o]).width);return{width:s,height:i}}return{width:0,height:0}},s.prototype.inArea=function(){return void 0!==this.width?this.x+this.width*this.networkScaleInv>=this.canvasTopLeft.x&&this.x-this.width*this.networkScaleInv=this.canvasTopLeft.y&&this.y-this.height*this.networkScaleInv=this.canvasTopLeft.x&&this.x=this.canvasTopLeft.y&&this.ys&&(n=s-e-this.padding),no&&(r=o-i-this.padding),ri;i++)if(e.id===r.nodes[i].id){o=r.nodes[i];break}for(o||(o={id:e.id},t.node&&(o.attr=a(o.attr,t.node))),i=n.length-1;i>=0;i--){var h=n[i];h.nodes||(h.nodes=[]),-1==h.nodes.indexOf(o)&&h.nodes.push(o)}e.attr&&(o.attr=a(o.attr,e.attr))}function l(t,e){if(t.edges||(t.edges=[]),t.edges.push(e),t.edge){var i=a({},t.edge);e.attr=a(i,e.attr)}}function c(t,e,i,s,o){var n={from:e,to:i,type:s};return t.edge&&(n.attr=a({},t.edge)),n.attr=a(n.attr||{},o),n}function p(){for(k=C.NULL,L="";" "==O||" "==O||"\n"==O||"\r"==O;)o();do{var t=!1;if("#"==O){for(var e=T-1;" "==D.charAt(e)||" "==D.charAt(e);)e--;if("\n"==D.charAt(e)||""==D.charAt(e)){for(;""!=O&&"\n"!=O;)o();t=!0}}if("/"==O&&"/"==n()){for(;""!=O&&"\n"!=O;)o();t=!0}if("/"==O&&"*"==n()){for(;""!=O;){if("*"==O&&"/"==n()){o(),o();break}o()}t=!0}for(;" "==O||" "==O||"\n"==O||"\r"==O;)o()}while(t);if(""==O)return void(k=C.DELIMITER);var i=O+n();if(E[i])return k=C.DELIMITER,L=i,o(),void o();if(E[O])return k=C.DELIMITER,L=O,void o();if(r(O)||"-"==O){for(L+=O,o();r(O);)L+=O,o();return"false"==L?L=!1:"true"==L?L=!0:isNaN(Number(L))||(L=Number(L)),void(k=C.IDENTIFIER)}if('"'==O){for(o();""!=O&&('"'!=O||'"'==O&&'"'==n());)L+=O,'"'==O&&o(),o();if('"'!=O)throw x('End of string " expected');return o(),void(k=C.IDENTIFIER)}for(k=C.UNKNOWN;""!=O;)L+=O,o();throw new SyntaxError('Syntax error in part "'+w(L,30)+'"')}function u(){var t={};if(s(),p(),"strict"==L&&(t.strict=!0,p()),("graph"==L||"digraph"==L)&&(t.type=L,p()),k==C.IDENTIFIER&&(t.id=L,p()),"{"!=L)throw x("Angle bracket { expected");if(p(),f(t),"}"!=L)throw x("Angle bracket } expected");if(p(),""!==L)throw x("End of file expected");return p(),delete t.node,delete t.edge,delete t.graph,t}function f(t){for(;""!==L&&"}"!=L;)m(t),";"==L&&p()}function m(t){var e=g(t);if(e)return void b(t,e);var i=v(t);if(!i){if(k!=C.IDENTIFIER)throw x("Identifier expected");var s=L;if(p(),"="==L){if(p(),k!=C.IDENTIFIER)throw x("Identifier expected");t[s]=L,p()}else y(t,s)}}function g(t){var e=null;if("subgraph"==L&&(e={},e.type="subgraph",p(),k==C.IDENTIFIER&&(e.id=L,p())),"{"==L){if(p(),e||(e={}),e.parent=t,e.node=t.node,e.edge=t.edge,e.graph=t.graph,f(e),"}"!=L)throw x("Angle bracket } expected");p(),delete e.node,delete e.edge,delete e.graph,delete e.parent,t.subgraphs||(t.subgraphs=[]),t.subgraphs.push(e)}return e}function v(t){return"node"==L?(p(),t.node=_(),"node"):"edge"==L?(p(),t.edge=_(),"edge"):"graph"==L?(p(),t.graph=_(),"graph"):null}function y(t,e){var i={id:e},s=_();s&&(i.attr=s),d(t,i),b(t,e)}function b(t,e){for(;"->"==L||"--"==L;){var i,s=L;p();var o=g(t);if(o)i=o;else{if(k!=C.IDENTIFIER)throw x("Identifier or subgraph expected");i=L,d(t,{id:i}),p()}var n=_(),r=c(t,e,i,s,n);l(t,r),e=i}}function _(){for(var t=null;"["==L;){for(p(),t={};""!==L&&"]"!=L;){if(k!=C.IDENTIFIER)throw x("Attribute name expected");var e=L;if(p(),"="!=L)throw x("Equal sign = expected");if(p(),k!=C.IDENTIFIER)throw x("Attribute value expected");var i=L;h(t,e,i),p(),","==L&&p()}if("]"!=L)throw x("Bracket ] expected");p()}return t}function x(t){return new SyntaxError(t+', got "'+w(L,30)+'" (char '+T+")")}function w(t,e){return t.length<=e?t:t.substr(0,27)+"..."}function S(t,e,i){t instanceof Array?t.forEach(function(t){e instanceof Array?e.forEach(function(e){i(t,e)}):i(t,e)}):e instanceof Array?e.forEach(function(e){i(t,e)}):i(t,e)}function M(t){function e(t){var e={from:t.from,to:t.to};return a(e,t.attr),e.style="->"==t.type?"arrow":"line",e}var s=i(t),o={nodes:[],edges:[],options:{}};return s.nodes&&s.nodes.forEach(function(t){var e={id:t.id,label:String(t.label||t.id)};a(e,t.attr),e.image&&(e.shape="image"),o.nodes.push(e)}),s.edges&&s.edges.forEach(function(t){var i,s;i=t.from instanceof Object?t.from.nodes:{id:t.from},s=t.to instanceof Object?t.to.nodes:{id:t.to},t.from instanceof Object&&t.from.edges&&t.from.edges.forEach(function(t){var i=e(t);o.edges.push(i)}),S(i,s,function(i,s){var n=c(o,i.id,s.id,t.type,t.attr),r=e(n);o.edges.push(r)}),t.to instanceof Object&&t.to.edges&&t.to.edges.forEach(function(t){var i=e(t);o.edges.push(i)})}),s.attr&&(o.options=s.attr),o}var C={NULL:0,DELIMITER:1,IDENTIFIER:2,UNKNOWN:3},E={"{":!0,"}":!0,"[":!0,"]":!0,";":!0,"=":!0,",":!0,"->":!0,"--":!0},D="",T=0,O="",L="",k=C.NULL,N=/[a-zA-Z_0-9.:#]/;e.parseDOT=i,e.DOTToGraph=M},function(t,e){function i(t,e){var i=[],s=[];this.options={edges:{inheritColor:!0},nodes:{allowedToMove:!1,parseColor:!1}},void 0!==e&&(this.options.nodes.allowedToMove=e.allowedToMove|!1,this.options.nodes.parseColor=e.parseColor|!1,this.options.edges.inheritColor=e.inheritColor|!0);for(var o=t.edges,n=t.nodes,r=0;r=s&&(s=864e5),e=new Date(e.valueOf()-.05*s),i=new Date(i.valueOf()+.05*s)}(null!==e||null!==i)&&this.range.setRange(e,i)},s.prototype.setWindow=function(t,e){if(1==arguments.length){var i=arguments[0];this.range.setRange(i.start,i.end)}else this.range.setRange(t,e)},s.prototype.getWindow=function(){var t=this.range.getRange();return{start:new Date(t.start),end:new Date(t.end)}},s.prototype.redraw=function(){var t=!1,e=this.options,i=this.props,s=this.dom;if(s){s.root.className="vis timeline root "+e.orientation,s.root.style.maxHeight=r.option.asSize(e.maxHeight,""),s.root.style.minHeight=r.option.asSize(e.minHeight,""),s.root.style.width=r.option.asSize(e.width,""),i.border.left=(s.centerContainer.offsetWidth-s.centerContainer.clientWidth)/2,i.border.right=i.border.left,i.border.top=(s.centerContainer.offsetHeight-s.centerContainer.clientHeight)/2,i.border.bottom=i.border.top;var o=s.root.offsetHeight-s.root.clientHeight,n=s.root.offsetWidth-s.root.clientWidth;i.center.height=s.center.offsetHeight,i.left.height=s.left.offsetHeight,i.right.height=s.right.offsetHeight,i.top.height=s.top.clientHeight||-i.border.top,i.bottom.height=s.bottom.clientHeight||-i.border.bottom;var a=Math.max(i.left.height,i.center.height,i.right.height),h=i.top.height+a+i.bottom.height+o+i.border.top+i.border.bottom;s.root.style.height=r.option.asSize(e.height,h+"px"),i.root.height=s.root.offsetHeight,i.background.height=i.root.height-o;var d=i.root.height-i.top.height-i.bottom.height-o;i.centerContainer.height=d,i.leftContainer.height=d,i.rightContainer.height=i.leftContainer.height,i.root.width=s.root.offsetWidth,i.background.width=i.root.width-n,i.left.width=s.leftContainer.clientWidth||-i.border.left,i.leftContainer.width=i.left.width,i.right.width=s.rightContainer.clientWidth||-i.border.right,i.rightContainer.width=i.right.width;var l=i.root.width-i.left.width-i.right.width-n;i.center.width=l,i.centerContainer.width=l,i.top.width=l,i.bottom.width=l,s.background.style.height=i.background.height+"px",s.backgroundVertical.style.height=i.background.height+"px",s.backgroundHorizontal.style.height=i.centerContainer.height+"px",s.centerContainer.style.height=i.centerContainer.height+"px",s.leftContainer.style.height=i.leftContainer.height+"px",s.rightContainer.style.height=i.rightContainer.height+"px",s.background.style.width=i.background.width+"px",s.backgroundVertical.style.width=i.centerContainer.width+"px",s.backgroundHorizontal.style.width=i.background.width+"px",s.centerContainer.style.width=i.center.width+"px",s.top.style.width=i.top.width+"px",s.bottom.style.width=i.bottom.width+"px",s.background.style.left="0",s.background.style.top="0",s.backgroundVertical.style.left=i.left.width+"px",s.backgroundVertical.style.top="0",s.backgroundHorizontal.style.left="0",s.backgroundHorizontal.style.top=i.top.height+"px",s.centerContainer.style.left=i.left.width+"px",s.centerContainer.style.top=i.top.height+"px",s.leftContainer.style.left="0",s.leftContainer.style.top=i.top.height+"px",s.rightContainer.style.left=i.left.width+i.center.width+"px",s.rightContainer.style.top=i.top.height+"px",s.top.style.left=i.left.width+"px",s.top.style.top="0",s.bottom.style.left=i.left.width+"px",s.bottom.style.top=i.top.height+i.centerContainer.height+"px",this._updateScrollTop();var c=this.props.scrollTop;"bottom"==e.orientation&&(c+=Math.max(this.props.centerContainer.height-this.props.center.height-this.props.border.top-this.props.border.bottom,0)),s.center.style.left="0",s.center.style.top=c+"px",s.left.style.left="0",s.left.style.top=c+"px",s.right.style.left="0",s.right.style.top=c+"px";var p=0==this.props.scrollTop?"hidden":"",u=this.props.scrollTop==this.props.scrollTopMin?"hidden":"";s.shadowTop.style.visibility=p,s.shadowBottom.style.visibility=u,s.shadowTopLeft.style.visibility=p,s.shadowBottomLeft.style.visibility=u,s.shadowTopRight.style.visibility=p,s.shadowBottomRight.style.visibility=u,this.components.forEach(function(e){t=e.redraw()||t}),t&&this.redraw()}},s.prototype.repaint=function(){throw new Error("Function repaint is deprecated. Use redraw instead.")},s.prototype._toTime=function(t){var e=this.range.conversion(this.props.center.width);return new Date(t/e.scale+e.offset)},s.prototype._toGlobalTime=function(t){var e=this.range.conversion(this.props.root.width);return new Date(t/e.scale+e.offset)},s.prototype._toScreen=function(t){var e=this.range.conversion(this.props.center.width);return(t.valueOf()-e.offset)*e.scale},s.prototype._toGlobalScreen=function(t){var e=this.range.conversion(this.props.root.width);return(t.valueOf()-e.offset)*e.scale},s.prototype._initAutoResize=function(){1==this.options.autoResize?this._startAutoResize():this._stopAutoResize()},s.prototype._startAutoResize=function(){var t=this;this._stopAutoResize(),this._onResize=function(){return 1!=t.options.autoResize?void t._stopAutoResize():void(t.dom.root&&(t.dom.root.clientWidth!=t.props.lastWidth||t.dom.root.clientHeight!=t.props.lastHeight)&&(t.props.lastWidth=t.dom.root.clientWidth,t.props.lastHeight=t.dom.root.clientHeight,t.emit("change")))},r.addEventListener(window,"resize",this._onResize),this.watchTimer=setInterval(this._onResize,1e3)},s.prototype._stopAutoResize=function(){this.watchTimer&&(clearInterval(this.watchTimer),this.watchTimer=void 0),r.removeEventListener(window,"resize",this._onResize),this._onResize=null},s.prototype._onTouch=function(){this.touch.allowDragging=!0},s.prototype._onPinch=function(){this.touch.allowDragging=!1},s.prototype._onDragStart=function(){this.touch.initialScrollTop=this.props.scrollTop},s.prototype._onDrag=function(t){if(this.touch.allowDragging){var e=t.gesture.deltaY,i=this._getScrollTop(),s=this._setScrollTop(this.touch.initialScrollTop+e);s!=i&&this.redraw()}},s.prototype._setScrollTop=function(t){return this.props.scrollTop=t,this._updateScrollTop(),this.props.scrollTop},s.prototype._updateScrollTop=function(){var t=Math.min(this.props.centerContainer.height-this.props.center.height,0);return t!=this.props.scrollTopMin&&("bottom"==this.options.orientation&&(this.props.scrollTop+=t-this.props.scrollTopMin),this.props.scrollTopMin=t),this.props.scrollTop>0&&(this.props.scrollTop=0),this.props.scrollTops;s++){var o=s%2===0?1.3*i:.5*i;this.lineTo(t+o*Math.sin(2*s*Math.PI/10),e-o*Math.cos(2*s*Math.PI/10))}this.closePath()},CanvasRenderingContext2D.prototype.roundRect=function(t,e,i,s,o){var n=Math.PI/180;0>i-2*o&&(o=i/2),0>s-2*o&&(o=s/2),this.beginPath(),this.moveTo(t+o,e),this.lineTo(t+i-o,e),this.arc(t+i-o,e+o,o,270*n,360*n,!1),this.lineTo(t+i,e+s-o),this.arc(t+i-o,e+s-o,o,0,90*n,!1),this.lineTo(t+o,e+s),this.arc(t+o,e+s-o,o,90*n,180*n,!1),this.lineTo(t,e+o),this.arc(t+o,e+o,o,180*n,270*n,!1)},CanvasRenderingContext2D.prototype.ellipse=function(t,e,i,s){var o=.5522848,n=i/2*o,r=s/2*o,a=t+i,h=e+s,d=t+i/2,l=e+s/2;this.beginPath(),this.moveTo(t,l),this.bezierCurveTo(t,l-r,d-n,e,d,e),this.bezierCurveTo(d+n,e,a,l-r,a,l),this.bezierCurveTo(a,l+r,d+n,h,d,h),this.bezierCurveTo(d-n,h,t,l+r,t,l)},CanvasRenderingContext2D.prototype.database=function(t,e,i,s){var o=1/3,n=i,r=s*o,a=.5522848,h=n/2*a,d=r/2*a,l=t+n,c=e+r,p=t+n/2,u=e+r/2,f=e+(s-r/2),m=e+s;this.beginPath(),this.moveTo(l,u),this.bezierCurveTo(l,u+d,p+h,c,p,c),this.bezierCurveTo(p-h,c,t,u+d,t,u),this.bezierCurveTo(t,u-d,p-h,e,p,e),this.bezierCurveTo(p+h,e,l,u-d,l,u),this.lineTo(l,f),this.bezierCurveTo(l,f+d,p+h,m,p,m),this.bezierCurveTo(p-h,m,t,f+d,t,f),this.lineTo(t,u)},CanvasRenderingContext2D.prototype.arrow=function(t,e,i,s){var o=t-s*Math.cos(i),n=e-s*Math.sin(i),r=t-.9*s*Math.cos(i),a=e-.9*s*Math.sin(i),h=o+s/3*Math.cos(i+.5*Math.PI),d=n+s/3*Math.sin(i+.5*Math.PI),l=o+s/3*Math.cos(i-.5*Math.PI),c=n+s/3*Math.sin(i-.5*Math.PI);this.beginPath(),this.moveTo(t,e),this.lineTo(h,d),this.lineTo(r,a),this.lineTo(l,c),this.closePath()},CanvasRenderingContext2D.prototype.dashedLine=function(t,e,i,s,o){o||(o=[10,5]),0==p&&(p=.001);var n=o.length;this.moveTo(t,e);for(var r=i-t,a=s-e,h=a/r,d=Math.sqrt(r*r+a*a),l=0,c=!0;d>=.1;){var p=o[l++%n];p>d&&(p=d);var u=Math.sqrt(p*p/(1+h*h));0>r&&(u=-u),t+=u,e+=h*u,this[c?"lineTo":"moveTo"](t,e),d-=p,c=!c}})},function(t,e,i){var s=i(56),o=i(50),n=i(51),r=i(52),a=i(53),h=i(54),d=i(55);e._loadMixin=function(t){for(var e in t)t.hasOwnProperty(e)&&(this[e]=t[e])},e._clearMixin=function(t){for(var e in t)t.hasOwnProperty(e)&&(this[e]=void 0)},e._loadPhysicsSystem=function(){this._loadMixin(s),this._loadSelectedForceSolver(),1==this.constants.configurePhysics&&this._loadPhysicsConfiguration()},e._loadClusterSystem=function(){this.clusterSession=0,this.hubThreshold=5,this._loadMixin(o)},e._loadSectorSystem=function(){this.sectors={},this.activeSector=["default"],this.sectors.active={},this.sectors.active["default"]={nodes:{},edges:{},nodeIndices:[],formationScale:1,drawingNode:void 0},this.sectors.frozen={},this.sectors.support={nodes:{},edges:{},nodeIndices:[],formationScale:1,drawingNode:void 0},this.nodeIndices=this.sectors.active["default"].nodeIndices,this._loadMixin(n)},e._loadSelectionSystem=function(){this.selectionObj={nodes:{},edges:{}},this._loadMixin(r)},e._loadManipulationSystem=function(){this.blockConnectingEdgeSelection=!1,this.forceAppendSelection=!1,1==this.constants.dataManipulation.enabled?(void 0===this.manipulationDiv&&(this.manipulationDiv=document.createElement("div"),this.manipulationDiv.className="network-manipulationDiv",this.manipulationDiv.id="network-manipulationDiv",this.manipulationDiv.style.display=1==this.editMode?"block":"none",this.containerElement.insertBefore(this.manipulationDiv,this.frame)),void 0===this.editModeDiv&&(this.editModeDiv=document.createElement("div"),this.editModeDiv.className="network-manipulation-editMode",this.editModeDiv.id="network-manipulation-editMode",this.editModeDiv.style.display=1==this.editMode?"none":"block",this.containerElement.insertBefore(this.editModeDiv,this.frame)),void 0===this.closeDiv&&(this.closeDiv=document.createElement("div"),this.closeDiv.className="network-manipulation-closeDiv",this.closeDiv.id="network-manipulation-closeDiv",this.closeDiv.style.display=this.manipulationDiv.style.display,this.containerElement.insertBefore(this.closeDiv,this.frame)),this._loadMixin(a),this._createManipulatorBar()):void 0!==this.manipulationDiv&&(this._createManipulatorBar(),this.containerElement.removeChild(this.manipulationDiv),this.containerElement.removeChild(this.editModeDiv),this.containerElement.removeChild(this.closeDiv),this.manipulationDiv=void 0,this.editModeDiv=void 0,this.closeDiv=void 0,this._clearMixin(a))},e._loadNavigationControls=function(){this._loadMixin(h),this._cleanNavigation(),1==this.constants.navigation.enabled&&this._loadNavigationElements()},e._loadHierarchySystem=function(){this._loadMixin(d)}},function(t){function e(t){return t?i(t):void 0}function i(t){for(var i in e.prototype)t[i]=e.prototype[i];return t}t.exports=e,e.prototype.on=e.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks[t]=this._callbacks[t]||[]).push(e),this},e.prototype.once=function(t,e){function i(){s.off(t,i),e.apply(this,arguments)}var s=this;return this._callbacks=this._callbacks||{},i.fn=e,this.on(t,i),this},e.prototype.off=e.prototype.removeListener=e.prototype.removeAllListeners=e.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var i=this._callbacks[t];if(!i)return this;if(1==arguments.length)return delete this._callbacks[t],this;for(var s,o=0;os;++s)i[s].apply(this,e)}return this},e.prototype.listeners=function(t){return this._callbacks=this._callbacks||{},this._callbacks[t]||[]},e.prototype.hasListeners=function(t){return!!this.listeners(t).length}},function(t){function e(t,e,i){return t.addEventListener?t.addEventListener(e,i,!1):void t.attachEvent("on"+e,i)}function i(t){return"keypress"==t.type?String.fromCharCode(t.which):_[t.which]?_[t.which]:x[t.which]?x[t.which]:String.fromCharCode(t.which).toLowerCase()}function s(t){var e=t.target||t.srcElement,i=e.tagName;return(" "+e.className+" ").indexOf(" mousetrap ")>-1?!1:"INPUT"==i||"SELECT"==i||"TEXTAREA"==i||e.contentEditable&&"true"==e.contentEditable}function o(t,e){return t.sort().join(",")===e.sort().join(",")}function n(t){t=t||{};var e,i=!1;for(e in E)t[e]?i=!0:E[e]=0;i||(T=!1)}function r(t,e,i,s,n){var r,a,h=[];if(!M[t])return[];for("keyup"==i&&c(t)&&(e=[t]),r=0;r95&&112>t||_.hasOwnProperty(t)&&(y[_[t]]=t)}return y}function f(t,e,i){return i||(i=u()[t]?"keydown":"keypress"),"keypress"==i&&e.length&&(i="keydown"),i}function m(t,e,s,o){E[t]=0,o||(o=f(e[0],[]));var r,a=function(){T=o,++E[t],p()},d=function(t){h(s,t),"keyup"!==o&&(D=i(t)),setTimeout(n,10)};for(r=0;r1)return m(t,d,e,i);for(h="+"===t?["+"]:t.split("+"),n=0;n":".","?":"/","|":"\\"},S={option:"alt",command:"meta","return":"enter",escape:"esc"},M={},C={},E={},D=!1,T=!1,O=1;20>O;++O)_[111+O]="f"+O;for(O=0;9>=O;++O)_[O+96]=O;e(document,"keypress",l),e(document,"keydown",l),e(document,"keyup",l);var L={bind:function(t,e,i){return v(t instanceof Array?t:[t],e,i),C[t+":"+i]=e,this},unbind:function(t,e){return C[t+":"+e]&&(delete C[t+":"+e],this.bind(t,function(){},e)),this},trigger:function(t,e){return C[t+":"+e](),this},reset:function(){return M={},C={},this}};t.exports=L},function(t,e,i){var s;!function(o,n){"use strict";function r(){a.READY||(w.determineEventTypes(),x.each(a.gestures,function(t){M.register(t)}),w.onTouch(a.DOCUMENT,v,M.detect),w.onTouch(a.DOCUMENT,y,M.detect),a.READY=!0)}var a=function C(t,e){return new C.Instance(t,e||{})};a.VERSION="1.1.3",a.defaults={behavior:{userSelect:"none",touchAction:"pan-y",touchCallout:"none",contentZooming:"none",userDrag:"none",tapHighlightColor:"rgba(0,0,0,0)"}},a.DOCUMENT=document,a.HAS_POINTEREVENTS=navigator.pointerEnabled||navigator.msPointerEnabled,a.HAS_TOUCHEVENTS="ontouchstart"in o,a.IS_MOBILE=/mobile|tablet|ip(ad|hone|od)|android|silk/i.test(navigator.userAgent),a.NO_MOUSEEVENTS=a.HAS_TOUCHEVENTS&&a.IS_MOBILE||a.HAS_POINTEREVENTS,a.CALCULATE_INTERVAL=25;var h={},d=a.DIRECTION_DOWN="down",l=a.DIRECTION_LEFT="left",c=a.DIRECTION_UP="up",p=a.DIRECTION_RIGHT="right",u=a.POINTER_MOUSE="mouse",f=a.POINTER_TOUCH="touch",m=a.POINTER_PEN="pen",g=a.EVENT_START="start",v=a.EVENT_MOVE="move",y=a.EVENT_END="end",b=a.EVENT_RELEASE="release",_=a.EVENT_TOUCH="touch"; +a.READY=!1,a.plugins=a.plugins||{},a.gestures=a.gestures||{};var x=a.utils={extend:function(t,e,i){for(var s in e)!e.hasOwnProperty(s)||t[s]!==n&&i||(t[s]=e[s]);return t},on:function(t,e,i){t.addEventListener(e,i,!1)},off:function(t,e,i){t.removeEventListener(e,i,!1)},each:function(t,e,i){var s,o;if("forEach"in t)t.forEach(e,i);else if(t.length!==n){for(s=0,o=t.length;o>s;s++)if(e.call(i,t[s],s,t)===!1)return}else for(s in t)if(t.hasOwnProperty(s)&&e.call(i,t[s],s,t)===!1)return},inStr:function(t,e){return t.indexOf(e)>-1},inArray:function(t,e){if(t.indexOf){var i=t.indexOf(e);return-1===i?!1:i}for(var s=0,o=t.length;o>s;s++)if(t[s]===e)return s;return!1},toArray:function(t){return Array.prototype.slice.call(t,0)},hasParent:function(t,e){for(;t;){if(t==e)return!0;t=t.parentNode}return!1},getCenter:function(t){var e=[],i=[],s=[],o=[],n=Math.min,r=Math.max;return 1===t.length?{pageX:t[0].pageX,pageY:t[0].pageY,clientX:t[0].clientX,clientY:t[0].clientY}:(x.each(t,function(t){e.push(t.pageX),i.push(t.pageY),s.push(t.clientX),o.push(t.clientY)}),{pageX:(n.apply(Math,e)+r.apply(Math,e))/2,pageY:(n.apply(Math,i)+r.apply(Math,i))/2,clientX:(n.apply(Math,s)+r.apply(Math,s))/2,clientY:(n.apply(Math,o)+r.apply(Math,o))/2})},getVelocity:function(t,e,i){return{x:Math.abs(e/t)||0,y:Math.abs(i/t)||0}},getAngle:function(t,e){var i=e.clientX-t.clientX,s=e.clientY-t.clientY;return 180*Math.atan2(s,i)/Math.PI},getDirection:function(t,e){var i=Math.abs(t.clientX-e.clientX),s=Math.abs(t.clientY-e.clientY);return i>=s?t.clientX-e.clientX>0?l:p:t.clientY-e.clientY>0?c:d},getDistance:function(t,e){var i=e.clientX-t.clientX,s=e.clientY-t.clientY;return Math.sqrt(i*i+s*s)},getScale:function(t,e){return t.length>=2&&e.length>=2?this.getDistance(e[0],e[1])/this.getDistance(t[0],t[1]):1},getRotation:function(t,e){return t.length>=2&&e.length>=2?this.getAngle(e[1],e[0])-this.getAngle(t[1],t[0]):0},isVertical:function(t){return t==c||t==d},setPrefixedCss:function(t,e,i,s){var o=["","Webkit","Moz","O","ms"];e=x.toCamelCase(e);for(var n=0;n0&&this.started&&(r=v),this.started=!0;var d=this.collectEventData(i,r,o,t);return e!=y&&s.call(M,d),a&&(d.changedLength=h,d.eventType=a,s.call(M,d),d.eventType=r,delete d.changedLength),r==y&&(s.call(M,d),this.started=!1),r},determineEventTypes:function(){var t;return t=a.HAS_POINTEREVENTS?o.PointerEvent?["pointerdown","pointermove","pointerup pointercancel lostpointercapture"]:["MSPointerDown","MSPointerMove","MSPointerUp MSPointerCancel MSLostPointerCapture"]:a.NO_MOUSEEVENTS?["touchstart","touchmove","touchend touchcancel"]:["touchstart mousedown","touchmove mousemove","touchend touchcancel mouseup"],h[g]=t[0],h[v]=t[1],h[y]=t[2],h},getTouchList:function(t,e){if(a.HAS_POINTEREVENTS)return S.getTouchList();if(t.touches){if(e==v)return t.touches;var i=[],s=[].concat(x.toArray(t.touches),x.toArray(t.changedTouches)),o=[];return x.each(s,function(t){x.inArray(i,t.identifier)===!1&&o.push(t),i.push(t.identifier)}),o}return t.identifier=1,[t]},collectEventData:function(t,e,i,s){var o=f;return x.inStr(s.type,"mouse")||S.matchType(u,s)?o=u:S.matchType(m,s)&&(o=m),{center:x.getCenter(i),timeStamp:Date.now(),target:s.target,touches:i,eventType:e,pointerType:o,srcEvent:s,preventDefault:function(){var t=this.srcEvent;t.preventManipulation&&t.preventManipulation(),t.preventDefault&&t.preventDefault()},stopPropagation:function(){this.srcEvent.stopPropagation()},stopDetect:function(){return M.stopDetect()}}}},S=a.PointerEvent={pointers:{},getTouchList:function(){var t=[];return x.each(this.pointers,function(e){t.push(e)}),t},updatePointer:function(t,e){t==y||t!=y&&1!==e.buttons?delete this.pointers[e.pointerId]:(e.identifier=e.pointerId,this.pointers[e.pointerId]=e)},matchType:function(t,e){if(!e.pointerType)return!1;var i=e.pointerType,s={};return s[u]=i===(e.MSPOINTER_TYPE_MOUSE||u),s[f]=i===(e.MSPOINTER_TYPE_TOUCH||f),s[m]=i===(e.MSPOINTER_TYPE_PEN||m),s[t]},reset:function(){this.pointers={}}},M=a.detection={gestures:[],current:null,previous:null,stopped:!1,startDetect:function(t,e){this.current||(this.stopped=!1,this.current={inst:t,startEvent:x.extend({},e),lastEvent:!1,lastCalcEvent:!1,futureCalcEvent:!1,lastCalcData:{},name:""},this.detect(e))},detect:function(t){if(this.current&&!this.stopped){t=this.extendEventData(t);var e=this.current.inst,i=e.options;return x.each(this.gestures,function(s){!this.stopped&&e.enabled&&i[s.name]&&s.handler.call(s,t,e)},this),this.current&&(this.current.lastEvent=t),t.eventType==y&&this.stopDetect(),t}},stopDetect:function(){this.previous=x.extend({},this.current),this.current=null,this.stopped=!0},getCalculatedData:function(t,e,i,s,o){var n=this.current,r=!1,h=n.lastCalcEvent,d=n.lastCalcData;h&&t.timeStamp-h.timeStamp>a.CALCULATE_INTERVAL&&(e=h.center,i=t.timeStamp-h.timeStamp,s=t.center.clientX-h.center.clientX,o=t.center.clientY-h.center.clientY,r=!0),(t.eventType==_||t.eventType==b)&&(n.futureCalcEvent=t),(!n.lastCalcEvent||r)&&(d.velocity=x.getVelocity(i,s,o),d.angle=x.getAngle(e,t.center),d.direction=x.getDirection(e,t.center),n.lastCalcEvent=n.futureCalcEvent||t,n.futureCalcEvent=t),t.velocityX=d.velocity.x,t.velocityY=d.velocity.y,t.interimAngle=d.angle,t.interimDirection=d.direction},extendEventData:function(t){var e=this.current,i=e.startEvent,s=e.lastEvent||i;(t.eventType==_||t.eventType==b)&&(i.touches=[],x.each(t.touches,function(t){i.touches.push({clientX:t.clientX,clientY:t.clientY})}));var o=t.timeStamp-i.timeStamp,n=t.center.clientX-i.center.clientX,r=t.center.clientY-i.center.clientY;return this.getCalculatedData(t,s.center,o,n,r),x.extend(t,{startEvent:i,deltaTime:o,deltaX:n,deltaY:r,distance:x.getDistance(i.center,t.center),angle:x.getAngle(i.center,t.center),direction:x.getDirection(i.center,t.center),scale:x.getScale(i.touches,t.touches),rotation:x.getRotation(i.touches,t.touches)}),t},register:function(t){var e=t.defaults||{};return e[t.name]===n&&(e[t.name]=!0),x.extend(a.defaults,e,!0),t.index=t.index||1e3,this.gestures.push(t),this.gestures.sort(function(t,e){return t.indexe.index?1:0}),this.gestures}};a.Instance=function(t,e){var i=this;r(),this.element=t,this.enabled=!0,x.each(e,function(t,i){delete e[i],e[x.toCamelCase(i)]=t}),this.options=x.extend(x.extend({},a.defaults),e||{}),this.options.behavior&&x.toggleBehavior(this.element,this.options.behavior,!0),this.eventStartHandler=w.onTouch(t,g,function(t){i.enabled&&t.eventType==g?M.startDetect(i,t):t.eventType==_&&M.detect(t)}),this.eventHandlers=[]},a.Instance.prototype={on:function(t,e){var i=this;return w.on(i.element,t,e,function(t){i.eventHandlers.push({gesture:t,handler:e})}),i},off:function(t,e){var i=this;return w.off(i.element,t,e,function(t){var s=x.inArray({gesture:t,handler:e});s!==!1&&i.eventHandlers.splice(s,1)}),i},trigger:function(t,e){e||(e={});var i=a.DOCUMENT.createEvent("Event");i.initEvent(t,!0,!0),i.gesture=e;var s=this.element;return x.hasParent(e.target,s)&&(s=e.target),s.dispatchEvent(i),this},enable:function(t){return this.enabled=t,this},dispose:function(){var t,e;for(x.toggleBehavior(this.element,this.options.behavior,!1),t=-1;e=this.eventHandlers[++t];)x.off(this.element,e.gesture,e.handler);return this.eventHandlers=[],w.off(this.element,h[g],this.eventStartHandler),null}},function(t){function e(e,s){var o=M.current;if(!(s.options.dragMaxTouches>0&&e.touches.length>s.options.dragMaxTouches))switch(e.eventType){case g:i=!1;break;case v:if(e.distance0)){var r=Math.abs(s.options.dragMinDistance/e.distance);n.pageX+=e.deltaX*r,n.pageY+=e.deltaY*r,n.clientX+=e.deltaX*r,n.clientY+=e.deltaY*r,e=M.extendEventData(e)}(o.lastEvent.dragLockToAxis||s.options.dragLockToAxis&&s.options.dragLockMinDistance<=e.distance)&&(e.dragLockToAxis=!0);var a=o.lastEvent.direction;e.dragLockToAxis&&a!==e.direction&&(e.direction=x.isVertical(a)?e.deltaY<0?c:d:e.deltaX<0?l:p),i||(s.trigger(t+"start",e),i=!0),s.trigger(t,e),s.trigger(t+e.direction,e);var h=x.isVertical(e.direction);(s.options.dragBlockVertical&&h||s.options.dragBlockHorizontal&&!h)&&e.preventDefault();break;case b:i&&e.changedLength<=s.options.dragMaxTouches&&(s.trigger(t+"end",e),i=!1);break;case y:i=!1}}var i=!1;a.gestures.Drag={name:t,index:50,handler:e,defaults:{dragMinDistance:10,dragDistanceCorrection:!0,dragMaxTouches:1,dragBlockHorizontal:!1,dragBlockVertical:!1,dragLockToAxis:!1,dragLockMinDistance:25}}}("drag"),a.gestures.Gesture={name:"gesture",index:1337,handler:function(t,e){e.trigger(this.name,t)}},function(t){function e(e,s){var o=s.options,n=M.current;switch(e.eventType){case g:clearTimeout(i),n.name=t,i=setTimeout(function(){n&&n.name==t&&s.trigger(t,e)},o.holdTimeout);break;case v:e.distance>o.holdThreshold&&clearTimeout(i);break;case b:clearTimeout(i)}}var i;a.gestures.Hold={name:t,index:10,defaults:{holdTimeout:500,holdThreshold:2},handler:e}}("hold"),a.gestures.Release={name:"release",index:1/0,handler:function(t,e){t.eventType==b&&e.trigger(this.name,t)}},a.gestures.Swipe={name:"swipe",index:40,defaults:{swipeMinTouches:1,swipeMaxTouches:1,swipeVelocityX:.6,swipeVelocityY:.6},handler:function(t,e){if(t.eventType==b){var i=t.touches.length,s=e.options;if(is.swipeMaxTouches)return;(t.velocityX>s.swipeVelocityX||t.velocityY>s.swipeVelocityY)&&(e.trigger(this.name,t),e.trigger(this.name+t.direction,t))}}},function(t){function e(e,s){var o,n,r=s.options,a=M.current,h=M.previous;switch(e.eventType){case g:i=!1;break;case v:i=i||e.distance>r.tapMaxDistance;break;case y:!x.inStr(e.srcEvent.type,"cancel")&&e.deltaTimes.options.transformMinRotation&&s.trigger("rotate",e),o>s.options.transformMinScale&&(s.trigger("pinch",e),s.trigger("pinch"+(e.scale<1?"in":"out"),e));break;case b:i&&e.changedLength<2&&(s.trigger(t+"end",e),i=!1)}}var i=!1;a.gestures.Transform={name:t,index:45,defaults:{transformMinScale:.01,transformMinRotation:1},handler:e}}("transform"),s=function(){return a}.call(e,i,e,t),!(s!==n&&(t.exports=s))}(window)},function(t,e,i){var s;(function(t,o){(function(n){function r(t,e,i){switch(arguments.length){case 2:return null!=t?t:e;case 3:return null!=t?t:null!=e?e:i;default:throw new Error("Implement me")}}function a(){return{empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1}}function h(t,e){function i(){ve.suppressDeprecationWarnings===!1&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+t)}var s=!0;return f(function(){return s&&(i(),s=!1),e.apply(this,arguments)},e)}function d(t,e){return function(i){return v(t.call(this,i),e)}}function l(t,e){return function(i){return this.lang().ordinal(t.call(this,i),e)}}function c(){}function p(t){L(t),f(this,t)}function u(t){var e=S(t),i=e.year||0,s=e.quarter||0,o=e.month||0,n=e.week||0,r=e.day||0,a=e.hour||0,h=e.minute||0,d=e.second||0,l=e.millisecond||0;this._milliseconds=+l+1e3*d+6e4*h+36e5*a,this._days=+r+7*n,this._months=+o+3*s+12*i,this._data={},this._bubble()}function f(t,e){for(var i in e)e.hasOwnProperty(i)&&(t[i]=e[i]);return e.hasOwnProperty("toString")&&(t.toString=e.toString),e.hasOwnProperty("valueOf")&&(t.valueOf=e.valueOf),t}function m(t){var e,i={};for(e in t)t.hasOwnProperty(e)&&ke.hasOwnProperty(e)&&(i[e]=t[e]);return i}function g(t){return 0>t?Math.ceil(t):Math.floor(t)}function v(t,e,i){for(var s=""+Math.abs(t),o=t>=0;s.lengths;s++)(i&&t[s]!==e[s]||!i&&C(t[s])!==C(e[s]))&&r++;return r+n}function w(t){if(t){var e=t.toLowerCase().replace(/(.)s$/,"$1");t=ri[t]||ai[e]||e}return t}function S(t){var e,i,s={};for(i in t)t.hasOwnProperty(i)&&(e=w(i),e&&(s[e]=t[i]));return s}function M(t){var e,i;if(0===t.indexOf("week"))e=7,i="day";else{if(0!==t.indexOf("month"))return;e=12,i="month"}ve[t]=function(s,o){var r,a,h=ve.fn._lang[t],d=[];if("number"==typeof s&&(o=s,s=n),a=function(t){var e=ve().utc().set(i,t);return h.call(ve.fn._lang,e,s||"")},null!=o)return a(o);for(r=0;e>r;r++)d.push(a(r));return d}}function C(t){var e=+t,i=0;return 0!==e&&isFinite(e)&&(i=e>=0?Math.floor(e):Math.ceil(e)),i}function E(t,e){return new Date(Date.UTC(t,e+1,0)).getUTCDate()}function D(t,e,i){return re(ve([t,11,31+e-i]),e,i).week}function T(t){return O(t)?366:365}function O(t){return t%4===0&&t%100!==0||t%400===0}function L(t){var e;t._a&&-2===t._pf.overflow&&(e=t._a[Me]<0||t._a[Me]>11?Me:t._a[Ce]<1||t._a[Ce]>E(t._a[Se],t._a[Me])?Ce:t._a[Ee]<0||t._a[Ee]>23?Ee:t._a[De]<0||t._a[De]>59?De:t._a[Te]<0||t._a[Te]>59?Te:t._a[Oe]<0||t._a[Oe]>999?Oe:-1,t._pf._overflowDayOfYear&&(Se>e||e>Ce)&&(e=Ce),t._pf.overflow=e)}function k(t){return null==t._isValid&&(t._isValid=!isNaN(t._d.getTime())&&t._pf.overflow<0&&!t._pf.empty&&!t._pf.invalidMonth&&!t._pf.nullInput&&!t._pf.invalidFormat&&!t._pf.userInvalidated,t._strict&&(t._isValid=t._isValid&&0===t._pf.charsLeftOver&&0===t._pf.unusedTokens.length)),t._isValid}function N(t){return t?t.toLowerCase().replace("_","-"):t}function I(t,e){return e._isUTC?ve(t).zone(e._offset||0):ve(t).local()}function A(t,e){return e.abbr=t,Le[t]||(Le[t]=new c),Le[t].set(e),Le[t]}function z(t){delete Le[t]}function P(t){var e,s,o,n,r=0,a=function(t){if(!Le[t]&&Ne)try{i(57)("./"+t)}catch(e){}return Le[t]};if(!t)return ve.fn._lang;if(!b(t)){if(s=a(t))return s;t=[t]}for(;r0;){if(s=a(n.slice(0,e).join("-")))return s;if(o&&o.length>=e&&x(n,o,!0)>=e-1)break;e--}r++}return ve.fn._lang}function R(t){return t.match(/\[[\s\S]/)?t.replace(/^\[|\]$/g,""):t.replace(/\\/g,"")}function F(t){var e,i,s=t.match(Pe);for(e=0,i=s.length;i>e;e++)s[e]=pi[s[e]]?pi[s[e]]:R(s[e]);return function(o){var n="";for(e=0;i>e;e++)n+=s[e]instanceof Function?s[e].call(o,t):s[e];return n}}function H(t,e){return t.isValid()?(e=Y(e,t.lang()),hi[e]||(hi[e]=F(e)),hi[e](t)):t.lang().invalidDate()}function Y(t,e){function i(t){return e.longDateFormat(t)||t}var s=5;for(Re.lastIndex=0;s>=0&&Re.test(t);)t=t.replace(Re,i),Re.lastIndex=0,s-=1;return t}function B(t,e){var i,s=e._strict;switch(t){case"Q":return Ze;case"DDDD":return Ke;case"YYYY":case"GGGG":case"gggg":return s?$e:Ye;case"Y":case"G":case"g":return Qe;case"YYYYYY":case"YYYYY":case"GGGGG":case"ggggg":return s?Je:Be;case"S":if(s)return Ze;case"SS":if(s)return qe;case"SSS":if(s)return Ke;case"DDD":return He;case"MMM":case"MMMM":case"dd":case"ddd":case"dddd":return Ge;case"a":case"A":return P(e._l)._meridiemParse;case"X":return Ue;case"Z":case"ZZ":return je;case"T":return Ve;case"SSSS":return We;case"MM":case"DD":case"YY":case"GG":case"gg":case"HH":case"hh":case"mm":case"ss":case"ww":case"WW":return s?qe:Fe;case"M":case"D":case"d":case"H":case"h":case"m":case"s":case"w":case"W":case"e":case"E":return Fe;case"Do":return Xe;default:return i=new RegExp(K(q(t.replace("\\","")),"i"))}}function W(t){t=t||"";var e=t.match(je)||[],i=e[e.length-1]||[],s=(i+"").match(oi)||["-",0,0],o=+(60*s[1])+C(s[2]);return"+"===s[0]?-o:o}function G(t,e,i){var s,o=i._a;switch(t){case"Q":null!=e&&(o[Me]=3*(C(e)-1));break;case"M":case"MM":null!=e&&(o[Me]=C(e)-1);break;case"MMM":case"MMMM":s=P(i._l).monthsParse(e),null!=s?o[Me]=s:i._pf.invalidMonth=e;break;case"D":case"DD":null!=e&&(o[Ce]=C(e));break;case"Do":null!=e&&(o[Ce]=C(parseInt(e,10)));break;case"DDD":case"DDDD":null!=e&&(i._dayOfYear=C(e));break;case"YY":o[Se]=ve.parseTwoDigitYear(e);break;case"YYYY":case"YYYYY":case"YYYYYY":o[Se]=C(e);break;case"a":case"A":i._isPm=P(i._l).isPM(e);break;case"H":case"HH":case"h":case"hh":o[Ee]=C(e);break;case"m":case"mm":o[De]=C(e);break;case"s":case"ss":o[Te]=C(e);break;case"S":case"SS":case"SSS":case"SSSS":o[Oe]=C(1e3*("0."+e));break;case"X":i._d=new Date(1e3*parseFloat(e));break;case"Z":case"ZZ":i._useUTC=!0,i._tzm=W(e);break;case"dd":case"ddd":case"dddd":s=P(i._l).weekdaysParse(e),null!=s?(i._w=i._w||{},i._w.d=s):i._pf.invalidWeekday=e;break;case"w":case"ww":case"W":case"WW":case"d":case"e":case"E":t=t.substr(0,1);case"gggg":case"GGGG":case"GGGGG":t=t.substr(0,2),e&&(i._w=i._w||{},i._w[t]=C(e));break;case"gg":case"GG":i._w=i._w||{},i._w[t]=ve.parseTwoDigitYear(e)}}function j(t){var e,i,s,o,n,a,h,d;e=t._w,null!=e.GG||null!=e.W||null!=e.E?(n=1,a=4,i=r(e.GG,t._a[Se],re(ve(),1,4).year),s=r(e.W,1),o=r(e.E,1)):(d=P(t._l),n=d._week.dow,a=d._week.doy,i=r(e.gg,t._a[Se],re(ve(),n,a).year),s=r(e.w,1),null!=e.d?(o=e.d,n>o&&++s):o=null!=e.e?e.e+n:n),h=ae(i,s,o,a,n),t._a[Se]=h.year,t._dayOfYear=h.dayOfYear}function V(t){var e,i,s,o,n=[];if(!t._d){for(s=X(t),t._w&&null==t._a[Ce]&&null==t._a[Me]&&j(t),t._dayOfYear&&(o=r(t._a[Se],s[Se]),t._dayOfYear>T(o)&&(t._pf._overflowDayOfYear=!0),i=ie(o,0,t._dayOfYear),t._a[Me]=i.getUTCMonth(),t._a[Ce]=i.getUTCDate()),e=0;3>e&&null==t._a[e];++e)t._a[e]=n[e]=s[e];for(;7>e;e++)t._a[e]=n[e]=null==t._a[e]?2===e?1:0:t._a[e];t._d=(t._useUTC?ie:ee).apply(null,n),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()+t._tzm)}}function U(t){var e;t._d||(e=S(t._i),t._a=[e.year,e.month,e.day,e.hour,e.minute,e.second,e.millisecond],V(t))}function X(t){var e=new Date;return t._useUTC?[e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()]:[e.getFullYear(),e.getMonth(),e.getDate()]}function Z(t){if(t._f===ve.ISO_8601)return void J(t);t._a=[],t._pf.empty=!0;var e,i,s,o,n,r=P(t._l),a=""+t._i,h=a.length,d=0;for(s=Y(t._f,r).match(Pe)||[],e=0;e0&&t._pf.unusedInput.push(n),a=a.slice(a.indexOf(i)+i.length),d+=i.length),pi[o]?(i?t._pf.empty=!1:t._pf.unusedTokens.push(o),G(o,i,t)):t._strict&&!i&&t._pf.unusedTokens.push(o);t._pf.charsLeftOver=h-d,a.length>0&&t._pf.unusedInput.push(a),t._isPm&&t._a[Ee]<12&&(t._a[Ee]+=12),t._isPm===!1&&12===t._a[Ee]&&(t._a[Ee]=0),V(t),L(t)}function q(t){return t.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(t,e,i,s,o){return e||i||s||o})}function K(t){return t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function $(t){var e,i,s,o,n;if(0===t._f.length)return t._pf.invalidFormat=!0,void(t._d=new Date(0/0));for(o=0;on)&&(s=n,i=e));f(t,i||e)}function J(t){var e,i,s=t._i,o=ti.exec(s);if(o){for(t._pf.iso=!0,e=0,i=ii.length;i>e;e++)if(ii[e][1].exec(s)){t._f=ii[e][0]+(o[6]||" ");break}for(e=0,i=si.length;i>e;e++)if(si[e][1].exec(s)){t._f+=si[e][0];break}s.match(je)&&(t._f+="Z"),Z(t)}else t._isValid=!1}function Q(t){J(t),t._isValid===!1&&(delete t._isValid,ve.createFromInputFallback(t))}function te(t){var e=t._i,i=Ie.exec(e);e===n?t._d=new Date:i?t._d=new Date(+i[1]):"string"==typeof e?Q(t):b(e)?(t._a=e.slice(0),V(t)):_(e)?t._d=new Date(+e):"object"==typeof e?U(t):"number"==typeof e?t._d=new Date(e):ve.createFromInputFallback(t)}function ee(t,e,i,s,o,n,r){var a=new Date(t,e,i,s,o,n,r);return 1970>t&&a.setFullYear(t),a}function ie(t){var e=new Date(Date.UTC.apply(null,arguments));return 1970>t&&e.setUTCFullYear(t),e}function se(t,e){if("string"==typeof t)if(isNaN(t)){if(t=e.weekdaysParse(t),"number"!=typeof t)return null}else t=parseInt(t,10);return t}function oe(t,e,i,s,o){return o.relativeTime(e||1,!!i,t,s)}function ne(t,e,i){var s=we(Math.abs(t)/1e3),o=we(s/60),n=we(o/60),r=we(n/24),a=we(r/365),h=s0,h[4]=i,oe.apply({},h)}function re(t,e,i){var s,o=i-e,n=i-t.day();return n>o&&(n-=7),o-7>n&&(n+=7),s=ve(t).add("d",n),{week:Math.ceil(s.dayOfYear()/7),year:s.year()}}function ae(t,e,i,s,o){var n,r,a=ie(t,0,1).getUTCDay();return a=0===a?7:a,i=null!=i?i:o,n=o-a+(a>s?7:0)-(o>a?7:0),r=7*(e-1)+(i-o)+n+1,{year:r>0?t:t-1,dayOfYear:r>0?r:T(t-1)+r}}function he(t){var e=t._i,i=t._f;return null===e||i===n&&""===e?ve.invalid({nullInput:!0}):("string"==typeof e&&(t._i=e=P().preparse(e)),ve.isMoment(e)?(t=m(e),t._d=new Date(+e._d)):i?b(i)?$(t):Z(t):te(t),new p(t))}function de(t,e){var i,s;if(1===e.length&&b(e[0])&&(e=e[0]),!e.length)return ve();for(i=e[0],s=1;s=0?"+":"-";return e+v(Math.abs(t),6)},gg:function(){return v(this.weekYear()%100,2)},gggg:function(){return v(this.weekYear(),4)},ggggg:function(){return v(this.weekYear(),5)},GG:function(){return v(this.isoWeekYear()%100,2)},GGGG:function(){return v(this.isoWeekYear(),4)},GGGGG:function(){return v(this.isoWeekYear(),5)},e:function(){return this.weekday()},E:function(){return this.isoWeekday()},a:function(){return this.lang().meridiem(this.hours(),this.minutes(),!0)},A:function(){return this.lang().meridiem(this.hours(),this.minutes(),!1)},H:function(){return this.hours()},h:function(){return this.hours()%12||12},m:function(){return this.minutes()},s:function(){return this.seconds()},S:function(){return C(this.milliseconds()/100)},SS:function(){return v(C(this.milliseconds()/10),2)},SSS:function(){return v(this.milliseconds(),3)},SSSS:function(){return v(this.milliseconds(),3)},Z:function(){var t=-this.zone(),e="+";return 0>t&&(t=-t,e="-"),e+v(C(t/60),2)+":"+v(C(t)%60,2)},ZZ:function(){var t=-this.zone(),e="+";return 0>t&&(t=-t,e="-"),e+v(C(t/60),2)+v(C(t)%60,2)},z:function(){return this.zoneAbbr()},zz:function(){return this.zoneName()},X:function(){return this.unix()},Q:function(){return this.quarter()}},ui=["months","monthsShort","weekdays","weekdaysShort","weekdaysMin"];li.length;)be=li.pop(),pi[be+"o"]=l(pi[be],be);for(;ci.length;)be=ci.pop(),pi[be+be]=d(pi[be],2);for(pi.DDDD=d(pi.DDD,3),f(c.prototype,{set:function(t){var e,i;for(i in t)e=t[i],"function"==typeof e?this[i]=e:this["_"+i]=e},_months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),months:function(t){return this._months[t.month()]},_monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),monthsShort:function(t){return this._monthsShort[t.month()]},monthsParse:function(t){var e,i,s;for(this._monthsParse||(this._monthsParse=[]),e=0;12>e;e++)if(this._monthsParse[e]||(i=ve.utc([2e3,e]),s="^"+this.months(i,"")+"|^"+this.monthsShort(i,""),this._monthsParse[e]=new RegExp(s.replace(".",""),"i")),this._monthsParse[e].test(t))return e},_weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdays:function(t){return this._weekdays[t.day()]},_weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysShort:function(t){return this._weekdaysShort[t.day()]},_weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),weekdaysMin:function(t){return this._weekdaysMin[t.day()]},weekdaysParse:function(t){var e,i,s;for(this._weekdaysParse||(this._weekdaysParse=[]),e=0;7>e;e++)if(this._weekdaysParse[e]||(i=ve([2e3,1]).day(e),s="^"+this.weekdays(i,"")+"|^"+this.weekdaysShort(i,"")+"|^"+this.weekdaysMin(i,""),this._weekdaysParse[e]=new RegExp(s.replace(".",""),"i")),this._weekdaysParse[e].test(t))return e},_longDateFormat:{LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D YYYY",LLL:"MMMM D YYYY LT",LLLL:"dddd, MMMM D YYYY LT"},longDateFormat:function(t){var e=this._longDateFormat[t];return!e&&this._longDateFormat[t.toUpperCase()]&&(e=this._longDateFormat[t.toUpperCase()].replace(/MMMM|MM|DD|dddd/g,function(t){return t.slice(1)}),this._longDateFormat[t]=e),e},isPM:function(t){return"p"===(t+"").toLowerCase().charAt(0)},_meridiemParse:/[ap]\.?m?\.?/i,meridiem:function(t,e,i){return t>11?i?"pm":"PM":i?"am":"AM"},_calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},calendar:function(t,e){var i=this._calendar[t];return"function"==typeof i?i.apply(e):i},_relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},relativeTime:function(t,e,i,s){var o=this._relativeTime[i];return"function"==typeof o?o(t,e,i,s):o.replace(/%d/i,t)},pastFuture:function(t,e){var i=this._relativeTime[t>0?"future":"past"];return"function"==typeof i?i(e):i.replace(/%s/i,e)},ordinal:function(t){return this._ordinal.replace("%d",t)},_ordinal:"%d",preparse:function(t){return t},postformat:function(t){return t},week:function(t){return re(t,this._week.dow,this._week.doy).week},_week:{dow:0,doy:6},_invalidDate:"Invalid date",invalidDate:function(){return this._invalidDate}}),ve=function(t,e,i,s){var o;return"boolean"==typeof i&&(s=i,i=n),o={},o._isAMomentObject=!0,o._i=t,o._f=e,o._l=i,o._strict=s,o._isUTC=!1,o._pf=a(),he(o)},ve.suppressDeprecationWarnings=!1,ve.createFromInputFallback=h("moment construction falls back to js Date. This is discouraged and will be removed in upcoming major release. Please refer to https://github.com/moment/moment/issues/1407 for more info.",function(t){t._d=new Date(t._i)}),ve.min=function(){var t=[].slice.call(arguments,0);return de("isBefore",t)},ve.max=function(){var t=[].slice.call(arguments,0);return de("isAfter",t)},ve.utc=function(t,e,i,s){var o;return"boolean"==typeof i&&(s=i,i=n),o={},o._isAMomentObject=!0,o._useUTC=!0,o._isUTC=!0,o._l=i,o._i=t,o._f=e,o._strict=s,o._pf=a(),he(o).utc()},ve.unix=function(t){return ve(1e3*t)},ve.duration=function(t,e){var i,s,o,n=t,r=null;return ve.isDuration(t)?n={ms:t._milliseconds,d:t._days,M:t._months}:"number"==typeof t?(n={},e?n[e]=t:n.milliseconds=t):(r=Ae.exec(t))?(i="-"===r[1]?-1:1,n={y:0,d:C(r[Ce])*i,h:C(r[Ee])*i,m:C(r[De])*i,s:C(r[Te])*i,ms:C(r[Oe])*i}):(r=ze.exec(t))&&(i="-"===r[1]?-1:1,o=function(t){var e=t&&parseFloat(t.replace(",","."));return(isNaN(e)?0:e)*i},n={y:o(r[2]),M:o(r[3]),d:o(r[4]),h:o(r[5]),m:o(r[6]),s:o(r[7]),w:o(r[8])}),s=new u(n),ve.isDuration(t)&&t.hasOwnProperty("_lang")&&(s._lang=t._lang),s +},ve.version=_e,ve.defaultFormat=ei,ve.ISO_8601=function(){},ve.momentProperties=ke,ve.updateOffset=function(){},ve.relativeTimeThreshold=function(t,e){return di[t]===n?!1:(di[t]=e,!0)},ve.lang=function(t,e){var i;return t?(e?A(N(t),e):null===e?(z(t),t="en"):Le[t]||P(t),i=ve.duration.fn._lang=ve.fn._lang=P(t),i._abbr):ve.fn._lang._abbr},ve.langData=function(t){return t&&t._lang&&t._lang._abbr&&(t=t._lang._abbr),P(t)},ve.isMoment=function(t){return t instanceof p||null!=t&&t.hasOwnProperty("_isAMomentObject")},ve.isDuration=function(t){return t instanceof u},be=ui.length-1;be>=0;--be)M(ui[be]);ve.normalizeUnits=function(t){return w(t)},ve.invalid=function(t){var e=ve.utc(0/0);return null!=t?f(e._pf,t):e._pf.userInvalidated=!0,e},ve.parseZone=function(){return ve.apply(null,arguments).parseZone()},ve.parseTwoDigitYear=function(t){return C(t)+(C(t)>68?1900:2e3)},f(ve.fn=p.prototype,{clone:function(){return ve(this)},valueOf:function(){return+this._d+6e4*(this._offset||0)},unix:function(){return Math.floor(+this/1e3)},toString:function(){return this.clone().lang("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},toDate:function(){return this._offset?new Date(+this):this._d},toISOString:function(){var t=ve(this).utc();return 00:!1},parsingFlags:function(){return f({},this._pf)},invalidAt:function(){return this._pf.overflow},utc:function(){return this.zone(0)},local:function(){return this.zone(0),this._isUTC=!1,this},format:function(t){var e=H(this,t||ve.defaultFormat);return this.lang().postformat(e)},add:function(t,e){var i;return i="string"==typeof t&&"string"==typeof e?ve.duration(isNaN(+e)?+t:+e,isNaN(+e)?e:t):"string"==typeof t?ve.duration(+e,t):ve.duration(t,e),y(this,i,1),this},subtract:function(t,e){var i;return i="string"==typeof t&&"string"==typeof e?ve.duration(isNaN(+e)?+t:+e,isNaN(+e)?e:t):"string"==typeof t?ve.duration(+e,t):ve.duration(t,e),y(this,i,-1),this},diff:function(t,e,i){var s,o,n=I(t,this),r=6e4*(this.zone()-n.zone());return e=w(e),"year"===e||"month"===e?(s=432e5*(this.daysInMonth()+n.daysInMonth()),o=12*(this.year()-n.year())+(this.month()-n.month()),o+=(this-ve(this).startOf("month")-(n-ve(n).startOf("month")))/s,o-=6e4*(this.zone()-ve(this).startOf("month").zone()-(n.zone()-ve(n).startOf("month").zone()))/s,"year"===e&&(o/=12)):(s=this-n,o="second"===e?s/1e3:"minute"===e?s/6e4:"hour"===e?s/36e5:"day"===e?(s-r)/864e5:"week"===e?(s-r)/6048e5:s),i?o:g(o)},from:function(t,e){return ve.duration(this.diff(t)).lang(this.lang()._abbr).humanize(!e)},fromNow:function(t){return this.from(ve(),t)},calendar:function(t){var e=t||ve(),i=I(e,this).startOf("day"),s=this.diff(i,"days",!0),o=-6>s?"sameElse":-1>s?"lastWeek":0>s?"lastDay":1>s?"sameDay":2>s?"nextDay":7>s?"nextWeek":"sameElse";return this.format(this.lang().calendar(o,this))},isLeapYear:function(){return O(this.year())},isDST:function(){return this.zone()+ve(t).startOf(e)},isBefore:function(t,e){return e="undefined"!=typeof e?e:"millisecond",+this.clone().startOf(e)<+ve(t).startOf(e)},isSame:function(t,e){return e=e||"ms",+this.clone().startOf(e)===+I(t,this).startOf(e)},min:h("moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548",function(t){return t=ve.apply(null,arguments),this>t?this:t}),max:h("moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548",function(t){return t=ve.apply(null,arguments),t>this?this:t}),zone:function(t,e){var i=this._offset||0;return null==t?this._isUTC?i:this._d.getTimezoneOffset():("string"==typeof t&&(t=W(t)),Math.abs(t)<16&&(t=60*t),this._offset=t,this._isUTC=!0,i!==t&&(!e||this._changeInProgress?y(this,ve.duration(i-t,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,ve.updateOffset(this,!0),this._changeInProgress=null)),this)},zoneAbbr:function(){return this._isUTC?"UTC":""},zoneName:function(){return this._isUTC?"Coordinated Universal Time":""},parseZone:function(){return this._tzm?this.zone(this._tzm):"string"==typeof this._i&&this.zone(this._i),this},hasAlignedHourOffset:function(t){return t=t?ve(t).zone():0,(this.zone()-t)%60===0},daysInMonth:function(){return E(this.year(),this.month())},dayOfYear:function(t){var e=we((ve(this).startOf("day")-ve(this).startOf("year"))/864e5)+1;return null==t?e:this.add("d",t-e)},quarter:function(t){return null==t?Math.ceil((this.month()+1)/3):this.month(3*(t-1)+this.month()%3)},weekYear:function(t){var e=re(this,this.lang()._week.dow,this.lang()._week.doy).year;return null==t?e:this.add("y",t-e)},isoWeekYear:function(t){var e=re(this,1,4).year;return null==t?e:this.add("y",t-e)},week:function(t){var e=this.lang().week(this);return null==t?e:this.add("d",7*(t-e))},isoWeek:function(t){var e=re(this,1,4).week;return null==t?e:this.add("d",7*(t-e))},weekday:function(t){var e=(this.day()+7-this.lang()._week.dow)%7;return null==t?e:this.add("d",t-e)},isoWeekday:function(t){return null==t?this.day()||7:this.day(this.day()%7?t:t-7)},isoWeeksInYear:function(){return D(this.year(),1,4)},weeksInYear:function(){var t=this._lang._week;return D(this.year(),t.dow,t.doy)},get:function(t){return t=w(t),this[t]()},set:function(t,e){return t=w(t),"function"==typeof this[t]&&this[t](e),this},lang:function(t){return t===n?this._lang:(this._lang=P(t),this)}}),ve.fn.millisecond=ve.fn.milliseconds=ue("Milliseconds",!1),ve.fn.second=ve.fn.seconds=ue("Seconds",!1),ve.fn.minute=ve.fn.minutes=ue("Minutes",!1),ve.fn.hour=ve.fn.hours=ue("Hours",!0),ve.fn.date=ue("Date",!0),ve.fn.dates=h("dates accessor is deprecated. Use date instead.",ue("Date",!0)),ve.fn.year=ue("FullYear",!0),ve.fn.years=h("years accessor is deprecated. Use year instead.",ue("FullYear",!0)),ve.fn.days=ve.fn.day,ve.fn.months=ve.fn.month,ve.fn.weeks=ve.fn.week,ve.fn.isoWeeks=ve.fn.isoWeek,ve.fn.quarters=ve.fn.quarter,ve.fn.toJSON=ve.fn.toISOString,f(ve.duration.fn=u.prototype,{_bubble:function(){var t,e,i,s,o=this._milliseconds,n=this._days,r=this._months,a=this._data;a.milliseconds=o%1e3,t=g(o/1e3),a.seconds=t%60,e=g(t/60),a.minutes=e%60,i=g(e/60),a.hours=i%24,n+=g(i/24),a.days=n%30,r+=g(n/30),a.months=r%12,s=g(r/12),a.years=s},weeks:function(){return g(this.days()/7)},valueOf:function(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*C(this._months/12)},humanize:function(t){var e=+this,i=ne(e,!t,this.lang());return t&&(i=this.lang().pastFuture(e,i)),this.lang().postformat(i)},add:function(t,e){var i=ve.duration(t,e);return this._milliseconds+=i._milliseconds,this._days+=i._days,this._months+=i._months,this._bubble(),this},subtract:function(t,e){var i=ve.duration(t,e);return this._milliseconds-=i._milliseconds,this._days-=i._days,this._months-=i._months,this._bubble(),this},get:function(t){return t=w(t),this[t.toLowerCase()+"s"]()},as:function(t){return t=w(t),this["as"+t.charAt(0).toUpperCase()+t.slice(1)+"s"]()},lang:ve.fn.lang,toIsoString:function(){var t=Math.abs(this.years()),e=Math.abs(this.months()),i=Math.abs(this.days()),s=Math.abs(this.hours()),o=Math.abs(this.minutes()),n=Math.abs(this.seconds()+this.milliseconds()/1e3);return this.asSeconds()?(this.asSeconds()<0?"-":"")+"P"+(t?t+"Y":"")+(e?e+"M":"")+(i?i+"D":"")+(s||o||n?"T":"")+(s?s+"H":"")+(o?o+"M":"")+(n?n+"S":""):"P0D"}});for(be in ni)ni.hasOwnProperty(be)&&(me(be,ni[be]),fe(be.toLowerCase()));me("Weeks",6048e5),ve.duration.fn.asMonths=function(){return(+this-31536e6*this.years())/2592e6+12*this.years()},ve.lang("en",{ordinal:function(t){var e=t%10,i=1===C(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th";return t+i}}),Ne?o.exports=ve:(s=function(t,e,i){return i.config&&i.config()&&i.config().noGlobal===!0&&(xe.moment=ye),ve}.call(e,i,e,o),!(s!==n&&(o.exports=s)),ge(!0))}).call(this)}).call(e,function(){return this}(),i(61)(t))},function(t,e){e.startWithClustering=function(){this.clusterToFit(this.constants.clustering.initialMaxNodes,!0),this.updateLabels(),this.stabilize&&this._stabilize(),this.start()},e.clusterToFit=function(t,e){for(var i=this.nodeIndices.length,s=50,o=0;i>t&&s>o;)o%3==0?(this.forceAggregateHubs(!0),this.normalizeClusterLevels()):this.increaseClusterLevel(),i=this.nodeIndices.length,o+=1;o>0&&1==e&&this.repositionNodes(),this._updateCalculationNodes()},e.openCluster=function(t){var e=this.moving;if(t.clusterSize>this.constants.clustering.sectorThreshold&&this._nodeInActiveArea(t)&&("default"!=this._sector()||1!=this.nodeIndices.length)){this._addSector(t);for(var i=0;this.nodeIndices.lengthi;)this.decreaseClusterLevel(),i+=1}else this._expandClusterNode(t,!1,!0),this._updateNodeIndexList(),this._updateDynamicEdges(),this._updateCalculationNodes(),this.updateLabels();this.moving!=e&&this.start()},e.updateClustersDefault=function(){1==this.constants.clustering.enabled&&this.updateClusters(0,!1,!1)},e.increaseClusterLevel=function(){this.updateClusters(-1,!1,!0)},e.decreaseClusterLevel=function(){this.updateClusters(1,!1,!0)},e.updateClusters=function(t,e,i,s){var o=this.moving,n=this.nodeIndices.length;this.previousScale>this.scale&&0==t&&this._collapseSector(),this.previousScale>this.scale||-1==t?this._formClusters(i):(this.previousScalethis.scale||-1==t)&&(this._aggregateHubs(i),this._updateNodeIndexList()),(this.previousScale>this.scale||-1==t)&&(this.handleChains(),this._updateNodeIndexList()),this.previousScale=this.scale,this._updateDynamicEdges(),this.updateLabels(),this.nodeIndices.lengththis.constants.clustering.chainThreshold&&this._reduceAmountOfChains(1-this.constants.clustering.chainThreshold/t)},e._aggregateHubs=function(t){this._getHubSize(),this._formClustersByHub(t,!1)},e.forceAggregateHubs=function(t){var e=this.moving,i=this.nodeIndices.length;this._aggregateHubs(!0),this._updateNodeIndexList(),this._updateDynamicEdges(),this.updateLabels(),this.nodeIndices.length!=i&&(this.clusterSession+=1),(0==t||void 0===t)&&this.moving!=e&&this.start()},e._openClustersBySize=function(){for(var t in this.nodes)if(this.nodes.hasOwnProperty(t)){var e=this.nodes[t];1==e.inView()&&(e.width*this.scale>this.constants.clustering.screenSizeThreshold*this.frame.canvas.clientWidth||e.height*this.scale>this.constants.clustering.screenSizeThreshold*this.frame.canvas.clientHeight)&&this.openCluster(e)}},e._openClusters=function(t,e){for(var i=0;i1&&(t.clusterSizei)){var r=n.from,a=n.to;n.to.options.mass>n.from.options.mass&&(r=n.to,a=n.from),1==a.dynamicEdgesLength?this._addToCluster(r,a,!1):1==r.dynamicEdgesLength&&this._addToCluster(a,r,!1)}}},e._forceClustersByZoom=function(){for(var t in this.nodes)if(this.nodes.hasOwnProperty(t)){var e=this.nodes[t];if(1==e.dynamicEdgesLength&&0!=e.dynamicEdges.length){var i=e.dynamicEdges[0],s=i.toId==e.id?this.nodes[i.fromId]:this.nodes[i.toId];e.id!=s.id&&(s.options.mass>e.options.mass?this._addToCluster(s,e,!0):this._addToCluster(e,s,!0))}}},e._clusterToSmallestNeighbour=function(t){for(var e=-1,i=null,s=0;so.clusterSessions.length&&(e=o.clusterSessions.length,i=o)}null!=o&&void 0!==this.nodes[o.id]&&this._addToCluster(o,t,!0)},e._formClustersByHub=function(t,e){for(var i in this.nodes)this.nodes.hasOwnProperty(i)&&this._formClusterFromHub(this.nodes[i],t,e)},e._formClusterFromHub=function(t,e,i,s){if(void 0===s&&(s=0),t.dynamicEdgesLength>=this.hubThreshold&&0==i||t.dynamicEdgesLength==this.hubThreshold&&1==i){for(var o,n,r,a=this.constants.clustering.clusterEdgeThreshold/this.scale,h=!1,d=[],l=t.dynamicEdges.length,c=0;l>c;c++)d.push(t.dynamicEdges[c].id);if(0==e)for(h=!1,c=0;l>c;c++){var p=this.edges[d[c]];if(void 0!==p&&p.connected&&p.toId!=p.fromId&&(o=p.to.x-p.from.x,n=p.to.y-p.from.y,r=Math.sqrt(o*o+n*n),a>r)){h=!0;break}}if(!e&&h||e)for(c=0;l>c;c++)if(p=this.edges[d[c]],void 0!==p){var u=this.nodes[p.fromId==t.id?p.toId:p.fromId];u.dynamicEdges.length<=this.hubThreshold+s&&u.id!=t.id&&this._addToCluster(t,u,e)}}},e._addToCluster=function(t,e,i){t.containedNodes[e.id]=e;for(var s=0;s1)for(var s=0;s1&&(e.label="[".concat(String(e.clusterSize),"]"))}for(t in this.nodes)this.nodes.hasOwnProperty(t)&&(e=this.nodes[t],1==e.clusterSize&&(e.label=void 0!==e.originalLabel?e.originalLabel:String(e.id)))},e.normalizeClusterLevels=function(){var t,e=0,i=1e9,s=0;for(t in this.nodes)this.nodes.hasOwnProperty(t)&&(s=this.nodes[t].clusterSessions.length,s>e&&(e=s),i>s&&(i=s));if(e-i>this.constants.clustering.clusterLevelDifference){var o=this.nodeIndices.length,n=e-this.constants.clustering.clusterLevelDifference;for(t in this.nodes)this.nodes.hasOwnProperty(t)&&this.nodes[t].clusterSessions.lengths&&(s=n.dynamicEdgesLength),t+=n.dynamicEdgesLength,e+=Math.pow(n.dynamicEdgesLength,2),i+=1}t/=i,e/=i;var r=e-Math.pow(t,2),a=Math.sqrt(r);this.hubThreshold=Math.floor(t+2*a),this.hubThreshold>s&&(this.hubThreshold=s)},e._reduceAmountOfChains=function(t){this.hubThreshold=2;var e=Math.floor(this.nodeIndices.length*t);for(var i in this.nodes)this.nodes.hasOwnProperty(i)&&2==this.nodes[i].dynamicEdgesLength&&this.nodes[i].dynamicEdges.length>=2&&e>0&&(this._formClusterFromHub(this.nodes[i],!0,!0,1),e-=1)},e._getChainFraction=function(){var t=0,e=0;for(var i in this.nodes)this.nodes.hasOwnProperty(i)&&(2==this.nodes[i].dynamicEdgesLength&&this.nodes[i].dynamicEdges.length>=2&&(t+=1),e+=1);return t/e}},function(t,e,i){var s=i(2);e._putDataInSector=function(){this.sectors.active[this._sector()].nodes=this.nodes,this.sectors.active[this._sector()].edges=this.edges,this.sectors.active[this._sector()].nodeIndices=this.nodeIndices},e._switchToSector=function(t,e){void 0===e||"active"==e?this._switchToActiveSector(t):this._switchToFrozenSector(t)},e._switchToActiveSector=function(t){this.nodeIndices=this.sectors.active[t].nodeIndices,this.nodes=this.sectors.active[t].nodes,this.edges=this.sectors.active[t].edges},e._switchToSupportSector=function(){this.nodeIndices=this.sectors.support.nodeIndices,this.nodes=this.sectors.support.nodes,this.edges=this.sectors.support.edges},e._switchToFrozenSector=function(t){this.nodeIndices=this.sectors.frozen[t].nodeIndices,this.nodes=this.sectors.frozen[t].nodes,this.edges=this.sectors.frozen[t].edges},e._loadLatestSector=function(){this._switchToSector(this._sector())},e._sector=function(){return this.activeSector[this.activeSector.length-1]},e._previousSector=function(){if(this.activeSector.length>1)return this.activeSector[this.activeSector.length-2];throw new TypeError("there are not enough sectors in the this.activeSector array.")},e._setActiveSector=function(t){this.activeSector.push(t)},e._forgetLastSector=function(){this.activeSector.pop()},e._createNewSector=function(t){this.sectors.active[t]={nodes:{},edges:{},nodeIndices:[],formationScale:this.scale,drawingNode:void 0},this.sectors.active[t].drawingNode=new Node({id:t,color:{background:"#eaefef",border:"495c5e"}},{},{},this.constants),this.sectors.active[t].drawingNode.clusterSize=2},e._deleteActiveSector=function(t){delete this.sectors.active[t]},e._deleteFrozenSector=function(t){delete this.sectors.frozen[t]},e._freezeSector=function(t){this.sectors.frozen[t]=this.sectors.active[t],this._deleteActiveSector(t)},e._activateSector=function(t){this.sectors.active[t]=this.sectors.frozen[t],this._deleteFrozenSector(t)},e._mergeThisWithFrozen=function(t){for(var e in this.nodes)this.nodes.hasOwnProperty(e)&&(this.sectors.frozen[t].nodes[e]=this.nodes[e]);for(var i in this.edges)this.edges.hasOwnProperty(i)&&(this.sectors.frozen[t].edges[i]=this.edges[i]);for(var s=0;s1?this[t](s[0],s[1]):this[t](e)}this._loadLatestSector()},e._doInSupportSector=function(t,e){if(void 0===e)this._switchToSupportSector(),this[t]();else{this._switchToSupportSector();var i=Array.prototype.splice.call(arguments,1);i.length>1?this[t](i[0],i[1]):this[t](e)}this._loadLatestSector()},e._doInAllFrozenSectors=function(t,e){if(void 0===e)for(var i in this.sectors.frozen)this.sectors.frozen.hasOwnProperty(i)&&(this._switchToFrozenSector(i),this[t]());else for(var i in this.sectors.frozen)if(this.sectors.frozen.hasOwnProperty(i)){this._switchToFrozenSector(i);var s=Array.prototype.splice.call(arguments,1);s.length>1?this[t](s[0],s[1]):this[t](e)}this._loadLatestSector()},e._doInAllSectors=function(t,e){var i=Array.prototype.splice.call(arguments,1);void 0===e?(this._doInAllActiveSectors(t),this._doInAllFrozenSectors(t)):i.length>1?(this._doInAllActiveSectors(t,i[0],i[1]),this._doInAllFrozenSectors(t,i[0],i[1])):(this._doInAllActiveSectors(t,e),this._doInAllFrozenSectors(t,e))},e._clearNodeIndexList=function(){var t=this._sector();this.sectors.active[t].nodeIndices=[],this.nodeIndices=this.sectors.active[t].nodeIndices},e._drawSectorNodes=function(t,e){var i,s=1e9,o=-1e9,n=1e9,r=-1e9;for(var a in this.sectors[e])if(this.sectors[e].hasOwnProperty(a)&&void 0!==this.sectors[e][a].drawingNode){this._switchToSector(a,e),s=1e9,o=-1e9,n=1e9,r=-1e9;for(var h in this.nodes)this.nodes.hasOwnProperty(h)&&(i=this.nodes[h],i.resize(t),n>i.x-.5*i.width&&(n=i.x-.5*i.width),ri.y-.5*i.height&&(s=i.y-.5*i.height),o0?this.nodes[i[i.length-1]]:null},e._getEdgesOverlappingWith=function(t,e){var i=this.edges;for(var s in i)i.hasOwnProperty(s)&&i[s].isOverlappingWith(t)&&e.push(s)},e._getAllEdgesOverlappingWith=function(t){var e=[];return this._doInAllActiveSectors("_getEdgesOverlappingWith",t,e),e},e._getEdgeAt=function(t){var e=this._pointerToPositionObject(t),i=this._getAllEdgesOverlappingWith(e);return i.length>0?this.edges[i[i.length-1]]:null},e._addToSelection=function(t){t instanceof s?this.selectionObj.nodes[t.id]=t:this.selectionObj.edges[t.id]=t},e._addToHover=function(t){t instanceof s?this.hoverObj.nodes[t.id]=t:this.hoverObj.edges[t.id]=t},e._removeFromSelection=function(t){t instanceof s?delete this.selectionObj.nodes[t.id]:delete this.selectionObj.edges[t.id]},e._unselectAll=function(t){void 0===t&&(t=!1);for(var e in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(e)&&this.selectionObj.nodes[e].unselect();for(var i in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(i)&&this.selectionObj.edges[i].unselect();this.selectionObj={nodes:{},edges:{}},0==t&&this.emit("select",this.getSelection())},e._unselectClusters=function(t){void 0===t&&(t=!1);for(var e in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(e)&&this.selectionObj.nodes[e].clusterSize>1&&(this.selectionObj.nodes[e].unselect(),this._removeFromSelection(this.selectionObj.nodes[e]));0==t&&this.emit("select",this.getSelection())},e._getSelectedNodeCount=function(){var t=0;for(var e in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(e)&&(t+=1);return t},e._getSelectedNode=function(){for(var t in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(t))return this.selectionObj.nodes[t];return null},e._getSelectedEdge=function(){for(var t in this.selectionObj.edges)if(this.selectionObj.edges.hasOwnProperty(t))return this.selectionObj.edges[t];return null},e._getSelectedEdgeCount=function(){var t=0;for(var e in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(e)&&(t+=1);return t},e._getSelectedObjectCount=function(){var t=0;for(var e in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(e)&&(t+=1);for(var i in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(i)&&(t+=1);return t},e._selectionIsEmpty=function(){for(var t in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(t))return!1;for(var e in this.selectionObj.edges)if(this.selectionObj.edges.hasOwnProperty(e))return!1;return!0},e._clusterInSelection=function(){for(var t in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(t)&&this.selectionObj.nodes[t].clusterSize>1)return!0;return!1},e._selectConnectedEdges=function(t){for(var e=0;ee;e++){s=t[e];var o=this.nodes[s];if(!o)throw new RangeError('Node with id "'+s+'" not found');this._selectObject(o,!0,!0)}console.log("setSelection is deprecated. Please use selectNodes instead."),this.redraw()},e.selectNodes=function(t,e){var i,s,o;if(!t||void 0==t.length)throw"Selection must be an array with ids";for(this._unselectAll(!0),i=0,s=t.length;s>i;i++){o=t[i]; +var n=this.nodes[o];if(!n)throw new RangeError('Node with id "'+o+'" not found');this._selectObject(n,!0,!0,e)}this.redraw()},e.selectEdges=function(t){var e,i,s;if(!t||void 0==t.length)throw"Selection must be an array with ids";for(this._unselectAll(!0),e=0,i=t.length;i>e;e++){s=t[e];var o=this.edges[s];if(!o)throw new RangeError('Edge with id "'+s+'" not found');this._selectObject(o,!0,!0,highlightEdges)}this.redraw()},e._updateSelection=function(){for(var t in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(t)&&(this.nodes.hasOwnProperty(t)||delete this.selectionObj.nodes[t]);for(var e in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(e)&&(this.edges.hasOwnProperty(e)||delete this.selectionObj.edges[e])}},function(t,e,i){var s=i(2),o=i(36),n=i(33);e._clearManipulatorBar=function(){for(;this.manipulationDiv.hasChildNodes();)this.manipulationDiv.removeChild(this.manipulationDiv.firstChild)},e._restoreOverloadedFunctions=function(){for(var t in this.cachedFunctions)this.cachedFunctions.hasOwnProperty(t)&&(this[t]=this.cachedFunctions[t])},e._toggleEditMode=function(){this.editMode=!this.editMode;var t=document.getElementById("network-manipulationDiv"),e=document.getElementById("network-manipulation-closeDiv"),i=document.getElementById("network-manipulation-editMode");1==this.editMode?(t.style.display="block",e.style.display="block",i.style.display="none",e.onclick=this._toggleEditMode.bind(this)):(t.style.display="none",e.style.display="none",i.style.display="block",e.onclick=null),this._createManipulatorBar()},e._createManipulatorBar=function(){if(this.boundFunction&&this.off("select",this.boundFunction),void 0!==this.edgeBeingEdited&&(this.edgeBeingEdited._disableControlNodes(),this.edgeBeingEdited=void 0,this.selectedControlNode=null,this.controlNodesActive=!1),this._restoreOverloadedFunctions(),this.freezeSimulation=!1,this.blockConnectingEdgeSelection=!1,this.forceAppendSelection=!1,1==this.editMode){for(;this.manipulationDiv.hasChildNodes();)this.manipulationDiv.removeChild(this.manipulationDiv.firstChild);this.manipulationDiv.innerHTML=""+this.constants.labels.add+"
"+this.constants.labels.link+"",1==this._getSelectedNodeCount()&&this.triggerFunctions.edit?this.manipulationDiv.innerHTML+="
"+this.constants.labels.editNode+"":1==this._getSelectedEdgeCount()&&0==this._getSelectedNodeCount()&&(this.manipulationDiv.innerHTML+="
"+this.constants.labels.editEdge+""),0==this._selectionIsEmpty()&&(this.manipulationDiv.innerHTML+="
"+this.constants.labels.del+"");var t=document.getElementById("network-manipulate-addNode");t.onclick=this._createAddNodeToolbar.bind(this);var e=document.getElementById("network-manipulate-connectNode");if(e.onclick=this._createAddEdgeToolbar.bind(this),1==this._getSelectedNodeCount()&&this.triggerFunctions.edit){var i=document.getElementById("network-manipulate-editNode");i.onclick=this._editNode.bind(this)}else if(1==this._getSelectedEdgeCount()&&0==this._getSelectedNodeCount()){var i=document.getElementById("network-manipulate-editEdge");i.onclick=this._createEditEdgeToolbar.bind(this)}if(0==this._selectionIsEmpty()){var s=document.getElementById("network-manipulate-delete");s.onclick=this._deleteSelected.bind(this)}var o=document.getElementById("network-manipulation-closeDiv");o.onclick=this._toggleEditMode.bind(this),this.boundFunction=this._createManipulatorBar.bind(this),this.on("select",this.boundFunction)}else{this.editModeDiv.innerHTML=""+this.constants.labels.edit+"";var n=document.getElementById("network-manipulate-editModeButton");n.onclick=this._toggleEditMode.bind(this)}},e._createAddNodeToolbar=function(){this._clearManipulatorBar(),this.boundFunction&&this.off("select",this.boundFunction),this.manipulationDiv.innerHTML=""+this.constants.labels.back+"
"+this.constants.labels.addDescription+"";var t=document.getElementById("network-manipulate-back");t.onclick=this._createManipulatorBar.bind(this),this.boundFunction=this._addNode.bind(this),this.on("select",this.boundFunction)},e._createAddEdgeToolbar=function(){this._clearManipulatorBar(),this._unselectAll(!0),this.freezeSimulation=!0,this.boundFunction&&this.off("select",this.boundFunction),this._unselectAll(),this.forceAppendSelection=!1,this.blockConnectingEdgeSelection=!0,this.manipulationDiv.innerHTML=""+this.constants.labels.back+"
"+this.constants.labels.linkDescription+"";var t=document.getElementById("network-manipulate-back");t.onclick=this._createManipulatorBar.bind(this),this.boundFunction=this._handleConnect.bind(this),this.on("select",this.boundFunction),this.cachedFunctions._handleTouch=this._handleTouch,this.cachedFunctions._handleOnRelease=this._handleOnRelease,this._handleTouch=this._handleConnect,this._handleOnRelease=this._finishConnect,this._redraw()},e._createEditEdgeToolbar=function(){this._clearManipulatorBar(),this.controlNodesActive=!0,this.boundFunction&&this.off("select",this.boundFunction),this.edgeBeingEdited=this._getSelectedEdge(),this.edgeBeingEdited._enableControlNodes(),this.manipulationDiv.innerHTML=""+this.constants.labels.back+"
"+this.constants.labels.editEdgeDescription+"";var t=document.getElementById("network-manipulate-back");t.onclick=this._createManipulatorBar.bind(this),this.cachedFunctions._handleTouch=this._handleTouch,this.cachedFunctions._handleOnRelease=this._handleOnRelease,this.cachedFunctions._handleTap=this._handleTap,this.cachedFunctions._handleDragStart=this._handleDragStart,this.cachedFunctions._handleOnDrag=this._handleOnDrag,this._handleTouch=this._selectControlNode,this._handleTap=function(){},this._handleOnDrag=this._controlNodeDrag,this._handleDragStart=function(){},this._handleOnRelease=this._releaseControlNode,this._redraw()},e._selectControlNode=function(t){this.edgeBeingEdited.controlNodes.from.unselect(),this.edgeBeingEdited.controlNodes.to.unselect(),this.selectedControlNode=this.edgeBeingEdited._getSelectedControlNode(this._XconvertDOMtoCanvas(t.x),this._YconvertDOMtoCanvas(t.y)),null!==this.selectedControlNode&&(this.selectedControlNode.select(),this.freezeSimulation=!0),this._redraw()},e._controlNodeDrag=function(t){var e=this._getPointer(t.gesture.center);null!==this.selectedControlNode&&void 0!==this.selectedControlNode&&(this.selectedControlNode.x=this._XconvertDOMtoCanvas(e.x),this.selectedControlNode.y=this._YconvertDOMtoCanvas(e.y)),this._redraw()},e._releaseControlNode=function(t){var e=this._getNodeAt(t);null!=e?(1==this.edgeBeingEdited.controlNodes.from.selected&&(this._editEdge(e.id,this.edgeBeingEdited.to.id),this.edgeBeingEdited.controlNodes.from.unselect()),1==this.edgeBeingEdited.controlNodes.to.selected&&(this._editEdge(this.edgeBeingEdited.from.id,e.id),this.edgeBeingEdited.controlNodes.to.unselect())):this.edgeBeingEdited._restoreControlNodes(),this.freezeSimulation=!1,this._redraw()},e._handleConnect=function(t){if(0==this._getSelectedNodeCount()){var e=this._getNodeAt(t);null!=e&&(e.clusterSize>1?alert("Cannot create edges to a cluster."):(this._selectObject(e,!1),this.sectors.support.nodes.targetNode=new o({id:"targetNode"},{},{},this.constants),this.sectors.support.nodes.targetNode.x=e.x,this.sectors.support.nodes.targetNode.y=e.y,this.sectors.support.nodes.targetViaNode=new o({id:"targetViaNode"},{},{},this.constants),this.sectors.support.nodes.targetViaNode.x=e.x,this.sectors.support.nodes.targetViaNode.y=e.y,this.sectors.support.nodes.targetViaNode.parentEdgeId="connectionEdge",this.edges.connectionEdge=new n({id:"connectionEdge",from:e.id,to:this.sectors.support.nodes.targetNode.id},this,this.constants),this.edges.connectionEdge.from=e,this.edges.connectionEdge.connected=!0,this.edges.connectionEdge.smooth=!0,this.edges.connectionEdge.selected=!0,this.edges.connectionEdge.to=this.sectors.support.nodes.targetNode,this.edges.connectionEdge.via=this.sectors.support.nodes.targetViaNode,this.cachedFunctions._handleOnDrag=this._handleOnDrag,this._handleOnDrag=function(t){var e=this._getPointer(t.gesture.center);this.sectors.support.nodes.targetNode.x=this._XconvertDOMtoCanvas(e.x),this.sectors.support.nodes.targetNode.y=this._YconvertDOMtoCanvas(e.y),this.sectors.support.nodes.targetViaNode.x=.5*(this._XconvertDOMtoCanvas(e.x)+this.edges.connectionEdge.from.x),this.sectors.support.nodes.targetViaNode.y=this._YconvertDOMtoCanvas(e.y)},this.moving=!0,this.start()))}},e._finishConnect=function(t){if(1==this._getSelectedNodeCount()){this._handleOnDrag=this.cachedFunctions._handleOnDrag,delete this.cachedFunctions._handleOnDrag;var e=this.edges.connectionEdge.fromId;delete this.edges.connectionEdge,delete this.sectors.support.nodes.targetNode,delete this.sectors.support.nodes.targetViaNode;var i=this._getNodeAt(t);null!=i&&(i.clusterSize>1?alert("Cannot create edges to a cluster."):(this._createEdge(e,i.id),this._createManipulatorBar())),this._unselectAll()}},e._addNode=function(){if(this._selectionIsEmpty()&&1==this.editMode){var t=this._pointerToPositionObject(this.pointerPosition),e={id:s.randomUUID(),x:t.left,y:t.top,label:"new",allowedToMoveX:!0,allowedToMoveY:!0};if(this.triggerFunctions.add)if(2==this.triggerFunctions.add.length){var i=this;this.triggerFunctions.add(e,function(t){i.nodesData.add(t),i._createManipulatorBar(),i.moving=!0,i.start()})}else alert(this.constants.labels.addError),this._createManipulatorBar(),this.moving=!0,this.start();else this.nodesData.add(e),this._createManipulatorBar(),this.moving=!0,this.start()}},e._createEdge=function(t,e){if(1==this.editMode){var i={from:t,to:e};if(this.triggerFunctions.connect)if(2==this.triggerFunctions.connect.length){var s=this;this.triggerFunctions.connect(i,function(t){s.edgesData.add(t),s.moving=!0,s.start()})}else alert(this.constants.labels.linkError),this.moving=!0,this.start();else this.edgesData.add(i),this.moving=!0,this.start()}},e._editEdge=function(t,e){if(1==this.editMode){var i={id:this.edgeBeingEdited.id,from:t,to:e};if(this.triggerFunctions.editEdge)if(2==this.triggerFunctions.editEdge.length){var s=this;this.triggerFunctions.editEdge(i,function(t){s.edgesData.update(t),s.moving=!0,s.start()})}else alert(this.constants.labels.linkError),this.moving=!0,this.start();else this.edgesData.update(i),this.moving=!0,this.start()}},e._editNode=function(){if(this.triggerFunctions.edit&&1==this.editMode){var t=this._getSelectedNode(),e={id:t.id,label:t.label,group:t.options.group,shape:t.options.shape,color:{background:t.options.color.background,border:t.options.color.border,highlight:{background:t.options.color.highlight.background,border:t.options.color.highlight.border}}};if(2==this.triggerFunctions.edit.length){var i=this;this.triggerFunctions.edit(e,function(t){i.nodesData.update(t),i._createManipulatorBar(),i.moving=!0,i.start()})}else alert(this.constants.labels.editError)}else alert(this.constants.labels.editBoundError)},e._deleteSelected=function(){if(!this._selectionIsEmpty()&&1==this.editMode)if(this._clusterInSelection())alert(this.constants.labels.deleteClusterError);else{var t=this.getSelectedNodes(),e=this.getSelectedEdges();if(this.triggerFunctions.del){var i=this,s={nodes:t,edges:e};(this.triggerFunctions.del.length=2)?this.triggerFunctions.del(s,function(t){i.edgesData.remove(t.edges),i.nodesData.remove(t.nodes),i._unselectAll(),i.moving=!0,i.start()}):alert(this.constants.labels.deleteError)}else this.edgesData.remove(e),this.nodesData.remove(t),this._unselectAll(),this.moving=!0,this.start()}}},function(t,e,i){var s=i(2),o=i(40);e._cleanNavigation=function(){var t=document.getElementById("network-navigation_wrapper");null!=t&&this.containerElement.removeChild(t),document.onmouseup=null},e._loadNavigationElements=function(){this._cleanNavigation(),this.navigationDivs={};var t=["up","down","left","right","zoomIn","zoomOut","zoomExtends"],e=["_moveUp","_moveDown","_moveLeft","_moveRight","_zoomIn","_zoomOut","zoomExtent"];this.navigationDivs.wrapper=document.createElement("div"),this.navigationDivs.wrapper.id="network-navigation_wrapper",this.navigationDivs.wrapper.style.position="absolute",this.navigationDivs.wrapper.style.width=this.frame.canvas.clientWidth+"px",this.navigationDivs.wrapper.style.height=this.frame.canvas.clientHeight+"px",this.containerElement.insertBefore(this.navigationDivs.wrapper,this.frame);for(var i=this,s=0;s0){"RL"==this.constants.hierarchicalLayout.direction||"DU"==this.constants.hierarchicalLayout.direction?this.constants.hierarchicalLayout.levelSeparation*=-1:this.constants.hierarchicalLayout.levelSeparation=Math.abs(this.constants.hierarchicalLayout.levelSeparation),"RL"==this.constants.hierarchicalLayout.direction||"LR"==this.constants.hierarchicalLayout.direction?1==this.constants.smoothCurves.enabled&&(this.constants.smoothCurves.type="vertical"):1==this.constants.smoothCurves.enabled&&(this.constants.smoothCurves.type="horizontal");var t,e,i=0,s=!1,o=!1;for(e in this.nodes)this.nodes.hasOwnProperty(e)&&(t=this.nodes[e],-1!=t.level?s=!0:o=!0,is&&(n.xFixed=!1,n.x=i[n.level].minPos,r=!0):n.yFixed&&n.level>s&&(n.yFixed=!1,n.y=i[n.level].minPos,r=!0),1==r&&(i[n.level].minPos+=i[n.level].nodeSpacing,n.edges.length>1&&this._placeBranchNodes(n.edges,n.id,i,n.level))}},e._setLevel=function(t,e,i){for(var s=0;st)&&(o.level=t,e.length>1&&this._setLevel(t+1,o.edges,o.id))}},e._restoreNodes=function(){for(var t in this.nodes)this.nodes.hasOwnProperty(t)&&(this.nodes[t].xFixed=!1,this.nodes[t].yFixed=!1)}},function(t,e,i){function s(){this.constants.smoothCurves.enabled=!this.constants.smoothCurves.enabled;var t=document.getElementById("graph_toggleSmooth");t.style.background=1==this.constants.smoothCurves.enabled?"#A4FF56":"#FF8532",this._configureSmoothCurves(!1)}function o(){for(var t in this.calculationNodes)this.calculationNodes.hasOwnProperty(t)&&(this.calculationNodes[t].vx=0,this.calculationNodes[t].vy=0,this.calculationNodes[t].fx=0,this.calculationNodes[t].fy=0);1==this.constants.hierarchicalLayout.enabled?(this._setupHierarchicalLayout(),a.call(this,"graph_H_nd",1,"physics_hierarchicalRepulsion_nodeDistance"),a.call(this,"graph_H_cg",1,"physics_centralGravity"),a.call(this,"graph_H_sc",1,"physics_springConstant"),a.call(this,"graph_H_sl",1,"physics_springLength"),a.call(this,"graph_H_damp",1,"physics_damping")):this.repositionNodes(),this.moving=!0,this.start()}function n(){var t="No options are required, default values used.",e=[],i=document.getElementById("graph_physicsMethod1"),s=document.getElementById("graph_physicsMethod2");if(1==i.checked){if(this.constants.physics.barnesHut.gravitationalConstant!=this.backupConstants.physics.barnesHut.gravitationalConstant&&e.push("gravitationalConstant: "+this.constants.physics.barnesHut.gravitationalConstant),this.constants.physics.centralGravity!=this.backupConstants.physics.barnesHut.centralGravity&&e.push("centralGravity: "+this.constants.physics.centralGravity),this.constants.physics.springLength!=this.backupConstants.physics.barnesHut.springLength&&e.push("springLength: "+this.constants.physics.springLength),this.constants.physics.springConstant!=this.backupConstants.physics.barnesHut.springConstant&&e.push("springConstant: "+this.constants.physics.springConstant),this.constants.physics.damping!=this.backupConstants.physics.barnesHut.damping&&e.push("damping: "+this.constants.physics.damping),0!=e.length){t="var options = {",t+="physics: {barnesHut: {";for(var o=0;othis.constants.clustering.clusterThreshold&&1==this.constants.clustering.enabled&&this.clusterToFit(this.constants.clustering.reduceToNodes,!1),this._calculateForces())},e._calculateForces=function(){this._calculateGravitationalForces(),this._calculateNodeForces(),this.constants.physics.springConstant>0&&(1==this.constants.smoothCurves.enabled&&1==this.constants.smoothCurves.dynamic?this._calculateSpringForcesWithSupport():1==this.constants.physics.hierarchicalRepulsion.enabled?this._calculateHierarchicalSpringForces():this._calculateSpringForces())},e._updateCalculationNodes=function(){if(1==this.constants.smoothCurves.enabled&&1==this.constants.smoothCurves.dynamic){this.calculationNodes={},this.calculationNodeIndices=[];for(var t in this.nodes)this.nodes.hasOwnProperty(t)&&(this.calculationNodes[t]=this.nodes[t]);var e=this.sectors.support.nodes;for(var i in e)e.hasOwnProperty(i)&&(this.edges.hasOwnProperty(e[i].parentEdgeId)?this.calculationNodes[i]=e[i]:e[i]._setForce(0,0));for(var s in this.calculationNodes)this.calculationNodes.hasOwnProperty(s)&&this.calculationNodeIndices.push(s)}else this.calculationNodes=this.nodes,this.calculationNodeIndices=this.nodeIndices},e._calculateGravitationalForces=function(){var t,e,i,s,o,n=this.calculationNodes,r=this.constants.physics.centralGravity,a=0;for(o=0;oSimulation Mode:Barnes HutRepulsionHierarchical
Options:
',this.containerElement.parentElement.insertBefore(this.physicsConfiguration,this.containerElement),this.optionsDiv=document.createElement("div"),this.optionsDiv.style.fontSize="14px",this.optionsDiv.style.fontFamily="verdana",this.containerElement.parentElement.insertBefore(this.optionsDiv,this.containerElement); var e;e=document.getElementById("graph_BH_gc"),e.onchange=a.bind(this,"graph_BH_gc",-1,"physics_barnesHut_gravitationalConstant"),e=document.getElementById("graph_BH_cg"),e.onchange=a.bind(this,"graph_BH_cg",1,"physics_centralGravity"),e=document.getElementById("graph_BH_sc"),e.onchange=a.bind(this,"graph_BH_sc",1,"physics_springConstant"),e=document.getElementById("graph_BH_sl"),e.onchange=a.bind(this,"graph_BH_sl",1,"physics_springLength"),e=document.getElementById("graph_BH_damp"),e.onchange=a.bind(this,"graph_BH_damp",1,"physics_damping"),e=document.getElementById("graph_R_nd"),e.onchange=a.bind(this,"graph_R_nd",1,"physics_repulsion_nodeDistance"),e=document.getElementById("graph_R_cg"),e.onchange=a.bind(this,"graph_R_cg",1,"physics_centralGravity"),e=document.getElementById("graph_R_sc"),e.onchange=a.bind(this,"graph_R_sc",1,"physics_springConstant"),e=document.getElementById("graph_R_sl"),e.onchange=a.bind(this,"graph_R_sl",1,"physics_springLength"),e=document.getElementById("graph_R_damp"),e.onchange=a.bind(this,"graph_R_damp",1,"physics_damping"),e=document.getElementById("graph_H_nd"),e.onchange=a.bind(this,"graph_H_nd",1,"physics_hierarchicalRepulsion_nodeDistance"),e=document.getElementById("graph_H_cg"),e.onchange=a.bind(this,"graph_H_cg",1,"physics_centralGravity"),e=document.getElementById("graph_H_sc"),e.onchange=a.bind(this,"graph_H_sc",1,"physics_springConstant"),e=document.getElementById("graph_H_sl"),e.onchange=a.bind(this,"graph_H_sl",1,"physics_springLength"),e=document.getElementById("graph_H_damp"),e.onchange=a.bind(this,"graph_H_damp",1,"physics_damping"),e=document.getElementById("graph_H_direction"),e.onchange=a.bind(this,"graph_H_direction",t,"hierarchicalLayout_direction"),e=document.getElementById("graph_H_levsep"),e.onchange=a.bind(this,"graph_H_levsep",1,"hierarchicalLayout_levelSeparation"),e=document.getElementById("graph_H_nspac"),e.onchange=a.bind(this,"graph_H_nspac",1,"hierarchicalLayout_nodeSpacing");var i=document.getElementById("graph_physicsMethod1"),d=document.getElementById("graph_physicsMethod2"),l=document.getElementById("graph_physicsMethod3");d.checked=!0,this.constants.physics.barnesHut.enabled&&(i.checked=!0),this.constants.hierarchicalLayout.enabled&&(l.checked=!0);var c=document.getElementById("graph_toggleSmooth"),p=document.getElementById("graph_repositionNodes"),u=document.getElementById("graph_generateOptions");c.onclick=s.bind(this),p.onclick=o.bind(this),u.onclick=n.bind(this),c.style.background=1==this.constants.smoothCurves&&0==this.constants.dynamicSmoothCurves?"#A4FF56":"#FF8532",r.apply(this),i.onchange=r.bind(this),d.onchange=r.bind(this),l.onchange=r.bind(this)}},e._overWriteGraphConstants=function(t,e){var i=t.split("_");1==i.length?this.constants[i[0]]=e:2==i.length?this.constants[i[0]][i[1]]=e:3==i.length&&(this.constants[i[0]][i[1]][i[2]]=e)}},function(t,e,i){function s(t){return i(o(t))}function o(t){return n[t]||function(){throw new Error("Cannot find module '"+t+"'.")}()}var n={};s.keys=function(){return Object.keys(n)},s.resolve=o,t.exports=s},function(t,e){e._calculateNodeForces=function(){var t,e,i,s,o,n,r,a,h,d,l,c=this.calculationNodes,p=this.calculationNodeIndices,u=-2/3,f=4/3,m=this.constants.physics.repulsion.nodeDistance,g=m;for(d=0;di&&(r=.5*g>i?1:v*i+f,r*=0==n?1:1+n*this.constants.clustering.forceAmplification,r/=i,s=t*r,o=e*r,a.fx-=s,a.fy-=o,h.fx+=s,h.fy+=o)}}},function(t,e){e._calculateNodeForces=function(){var t,e,i,s,o,n,r,a,h,d,l=this.calculationNodes,c=this.calculationNodeIndices,p=this.constants.physics.hierarchicalRepulsion.nodeDistance;for(h=0;hi?-Math.pow(u*i,2)+Math.pow(u*p,2):0,0==i?i=.01:n/=i,s=t*n,o=e*n,r.fx-=s,r.fy-=o,a.fx+=s,a.fy+=o}},e._calculateHierarchicalSpringForces=function(){for(var t,e,i,s,o,n,r,a,h,d=this.edges,l=this.calculationNodes,c=this.calculationNodeIndices,p=0;pn;n++)t=e[i[n]],t.options.mass>0&&(this._getForceContribution(o.root.children.NW,t),this._getForceContribution(o.root.children.NE,t),this._getForceContribution(o.root.children.SW,t),this._getForceContribution(o.root.children.SE,t))}},e._getForceContribution=function(t,e){if(t.childrenCount>0){var i,s,o;if(i=t.centerOfMass.x-e.x,s=t.centerOfMass.y-e.y,o=Math.sqrt(i*i+s*s),o*t.calcSize>this.constants.physics.barnesHut.theta){0==o&&(o=.1*Math.random(),i=o);var n=this.constants.physics.barnesHut.gravitationalConstant*t.mass*e.options.mass/(o*o*o),r=i*n,a=s*n;e.fx+=r,e.fy+=a}else if(4==t.childrenCount)this._getForceContribution(t.children.NW,e),this._getForceContribution(t.children.NE,e),this._getForceContribution(t.children.SW,e),this._getForceContribution(t.children.SE,e);else if(t.children.data.id!=e.id){0==o&&(o=.5*Math.random(),i=o);var n=this.constants.physics.barnesHut.gravitationalConstant*t.mass*e.options.mass/(o*o*o),r=i*n,a=s*n;e.fx+=r,e.fy+=a}}},e._formBarnesHutTree=function(t,e){for(var i,s=e.length,o=Number.MAX_VALUE,n=Number.MAX_VALUE,r=-Number.MAX_VALUE,a=-Number.MAX_VALUE,h=0;s>h;h++){var d=t[e[h]].x,l=t[e[h]].y;t[e[h]].options.mass>0&&(o>d&&(o=d),d>r&&(r=d),n>l&&(n=l),l>a&&(a=l))}var c=Math.abs(r-o)-Math.abs(a-n);c>0?(n-=.5*c,a+=.5*c):(o+=.5*c,r-=.5*c);var p=1e-5,u=Math.max(p,Math.abs(r-o)),f=.5*u,m=.5*(o+r),g=.5*(n+a),v={root:{centerOfMass:{x:0,y:0},mass:0,range:{minX:m-f,maxX:m+f,minY:g-f,maxY:g+f},size:u,calcSize:1/u,children:{data:null},maxWidth:0,level:0,childrenCount:4}};for(this._splitBranch(v.root),h=0;s>h;h++)i=t[e[h]],i.options.mass>0&&this._placeInTree(v.root,i);this.barnesHutTree=v},e._updateBranchMass=function(t,e){var i=t.mass+e.options.mass,s=1/i;t.centerOfMass.x=t.centerOfMass.x*t.mass+e.x*e.options.mass,t.centerOfMass.x*=s,t.centerOfMass.y=t.centerOfMass.y*t.mass+e.y*e.options.mass,t.centerOfMass.y*=s,t.mass=i;var o=Math.max(Math.max(e.height,e.radius),e.width);t.maxWidth=t.maxWidthe.x?t.children.NW.range.maxY>e.y?this._placeInRegion(t,e,"NW"):this._placeInRegion(t,e,"SW"):t.children.NW.range.maxY>e.y?this._placeInRegion(t,e,"NE"):this._placeInRegion(t,e,"SE")},e._placeInRegion=function(t,e,i){switch(t.children[i].childrenCount){case 0:t.children[i].children.data=e,t.children[i].childrenCount=1,this._updateBranchMass(t.children[i],e);break;case 1:t.children[i].children.data.x==e.x&&t.children[i].children.data.y==e.y?(e.x+=Math.random(),e.y+=Math.random()):(this._splitBranch(t.children[i]),this._placeInTree(t.children[i],e));break;case 4:this._placeInTree(t.children[i],e)}},e._splitBranch=function(t){var e=null;1==t.childrenCount&&(e=t.children.data,t.mass=0,t.centerOfMass.x=0,t.centerOfMass.y=0),t.childrenCount=4,t.children.data=null,this._insertRegion(t,"NW"),this._insertRegion(t,"NE"),this._insertRegion(t,"SW"),this._insertRegion(t,"SE"),null!=e&&this._placeInTree(t,e)},e._insertRegion=function(t,e){var i,s,o,n,r=.5*t.size;switch(e){case"NW":i=t.range.minX,s=t.range.minX+r,o=t.range.minY,n=t.range.minY+r;break;case"NE":i=t.range.minX+r,s=t.range.maxX,o=t.range.minY,n=t.range.minY+r;break;case"SW":i=t.range.minX,s=t.range.minX+r,o=t.range.minY+r,n=t.range.maxY;break;case"SE":i=t.range.minX+r,s=t.range.maxX,o=t.range.minY+r,n=t.range.maxY}t.children[e]={centerOfMass:{x:0,y:0},mass:0,range:{minX:i,maxX:s,minY:o,maxY:n},size:.5*t.size,calcSize:2*t.calcSize,children:{data:null},maxWidth:0,level:t.level+1,childrenCount:0}},e._drawTree=function(t,e){void 0!==this.barnesHutTree&&(t.lineWidth=1,this._drawBranch(this.barnesHutTree.root,t,e))},e._drawBranch=function(t,e,i){void 0===i&&(i="#FF0000"),4==t.childrenCount&&(this._drawBranch(t.children.NW,e),this._drawBranch(t.children.NE,e),this._drawBranch(t.children.SE,e),this._drawBranch(t.children.SW,e)),e.strokeStyle=i,e.beginPath(),e.moveTo(t.range.minX,t.range.minY),e.lineTo(t.range.maxX,t.range.minY),e.stroke(),e.beginPath(),e.moveTo(t.range.maxX,t.range.minY),e.lineTo(t.range.maxX,t.range.maxY),e.stroke(),e.beginPath(),e.moveTo(t.range.maxX,t.range.maxY),e.lineTo(t.range.minX,t.range.maxY),e.stroke(),e.beginPath(),e.moveTo(t.range.minX,t.range.maxY),e.lineTo(t.range.minX,t.range.minY),e.stroke()}},function(t){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children=[],t.webpackPolyfill=1),t}}])}); //# sourceMappingURL=vis.map \ No newline at end of file diff --git a/docs/timeline.html b/docs/timeline.html index 83a2b8ac..a99bfdf2 100644 --- a/docs/timeline.html +++ b/docs/timeline.html @@ -801,7 +801,7 @@ timeline.clear({options: true}); // clear options only setSelection([ids]) none - Select or deselect items. Currently selected items will be unselected. + Select one or multiple items by their id. The currently selected items will be unselected. To unselect all selected items, call `setSelection([])`. diff --git a/lib/timeline/component/ItemSet.js b/lib/timeline/component/ItemSet.js index bc542ab3..9bb8c0de 100644 --- a/lib/timeline/component/ItemSet.js +++ b/lib/timeline/component/ItemSet.js @@ -1118,15 +1118,7 @@ ItemSet.prototype._onDrag = function (event) { if ('group' in props) { // drag from one group to another var group = ItemSet.groupFromTarget(event); - if (group && group.groupId != props.item.data.group) { - var oldGroup = props.item.parent; - oldGroup.remove(props.item); - oldGroup.order(); - group.add(props.item); - group.order(); - - props.item.data.group = group.groupId; - } + _moveToGroup(props.item, group); } }); @@ -1139,6 +1131,24 @@ ItemSet.prototype._onDrag = function (event) { } }; +/** + * Move an item to another group + * @param {Item} item + * @param {Group} group + * @private + */ +function _moveToGroup (item, group) { + if (group && group.groupId != item.data.group) { + var oldGroup = item.parent; + oldGroup.remove(item); + oldGroup.order(); + group.add(item); + group.order(); + + item.data.group = group.groupId; + } +} + /** * End of dragging selected items * @param {Event} event @@ -1151,7 +1161,9 @@ ItemSet.prototype._onDragEnd = function (event) { me = this, dataset = this.itemsData.getDataSet(); - this.touchParams.itemProps.forEach(function (props) { + 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); @@ -1183,6 +1195,10 @@ ItemSet.prototype._onDragEnd = function (event) { // restore original values if ('start' in props) props.item.data.start = props.start; if ('end' in props) props.item.data.end = props.end; + if ('group' in props && props.item.data.group != props.group) { + var group = me.groups[props.group]; + _moveToGroup(props.item, group); + } me.stackDirty = true; // force re-stacking of all items next redraw me.body.emitter.emit('change'); @@ -1190,7 +1206,6 @@ ItemSet.prototype._onDragEnd = function (event) { }); } }); - this.touchParams.itemProps = null; // apply the changes to the data (if there are changes) if (changes.length) {