From e88a485458ce256cf7b28dbd0215839d976daa41 Mon Sep 17 00:00:00 2001 From: Anton Lavrenov Date: Wed, 6 Mar 2019 22:19:32 -0500 Subject: [PATCH] better modules --- konva.js | 550 +++++++++++++++++--------------------- konva.min.js | 4 +- package.json | 13 +- src/Canvas.ts | 4 +- src/Context.ts | 6 +- src/Core.ts | 4 +- src/DragAndDrop.ts | 17 +- src/Global.ts | 142 +++++++--- src/Node.ts | 30 +-- src/Stage.ts | 79 +++--- src/Tween.ts | 4 +- src/Util.ts | 8 +- src/Validators.ts | 16 +- src/_CoreInternals.ts | 122 +++------ src/_FullInternals.ts | 108 +++++--- src/_UMD.ts | 5 +- src/index-types.ts | 3 + src/index.ts | 5 +- src/shapes/Arc.ts | 4 +- src/shapes/Text.ts | 4 +- src/shapes/Transformer.ts | 18 +- src/shapes/Wedge.ts | 4 +- test/import-test.js | 3 + tsconfig.json | 2 +- 24 files changed, 572 insertions(+), 583 deletions(-) create mode 100644 src/index-types.ts diff --git a/konva.js b/konva.js index 45507fcf..90da2021 100644 --- a/konva.js +++ b/konva.js @@ -8,7 +8,7 @@ * Konva JavaScript Framework v3.1.6 * http://konvajs.org/ * Licensed under the MIT - * Date: Wed Feb 27 2019 + * Date: Wed Mar 06 2019 * * Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS) * Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva) @@ -19,19 +19,13 @@ /** * @namespace Konva */ - var version = '3.1.6'; - var isBrowser = typeof window !== 'undefined' && - // browser case - ({}.toString.call(window) === '[object Window]' || - // electron case - {}.toString.call(window) === '[object global]'); - var isUnminified = /comment/.test(function () { - /* comment */ - }.toString()); - var dblClickWindow = 400; - var getAngle = function (angle) { - return _getGlobalKonva().angleDeg ? angle * PI_OVER_180 : angle; - }; + function detectBrowser() { + return (typeof window !== 'undefined' && + // browser case + ({}.toString.call(window) === '[object Window]' || + // electron case + {}.toString.call(window) === '[object global]')); + } var _detectIE = function (ua) { var msie = ua.indexOf('msie '); if (msie > 0) { @@ -80,25 +74,103 @@ : typeof WorkerGlobalScope !== 'undefined' ? self : {}; - // user agent - var UA = _parseUA((glob.navigator && glob.navigator.userAgent) || ''); - var document = glob.document; - // get global Konva instance - var _getGlobalKonva = function () { - return glob.Konva; + var Konva = { + version: '3.1.6', + isBrowser: detectBrowser(), + isUnminified: /comment/.test(function () { + /* comment */ + }.toString()), + dblClickWindow: 400, + getAngle: function (angle) { + return Konva.angleDeg ? angle * PI_OVER_180 : angle; + }, + enableTrace: false, + // TODO: move that to stage? + listenClickTap: false, + inDblClickWindow: false, + /** + * Global pixel ratio configuration. KonvaJS automatically detect pixel ratio of current device. + * But you may override such property, if you want to use your value. + * @property pixelRatio + * @default undefined + * @name pixelRatio + * @memberof Konva + * @example + * Konva.pixelRatio = 1; + */ + pixelRatio: undefined, + /** + * Drag distance property. If you start to drag a node you may want to wait until pointer is moved to some distance from start point, + * only then start dragging. Default is 3px. + * @property dragDistance + * @default 0 + * @memberof Konva + * @example + * Konva.dragDistance = 10; + */ + dragDistance: 3, + /** + * Use degree values for angle properties. You may set this property to false if you want to use radiant values. + * @property angleDeg + * @default true + * @memberof Konva + * @example + * node.rotation(45); // 45 degrees + * Konva.angleDeg = false; + * node.rotation(Math.PI / 2); // PI/2 radian + */ + angleDeg: true, + /** + * Show different warnings about errors or wrong API usage + * @property showWarnings + * @default true + * @memberof Konva + * @example + * Konva.showWarnings = false; + */ + showWarnings: true, + /** + * Configure what mouse buttons can be used for drag and drop. + * Default value is [0] - only left mouse button. + * @property dragButtons + * @default true + * @memberof Konva + * @example + * // enable left and right mouse buttons + * Konva.dragButtons = [0, 2]; + */ + dragButtons: [0, 1], + /** + * returns whether or not drag and drop is currently active + * @method + * @memberof Konva + */ + isDragging: function () { + return Konva['DD'].isDragging; + }, + /** + * returns whether or not a drag and drop operation is ready, but may + * not necessarily have started + * @method + * @memberof Konva + */ + isDragReady: function () { + return !!Konva['DD'].node; + }, + // user agent + UA: _parseUA((glob.navigator && glob.navigator.userAgent) || ''), + document: glob.document, + // insert Konva into global namaspace (window) + // it is required for npm packages + _injectGlobal: function (Konva) { + glob.Konva = Konva; + }, + _parseUA: _parseUA }; var _NODES_REGISTRY = {}; - var globalKonva = {}; - // insert Konva into global namaspace (window) - // it is required for npm packages - var _injectGlobal = function (Konva) { - globalKonva = Konva; - glob.Konva = Konva; - Object.assign(Konva, _NODES_REGISTRY); - }; var _registerNode = function (NodeClass) { _NODES_REGISTRY[NodeClass.prototype.getClassName()] = NodeClass; - globalKonva[NodeClass.prototype.getClassName()] = NodeClass; + Konva[NodeClass.prototype.getClassName()] = NodeClass; }; /** @@ -595,9 +667,9 @@ } }, createCanvasElement: function () { - var canvas = isBrowser + var canvas = Konva.isBrowser ? document.createElement('canvas') - : new (_getGlobalKonva()._nodeCanvas())(); + : new (Konva['_nodeCanvas']())(); // on some environments canvas.style is readonly try { canvas.style = canvas.style || {}; @@ -839,7 +911,7 @@ console.error(KONVA_ERROR + str); }, warn: function (str) { - if (!_getGlobalKonva().showWarnings) { + if (!Konva.showWarnings) { return; } console.warn(KONVA_WARNING + str); @@ -1013,7 +1085,7 @@ return Math.round(val); } function getNumberValidator() { - if (isUnminified) { + if (Konva.isUnminified) { return function (val, attr) { if (!Util._isNumber(val)) { Util.warn(_formatValue(val) + @@ -1026,7 +1098,7 @@ } } function getNumberOrAutoValidator() { - if (isUnminified) { + if (Konva.isUnminified) { return function (val, attr) { var isNumber = Util._isNumber(val); var isAuto = val === 'auto'; @@ -1041,7 +1113,7 @@ } } function getStringValidator() { - if (isUnminified) { + if (Konva.isUnminified) { return function (val, attr) { if (!Util._isString(val)) { Util.warn(_formatValue(val) + @@ -1054,7 +1126,7 @@ } } function getNumberArrayValidator() { - if (isUnminified) { + if (Konva.isUnminified) { return function (val, attr) { if (!Util._isArray(val)) { Util.warn(_formatValue(val) + @@ -1078,7 +1150,7 @@ } } function getBooleanValidator() { - if (isUnminified) { + if (Konva.isUnminified) { return function (val, attr) { var isBool = val === true || val === false; if (!isBool) { @@ -1092,7 +1164,7 @@ } } function getComponentValidator(components) { - if (isUnminified) { + if (Konva.isUnminified) { return function (val, attr) { if (!Util.isObject(val)) { Util.warn(_formatValue(val) + @@ -1336,7 +1408,7 @@ function Context(canvas) { this.canvas = canvas; this._context = canvas._canvas.getContext('2d'); - if (_getGlobalKonva().enableTrace) { + if (Konva.enableTrace) { this.traceArr = []; this._enableTrace(); } @@ -1681,7 +1753,7 @@ shape._fillFunc(this); }; SceneContext.prototype._fillPattern = function (shape) { - var fillPatternX = shape.getFillPatternX(), fillPatternY = shape.getFillPatternY(), fillPatternScaleX = shape.getFillPatternScaleX(), fillPatternScaleY = shape.getFillPatternScaleY(), fillPatternRotation = getAngle(shape.getFillPatternRotation()), fillPatternOffsetX = shape.getFillPatternOffsetX(), fillPatternOffsetY = shape.getFillPatternOffsetY(); + var fillPatternX = shape.getFillPatternX(), fillPatternY = shape.getFillPatternY(), fillPatternScaleX = shape.getFillPatternScaleX(), fillPatternScaleY = shape.getFillPatternScaleY(), fillPatternRotation = Konva.getAngle(shape.getFillPatternRotation()), fillPatternOffsetX = shape.getFillPatternOffsetX(), fillPatternOffsetY = shape.getFillPatternOffsetY(); if (fillPatternX || fillPatternY) { this.translate(fillPatternX || 0, fillPatternY || 0); } @@ -1870,7 +1942,7 @@ this.height = 0; this.isCache = false; var conf = config || {}; - var pixelRatio = conf.pixelRatio || _getGlobalKonva().pixelRatio || getDevicePixelRatio(); + var pixelRatio = conf.pixelRatio || Konva.pixelRatio || getDevicePixelRatio(); this.pixelRatio = pixelRatio; this._canvas = Util.createCanvasElement(); // set inline styles @@ -2277,23 +2349,23 @@ } }, _endDragBefore: function (evt) { - var node = DD.node, layer; + var node = DD.node; if (node) { - layer = node.getLayer(); DD.anim.stop(); // only fire dragend event if the drag and drop // operation actually started. if (DD.isDragging) { DD.isDragging = false; DD.justDragged = true; - _getGlobalKonva().listenClickTap = false; + Konva.listenClickTap = false; if (evt) { evt.dragEndNode = node; } } DD.node = null; - if (layer || node instanceof _getGlobalKonva().Stage) { - (layer || node).draw(); + var drawNode = node.getLayer() || (node instanceof Konva['Stage'] && node); + if (drawNode) { + drawNode.draw(); } } }, @@ -2309,7 +2381,7 @@ } } }; - if (isBrowser) { + if (Konva.isBrowser) { window.addEventListener('mouseup', DD._endDragBefore, true); window.addEventListener('touchend', DD._endDragBefore, true); window.addEventListener('mousemove', DD._drag); @@ -2915,12 +2987,6 @@ return this; }; Node.prototype._remove = function () { - var parent = this.getParent(); - if (parent && parent.children) { - parent.children.splice(this.index, 1); - parent._setChildrenIndices(); - this.parent = null; - } // every cached attr that is calculated via node tree // traversal must be cleared when removing a node this._clearSelfAndDescendantCache(STAGE); @@ -2928,6 +2994,12 @@ this._clearSelfAndDescendantCache(VISIBLE); this._clearSelfAndDescendantCache(LISTENING); this._clearSelfAndDescendantCache(ABSOLUTE_OPACITY); + var parent = this.getParent(); + if (parent && parent.children) { + parent.children.splice(this.index, 1); + parent._setChildrenIndices(); + this.parent = null; + } }; /** * remove and destroy a node. Kill it and delete forever! You should not reuse node after destroy(). @@ -3659,7 +3731,7 @@ var at = new Transform(); // start with stage and traverse downwards to self this._eachAncestorReverse(function (node) { - var transformsEnabled = node.transformsEnabled(); + var transformsEnabled = node.getTransformsEnabled(); if (transformsEnabled === 'all') { at.multiply(node.getTransform()); } @@ -3716,7 +3788,7 @@ return this._getCache(TRANSFORM, this._getTransform); }; Node.prototype._getTransform = function () { - var m = new Transform(), x = this.x(), y = this.y(), rotation = _getGlobalKonva().getAngle(this.rotation()), scaleX = this.scaleX(), scaleY = this.scaleY(), skewX = this.skewX(), skewY = this.skewY(), offsetX = this.offsetX(), offsetY = this.offsetY(); + var m = new Transform(), x = this.x(), y = this.y(), rotation = Konva.getAngle(this.rotation()), scaleX = this.scaleX(), scaleY = this.scaleY(), skewX = this.skewX(), skewY = this.skewY(), offsetX = this.offsetX(), offsetY = this.offsetY(); if (x !== 0 || y !== 0) { m.translate(x, y); } @@ -3928,7 +4000,7 @@ return this.parent.getDragDistance(); } else { - return _getGlobalKonva().dragDistance; + return Konva.dragDistance; } }; Node.prototype._get = function (selector) { @@ -4057,7 +4129,7 @@ * node.setAttr('x', 5); */ Node.prototype.setAttr = function (attr, val) { - var method = SET$1 + Util._capitalize(attr), func = this[method]; + var func = this[SET$1 + Util._capitalize(attr)]; if (Util._isFunction(func)) { func.call(this, val); } @@ -4068,10 +4140,8 @@ return this; }; Node.prototype._setAttr = function (key, val) { - var oldVal; - oldVal = this.attrs[key]; - var same = oldVal === val; - if (same && !Util.isObject(val)) { + var oldVal = this.attrs[key]; + if (oldVal === val && !Util.isObject(val)) { return; } if (val === undefined || val === null) { @@ -4095,23 +4165,14 @@ } }; Node.prototype._fireAndBubble = function (eventType, evt, compareShape) { - var okayToRun = true; if (evt && this.nodeType === SHAPE) { evt.target = this; } - if (eventType === MOUSEENTER && + var shouldStop = (eventType === MOUSEENTER || eventType === MOUSELEAVE) && compareShape && (this._id === compareShape._id || - (this.isAncestorOf && this.isAncestorOf(compareShape)))) { - okayToRun = false; - } - else if (eventType === MOUSELEAVE && - compareShape && - (this._id === compareShape._id || - (this.isAncestorOf && this.isAncestorOf(compareShape)))) { - okayToRun = false; - } - if (okayToRun) { + (this.isAncestorOf && this.isAncestorOf(compareShape))); + if (!shouldStop) { this._fire(eventType, evt); // simulate event bubbling var stopBubble = (eventType === MOUSEENTER || eventType === MOUSELEAVE) && @@ -4134,10 +4195,10 @@ }; Node.prototype._fire = function (eventType, evt) { var events = this.eventListeners[eventType], i; - evt = evt || {}; - evt.currentTarget = this; - evt.type = eventType; if (events) { + evt = evt || {}; + evt.currentTarget = this; + evt.type = eventType; for (i = 0; i < events.length; i++) { events[i].handler.call(this, evt); } @@ -4221,8 +4282,7 @@ this._dragCleanup(); this.on('mousedown.konva touchstart.konva', function (evt) { var shouldCheckButton = evt.evt.button !== undefined; - var canDrag = !shouldCheckButton || - _getGlobalKonva().dragButtons.indexOf(evt.evt.button) >= 0; + var canDrag = !shouldCheckButton || Konva.dragButtons.indexOf(evt.evt.button) >= 0; if (!canDrag) { return; } @@ -5469,7 +5529,7 @@ Collection.mapMethods(Container); // CONSTANTS - var STAGE$1 = 'Stage', STRING = 'string', PX = 'px', MOUSEOUT = 'mouseout', MOUSELEAVE$1 = 'mouseleave', MOUSEOVER = 'mouseover', MOUSEENTER$1 = 'mouseenter', MOUSEMOVE = 'mousemove', MOUSEDOWN = 'mousedown', MOUSEUP = 'mouseup', CONTEXTMENU = 'contextmenu', CLICK = 'click', DBL_CLICK = 'dblclick', TOUCHSTART = 'touchstart', TOUCHEND = 'touchend', TAP = 'tap', DBL_TAP = 'dbltap', TOUCHMOVE = 'touchmove', WHEEL = 'wheel', CONTENT_MOUSEOUT = 'contentMouseout', CONTENT_MOUSEOVER = 'contentMouseover', CONTENT_MOUSEMOVE = 'contentMousemove', CONTENT_MOUSEDOWN = 'contentMousedown', CONTENT_MOUSEUP = 'contentMouseup', CONTENT_CONTEXTMENU = 'contentContextmenu', CONTENT_CLICK = 'contentClick', CONTENT_DBL_CLICK = 'contentDblclick', CONTENT_TOUCHSTART = 'contentTouchstart', CONTENT_TOUCHEND = 'contentTouchend', CONTENT_DBL_TAP = 'contentDbltap', CONTENT_TAP = 'contentTap', CONTENT_TOUCHMOVE = 'contentTouchmove', CONTENT_WHEEL = 'contentWheel', DIV = 'div', RELATIVE = 'relative', KONVA_CONTENT = 'konvajs-content', SPACE$1 = ' ', UNDERSCORE = '_', CONTAINER = 'container', MAX_LAYERS_NUMBER = 5, EMPTY_STRING$1 = '', EVENTS = [ + var STAGE$1 = 'Stage', STRING = 'string', PX = 'px', MOUSEOUT = 'mouseout', MOUSELEAVE$1 = 'mouseleave', MOUSEOVER = 'mouseover', MOUSEENTER$1 = 'mouseenter', MOUSEMOVE = 'mousemove', MOUSEDOWN = 'mousedown', MOUSEUP = 'mouseup', CONTEXTMENU = 'contextmenu', CLICK = 'click', DBL_CLICK = 'dblclick', TOUCHSTART = 'touchstart', TOUCHEND = 'touchend', TAP = 'tap', DBL_TAP = 'dbltap', TOUCHMOVE = 'touchmove', WHEEL = 'wheel', CONTENT_MOUSEOUT = 'contentMouseout', CONTENT_MOUSEOVER = 'contentMouseover', CONTENT_MOUSEMOVE = 'contentMousemove', CONTENT_MOUSEDOWN = 'contentMousedown', CONTENT_MOUSEUP = 'contentMouseup', CONTENT_CONTEXTMENU = 'contentContextmenu', CONTENT_CLICK = 'contentClick', CONTENT_DBL_CLICK = 'contentDblclick', CONTENT_TOUCHSTART = 'contentTouchstart', CONTENT_TOUCHEND = 'contentTouchend', CONTENT_DBL_TAP = 'contentDbltap', CONTENT_TAP = 'contentTap', CONTENT_TOUCHMOVE = 'contentTouchmove', CONTENT_WHEEL = 'contentWheel', RELATIVE = 'relative', KONVA_CONTENT = 'konvajs-content', UNDERSCORE = '_', CONTAINER = 'container', MAX_LAYERS_NUMBER = 5, EMPTY_STRING$1 = '', EVENTS = [ MOUSEDOWN, MOUSEMOVE, MOUSEUP, @@ -5610,7 +5670,7 @@ if (!obj) { obj = {}; } - obj.container = document.createElement(DIV); + obj.container = document.createElement('div'); return Container.prototype.clone.call(this, obj); }; Stage.prototype.destroy = function () { @@ -5720,7 +5780,7 @@ layer._setCanvasSize(this.width(), this.height()); // draw layer and append canvas to container layer.draw(); - if (isBrowser) { + if (Konva.isBrowser) { this.content.appendChild(layer.canvas._canvas); } // chainable @@ -5741,7 +5801,7 @@ return this.getChildren(); }; Stage.prototype._bindContentEvents = function () { - if (!isBrowser) { + if (!Konva.isBrowser) { return; } for (var n = 0; n < eventsLength; n++) { @@ -5766,7 +5826,7 @@ }; Stage.prototype._mousemove = function (evt) { // workaround for mobile IE to force touch event when unhandled pointer event elevates into a mouse event - if (UA.ieMobile) { + if (Konva.UA.ieMobile) { return this._touchmove(evt); } this.setPointersPositions(evt); @@ -5820,12 +5880,12 @@ }; Stage.prototype._mousedown = function (evt) { // workaround for mobile IE to force touch event when unhandled pointer event elevates into a mouse event - if (UA.ieMobile) { + if (Konva.UA.ieMobile) { return this._touchstart(evt); } this.setPointersPositions(evt); var shape = this.getIntersection(this.getPointerPosition()); - _getGlobalKonva().listenClickTap = true; + Konva.listenClickTap = true; if (shape && shape.isListening()) { this.clickStartShape = shape; shape._fireAndBubble(MOUSEDOWN, { evt: evt }); @@ -5848,32 +5908,32 @@ }; Stage.prototype._mouseup = function (evt) { // workaround for mobile IE to force touch event when unhandled pointer event elevates into a mouse event - if (UA.ieMobile) { + if (Konva.UA.ieMobile) { return this._touchend(evt); } this.setPointersPositions(evt); - var shape = this.getIntersection(this.getPointerPosition()), clickStartShape = this.clickStartShape, clickEndShape = this.clickEndShape, fireDblClick = false, dd = _getGlobalKonva().DD; - if (_getGlobalKonva().inDblClickWindow) { + var shape = this.getIntersection(this.getPointerPosition()), clickStartShape = this.clickStartShape, clickEndShape = this.clickEndShape, fireDblClick = false; + if (Konva.inDblClickWindow) { fireDblClick = true; clearTimeout(this.dblTimeout); // Konva.inDblClickWindow = false; } - else if (!dd || !dd.justDragged) { + else if (!DD.justDragged) { // don't set inDblClickWindow after dragging - _getGlobalKonva().inDblClickWindow = true; + Konva.inDblClickWindow = true; clearTimeout(this.dblTimeout); } - else if (dd) { - dd.justDragged = false; + else if (DD) { + DD.justDragged = false; } this.dblTimeout = setTimeout(function () { - _getGlobalKonva().inDblClickWindow = false; - }, _getGlobalKonva().dblClickWindow); + Konva.inDblClickWindow = false; + }, Konva.dblClickWindow); if (shape && shape.isListening()) { this.clickEndShape = shape; shape._fireAndBubble(MOUSEUP, { evt: evt }); // detect if click or double click occurred - if (_getGlobalKonva().listenClickTap && + if (Konva.listenClickTap && clickStartShape && clickStartShape._id === shape._id) { shape._fireAndBubble(CLICK, { evt: evt }); @@ -5884,7 +5944,7 @@ } else { this._fire(MOUSEUP, { evt: evt, target: this, currentTarget: this }); - if (_getGlobalKonva().listenClickTap) { + if (Konva.listenClickTap) { this._fire(CLICK, { evt: evt, target: this, currentTarget: this }); } if (fireDblClick) { @@ -5897,13 +5957,13 @@ } // content events this._fire(CONTENT_MOUSEUP, { evt: evt }); - if (_getGlobalKonva().listenClickTap) { + if (Konva.listenClickTap) { this._fire(CONTENT_CLICK, { evt: evt }); if (fireDblClick) { this._fire(CONTENT_DBL_CLICK, { evt: evt }); } } - _getGlobalKonva().listenClickTap = false; + Konva.listenClickTap = false; // always call preventDefault for desktop events because some browsers // try to drag and drop the canvas element if (evt.cancelable) { @@ -5928,7 +5988,7 @@ Stage.prototype._touchstart = function (evt) { this.setPointersPositions(evt); var shape = this.getIntersection(this.getPointerPosition()); - _getGlobalKonva().listenClickTap = true; + Konva.listenClickTap = true; if (shape && shape.isListening()) { this.tapStartShape = shape; shape._fireAndBubble(TOUCHSTART, { evt: evt }); @@ -5950,22 +6010,22 @@ Stage.prototype._touchend = function (evt) { this.setPointersPositions(evt); var shape = this.getIntersection(this.getPointerPosition()), fireDblClick = false; - if (_getGlobalKonva().inDblClickWindow) { + if (Konva.inDblClickWindow) { fireDblClick = true; clearTimeout(this.dblTimeout); - // _getGlobalKonva().inDblClickWindow = false; + // Konva.inDblClickWindow = false; } else { - _getGlobalKonva().inDblClickWindow = true; + Konva.inDblClickWindow = true; clearTimeout(this.dblTimeout); } this.dblTimeout = setTimeout(function () { - _getGlobalKonva().inDblClickWindow = false; - }, _getGlobalKonva().dblClickWindow); + Konva.inDblClickWindow = false; + }, Konva.dblClickWindow); if (shape && shape.isListening()) { shape._fireAndBubble(TOUCHEND, { evt: evt }); // detect if tap or double tap occurred - if (_getGlobalKonva().listenClickTap && + if (Konva.listenClickTap && this.tapStartShape && shape._id === this.tapStartShape._id) { shape._fireAndBubble(TAP, { evt: evt }); @@ -5980,7 +6040,7 @@ } else { this._fire(TOUCHEND, { evt: evt, target: this, currentTarget: this }); - if (_getGlobalKonva().listenClickTap) { + if (Konva.listenClickTap) { this._fire(TAP, { evt: evt, target: this, currentTarget: this }); } if (fireDblClick) { @@ -5993,17 +6053,17 @@ } // content events this._fire(CONTENT_TOUCHEND, { evt: evt }); - if (_getGlobalKonva().listenClickTap) { + if (Konva.listenClickTap) { this._fire(CONTENT_TAP, { evt: evt }); if (fireDblClick) { this._fire(CONTENT_DBL_TAP, { evt: evt }); } } - _getGlobalKonva().listenClickTap = false; + Konva.listenClickTap = false; }; Stage.prototype._touchmove = function (evt) { this.setPointersPositions(evt); - var dd = _getGlobalKonva().DD, shape; + var shape; if (!DD.isDragging) { shape = this.getIntersection(this.getPointerPosition()); if (shape && shape.isListening()) { @@ -6022,12 +6082,8 @@ } this._fire(CONTENT_TOUCHMOVE, { evt: evt }); } - if (dd) { - if (DD.isDragging && - _getGlobalKonva().DD.node.preventDefault() && - evt.cancelable) { - evt.preventDefault(); - } + if (DD.isDragging && DD.node.preventDefault() && evt.cancelable) { + evt.preventDefault(); } }; Stage.prototype._wheel = function (evt) { @@ -6103,7 +6159,7 @@ // not setting it to 1 will result in an over compensation this.bufferCanvas = new SceneCanvas(); this.bufferHitCanvas = new HitCanvas({ pixelRatio: 1 }); - if (!isBrowser) { + if (!Konva.isBrowser) { return; } var container = this.container(); @@ -6113,7 +6169,7 @@ // clear content inside container container.innerHTML = EMPTY_STRING$1; // content - this.content = document.createElement(DIV); + this.content = document.createElement('div'); this.content.style.position = RELATIVE; this.content.style.userSelect = 'none'; this.content.className = KONVA_CONTENT; @@ -6121,13 +6177,6 @@ container.appendChild(this.content); this._resizeDOM(); }; - Stage.prototype._onContent = function (typesStr, handler) { - var types = typesStr.split(SPACE$1), len = types.length, n, baseEvent; - for (n = 0; n < len; n++) { - baseEvent = types[n]; - this.content.addEventListener(baseEvent, handler, false); - } - }; // currently cache function is now working for stage, because stage has no its own canvas element Stage.prototype.cache = function () { Util.warn('Cache function is not allowed for stage. You may use cache only for layers, groups and shapes.'); @@ -8518,7 +8567,7 @@ this.node = node; this._id = idCounter$1++; var layers = node.getLayer() || - (node instanceof _getGlobalKonva().Stage ? node.getLayers() : null); + (node instanceof Konva['Stage'] ? node.getLayers() : null); if (!layers) { Util.error('Tween constructor have `node` that is not in a layer. Please add node into layer first.'); } @@ -9052,80 +9101,26 @@ } }; - var DD$1 = DD; - var enableTrace = false; - // TODO: move that to stage? - var listenClickTap = false; - var inDblClickWindow = false; - /** - * Global pixel ratio configuration. KonvaJS automatically detect pixel ratio of current device. - * But you may override such property, if you want to use your value. - * @property pixelRatio - * @default undefined - * @name pixelRatio - * @memberof Konva - * @example - * Konva.pixelRatio = 1; - */ - var pixelRatio = undefined; - /** - * Drag distance property. If you start to drag a node you may want to wait until pointer is moved to some distance from start point, - * only then start dragging. Default is 3px. - * @property dragDistance - * @default 0 - * @memberof Konva - * @example - * Konva.dragDistance = 10; - */ - var dragDistance = 3; - /** - * Use degree values for angle properties. You may set this property to false if you want to use radiant values. - * @property angleDeg - * @default true - * @memberof Konva - * @example - * node.rotation(45); // 45 degrees - * Konva.angleDeg = false; - * node.rotation(Math.PI / 2); // PI/2 radian - */ - var angleDeg = true; - /** - * Show different warnings about errors or wrong API usage - * @property showWarnings - * @default true - * @memberof Konva - * @example - * Konva.showWarnings = false; - */ - var showWarnings = true; - /** - * Configure what mouse buttons can be used for drag and drop. - * Default value is [0] - only left mouse button. - * @property dragButtons - * @default true - * @memberof Konva - * @example - * // enable left and right mouse buttons - * Konva.dragButtons = [0, 2]; - */ - var dragButtons = [0, 1]; - /** - * returns whether or not drag and drop is currently active - * @method - * @memberof Konva - */ - var isDragging = function () { - return DD.isDragging; - }; - /** - * returns whether or not a drag and drop operation is ready, but may - * not necessarily have started - * @method - * @memberof Konva - */ - var isDragReady = function () { - return !!DD.node; - }; + // what is core parts of Konva? + var Konva$1 = Object.assign(Konva, { + Collection: Collection, + Util: Util, + Node: Node, + ids: ids, + names: names, + Container: Container, + Stage: Stage, + stages: stages, + Layer: Layer, + FastLayer: FastLayer, + Group: Group, + DD: DD, + Shape: Shape, + shapes: shapes, + Animation: Animation, + Tween: Tween, + Easings: Easings + }); /** * Arc constructor @@ -9226,7 +9221,7 @@ return _super !== null && _super.apply(this, arguments) || this; } Arc.prototype._sceneFunc = function (context) { - var angle = getAngle(this.angle()), clockwise = this.clockwise(); + var angle = Konva.getAngle(this.angle()), clockwise = this.clockwise(); context.beginPath(); context.arc(0, 0, this.outerRadius(), 0, angle, clockwise); context.arc(0, 0, this.innerRadius(), angle, 0, !clockwise); @@ -12753,7 +12748,7 @@ // bold was not working // removing font variant will solve // fix for: https://github.com/konvajs/konva/issues/94 - if (UA.isIE) { + if (Konva.UA.isIE) { return (this.fontStyle() + SPACE$2 + this.fontSize() + @@ -14003,7 +13998,7 @@ skipShadow: true, skipStroke: this.ignoreStroke() }); - var rotation = getAngle(node.rotation()); + var rotation = Konva.getAngle(node.rotation()); var dx = rect.x * node.scaleX() - node.offsetX() * node.scaleX(); var dy = rect.y * node.scaleY() - node.offsetY() * node.scaleY(); return { @@ -14061,7 +14056,7 @@ // add hover styling anchor.on('mouseenter', function () { var tr = this.getParent(); - var rad = getAngle(tr.rotation()); + var rad = Konva.getAngle(tr.rotation()); var scale = tr.getNode().getAbsoluteScale(); // If scale.y < 0 xor scale.x < 0 we need to flip (not rotate). var isMirrored = scale.y * scale.x < 0; @@ -14202,14 +14197,14 @@ if (attrs.height < 0) { dAlpha -= Math.PI; } - var rot = getAngle(this.rotation()); + var rot = Konva.getAngle(this.rotation()); var newRotation = Util._radToDeg(rot) + Util._radToDeg(dAlpha); - var alpha = getAngle(this.getNode().rotation()); + var alpha = Konva.getAngle(this.getNode().rotation()); var newAlpha = Util._degToRad(newRotation); var snaps = this.rotationSnaps(); var offset = 0.1; for (var i = 0; i < snaps.length; i++) { - var angle = getAngle(snaps[i]); + var angle = Konva.getAngle(snaps[i]); var dif = Math.abs(angle - Util._degToRad(newRotation)) % (Math.PI * 2); if (dif < offset) { newRotation = Util._radToDeg(angle); @@ -14219,9 +14214,7 @@ var dx = padding; var dy = padding; this._fitNodeInto({ - rotation: _getGlobalKonva().angleDeg - ? newRotation - : Util._degToRad(newRotation), + rotation: Konva.angleDeg ? newRotation : Util._degToRad(newRotation), x: attrs.x + (attrs.width / 2 + padding) * (Math.cos(alpha) - Math.cos(newAlpha)) + @@ -14312,7 +14305,7 @@ var padding = this.padding(); var scaleX = (newAttrs.width - padding * 2) / pure.width; var scaleY = (newAttrs.height - padding * 2) / pure.height; - var rotation = getAngle(node.rotation()); + var rotation = Konva.getAngle(node.rotation()); var dx = pure.x * scaleX - padding - node.offsetX() * scaleX; var dy = pure.y * scaleY - padding - node.offsetY() * scaleY; this.getNode().setAttrs({ @@ -14879,7 +14872,7 @@ } Wedge.prototype._sceneFunc = function (context) { context.beginPath(); - context.arc(0, 0, this.radius(), 0, getAngle(this.angle()), this.clockwise()); + context.arc(0, 0, this.radius(), 0, Konva.getAngle(this.angle()), this.clockwise()); context.lineTo(0, 0); context.closePath(); context.fillStrokeShape(this); @@ -17004,94 +16997,55 @@ * @returns {Number} */ - /** - * @namespace Filters - * @memberof Konva - */ - var Filters = { - Blur: Blur, - Brighten: Brighten, - Contrast: Contrast, - Emboss: Emboss, - Enhance: Enhance, - Grayscale: Grayscale, - HSL: HSL, - HSV: HSV, - Invert: Invert, - Kaleidoscope: Kaleidoscope, - Mask: Mask, - Noise: Noise, - Pixelate: Pixelate, - Posterize: Posterize, - RGB: RGB, - RGBA: RGBA, - Sepia: Sepia, - Solarize: Solarize, - Threshold: Threshold - }; - - var Konva = ({ - Filters: Filters, - Arc: Arc, - Arrow: Arrow, - Circle: Circle, - Ellipse: Ellipse, - Image: Image, - Label: Label, - Tag: Tag, - Line: Line, - Path: Path, - Rect: Rect, - RegularPolygon: RegularPolygon, - Ring: Ring, - Sprite: Sprite, - Star: Star, - Text: Text, - TextPath: TextPath, - Transformer: Transformer, - Wedge: Wedge, - DD: DD$1, - enableTrace: enableTrace, - listenClickTap: listenClickTap, - inDblClickWindow: inDblClickWindow, - pixelRatio: pixelRatio, - dragDistance: dragDistance, - angleDeg: angleDeg, - showWarnings: showWarnings, - dragButtons: dragButtons, - isDragging: isDragging, - isDragReady: isDragReady, - Collection: Collection, - Util: Util, - Node: Node, - ids: ids, - names: names, - Container: Container, - Stage: Stage, - stages: stages, - Layer: Layer, - FastLayer: FastLayer, - Group: Group, - Shape: Shape, - shapes: shapes, - Animation: Animation, - Tween: Tween, - Easings: Easings, - version: version, - isBrowser: isBrowser, - isUnminified: isUnminified, - dblClickWindow: dblClickWindow, - getAngle: getAngle, - _parseUA: _parseUA, - glob: glob, - UA: UA, - document: document, - _getGlobalKonva: _getGlobalKonva, - _NODES_REGISTRY: _NODES_REGISTRY, - _injectGlobal: _injectGlobal, - _registerNode: _registerNode + // we need to import core of the Konva and then extend it with all additional objects + var Konva$2 = Object.assign(Konva$1, { + Arc: Arc, + Arrow: Arrow, + Circle: Circle, + Ellipse: Ellipse, + Image: Image, + Label: Label, + Tag: Tag, + Line: Line, + Path: Path, + Rect: Rect, + RegularPolygon: RegularPolygon, + Ring: Ring, + Sprite: Sprite, + Star: Star, + Text: Text, + TextPath: TextPath, + Transformer: Transformer, + Wedge: Wedge, + /** + * @namespace Filters + * @memberof Konva + */ + Filters: { + Blur: Blur, + Brighten: Brighten, + Contrast: Contrast, + Emboss: Emboss, + Enhance: Enhance, + Grayscale: Grayscale, + HSL: HSL, + HSV: HSV, + Invert: Invert, + Kaleidoscope: Kaleidoscope, + Mask: Mask, + Noise: Noise, + Pixelate: Pixelate, + Posterize: Posterize, + RGB: RGB, + RGBA: RGBA, + Sepia: Sepia, + Solarize: Solarize, + Threshold: Threshold + } }); - return Konva; + // main entry for umd build for rollup + + return Konva$2; })); diff --git a/konva.min.js b/konva.min.js index a81adbf8..263a2f83 100644 --- a/konva.min.js +++ b/konva.min.js @@ -3,10 +3,10 @@ * Konva JavaScript Framework v3.1.6 * http://konvajs.org/ * Licensed under the MIT - * Date: Wed Feb 27 2019 + * Date: Wed Mar 06 2019 * * Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS) * Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva) * * @license - */var e=Math.PI/180,r="undefined"!=typeof window&&("[object Window]"==={}.toString.call(window)||"[object global]"==={}.toString.call(window)),p=/comment/.test(function(){}.toString()),L=function(t){return O().angleDeg?t*e:t},t=function(t){var e=t.toLowerCase(),i=/(chrome)[ /]([\w.]+)/.exec(e)||/(webkit)[ /]([\w.]+)/.exec(e)||/(opera)(?:.*version|)[ /]([\w.]+)/.exec(e)||/(msie) ([\w.]+)/.exec(e)||e.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(e)||[],n=!!t.match(/Android|BlackBerry|iPhone|iPad|iPod|Opera Mini|IEMobile/i),r=!!t.match(/IEMobile/i);return{browser:i[1]||"",version:i[2]||"0",isIE:function(t){var e=t.indexOf("msie ");if(0>16&255,g:e>>8&255,b:255&e}},getRandomColor:function(){for(var t=(16777215*Math.random()<<0).toString(16);t.length<6;)t="0"+t;return"#"+t},get:function(t,e){return void 0===t?e:t},getRGB:function(t){var e;return t in g?{r:(e=g[t])[0],g:e[1],b:e[2]}:"#"===t[0]?this._hexToRgb(t.substring(1)):"rgb("===t.substr(0,4)?(e=v.exec(t.replace(/ /g,"")),{r:parseInt(e[1],10),g:parseInt(e[2],10),b:parseInt(e[3],10)}):{r:0,g:0,b:0}},colorToRGBA:function(t){return t=t||"black",D._namedColorToRBA(t)||D._hex3ColorToRGBA(t)||D._hex6ColorToRGBA(t)||D._rgbColorToRGBA(t)||D._rgbaColorToRGBA(t)},_namedColorToRBA:function(t){var e=g[t.toLowerCase()];return e?{r:e[0],g:e[1],b:e[2],a:1}:null},_rgbColorToRGBA:function(t){if(0===t.indexOf("rgb(")){var e=(t=t.match(/rgb\(([^)]+)\)/)[1]).split(/ *, */).map(Number);return{r:e[0],g:e[1],b:e[2],a:1}}},_rgbaColorToRGBA:function(t){if(0===t.indexOf("rgba(")){var e=(t=t.match(/rgba\(([^)]+)\)/)[1]).split(/ *, */).map(Number);return{r:e[0],g:e[1],b:e[2],a:e[3]}}},_hex6ColorToRGBA:function(t){if("#"===t[0]&&7===t.length)return{r:parseInt(t.slice(1,3),16),g:parseInt(t.slice(3,5),16),b:parseInt(t.slice(5,7),16),a:1}},_hex3ColorToRGBA:function(t){if("#"===t[0]&&4===t.length)return{r:parseInt(t[1]+t[1],16),g:parseInt(t[2]+t[2],16),b:parseInt(t[3]+t[3],16),a:1}},haveIntersection:function(t,e){return!(e.x>t.x+t.width||e.x+e.widtht.y+t.height||e.y+e.heighte.length){var o=e;e=t,t=o}for(n=0;n=this.parent.children.length)&&D.warn("Unexpected value "+t+" for zIndex property. zIndex is just index of a node in children of its parent. Expected value is from 0 to "+(this.parent.children.length-1)+".");var e=this.index;return this.parent.children.splice(e,1),this.parent.children.splice(t,0,this),this.parent._setChildrenIndices(),this},s.prototype.getAbsoluteOpacity=function(){return this._getCache(q,this._getAbsoluteOpacity)},s.prototype._getAbsoluteOpacity=function(){var t=this.opacity(),e=this.getParent();return e&&!e._isUnderCache&&(t*=this.getParent().getAbsoluteOpacity()),t},s.prototype.moveTo=function(t){return this.getParent()!==t&&(this._remove(),t.add(this)),this},s.prototype.toObject=function(){var t,e,i,n={},r=this.getAttrs();for(t in n.attrs={},r)e=r[t],D.isObject(e)&&!D._isPlainObject(e)&&!D._isArray(e)||(i="function"==typeof this[t]&&this[t],delete r[t],(i?i.call(this):null)!==(r[t]=e)&&(n.attrs[t]=e));return n.className=this.getClassName(),D._prepareToStringify(n)},s.prototype.toJSON=function(){return JSON.stringify(this.toObject())},s.prototype.getParent=function(){return this.parent},s.prototype.findAncestors=function(t,e,i){var n=[];e&&this._isMatch(t)&&n.push(this);for(var r=this.parent;r;){if(r===i)return n;r._isMatch(t)&&n.push(r),r=r.parent}return n},s.prototype.isAncestorOf=function(t){return!1},s.prototype.findAncestor=function(t,e,i){return this.findAncestors(t,e,i)[0]},s.prototype._isMatch=function(t){if(!t)return!1;var e,i,n=t.replace(/ /g,"").split(","),r=n.length;for(e=0;ethis.duration?this.yoyo?(this._time=this.duration,this.reverse()):this.finish():t<0?this.yoyo?(this._time=0,this.play()):this.reset():(this._time=t,this.update())},t.prototype.getTime=function(){return this._time},t.prototype.setPosition=function(t){this.prevPos=this._pos,this.propFunc(t),this._pos=t},t.prototype.getPosition=function(t){return void 0===t&&(t=this._time),this.func(t,this.begin,this._change,this.duration)},t.prototype.play=function(){this.state=2,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onPlay")},t.prototype.reverse=function(){this.state=3,this._time=this.duration-this._time,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onReverse")},t.prototype.seek=function(t){this.pause(),this._time=t,this.update(),this.fire("onSeek")},t.prototype.reset=function(){this.pause(),this._time=0,this.update(),this.fire("onReset")},t.prototype.finish=function(){this.pause(),this._time=this.duration,this.update(),this.fire("onFinish")},t.prototype.update=function(){this.setPosition(this.getPosition(this._time))},t.prototype.onEnterFrame=function(){var t=this.getTimer()-this._startTime;2===this.state?this.setTime(t):3===this.state&&this.setTime(this.duration-t)},t.prototype.pause=function(){this.state=1,this.fire("onPause")},t.prototype.getTimer=function(){return(new Date).getTime()},t}(),Zt=function(){function u(t){var e,i,n=this,r=t.node,a=r._id,o=t.easing||$t.Linear,s=!!t.yoyo;e=void 0===t.duration?.3:0===t.duration?.001:t.duration,this.node=r,this._id=Kt++;var h=r.getLayer()||(r instanceof O().Stage?r.getLayers():null);for(i in h||D.error("Tween constructor have `node` that is not in a layer. Please add node into layer first."),this.anim=new W(function(){n.tween.onEnterFrame()},h),this.tween=new Jt(i,function(t){n._tweenFunc(t)},o,0,1,1e3*e,s),this._addListeners(),u.attrs[a]||(u.attrs[a]={}),u.attrs[a][this._id]||(u.attrs[a][this._id]={}),u.tweens[a]||(u.tweens[a]={}),t)void 0===Vt[i]&&this._addAttr(i,t[i]);this.reset(),this.onFinish=t.onFinish,this.onReset=t.onReset}return u.prototype._addAttr=function(t,e){var i,n,r,a,o,s,h,l,c=this.node,d=c._id;if((r=u.tweens[d][t])&&delete u.attrs[d][r][t],i=c.getAttr(t),D._isArray(e))if(n=[],o=Math.max(e.length,i.length),"points"===t&&e.length!==i.length&&(e.length>i.length?(h=i,i=D._prepareArrayForTween(i,e,c.closed())):(s=e,e=D._prepareArrayForTween(e,i,c.closed()))),0===t.indexOf("fill"))for(a=0;athis.dataArray[i].pathLength;)t-=this.dataArray[i].pathLength,++i;if(i===n)return{x:(e=this.dataArray[i-1].points.slice(-2))[0],y:e[1]};if(t<.01)return{x:(e=this.dataArray[i].points.slice(0,2))[0],y:e[1]};var r=this.dataArray[i],a=r.points;switch(r.command){case"L":return u.getPointOnLine(t,r.start.x,r.start.y,a[0],a[1]);case"C":return u.getPointOnCubicBezier(t/r.pathLength,r.start.x,r.start.y,a[0],a[1],a[2],a[3],a[4],a[5]);case"Q":return u.getPointOnQuadraticBezier(t/r.pathLength,r.start.x,r.start.y,a[0],a[1],a[2],a[3]);case"A":var o=a[0],s=a[1],h=a[2],l=a[3],c=a[4],d=a[5],p=a[6];return c+=d*t/r.pathLength,u.getPointOnEllipticalArc(o,s,h,l,c,p)}return null},u.getLineLength=function(t,e,i,n){return Math.sqrt((i-t)*(i-t)+(n-e)*(n-e))},u.getPointOnLine=function(t,e,i,n,r,a,o){void 0===a&&(a=e),void 0===o&&(o=i);var s=(r-i)/(n-e+1e-8),h=Math.sqrt(t*t/(1+s*s));n>>1,P=_.slice(0,k+1),T=this._getTextWidth(P)+v;T<=l?(b=k+1,w=P+(g?"…":""),C=T):x=k}if(!w)break;if(f){var M,G=_[w.length];0<(M=(" "===G||"-"===G)&&C<=l?w.length:Math.max(w.lastIndexOf(" "),w.lastIndexOf("-"))+1)&&(b=M,w=w.slice(0,b),C=this._getTextWidth(w))}if(w=w.trimRight(),this._addTextLine(w),i=Math.max(i,C),d+=n,!u||s&&ce?g=fe.getPointOnLine(e,f.x,f.y,v.points[0],v.points[1],f.x,f.y):v=void 0;break;case"A":var o=v.points[4],s=v.points[5],h=v.points[4]+s;0===m?m=o+1e-8:iv.pathLength?1e-8:e/v.pathLength:i>N,0!==C?(C=255/C,P[s]=(l*B>>N)*C,P[s+1]=(c*B>>N)*C,P[s+2]=(d*B>>N)*C):P[s]=P[s+1]=P[s+2]=0,l-=u,c-=f,d-=g,p-=v,u-=E.r,f-=E.g,g-=E.b,v-=E.a,a=h+((a=i+e+1)>N,0>N)*C,P[a+1]=(c*B>>N)*C,P[a+2]=(d*B>>N)*C):P[a]=P[a+1]=P[a+2]=0,l-=u,c-=f,d-=g,p-=v,u-=E.r,f-=E.g,g-=E.b,v-=E.a,a=i+((a=n+L)>16&255,g:e>>8&255,b:255&e}},getRandomColor:function(){for(var t=(16777215*Math.random()<<0).toString(16);t.length<6;)t="0"+t;return"#"+t},get:function(t,e){return void 0===t?e:t},getRGB:function(t){var e;return t in l?{r:(e=l[t])[0],g:e[1],b:e[2]}:"#"===t[0]?this._hexToRgb(t.substring(1)):"rgb("===t.substr(0,4)?(e=d.exec(t.replace(/ /g,"")),{r:parseInt(e[1],10),g:parseInt(e[2],10),b:parseInt(e[3],10)}):{r:0,g:0,b:0}},colorToRGBA:function(t){return t=t||"black",O._namedColorToRBA(t)||O._hex3ColorToRGBA(t)||O._hex6ColorToRGBA(t)||O._rgbColorToRGBA(t)||O._rgbaColorToRGBA(t)},_namedColorToRBA:function(t){var e=l[t.toLowerCase()];return e?{r:e[0],g:e[1],b:e[2],a:1}:null},_rgbColorToRGBA:function(t){if(0===t.indexOf("rgb(")){var e=(t=t.match(/rgb\(([^)]+)\)/)[1]).split(/ *, */).map(Number);return{r:e[0],g:e[1],b:e[2],a:1}}},_rgbaColorToRGBA:function(t){if(0===t.indexOf("rgba(")){var e=(t=t.match(/rgba\(([^)]+)\)/)[1]).split(/ *, */).map(Number);return{r:e[0],g:e[1],b:e[2],a:e[3]}}},_hex6ColorToRGBA:function(t){if("#"===t[0]&&7===t.length)return{r:parseInt(t.slice(1,3),16),g:parseInt(t.slice(3,5),16),b:parseInt(t.slice(5,7),16),a:1}},_hex3ColorToRGBA:function(t){if("#"===t[0]&&4===t.length)return{r:parseInt(t[1]+t[1],16),g:parseInt(t[2]+t[2],16),b:parseInt(t[3]+t[3],16),a:1}},haveIntersection:function(t,e){return!(e.x>t.x+t.width||e.x+e.widtht.y+t.height||e.y+e.heighte.length){var o=e;e=t,t=o}for(n=0;n=this.parent.children.length)&&O.warn("Unexpected value "+t+" for zIndex property. zIndex is just index of a node in children of its parent. Expected value is from 0 to "+(this.parent.children.length-1)+".");var e=this.index;return this.parent.children.splice(e,1),this.parent.children.splice(t,0,this),this.parent._setChildrenIndices(),this},s.prototype.getAbsoluteOpacity=function(){return this._getCache(W,this._getAbsoluteOpacity)},s.prototype._getAbsoluteOpacity=function(){var t=this.opacity(),e=this.getParent();return e&&!e._isUnderCache&&(t*=this.getParent().getAbsoluteOpacity()),t},s.prototype.moveTo=function(t){return this.getParent()!==t&&(this._remove(),t.add(this)),this},s.prototype.toObject=function(){var t,e,i,n={},r=this.getAttrs();for(t in n.attrs={},r)e=r[t],O.isObject(e)&&!O._isPlainObject(e)&&!O._isArray(e)||(i="function"==typeof this[t]&&this[t],delete r[t],(i?i.call(this):null)!==(r[t]=e)&&(n.attrs[t]=e));return n.className=this.getClassName(),O._prepareToStringify(n)},s.prototype.toJSON=function(){return JSON.stringify(this.toObject())},s.prototype.getParent=function(){return this.parent},s.prototype.findAncestors=function(t,e,i){var n=[];e&&this._isMatch(t)&&n.push(this);for(var r=this.parent;r;){if(r===i)return n;r._isMatch(t)&&n.push(r),r=r.parent}return n},s.prototype.isAncestorOf=function(t){return!1},s.prototype.findAncestor=function(t,e,i){return this.findAncestors(t,e,i)[0]},s.prototype._isMatch=function(t){if(!t)return!1;var e,i,n=t.replace(/ /g,"").split(","),r=n.length;for(e=0;ethis.duration?this.yoyo?(this._time=this.duration,this.reverse()):this.finish():t<0?this.yoyo?(this._time=0,this.play()):this.reset():(this._time=t,this.update())},t.prototype.getTime=function(){return this._time},t.prototype.setPosition=function(t){this.prevPos=this._pos,this.propFunc(t),this._pos=t},t.prototype.getPosition=function(t){return void 0===t&&(t=this._time),this.func(t,this.begin,this._change,this.duration)},t.prototype.play=function(){this.state=2,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onPlay")},t.prototype.reverse=function(){this.state=3,this._time=this.duration-this._time,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onReverse")},t.prototype.seek=function(t){this.pause(),this._time=t,this.update(),this.fire("onSeek")},t.prototype.reset=function(){this.pause(),this._time=0,this.update(),this.fire("onReset")},t.prototype.finish=function(){this.pause(),this._time=this.duration,this.update(),this.fire("onFinish")},t.prototype.update=function(){this.setPosition(this.getPosition(this._time))},t.prototype.onEnterFrame=function(){var t=this.getTimer()-this._startTime;2===this.state?this.setTime(t):3===this.state&&this.setTime(this.duration-t)},t.prototype.pause=function(){this.state=1,this.fire("onPause")},t.prototype.getTimer=function(){return(new Date).getTime()},t}(),Ut=function(){function u(t){var e,i,n=this,r=t.node,a=r._id,o=t.easing||qt.Linear,s=!!t.yoyo;e=void 0===t.duration?.3:0===t.duration?.001:t.duration,this.node=r,this._id=Yt++;var h=r.getLayer()||(r instanceof L.Stage?r.getLayers():null);for(i in h||O.error("Tween constructor have `node` that is not in a layer. Please add node into layer first."),this.anim=new I(function(){n.tween.onEnterFrame()},h),this.tween=new jt(i,function(t){n._tweenFunc(t)},o,0,1,1e3*e,s),this._addListeners(),u.attrs[a]||(u.attrs[a]={}),u.attrs[a][this._id]||(u.attrs[a][this._id]={}),u.tweens[a]||(u.tweens[a]={}),t)void 0===Ht[i]&&this._addAttr(i,t[i]);this.reset(),this.onFinish=t.onFinish,this.onReset=t.onReset}return u.prototype._addAttr=function(t,e){var i,n,r,a,o,s,h,l,c=this.node,d=c._id;if((r=u.tweens[d][t])&&delete u.attrs[d][r][t],i=c.getAttr(t),O._isArray(e))if(n=[],o=Math.max(e.length,i.length),"points"===t&&e.length!==i.length&&(e.length>i.length?(h=i,i=O._prepareArrayForTween(i,e,c.closed())):(s=e,e=O._prepareArrayForTween(e,i,c.closed()))),0===t.indexOf("fill"))for(a=0;athis.dataArray[i].pathLength;)t-=this.dataArray[i].pathLength,++i;if(i===n)return{x:(e=this.dataArray[i-1].points.slice(-2))[0],y:e[1]};if(t<.01)return{x:(e=this.dataArray[i].points.slice(0,2))[0],y:e[1]};var r=this.dataArray[i],a=r.points;switch(r.command){case"L":return u.getPointOnLine(t,r.start.x,r.start.y,a[0],a[1]);case"C":return u.getPointOnCubicBezier(t/r.pathLength,r.start.x,r.start.y,a[0],a[1],a[2],a[3],a[4],a[5]);case"Q":return u.getPointOnQuadraticBezier(t/r.pathLength,r.start.x,r.start.y,a[0],a[1],a[2],a[3]);case"A":var o=a[0],s=a[1],h=a[2],l=a[3],c=a[4],d=a[5],p=a[6];return c+=d*t/r.pathLength,u.getPointOnEllipticalArc(o,s,h,l,c,p)}return null},u.getLineLength=function(t,e,i,n){return Math.sqrt((i-t)*(i-t)+(n-e)*(n-e))},u.getPointOnLine=function(t,e,i,n,r,a,o){void 0===a&&(a=e),void 0===o&&(o=i);var s=(r-i)/(n-e+1e-8),h=Math.sqrt(t*t/(1+s*s));n>>1,P=_.slice(0,k+1),T=this._getTextWidth(P)+v;T<=l?(b=k+1,w=P+(g?"…":""),C=T):x=k}if(!w)break;if(f){var A,M=_[w.length];0<(A=(" "===M||"-"===M)&&C<=l?w.length:Math.max(w.lastIndexOf(" "),w.lastIndexOf("-"))+1)&&(b=A,w=w.slice(0,b),C=this._getTextWidth(w))}if(w=w.trimRight(),this._addTextLine(w),i=Math.max(i,C),d+=n,!u||s&&ce?g=he.getPointOnLine(e,f.x,f.y,v.points[0],v.points[1],f.x,f.y):v=void 0;break;case"A":var o=v.points[4],s=v.points[5],h=v.points[4]+s;0===m?m=o+1e-8:iv.pathLength?1e-8:e/v.pathLength:i>N,0!==C?(C=255/C,P[s]=(l*z>>N)*C,P[s+1]=(c*z>>N)*C,P[s+2]=(d*z>>N)*C):P[s]=P[s+1]=P[s+2]=0,l-=u,c-=f,d-=g,p-=v,u-=E.r,f-=E.g,g-=E.b,v-=E.a,a=h+((a=i+e+1)>N,0>N)*C,P[a+1]=(c*z>>N)*C,P[a+2]=(d*z>>N)*C):P[a]=P[a+1]=P[a+2]=0,l-=u,c-=f,d-=g,p-=v,u-=E.r,f-=E.g,g-=E.b,v-=E.a,a=i+((a=n+L) { - return glob.Konva; + /** + * Global pixel ratio configuration. KonvaJS automatically detect pixel ratio of current device. + * But you may override such property, if you want to use your value. + * @property pixelRatio + * @default undefined + * @name pixelRatio + * @memberof Konva + * @example + * Konva.pixelRatio = 1; + */ + pixelRatio: undefined, + + /** + * Drag distance property. If you start to drag a node you may want to wait until pointer is moved to some distance from start point, + * only then start dragging. Default is 3px. + * @property dragDistance + * @default 0 + * @memberof Konva + * @example + * Konva.dragDistance = 10; + */ + dragDistance: 3, + /** + * Use degree values for angle properties. You may set this property to false if you want to use radiant values. + * @property angleDeg + * @default true + * @memberof Konva + * @example + * node.rotation(45); // 45 degrees + * Konva.angleDeg = false; + * node.rotation(Math.PI / 2); // PI/2 radian + */ + angleDeg: true, + /** + * Show different warnings about errors or wrong API usage + * @property showWarnings + * @default true + * @memberof Konva + * @example + * Konva.showWarnings = false; + */ + showWarnings: true, + + /** + * Configure what mouse buttons can be used for drag and drop. + * Default value is [0] - only left mouse button. + * @property dragButtons + * @default true + * @memberof Konva + * @example + * // enable left and right mouse buttons + * Konva.dragButtons = [0, 2]; + */ + dragButtons: [0, 1], + + /** + * returns whether or not drag and drop is currently active + * @method + * @memberof Konva + */ + isDragging() { + return Konva['DD'].isDragging; + }, + /** + * returns whether or not a drag and drop operation is ready, but may + * not necessarily have started + * @method + * @memberof Konva + */ + isDragReady() { + return !!Konva['DD'].node; + }, + // user agent + UA: _parseUA((glob.navigator && glob.navigator.userAgent) || ''), + document: glob.document, + // insert Konva into global namaspace (window) + // it is required for npm packages + _injectGlobal(Konva) { + glob.Konva = Konva; + }, + _parseUA }; export const _NODES_REGISTRY = {}; -let globalKonva = {}; - -// insert Konva into global namaspace (window) -// it is required for npm packages -export const _injectGlobal = Konva => { - globalKonva = Konva; - glob.Konva = Konva; - Object.assign(Konva, _NODES_REGISTRY); -}; export const _registerNode = NodeClass => { _NODES_REGISTRY[NodeClass.prototype.getClassName()] = NodeClass; - globalKonva[NodeClass.prototype.getClassName()] = NodeClass; + Konva[NodeClass.prototype.getClassName()] = NodeClass; }; diff --git a/src/Node.ts b/src/Node.ts index be59e01f..fcc0c596 100644 --- a/src/Node.ts +++ b/src/Node.ts @@ -1,7 +1,7 @@ -import { Util, Collection, Transform, RectConf, Point } from './Util'; +import { Util, Collection, Transform, RectConf } from './Util'; import { Factory } from './Factory'; import { SceneCanvas, HitCanvas } from './Canvas'; -import { _getGlobalKonva, _NODES_REGISTRY } from './Global'; +import { Konva, _NODES_REGISTRY } from './Global'; import { Container } from './Container'; import { GetSet, Vector2d } from './types'; import { DD } from './DragAndDrop'; @@ -755,14 +755,6 @@ export abstract class Node { return this; } _remove() { - var parent = this.getParent(); - - if (parent && parent.children) { - parent.children.splice(this.index, 1); - parent._setChildrenIndices(); - this.parent = null; - } - // every cached attr that is calculated via node tree // traversal must be cleared when removing a node this._clearSelfAndDescendantCache(STAGE); @@ -770,6 +762,13 @@ export abstract class Node { this._clearSelfAndDescendantCache(VISIBLE); this._clearSelfAndDescendantCache(LISTENING); this._clearSelfAndDescendantCache(ABSOLUTE_OPACITY); + var parent = this.getParent(); + + if (parent && parent.children) { + parent.children.splice(this.index, 1); + parent._setChildrenIndices(); + this.parent = null; + } } /** * remove and destroy a node. Kill it and delete forever! You should not reuse node after destroy(). @@ -1632,7 +1631,7 @@ export abstract class Node { var m = new Transform(), x = this.x(), y = this.y(), - rotation = _getGlobalKonva().getAngle(this.rotation()), + rotation = Konva.getAngle(this.rotation()), scaleX = this.scaleX(), scaleY = this.scaleY(), skewX = this.skewX(), @@ -1868,7 +1867,7 @@ export abstract class Node { } else if (this.parent) { return this.parent.getDragDistance(); } else { - return _getGlobalKonva().dragDistance; + return Konva.dragDistance; } } _get(selector) { @@ -2019,7 +2018,7 @@ export abstract class Node { } _setAttr(key, val) { var oldVal = this.attrs[key]; - if ((oldVal === val) && !Util.isObject(val)) { + if (oldVal === val && !Util.isObject(val)) { return; } if (val === undefined || val === null) { @@ -2048,7 +2047,7 @@ export abstract class Node { evt.target = this; } - var shouldStop = + var shouldStop = (eventType === MOUSEENTER || eventType === MOUSELEAVE) && compareShape && (this._id === compareShape._id || @@ -2195,8 +2194,7 @@ export abstract class Node { this.on('mousedown.konva touchstart.konva', function(evt) { var shouldCheckButton = evt.evt.button !== undefined; var canDrag = - !shouldCheckButton || - _getGlobalKonva().dragButtons.indexOf(evt.evt.button) >= 0; + !shouldCheckButton || Konva.dragButtons.indexOf(evt.evt.button) >= 0; if (!canDrag) { return; } diff --git a/src/Stage.ts b/src/Stage.ts index 1b50077f..54d51993 100644 --- a/src/Stage.ts +++ b/src/Stage.ts @@ -1,7 +1,7 @@ import { Util, Collection } from './Util'; import { Factory } from './Factory'; import { Container } from './Container'; -import { document, isBrowser, _getGlobalKonva, UA } from './Global'; +import { Konva } from './Global'; import { SceneCanvas, HitCanvas } from './Canvas'; import { GetSet, Vector2d } from './types'; import { Shape } from './Shape'; @@ -43,7 +43,6 @@ var STAGE = 'Stage', CONTENT_TAP = 'contentTap', CONTENT_TOUCHMOVE = 'contentTouchmove', CONTENT_WHEEL = 'contentWheel', - DIV = 'div', RELATIVE = 'relative', KONVA_CONTENT = 'konvajs-content', SPACE = ' ', @@ -201,7 +200,7 @@ export class Stage extends Container { if (!obj) { obj = {}; } - obj.container = document.createElement(DIV); + obj.container = document.createElement('div'); return Container.prototype.clone.call(this, obj); } @@ -346,7 +345,7 @@ export class Stage extends Container { // draw layer and append canvas to container layer.draw(); - if (isBrowser) { + if (Konva.isBrowser) { this.content.appendChild(layer.canvas._canvas); } @@ -368,7 +367,7 @@ export class Stage extends Container { return this.getChildren(); } _bindContentEvents() { - if (!isBrowser) { + if (!Konva.isBrowser) { return; } for (var n = 0; n < eventsLength; n++) { @@ -395,7 +394,7 @@ export class Stage extends Container { } _mousemove(evt) { // workaround for mobile IE to force touch event when unhandled pointer event elevates into a mouse event - if (UA.ieMobile) { + if (Konva.UA.ieMobile) { return this._touchmove(evt); } this.setPointersPositions(evt); @@ -450,13 +449,13 @@ export class Stage extends Container { } _mousedown(evt) { // workaround for mobile IE to force touch event when unhandled pointer event elevates into a mouse event - if (UA.ieMobile) { + if (Konva.UA.ieMobile) { return this._touchstart(evt); } this.setPointersPositions(evt); var shape = this.getIntersection(this.getPointerPosition()); - _getGlobalKonva().listenClickTap = true; + Konva.listenClickTap = true; if (shape && shape.isListening()) { this.clickStartShape = shape; @@ -481,31 +480,30 @@ export class Stage extends Container { } _mouseup(evt) { // workaround for mobile IE to force touch event when unhandled pointer event elevates into a mouse event - if (UA.ieMobile) { + if (Konva.UA.ieMobile) { return this._touchend(evt); } this.setPointersPositions(evt); var shape = this.getIntersection(this.getPointerPosition()), clickStartShape = this.clickStartShape, clickEndShape = this.clickEndShape, - fireDblClick = false, - dd = _getGlobalKonva().DD; + fireDblClick = false; - if (_getGlobalKonva().inDblClickWindow) { + if (Konva.inDblClickWindow) { fireDblClick = true; clearTimeout(this.dblTimeout); // Konva.inDblClickWindow = false; - } else if (!dd || !dd.justDragged) { + } else if (!DD.justDragged) { // don't set inDblClickWindow after dragging - _getGlobalKonva().inDblClickWindow = true; + Konva.inDblClickWindow = true; clearTimeout(this.dblTimeout); - } else if (dd) { - dd.justDragged = false; + } else if (DD) { + DD.justDragged = false; } this.dblTimeout = setTimeout(function() { - _getGlobalKonva().inDblClickWindow = false; - }, _getGlobalKonva().dblClickWindow); + Konva.inDblClickWindow = false; + }, Konva.dblClickWindow); if (shape && shape.isListening()) { this.clickEndShape = shape; @@ -513,7 +511,7 @@ export class Stage extends Container { // detect if click or double click occurred if ( - _getGlobalKonva().listenClickTap && + Konva.listenClickTap && clickStartShape && clickStartShape._id === shape._id ) { @@ -525,7 +523,7 @@ export class Stage extends Container { } } else { this._fire(MOUSEUP, { evt: evt, target: this, currentTarget: this }); - if (_getGlobalKonva().listenClickTap) { + if (Konva.listenClickTap) { this._fire(CLICK, { evt: evt, target: this, currentTarget: this }); } @@ -539,14 +537,14 @@ export class Stage extends Container { } // content events this._fire(CONTENT_MOUSEUP, { evt: evt }); - if (_getGlobalKonva().listenClickTap) { + if (Konva.listenClickTap) { this._fire(CONTENT_CLICK, { evt: evt }); if (fireDblClick) { this._fire(CONTENT_DBL_CLICK, { evt: evt }); } } - _getGlobalKonva().listenClickTap = false; + Konva.listenClickTap = false; // always call preventDefault for desktop events because some browsers // try to drag and drop the canvas element @@ -573,7 +571,7 @@ export class Stage extends Container { this.setPointersPositions(evt); var shape = this.getIntersection(this.getPointerPosition()); - _getGlobalKonva().listenClickTap = true; + Konva.listenClickTap = true; if (shape && shape.isListening()) { this.tapStartShape = shape; @@ -598,25 +596,25 @@ export class Stage extends Container { var shape = this.getIntersection(this.getPointerPosition()), fireDblClick = false; - if (_getGlobalKonva().inDblClickWindow) { + if (Konva.inDblClickWindow) { fireDblClick = true; clearTimeout(this.dblTimeout); - // _getGlobalKonva().inDblClickWindow = false; + // Konva.inDblClickWindow = false; } else { - _getGlobalKonva().inDblClickWindow = true; + Konva.inDblClickWindow = true; clearTimeout(this.dblTimeout); } this.dblTimeout = setTimeout(function() { - _getGlobalKonva().inDblClickWindow = false; - }, _getGlobalKonva().dblClickWindow); + Konva.inDblClickWindow = false; + }, Konva.dblClickWindow); if (shape && shape.isListening()) { shape._fireAndBubble(TOUCHEND, { evt: evt }); // detect if tap or double tap occurred if ( - _getGlobalKonva().listenClickTap && + Konva.listenClickTap && this.tapStartShape && shape._id === this.tapStartShape._id ) { @@ -632,7 +630,7 @@ export class Stage extends Container { } } else { this._fire(TOUCHEND, { evt: evt, target: this, currentTarget: this }); - if (_getGlobalKonva().listenClickTap) { + if (Konva.listenClickTap) { this._fire(TAP, { evt: evt, target: this, currentTarget: this }); } if (fireDblClick) { @@ -645,19 +643,18 @@ export class Stage extends Container { } // content events this._fire(CONTENT_TOUCHEND, { evt: evt }); - if (_getGlobalKonva().listenClickTap) { + if (Konva.listenClickTap) { this._fire(CONTENT_TAP, { evt: evt }); if (fireDblClick) { this._fire(CONTENT_DBL_TAP, { evt: evt }); } } - _getGlobalKonva().listenClickTap = false; + Konva.listenClickTap = false; } _touchmove(evt) { this.setPointersPositions(evt); - var dd = _getGlobalKonva().DD, - shape; + var shape; if (!DD.isDragging) { shape = this.getIntersection(this.getPointerPosition()); if (shape && shape.isListening()) { @@ -675,14 +672,8 @@ export class Stage extends Container { } this._fire(CONTENT_TOUCHMOVE, { evt: evt }); } - if (dd) { - if ( - DD.isDragging && - _getGlobalKonva().DD.node.preventDefault() && - evt.cancelable - ) { - evt.preventDefault(); - } + if (DD.isDragging && DD.node.preventDefault() && evt.cancelable) { + evt.preventDefault(); } } _wheel(evt) { @@ -763,7 +754,7 @@ export class Stage extends Container { this.bufferCanvas = new SceneCanvas(); this.bufferHitCanvas = new HitCanvas({ pixelRatio: 1 }); - if (!isBrowser) { + if (!Konva.isBrowser) { return; } var container = this.container(); @@ -774,7 +765,7 @@ export class Stage extends Container { container.innerHTML = EMPTY_STRING; // content - this.content = document.createElement(DIV); + this.content = document.createElement('div'); this.content.style.position = RELATIVE; this.content.style.userSelect = 'none'; this.content.className = KONVA_CONTENT; diff --git a/src/Tween.ts b/src/Tween.ts index 96df9676..e0958759 100644 --- a/src/Tween.ts +++ b/src/Tween.ts @@ -1,7 +1,7 @@ import { Util } from './Util'; import { Animation } from './Animation'; import { Node } from './Node'; -import { _getGlobalKonva } from './Global'; +import { Konva } from './Global'; var blacklist = { node: 1, @@ -200,7 +200,7 @@ export class Tween { var layers = node.getLayer() || - (node instanceof _getGlobalKonva().Stage ? node.getLayers() : null); + (node instanceof Konva['Stage'] ? node.getLayers() : null); if (!layers) { Util.error( 'Tween constructor have `node` that is not in a layer. Please add node into layer first.' diff --git a/src/Util.ts b/src/Util.ts index bf7fae84..09fa453f 100644 --- a/src/Util.ts +++ b/src/Util.ts @@ -1,4 +1,4 @@ -import { isBrowser, document, glob, _getGlobalKonva } from './Global'; +import { glob, Konva } from './Global'; import { Node } from './Node'; export type Point = { @@ -563,9 +563,9 @@ export const Util = { } }, createCanvasElement() { - var canvas = isBrowser + var canvas = Konva.isBrowser ? document.createElement('canvas') - : new (_getGlobalKonva()._nodeCanvas())(); + : new (Konva['_nodeCanvas']())(); // on some environments canvas.style is readonly try { canvas.style = canvas.style || {}; @@ -811,7 +811,7 @@ export const Util = { console.error(KONVA_ERROR + str); }, warn(str) { - if (!_getGlobalKonva().showWarnings) { + if (!Konva.showWarnings) { return; } console.warn(KONVA_WARNING + str); diff --git a/src/Validators.ts b/src/Validators.ts index 24390f4c..252a181c 100644 --- a/src/Validators.ts +++ b/src/Validators.ts @@ -1,4 +1,4 @@ -import { isUnminified } from './Global'; +import { Konva } from './Global'; import { Util } from './Util'; function _formatValue(val) { @@ -34,7 +34,7 @@ export function alphaComponent(val) { } export function getNumberValidator() { - if (isUnminified) { + if (Konva.isUnminified) { return function(val, attr) { if (!Util._isNumber(val)) { Util.warn( @@ -49,7 +49,7 @@ export function getNumberValidator() { } } export function getNumberOrAutoValidator() { - if (isUnminified) { + if (Konva.isUnminified) { return function(val, attr) { var isNumber = Util._isNumber(val); var isAuto = val === 'auto'; @@ -67,7 +67,7 @@ export function getNumberOrAutoValidator() { } } export function getStringValidator() { - if (isUnminified) { + if (Konva.isUnminified) { return function(val, attr) { if (!Util._isString(val)) { Util.warn( @@ -82,7 +82,7 @@ export function getStringValidator() { } } export function getFunctionValidator() { - if (isUnminified) { + if (Konva.isUnminified) { return function(val, attr) { if (!Util._isFunction(val)) { Util.warn( @@ -97,7 +97,7 @@ export function getFunctionValidator() { } } export function getNumberArrayValidator() { - if (isUnminified) { + if (Konva.isUnminified) { return function(val, attr) { if (!Util._isArray(val)) { Util.warn( @@ -124,7 +124,7 @@ export function getNumberArrayValidator() { } } export function getBooleanValidator() { - if (isUnminified) { + if (Konva.isUnminified) { return function(val, attr) { var isBool = val === true || val === false; if (!isBool) { @@ -140,7 +140,7 @@ export function getBooleanValidator() { } } export function getComponentValidator(components) { - if (isUnminified) { + if (Konva.isUnminified) { return function(val, attr) { if (!Util.isObject(val)) { Util.warn( diff --git a/src/_CoreInternals.ts b/src/_CoreInternals.ts index 268bdcc8..3befa1dc 100644 --- a/src/_CoreInternals.ts +++ b/src/_CoreInternals.ts @@ -1,99 +1,41 @@ -export * from './Global'; +// what is core parts of Konva? -export { Collection, Util } from './Util'; -export { Node, ids, names } from './Node'; -export { Container } from './Container'; +import { Konva as Global } from './Global'; -export { Stage, stages } from './Stage'; +import { Collection, Util } from './Util'; +import { Node, ids, names } from './Node'; +import { Container } from './Container'; -export { Layer } from './Layer'; -export { FastLayer } from './FastLayer'; +import { Stage, stages } from './Stage'; -export { Group } from './Group'; +import { Layer } from './Layer'; +import { FastLayer } from './FastLayer'; -import { DD as dd } from './DragAndDrop'; +import { Group } from './Group'; -export const DD = dd; -export { Shape, shapes } from './Shape'; +import { DD } from './DragAndDrop'; -export { Animation } from './Animation'; -export { Tween, Easings } from './Tween'; +import { Shape, shapes } from './Shape'; -export const enableTrace = false; +import { Animation } from './Animation'; +import { Tween, Easings } from './Tween'; -// TODO: move that to stage? -export const listenClickTap = false; -export const inDblClickWindow = false; - -/** - * Global pixel ratio configuration. KonvaJS automatically detect pixel ratio of current device. - * But you may override such property, if you want to use your value. - * @property pixelRatio - * @default undefined - * @name pixelRatio - * @memberof Konva - * @example - * Konva.pixelRatio = 1; - */ -export const pixelRatio = undefined; - -/** - * Drag distance property. If you start to drag a node you may want to wait until pointer is moved to some distance from start point, - * only then start dragging. Default is 3px. - * @property dragDistance - * @default 0 - * @memberof Konva - * @example - * Konva.dragDistance = 10; - */ -export const dragDistance = 3; -/** - * Use degree values for angle properties. You may set this property to false if you want to use radiant values. - * @property angleDeg - * @default true - * @memberof Konva - * @example - * node.rotation(45); // 45 degrees - * Konva.angleDeg = false; - * node.rotation(Math.PI / 2); // PI/2 radian - */ -export const angleDeg = true; -/** - * Show different warnings about errors or wrong API usage - * @property showWarnings - * @default true - * @memberof Konva - * @example - * Konva.showWarnings = false; - */ -export const showWarnings = true; - -/** - * Configure what mouse buttons can be used for drag and drop. - * Default value is [0] - only left mouse button. - * @property dragButtons - * @default true - * @memberof Konva - * @example - * // enable left and right mouse buttons - * Konva.dragButtons = [0, 2]; - */ -export const dragButtons = [0, 1]; - -/** - * returns whether or not drag and drop is currently active - * @method - * @memberof Konva - */ -export const isDragging = function() { - return dd.isDragging; -}; -/** - * returns whether or not a drag and drop operation is ready, but may - * not necessarily have started - * @method - * @memberof Konva - */ -export const isDragReady = function() { - return !!dd.node; -}; +export const Konva = Object.assign(Global, { + Collection, + Util, + Node, + ids, + names, + Container, + Stage, + stages, + Layer, + FastLayer, + Group, + DD, + Shape, + shapes, + Animation, + Tween, + Easings +}); diff --git a/src/_FullInternals.ts b/src/_FullInternals.ts index 5542ab8b..85221596 100644 --- a/src/_FullInternals.ts +++ b/src/_FullInternals.ts @@ -1,23 +1,25 @@ -export * from './_CoreInternals'; +// we need to import core of the Konva and then extend it with all additional objects + +import { Konva as Core } from './_CoreInternals'; // shapes -export { Arc } from './shapes/Arc'; -export { Arrow } from './shapes/Arrow'; -export { Circle } from './shapes/Circle'; -export { Ellipse } from './shapes/Ellipse'; -export { Image } from './shapes/Image'; -export { Label, Tag } from './shapes/Label'; -export { Line } from './shapes/Line'; -export { Path } from './shapes/Path'; -export { Rect } from './shapes/Rect'; -export { RegularPolygon } from './shapes/RegularPolygon'; -export { Ring } from './shapes/Ring'; -export { Sprite } from './shapes/Sprite'; -export { Star } from './shapes/Star'; -export { Text } from './shapes/Text'; -export { TextPath } from './shapes/TextPath'; -export { Transformer } from './shapes/Transformer'; -export { Wedge } from './shapes/Wedge'; +import { Arc } from './shapes/Arc'; +import { Arrow } from './shapes/Arrow'; +import { Circle } from './shapes/Circle'; +import { Ellipse } from './shapes/Ellipse'; +import { Image } from './shapes/Image'; +import { Label, Tag } from './shapes/Label'; +import { Line } from './shapes/Line'; +import { Path } from './shapes/Path'; +import { Rect } from './shapes/Rect'; +import { RegularPolygon } from './shapes/RegularPolygon'; +import { Ring } from './shapes/Ring'; +import { Sprite } from './shapes/Sprite'; +import { Star } from './shapes/Star'; +import { Text } from './shapes/Text'; +import { TextPath } from './shapes/TextPath'; +import { Transformer } from './shapes/Transformer'; +import { Wedge } from './shapes/Wedge'; // filters import { Blur } from './filters/Blur'; @@ -40,28 +42,48 @@ import { Sepia } from './filters/Sepia'; import { Solarize } from './filters/Solarize'; import { Threshold } from './filters/Threshold'; -/** - * @namespace Filters - * @memberof Konva - */ -export const Filters = { - Blur, - Brighten, - Contrast, - Emboss, - Enhance, - Grayscale, - HSL, - HSV, - Invert, - Kaleidoscope, - Mask, - Noise, - Pixelate, - Posterize, - RGB, - RGBA, - Sepia, - Solarize, - Threshold -}; +export const Konva = Object.assign(Core, { + Arc, + Arrow, + Circle, + Ellipse, + Image, + Label, + Tag, + Line, + Path, + Rect, + RegularPolygon, + Ring, + Sprite, + Star, + Text, + TextPath, + Transformer, + Wedge, + /** + * @namespace Filters + * @memberof Konva + */ + Filters: { + Blur, + Brighten, + Contrast, + Emboss, + Enhance, + Grayscale, + HSL, + HSV, + Invert, + Kaleidoscope, + Mask, + Noise, + Pixelate, + Posterize, + RGB, + RGBA, + Sepia, + Solarize, + Threshold + } +}); diff --git a/src/_UMD.ts b/src/_UMD.ts index 8d8f8763..d329ca6b 100644 --- a/src/_UMD.ts +++ b/src/_UMD.ts @@ -1,3 +1,6 @@ -import * as Konva from './_FullInternals'; +// main entry for umd build for rollup +// and for typescript generation + +import { Konva } from './_FullInternals'; export default Konva; diff --git a/src/index-types.ts b/src/index-types.ts new file mode 100644 index 00000000..f7fbc591 --- /dev/null +++ b/src/index-types.ts @@ -0,0 +1,3 @@ +import { Konva as Core } from './_FullInternals'; + +export default Core; diff --git a/src/index.ts b/src/index.ts index d65a65a4..5cac3d89 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,8 +1,5 @@ -var Konva = require('./_FullInternals'); +var Konva = require('./_FullInternals').Konva; // add Konva to global variable -// umd build will actually do it -// but it may now it case of modules and bundlers Konva._injectGlobal(Konva); exports['default'] = Konva; -Konva.default = Konva; module.exports = exports['default']; diff --git a/src/shapes/Arc.ts b/src/shapes/Arc.ts index d4354b5b..731328d1 100644 --- a/src/shapes/Arc.ts +++ b/src/shapes/Arc.ts @@ -1,7 +1,7 @@ import { Collection } from '../Util'; import { Factory } from '../Factory'; import { Shape } from '../Shape'; -import { getAngle } from '../Global'; +import { Konva } from '../Global'; import { GetSet } from '../types'; import { getNumberValidator, getBooleanValidator } from '../Validators'; import { _registerNode } from '../Global'; @@ -32,7 +32,7 @@ import { _registerNode } from '../Global'; */ export class Arc extends Shape { _sceneFunc(context) { - var angle = getAngle(this.angle()), + var angle = Konva.getAngle(this.angle()), clockwise = this.clockwise(); context.beginPath(); diff --git a/src/shapes/Text.ts b/src/shapes/Text.ts index 92921e27..64eac3aa 100644 --- a/src/shapes/Text.ts +++ b/src/shapes/Text.ts @@ -1,7 +1,7 @@ import { Util, Collection } from '../Util'; import { Factory } from '../Factory'; import { Shape } from '../Shape'; -import { UA } from '../Global'; +import { Konva } from '../Global'; import { getNumberValidator, getStringValidator, @@ -335,7 +335,7 @@ export class Text extends Shape { // bold was not working // removing font variant will solve // fix for: https://github.com/konvajs/konva/issues/94 - if (UA.isIE) { + if (Konva.UA.isIE) { return ( this.fontStyle() + SPACE + diff --git a/src/shapes/Transformer.ts b/src/shapes/Transformer.ts index 3af41d7f..b2dd7293 100644 --- a/src/shapes/Transformer.ts +++ b/src/shapes/Transformer.ts @@ -4,7 +4,7 @@ import { Node } from '../Node'; import { Shape } from '../Shape'; import { Rect } from './Rect'; import { Group } from '../Group'; -import { getAngle, _getGlobalKonva } from '../Global'; +import { Konva } from '../Global'; import { getNumberValidator } from '../Validators'; import { _registerNode } from '../Global'; @@ -254,7 +254,7 @@ export class Transformer extends Group { skipShadow: true, skipStroke: this.ignoreStroke() }); - var rotation = getAngle(node.rotation()); + var rotation = Konva.getAngle(node.rotation()); var dx = rect.x * node.scaleX() - node.offsetX() * node.scaleX(); var dy = rect.y * node.scaleY() - node.offsetY() * node.scaleY(); @@ -320,7 +320,7 @@ export class Transformer extends Group { anchor.on('mouseenter', function() { var tr = this.getParent(); - var rad = getAngle(tr.rotation()); + var rad = Konva.getAngle(tr.rotation()); var scale = tr.getNode().getAbsoluteScale(); // If scale.y < 0 xor scale.x < 0 we need to flip (not rotate). @@ -494,17 +494,17 @@ export class Transformer extends Group { dAlpha -= Math.PI; } - var rot = getAngle(this.rotation()); + var rot = Konva.getAngle(this.rotation()); var newRotation = Util._radToDeg(rot) + Util._radToDeg(dAlpha); - var alpha = getAngle(this.getNode().rotation()); + var alpha = Konva.getAngle(this.getNode().rotation()); var newAlpha = Util._degToRad(newRotation); var snaps = this.rotationSnaps(); var offset = 0.1; for (var i = 0; i < snaps.length; i++) { - var angle = getAngle(snaps[i]); + var angle = Konva.getAngle(snaps[i]); var dif = Math.abs(angle - Util._degToRad(newRotation)) % (Math.PI * 2); @@ -519,9 +519,7 @@ export class Transformer extends Group { this._fitNodeInto( { - rotation: _getGlobalKonva().angleDeg - ? newRotation - : Util._degToRad(newRotation), + rotation: Konva.angleDeg ? newRotation : Util._degToRad(newRotation), x: attrs.x + (attrs.width / 2 + padding) * @@ -640,7 +638,7 @@ export class Transformer extends Group { var scaleX = (newAttrs.width - padding * 2) / pure.width; var scaleY = (newAttrs.height - padding * 2) / pure.height; - var rotation = getAngle(node.rotation()); + var rotation = Konva.getAngle(node.rotation()); var dx = pure.x * scaleX - padding - node.offsetX() * scaleX; var dy = pure.y * scaleY - padding - node.offsetY() * scaleY; diff --git a/src/shapes/Wedge.ts b/src/shapes/Wedge.ts index 32b4555b..3bfe1612 100644 --- a/src/shapes/Wedge.ts +++ b/src/shapes/Wedge.ts @@ -1,7 +1,7 @@ import { Collection } from '../Util'; import { Factory } from '../Factory'; import { Shape } from '../Shape'; -import { getAngle } from '../Global'; +import { Konva } from '../Global'; import { getNumberValidator } from '../Validators'; import { _registerNode } from '../Global'; @@ -37,7 +37,7 @@ export class Wedge extends Shape { 0, this.radius(), 0, - getAngle(this.angle()), + Konva.getAngle(this.angle()), this.clockwise() ); context.lineTo(0, 0); diff --git a/test/import-test.js b/test/import-test.js index 9e36c7f9..2a5d6b51 100644 --- a/test/import-test.js +++ b/test/import-test.js @@ -13,6 +13,7 @@ equal(Konva.Rect, undefined, 'no external shapes'); let Rect = require('../lib/shapes/Rect').Rect; equal(Rect !== undefined, true, 'Rect is defined'); +equal(Konva.Rect, Rect, 'Rect is injected'); // now import from package.json let NewKonva = require('../'); @@ -21,3 +22,5 @@ equal(NewKonva.Rect, Rect, 'Same rects'); // check global injection equal(global.Konva, NewKonva, 'injected'); + +equal(NewKonva, Konva, 'Full package is the same as core.'); diff --git a/tsconfig.json b/tsconfig.json index 859f1953..4b45b8ec 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "outDir": "lib", - "module": "ES2015", + "module": "es2015", "target": "es5", "noEmitOnError": true, "lib": ["es2015", "dom"]