From b18b11bc5fdf8bafe0a5d41a23370afd4a0c120e Mon Sep 17 00:00:00 2001 From: Anton Lavrenov Date: Wed, 4 Jul 2018 11:22:47 +0700 Subject: [PATCH] build --- konva.js | 62 +++++++++++++++++++++++++++++++++++----------------- konva.min.js | 4 ++-- 2 files changed, 44 insertions(+), 22 deletions(-) diff --git a/konva.js b/konva.js index 13929948..d4cc20a0 100644 --- a/konva.js +++ b/konva.js @@ -2,7 +2,7 @@ * Konva JavaScript Framework v2.1.7 * http://konvajs.github.io/ * Licensed under the MIT - * Date: Tue Jul 03 2018 + * Date: Wed Jul 04 2018 * * Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS) * Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva) @@ -18707,6 +18707,9 @@ (function(Konva) { 'use strict'; + var BASE_BOX_WIDTH = 10; + var BASE_BOX_HEIGHT = 10; + var ATTR_CHANGE_LIST = [ 'resizeEnabledChange', 'rotateHandlerOffsetChange' @@ -18752,12 +18755,17 @@ 'bottom-right': 135 }; - function getCursor(anchorName, rad) { + function getCursor(anchorName, rad, isMirrored) { if (anchorName === 'rotater') { return 'crosshair'; } rad += Konva.Util._degToRad(ANGLES[anchorName] || 0); + // If we are mirrored, we need to mirror the angle (this is not the same as + // rotate). + if (isMirrored) { + rad *= -1; + } var angle = (Konva.Util._radToDeg(rad) % 360 + 360) % 360; if ( @@ -18836,8 +18844,6 @@ 'bottom-right' ]; - var warningShowed = false; - Konva.Transformer.prototype = { _centroid: false, ____init: function(config) { @@ -18854,13 +18860,6 @@ // update transformer data for certain attr changes this.on(ATTR_CHANGE_LIST, this.update); - if (!warningShowed) { - Konva.Util.warn( - 'Konva.Transformer is currently experimental and may have bugs. Please report any issues to GitHub repo.' - ); - warningShowed = true; - } - if (this.getNode()) { this.update(); } @@ -19005,10 +19004,10 @@ fill: 'white', strokeWidth: 1, name: name, - width: 10, - height: 10, - offsetX: 5, - offsetY: 5, + width: BASE_BOX_WIDTH, + height: BASE_BOX_HEIGHT, + offsetX: BASE_BOX_WIDTH / 2, + offsetY: BASE_BOX_HEIGHT / 2, dragDistance: 0 }); var self = this; @@ -19040,8 +19039,10 @@ // var dy = -pos.y + center.y; // var angle = -Math.atan2(-dy, dx) - Math.PI / 2; - - var cursor = getCursor(name, rad); + 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; + var cursor = getCursor(name, rad, isMirrored); anchor.getStage().content.style.cursor = cursor; layer.batchDraw(); }); @@ -19354,6 +19355,15 @@ }, update: function() { var attrs = this._getNodeRect(); + var node = this.getNode(); + var scale = { x: 1, y: 1 }; + if (node && node.getParent()) { + scale = node.getParent().getAbsoluteScale(); + } + var invertedScale = { + x: 1 / scale.x, + y: 1 / scale.y + }; var width = attrs.width; var height = attrs.height; @@ -19364,53 +19374,65 @@ this.findOne('.top-left').setAttrs({ x: -padding, y: -padding, + scale: invertedScale, visible: resizeEnabled && enabledHandlers.indexOf('top-left') >= 0 }); this.findOne('.top-center').setAttrs({ x: width / 2, y: -padding, + scale: invertedScale, visible: resizeEnabled && enabledHandlers.indexOf('top-center') >= 0 }); this.findOne('.top-right').setAttrs({ x: width + padding, y: -padding, + scale: invertedScale, visible: resizeEnabled && enabledHandlers.indexOf('top-right') >= 0 }); this.findOne('.middle-left').setAttrs({ x: -padding, y: height / 2, + scale: invertedScale, visible: resizeEnabled && enabledHandlers.indexOf('middle-left') >= 0 }); this.findOne('.middle-right').setAttrs({ x: width + padding, y: height / 2, + scale: invertedScale, visible: resizeEnabled && enabledHandlers.indexOf('middle-right') >= 0 }); this.findOne('.bottom-left').setAttrs({ x: -padding, y: height + padding, + scale: invertedScale, visible: resizeEnabled && enabledHandlers.indexOf('bottom-left') >= 0 }); this.findOne('.bottom-center').setAttrs({ x: width / 2, y: height + padding, + scale: invertedScale, visible: resizeEnabled && enabledHandlers.indexOf('bottom-center') >= 0 }); this.findOne('.bottom-right').setAttrs({ x: width + padding, y: height + padding, + scale: invertedScale, visible: resizeEnabled && enabledHandlers.indexOf('bottom-right') >= 0 }); + var scaledRotateHandlerOffset = + -this.rotateHandlerOffset() * Math.abs(invertedScale.y); this.findOne('.rotater').setAttrs({ x: width / 2, - y: -this.rotateHandlerOffset() * Konva.Util._sign(height), + y: scaledRotateHandlerOffset * Konva.Util._sign(height), + scale: invertedScale, visible: this.rotateEnabled() }); this.findOne('.back').setAttrs({ - width: width, - height: height, + width: width * scale.x, + height: height * scale.y, + scale: invertedScale, visible: this.lineEnabled() }); }, diff --git a/konva.min.js b/konva.min.js index b125fbc7..e28b453f 100644 --- a/konva.min.js +++ b/konva.min.js @@ -2,7 +2,7 @@ * Konva JavaScript Framework v2.1.7 * http://konvajs.github.io/ * Licensed under the MIT - * Date: Tue Jul 03 2018 + * Date: Wed Jul 04 2018 * * Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS) * Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva) @@ -23,4 +23,4 @@ * @example * node.cache(); * node.filters([Konva.Filters.Sepia]); - */Konva.Filters.Sepia=function(t){var e,n,i,a,r,o,s,h,c,l=t.data,d=t.width,u=t.height,f=4*d;do{for(e=(u-1)*f,n=d;s=.393*(a=l[i=e+4*(n-1)])+.769*(r=l[i+1])+.189*(o=l[i+2]),h=.349*a+.686*r+.168*o,c=.272*a+.534*r+.131*o,l[i]=255this.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())},getTime:function(){return this._time},setPosition:function(t){this.prevPos=this._pos,this.propFunc(t),this._pos=t},getPosition:function(t){return void 0===t&&(t=this._time),this.func(t,this.begin,this._change,this.duration)},play:function(){this.state=2,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onPlay")},reverse:function(){this.state=3,this._time=this.duration-this._time,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onReverse")},seek:function(t){this.pause(),this._time=t,this.update(),this.fire("onSeek")},reset:function(){this.pause(),this._time=0,this.update(),this.fire("onReset")},finish:function(){this.pause(),this._time=this.duration,this.update(),this.fire("onFinish")},update:function(){this.setPosition(this.getPosition(this._time))},onEnterFrame:function(){var t=this.getTimer()-this._startTime;2===this.state?this.setTime(t):3===this.state&&this.setTime(this.duration-t)},pause:function(){this.state=1,this.fire("onPause")},getTimer:function(){return(new Date).getTime()}},Konva.Tween=function(t){var e,n,i=this,a=t.node,r=a._id,o=t.easing||Konva.Easings.Linear,s=!!t.yoyo;e=void 0===t.duration?1:0===t.duration?.001:t.duration,this.node=a,this._id=l++;var h=a.getLayer()||(a instanceof Konva.Stage?a.getLayers():null);for(n in h||Konva.Util.error("Tween constructor have `node` that is not in a layer. Please add node into layer first."),this.anim=new Konva.Animation(function(){i.tween.onEnterFrame()},h),this.tween=new d(n,function(t){i._tweenFunc(t)},o,0,1,1e3*e,s),this._addListeners(),Konva.Tween.attrs[r]||(Konva.Tween.attrs[r]={}),Konva.Tween.attrs[r][this._id]||(Konva.Tween.attrs[r][this._id]={}),Konva.Tween.tweens[r]||(Konva.Tween.tweens[r]={}),t)void 0===c[n]&&this._addAttr(n,t[n]);this.reset(),this.onFinish=t.onFinish,this.onReset=t.onReset},Konva.Tween.attrs={},Konva.Tween.tweens={},Konva.Tween.prototype={_addAttr:function(t,e){var n,i,a,r,o,s,h,c=this.node,l=c._id;if((a=Konva.Tween.tweens[l][t])&&delete Konva.Tween.attrs[l][a][t],n=c.getAttr(t),Konva.Util._isArray(e))for(i=[],o=Math.max(e.length,n.length),"points"===t&&e.length!==n.length&&(e.length>n.length?(h=n,n=Konva.Util._prepareArrayForTween(n,e,c.closed())):(s=e,e=Konva.Util._prepareArrayForTween(e,n,c.closed()))),r=0;r>>1,F=_.slice(0,w+1),T=this._getTextWidth(F)+y;T<=c?(K=w+1,C=F+(v?"…":""),b=T):x=w}if(!C)break;if(g){var P,A=_[C.length];0<(P=(" "===A||"-"===A)&&b<=c?C.length:Math.max(C.lastIndexOf(" "),C.lastIndexOf("-"))+1)&&(K=P,C=C.slice(0,K),b=this._getTextWidth(C))}if(this._addTextLine(C),n=Math.max(n,b),d+=i,!f||s&&le?v=Konva.Path.getPointOnLine(e,g.x,g.y,p.points[0],p.points[1],g.x,g.y):p=void 0;break;case"A":var o=p.points[4],s=p.points[5],h=p.points[4]+s;0===_?_=o+1e-8:np.pathLength?1e-8:e/p.pathLength:nthis.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())},getTime:function(){return this._time},setPosition:function(t){this.prevPos=this._pos,this.propFunc(t),this._pos=t},getPosition:function(t){return void 0===t&&(t=this._time),this.func(t,this.begin,this._change,this.duration)},play:function(){this.state=2,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onPlay")},reverse:function(){this.state=3,this._time=this.duration-this._time,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onReverse")},seek:function(t){this.pause(),this._time=t,this.update(),this.fire("onSeek")},reset:function(){this.pause(),this._time=0,this.update(),this.fire("onReset")},finish:function(){this.pause(),this._time=this.duration,this.update(),this.fire("onFinish")},update:function(){this.setPosition(this.getPosition(this._time))},onEnterFrame:function(){var t=this.getTimer()-this._startTime;2===this.state?this.setTime(t):3===this.state&&this.setTime(this.duration-t)},pause:function(){this.state=1,this.fire("onPause")},getTimer:function(){return(new Date).getTime()}},Konva.Tween=function(t){var e,n,i=this,a=t.node,r=a._id,o=t.easing||Konva.Easings.Linear,s=!!t.yoyo;e=void 0===t.duration?1:0===t.duration?.001:t.duration,this.node=a,this._id=l++;var h=a.getLayer()||(a instanceof Konva.Stage?a.getLayers():null);for(n in h||Konva.Util.error("Tween constructor have `node` that is not in a layer. Please add node into layer first."),this.anim=new Konva.Animation(function(){i.tween.onEnterFrame()},h),this.tween=new d(n,function(t){i._tweenFunc(t)},o,0,1,1e3*e,s),this._addListeners(),Konva.Tween.attrs[r]||(Konva.Tween.attrs[r]={}),Konva.Tween.attrs[r][this._id]||(Konva.Tween.attrs[r][this._id]={}),Konva.Tween.tweens[r]||(Konva.Tween.tweens[r]={}),t)void 0===c[n]&&this._addAttr(n,t[n]);this.reset(),this.onFinish=t.onFinish,this.onReset=t.onReset},Konva.Tween.attrs={},Konva.Tween.tweens={},Konva.Tween.prototype={_addAttr:function(t,e){var n,i,a,r,o,s,h,c=this.node,l=c._id;if((a=Konva.Tween.tweens[l][t])&&delete Konva.Tween.attrs[l][a][t],n=c.getAttr(t),Konva.Util._isArray(e))for(i=[],o=Math.max(e.length,n.length),"points"===t&&e.length!==n.length&&(e.length>n.length?(h=n,n=Konva.Util._prepareArrayForTween(n,e,c.closed())):(s=e,e=Konva.Util._prepareArrayForTween(e,n,c.closed()))),r=0;r>>1,F=_.slice(0,w+1),T=this._getTextWidth(F)+y;T<=c?(K=w+1,C=F+(v?"…":""),b=T):x=w}if(!C)break;if(g){var P,A=_[C.length];0<(P=(" "===A||"-"===A)&&b<=c?C.length:Math.max(C.lastIndexOf(" "),C.lastIndexOf("-"))+1)&&(K=P,C=C.slice(0,K),b=this._getTextWidth(C))}if(this._addTextLine(C),n=Math.max(n,b),d+=i,!f||s&&le?v=Konva.Path.getPointOnLine(e,g.x,g.y,p.points[0],p.points[1],g.x,g.y):p=void 0;break;case"A":var o=p.points[4],s=p.points[5],h=p.points[4]+s;0===_?_=o+1e-8:np.pathLength?1e-8:e/p.pathLength:n