From 2b58f38a938d46d8e2264d03ef426f53ce4c6262 Mon Sep 17 00:00:00 2001 From: Anton Lavrenov Date: Tue, 2 Jun 2020 12:16:44 -0500 Subject: [PATCH] smaller code, ts fixes --- gulpfile.js | 22 ++++++------ konva.js | 91 ++++++++++++++++++++------------------------------ konva.min.js | 4 +-- package.json | 15 ++++++++- src/Factory.ts | 28 ++++++++-------- src/Node.ts | 57 ++++++++++++++++--------------- src/Shape.ts | 23 +------------ 7 files changed, 109 insertions(+), 131 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 98dad6bd..69d3f1f7 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -31,7 +31,7 @@ function build() { .pipe(replace('@@date', new Date().toDateString())); } -gulp.task('update-version-lib', function() { +gulp.task('update-version-lib', function () { return gulp .src(['./lib/Global.js']) .pipe(replace('@@version', conf.version)) @@ -40,12 +40,12 @@ gulp.task('update-version-lib', function() { }); // create usual build konva.js and konva.min.js -gulp.task('pre-build', function() { +gulp.task('pre-build', function () { return build() .pipe(rename('konva.js')) .pipe(gulp.dest('./')) .pipe(uglify({ output: { comments: /^!|@preserve|@license|@cc_on/i } })) - .on('error', function(err) { + .on('error', function (err) { gutil.log(gutil.colors.red('[Error]'), err.toString()); }) .pipe(rename('konva.min.js')) @@ -55,18 +55,18 @@ gulp.task('pre-build', function() { gulp.task('build', gulp.parallel(['update-version-lib', 'pre-build'])); // local server for better development -gulp.task('server', function() { +gulp.task('server', function () { connect.server(); }); // lint files -gulp.task('lint', function() { +gulp.task('lint', function () { return ( gulp .src('./src/**/*.js') .pipe( eslint({ - configFile: './.eslintrc' + configFile: './.eslintrc', }) ) // eslint.format() outputs the lint results to the console. @@ -79,22 +79,22 @@ gulp.task('lint', function() { }); // check code for duplication -gulp.task('inspect', function() { +gulp.task('inspect', function () { return gulp.src('./src/**/*.js').pipe( jscpd({ 'min-lines': 10, - verbose: true + verbose: true, }) ); }); // // generate documentation -gulp.task('api', function() { +gulp.task('api', function () { return gulp.src('./konva.js').pipe( jsdoc({ opts: { - destination: './api' - } + destination: './api', + }, }) ); }); diff --git a/konva.js b/konva.js index e3462548..aed3fa28 100644 --- a/konva.js +++ b/konva.js @@ -8,7 +8,7 @@ * Konva JavaScript Framework v6.0.0 * http://konvajs.org/ * Licensed under the MIT - * Date: Thu May 14 2020 + * Date: Tue Jun 02 2020 * * Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS) * Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva) @@ -1327,9 +1327,9 @@ var GET = 'get', SET = 'set'; var Factory = { addGetterSetter: function (constructor, attr, def, validator, after) { - this.addGetter(constructor, attr, def); - this.addSetter(constructor, attr, validator, after); - this.addOverloadedGetterSetter(constructor, attr); + Factory.addGetter(constructor, attr, def); + Factory.addSetter(constructor, attr, validator, after); + Factory.addOverloadedGetterSetter(constructor, attr); }, addGetter: function (constructor, attr, def) { var method = GET + Util._capitalize(attr); @@ -1392,7 +1392,7 @@ } return this; }; - this.addOverloadedGetterSetter(constructor, attr); + Factory.addOverloadedGetterSetter(constructor, attr); }, addOverloadedGetterSetter: function (constructor, attr) { var capitalizedAttr = Util._capitalize(attr), setter = SET + capitalizedAttr, getter = GET + capitalizedAttr; @@ -1416,10 +1416,10 @@ var val = this.attrs[attr]; return val === undefined ? def : val; }; - this.addSetter(constructor, attr, validator, function () { + Factory.addSetter(constructor, attr, validator, function () { Util.error(message); }); - this.addOverloadedGetterSetter(constructor, attr); + Factory.addOverloadedGetterSetter(constructor, attr); }, backCompat: function (constructor, methods) { Util.each(methods, function (oldMethodName, newMethodName) { @@ -1441,7 +1441,7 @@ }, afterSetFilter: function () { this._filterUpToDate = false; - } + }, }; /*! ***************************************************************************** @@ -4624,6 +4624,7 @@ }()); Node.prototype.nodeType = 'Node'; Node.prototype._attrsAffectingSize = []; + var addGetterSetter = Factory.addGetterSetter; /** * get/set zIndex relative to the node's siblings who share the same parent. * Please remember that zIndex is not absolute (like in CSS). It is relative to parent element only. @@ -4638,7 +4639,7 @@ * // set index * node.zIndex(2); */ - Factory.addGetterSetter(Node, 'zIndex'); + addGetterSetter(Node, 'zIndex'); /** * get/set node absolute position * @name Konva.Node#absolutePosition @@ -4657,8 +4658,8 @@ * y: 10 * }); */ - Factory.addGetterSetter(Node, 'absolutePosition'); - Factory.addGetterSetter(Node, 'position'); + addGetterSetter(Node, 'absolutePosition'); + addGetterSetter(Node, 'position'); /** * get/set node position relative to parent * @name Konva.Node#position @@ -4677,7 +4678,7 @@ * y: 10 * }); */ - Factory.addGetterSetter(Node, 'x', 0, getNumberValidator()); + addGetterSetter(Node, 'x', 0, getNumberValidator()); /** * get/set x position * @name Konva.Node#x @@ -4691,7 +4692,7 @@ * // set x * node.x(5); */ - Factory.addGetterSetter(Node, 'y', 0, getNumberValidator()); + addGetterSetter(Node, 'y', 0, getNumberValidator()); /** * get/set y position * @name Konva.Node#y @@ -4705,7 +4706,7 @@ * // set y * node.y(5); */ - Factory.addGetterSetter(Node, 'globalCompositeOperation', 'source-over', getStringValidator()); + addGetterSetter(Node, 'globalCompositeOperation', 'source-over', getStringValidator()); /** * get/set globalCompositeOperation of a shape * @name Konva.Node#globalCompositeOperation @@ -4719,7 +4720,7 @@ * // set globalCompositeOperation * shape.globalCompositeOperation('source-in'); */ - Factory.addGetterSetter(Node, 'opacity', 1, getNumberValidator()); + addGetterSetter(Node, 'opacity', 1, getNumberValidator()); /** * get/set opacity. Opacity values range from 0 to 1. * A node with an opacity of 0 is fully transparent, and a node @@ -4735,7 +4736,7 @@ * // set opacity * node.opacity(0.5); */ - Factory.addGetterSetter(Node, 'name', '', getStringValidator()); + addGetterSetter(Node, 'name', '', getStringValidator()); /** * get/set name * @name Konva.Node#name @@ -4752,7 +4753,7 @@ * // also node may have multiple names (as css classes) * node.name('foo bar'); */ - Factory.addGetterSetter(Node, 'id', '', getStringValidator()); + addGetterSetter(Node, 'id', '', getStringValidator()); /** * get/set id. Id is global for whole page. * @name Konva.Node#id @@ -4766,7 +4767,7 @@ * // set id * node.id('foo'); */ - Factory.addGetterSetter(Node, 'rotation', 0, getNumberValidator()); + addGetterSetter(Node, 'rotation', 0, getNumberValidator()); /** * get/set rotation in degrees * @name Konva.Node#rotation @@ -4799,7 +4800,7 @@ * y: 3 * }); */ - Factory.addGetterSetter(Node, 'scaleX', 1, getNumberValidator()); + addGetterSetter(Node, 'scaleX', 1, getNumberValidator()); /** * get/set scale x * @name Konva.Node#scaleX @@ -4813,7 +4814,7 @@ * // set scale x * node.scaleX(2); */ - Factory.addGetterSetter(Node, 'scaleY', 1, getNumberValidator()); + addGetterSetter(Node, 'scaleY', 1, getNumberValidator()); /** * get/set scale y * @name Konva.Node#scaleY @@ -4846,7 +4847,7 @@ * y: 10 * }); */ - Factory.addGetterSetter(Node, 'skewX', 0, getNumberValidator()); + addGetterSetter(Node, 'skewX', 0, getNumberValidator()); /** * get/set skew x * @name Konva.Node#skewX @@ -4860,7 +4861,7 @@ * // set skew x * node.skewX(3); */ - Factory.addGetterSetter(Node, 'skewY', 0, getNumberValidator()); + addGetterSetter(Node, 'skewY', 0, getNumberValidator()); /** * get/set skew y * @name Konva.Node#skewY @@ -4892,7 +4893,7 @@ * y: 10 * }); */ - Factory.addGetterSetter(Node, 'offsetX', 0, getNumberValidator()); + addGetterSetter(Node, 'offsetX', 0, getNumberValidator()); /** * get/set offset x * @name Konva.Node#offsetX @@ -4906,7 +4907,7 @@ * // set offset x * node.offsetX(3); */ - Factory.addGetterSetter(Node, 'offsetY', 0, getNumberValidator()); + addGetterSetter(Node, 'offsetY', 0, getNumberValidator()); /** * get/set offset y * @name Konva.Node#offsetY @@ -4920,7 +4921,7 @@ * // set offset y * node.offsetY(3); */ - Factory.addGetterSetter(Node, 'dragDistance', null, getNumberValidator()); + addGetterSetter(Node, 'dragDistance', null, getNumberValidator()); /** * get/set drag distance * @name Konva.Node#dragDistance @@ -4937,7 +4938,7 @@ * // or set globally * Konva.dragDistance = 3; */ - Factory.addGetterSetter(Node, 'width', 0, getNumberValidator()); + addGetterSetter(Node, 'width', 0, getNumberValidator()); /** * get/set width * @name Konva.Node#width @@ -4951,7 +4952,7 @@ * // set width * node.width(100); */ - Factory.addGetterSetter(Node, 'height', 0, getNumberValidator()); + addGetterSetter(Node, 'height', 0, getNumberValidator()); /** * get/set height * @name Konva.Node#height @@ -4965,7 +4966,7 @@ * // set height * node.height(100); */ - Factory.addGetterSetter(Node, 'listening', true, getBooleanValidator()); + addGetterSetter(Node, 'listening', true, getBooleanValidator()); /** * get/set listening attr. If you need to determine if a node is listening or not * by taking into account its parents, use the isListening() method @@ -5001,8 +5002,8 @@ * // set preventDefault * shape.preventDefault(false); */ - Factory.addGetterSetter(Node, 'preventDefault', true, getBooleanValidator()); - Factory.addGetterSetter(Node, 'filters', null, function (val) { + addGetterSetter(Node, 'preventDefault', true, getBooleanValidator()); + addGetterSetter(Node, 'filters', null, function (val) { this._filterUpToDate = false; return val; }); @@ -5028,7 +5029,7 @@ * Konva.Filters.Invert * ]); */ - Factory.addGetterSetter(Node, 'visible', true, getBooleanValidator()); + addGetterSetter(Node, 'visible', true, getBooleanValidator()); /** * get/set visible attr. Can be true, or false. The default is true. * If you need to determine if a node is visible or not @@ -5048,7 +5049,7 @@ * node.visible(true); * */ - Factory.addGetterSetter(Node, 'transformsEnabled', 'all', getStringValidator()); + addGetterSetter(Node, 'transformsEnabled', 'all', getStringValidator()); /** * get/set transforms that are enabled. Can be "all", "none", or "position". The default * is "all" @@ -5083,7 +5084,7 @@ * height: 200 * }); */ - Factory.addGetterSetter(Node, 'size'); + addGetterSetter(Node, 'size'); /** * get/set drag bound function. This is used to override the default * drag and drop position. @@ -5105,7 +5106,7 @@ * }; * }); */ - Factory.addGetterSetter(Node, 'dragBoundFunc'); + addGetterSetter(Node, 'dragBoundFunc'); /** * get/set draggable flag * @name Konva.Node#draggable @@ -5122,7 +5123,7 @@ * // disable drag and drop * node.draggable(false); */ - Factory.addGetterSetter(Node, 'draggable', false, getBooleanValidator()); + addGetterSetter(Node, 'draggable', false, getBooleanValidator()); Factory.backCompat(Node, { rotateDeg: 'rotate', setRotationDeg: 'setRotation', @@ -7084,11 +7085,10 @@ return rect; }; Shape.prototype.drawScene = function (can, top) { - // basically there are 4 drawing modes + // basically there are 3 drawing modes // 1 - simple drawing when nothing is cached. // 2 - when we are caching current // 3 - when node is cached and we need to draw it into layer - // 4 - ?? var layer = this.getLayer(), canvas = can || layer.getCanvas(), context = canvas.getContext(), cachedCanvas = this._getCanvasCache(), drawFunc = this.sceneFunc(), hasShadow = this.hasShadow(), hasStroke = this.hasStroke(), stage, bufferCanvas, bufferContext; var caching = canvas.isCache; var skipBuffer = canvas.isCache; @@ -7141,23 +7141,6 @@ context._applyShadow(this); } drawFunc.call(this, context, this); - // if shape has stroke we need to redraw shape - // otherwise we will see a shadow under stroke (and over fill) - // but I think this is unexpected behavior - if (hasShadow && - hasStroke && - this.hasFill() && - this.shadowForStrokeEnabled() && - false) { - // TODO: are there any ways to avoid double draw? - // hint: https://stackoverflow.com/questions/13470101/getting-single-shadow-for-fill-and-stroke-on-html-canvas - // clear the shadow - context.setAttr('shadowColor', 0); - context.setAttr('shadowOffsetX', 0); - context.setAttr('shadowOffsetY', 0); - context.setAttr('shadowBlur', 0); - drawFunc.call(this, context, this); - } } context.restore(); return this; diff --git a/konva.min.js b/konva.min.js index ccaf360f..dc18e0a3 100644 --- a/konva.min.js +++ b/konva.min.js @@ -3,10 +3,10 @@ * Konva JavaScript Framework v6.0.0 * http://konvajs.org/ * Licensed under the MIT - * Date: Thu May 14 2020 + * Date: Tue Jun 02 2020 * * 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;function t(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 p?{r:(e=p[t])[0],g:e[1],b:e[2]}:"#"===t[0]?this._hexToRgb(t.substring(1)):"rgb("===t.substr(0,4)?(e=u.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",A._namedColorToRBA(t)||A._hex3ColorToRGBA(t)||A._hex6ColorToRGBA(t)||A._rgbColorToRGBA(t)||A._rgbaColorToRGBA(t)||A._hslColorToRGBA(t)},_namedColorToRBA:function(t){var e=p[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}},_hslColorToRGBA:function(t){if(/hsl\((\d+),\s*([\d.]+)%,\s*([\d.]+)%\)/g.test(t)){var e=/hsl\((\d+),\s*([\d.]+)%,\s*([\d.]+)%\)/g.exec(t),i=(e[0],e.slice(1)),n=Number(i[0])/360,r=Number(i[1])/100,o=Number(i[2])/100,a=void 0,s=void 0,h=void 0;if(0==r)return h=255*o,{r:Math.round(h),g:Math.round(h),b:Math.round(h),a:1};for(var d=2*o-(a=o<.5?o*(1+r):o+r-o*r),l=[0,0,0],c=0;c<3;c++)(s=n+1/3*-(c-1))<0&&s++,1t.x+t.width||e.x+e.widtht.y+t.height||e.y+e.heighte.length&&(r=e,e=t,t=r),n=0;n=this.parent.children.length)&&A.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},ct.prototype.getAbsoluteOpacity=function(){return this._getCache(Z,this._getAbsoluteOpacity)},ct.prototype._getAbsoluteOpacity=function(){var t=this.opacity(),e=this.getParent();return e&&!e._isUnderCache&&(t*=e.getAbsoluteOpacity()),t},ct.prototype.moveTo=function(t){return this.getParent()!==t&&(this._remove(),t.add(this)),this},ct.prototype.toObject=function(){var t,e,i,n={},r=this.getAttrs();for(t in n.attrs={},r)e=r[t],A.isObject(e)&&!A._isPlainObject(e)&&!A._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(),A._prepareToStringify(n)},ct.prototype.toJSON=function(){return JSON.stringify(this.toObject())},ct.prototype.getParent=function(){return this.parent},ct.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},ct.prototype.isAncestorOf=function(t){return!1},ct.prototype.findAncestor=function(t,e,i){return this.findAncestors(t,e,i)[0]},ct.prototype._isMatch=function(t){if(!t)return!1;if("function"==typeof t)return t(this);for(var e,i=t.replace(/ /g,"").split(","),n=i.length,r=0;rthis.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())},Te.prototype.getTime=function(){return this._time},Te.prototype.setPosition=function(t){this.prevPos=this._pos,this.propFunc(t),this._pos=t},Te.prototype.getPosition=function(t){return void 0===t&&(t=this._time),this.func(t,this.begin,this._change,this.duration)},Te.prototype.play=function(){this.state=2,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onPlay")},Te.prototype.reverse=function(){this.state=3,this._time=this.duration-this._time,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onReverse")},Te.prototype.seek=function(t){this.pause(),this._time=t,this.update(),this.fire("onSeek")},Te.prototype.reset=function(){this.pause(),this._time=0,this.update(),this.fire("onReset")},Te.prototype.finish=function(){this.pause(),this._time=this.duration,this.update(),this.fire("onFinish")},Te.prototype.update=function(){this.setPosition(this.getPosition(this._time))},Te.prototype.onEnterFrame=function(){var t=this.getTimer()-this._startTime;2===this.state?this.setTime(t):3===this.state&&this.setTime(this.duration-t)},Te.prototype.pause=function(){this.state=1,this.fire("onPause")},Te.prototype.getTimer=function(){return(new Date).getTime()},Te);function Te(t,e,i,n,r,o,a){this.prop=t,this.propFunc=e,this.begin=n,this._pos=n,this.duration=o,this._change=0,this.prevPos=0,this.yoyo=a,this._time=0,this._position=0,this._startTime=0,this._finish=0,this.func=i,this._change=r-this.begin,this.pause()}var Ae=(Me.prototype._addAttr=function(t,e){var i,n,r,o,a,s,h,d,l=this.node,c=l._id,p=Me.tweens[c][t];if(p&&delete Me.attrs[c][p][t],i=l.getAttr(t),A._isArray(e))if(n=[],o=Math.max(e.length,i.length),"points"===t&&e.length!==i.length&&(e.length>i.length?(s=i,i=A._prepareArrayForTween(i,e,l.closed())):(a=e,e=A._prepareArrayForTween(e,i,l.closed()))),0===t.indexOf("fill"))for(r=0;rthis.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],o=r.points;switch(r.command){case"L":return di.getPointOnLine(t,r.start.x,r.start.y,o[0],o[1]);case"C":return di.getPointOnCubicBezier(t/r.pathLength,r.start.x,r.start.y,o[0],o[1],o[2],o[3],o[4],o[5]);case"Q":return di.getPointOnQuadraticBezier(t/r.pathLength,r.start.x,r.start.y,o[0],o[1],o[2],o[3]);case"A":var a=o[0],s=o[1],h=o[2],d=o[3],l=o[4],c=o[5],p=o[6];return l+=c*t/r.pathLength,di.getPointOnEllipticalArc(a,s,h,d,l,p)}return null},di.getLineLength=function(t,e,i,n){return Math.sqrt((i-t)*(i-t)+(n-e)*(n-e))},di.getPointOnLine=function(t,e,i,n,r,o,a){void 0===o&&(o=e),void 0===a&&(a=i);var s=(r-i)/(n-e+1e-8),h=Math.sqrt(t*t/(1+s*s));n>>1,A=_.slice(0,1+T),M=this._getTextWidth(A)+y;M<=d?(w=1+T,P=A+(g?"…":""),k=M):C=T}if(!P)break;if(!f||0<(S=(" "===(x=_[P.length])||"-"===x)&&k<=d?P.length:Math.max(P.lastIndexOf(" "),P.lastIndexOf("-"))+1)&&(w=S,P=P.slice(0,w),k=this._getTextWidth(P)),P=P.trimRight(),this._addTextLine(P),i=Math.max(i,k),c+=n,!u||s&&le?g=hi.getPointOnLine(e,f.x,f.y,y.points[0],y.points[1],f.x,f.y):y=void 0;break;case"A":var a=y.points[4],s=y.points[5],h=y.points[4]+s;0===m?m=a+1e-8:iy.pathLength?1e-8:e/y.pathLength:id.x?-1:1,c=this.findOne(".top-left").y()>d.y?-1:1,w=s*this.cos*l,C=s*this.sin*c,this.findOne(".top-left").x(d.x-w),this.findOne(".top-left").y(d.y-C)):"top-center"===this._movingAnchorName?this.findOne(".top-left").y(e.y()):"top-right"===this._movingAnchorName?(a&&(d=p?{x:this.width()/2,y:this.height()/2}:{x:this.findOne(".bottom-left").x(),y:this.findOne(".bottom-left").y()},s=Math.sqrt(Math.pow(e.x()-d.x,2)+Math.pow(d.y-e.y(),2)),l=this.findOne(".top-right").x()d.y?-1:1,w=s*this.cos*l,C=s*this.sin*c,this.findOne(".top-right").x(d.x+w),this.findOne(".top-right").y(d.y-C)),h=e.position(),this.findOne(".top-left").y(h.y),this.findOne(".bottom-right").x(h.x)):"middle-left"===this._movingAnchorName?this.findOne(".top-left").x(e.x()):"middle-right"===this._movingAnchorName?this.findOne(".bottom-right").x(e.x()):"bottom-left"===this._movingAnchorName?(a&&(d=p?{x:this.width()/2,y:this.height()/2}:{x:this.findOne(".top-right").x(),y:this.findOne(".top-right").y()},s=Math.sqrt(Math.pow(d.x-e.x(),2)+Math.pow(e.y()-d.y,2)),l=d.x>N,0!==w?(w=255/w,P[a]=(h*B>>N)*w,P[a+1]=(d*B>>N)*w,P[a+2]=(l*B>>N)*w):P[a]=P[a+1]=P[a+2]=0,h-=p,d-=u,l-=f,c-=g,p-=O.r,u-=O.g,f-=O.b,g-=O.a,r=s+((r=i+e+1)>N,0>N)*w,P[r+1]=(d*B>>N)*w,P[r+2]=(l*B>>N)*w):P[r]=P[r+1]=P[r+2]=0,h-=p,d-=u,l-=f,c-=g,p-=O.r,u-=O.g,f-=O.b,g-=O.a,r=i+((r=n+R)>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 p?{r:(e=p[t])[0],g:e[1],b:e[2]}:"#"===t[0]?this._hexToRgb(t.substring(1)):"rgb("===t.substr(0,4)?(e=u.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",A._namedColorToRBA(t)||A._hex3ColorToRGBA(t)||A._hex6ColorToRGBA(t)||A._rgbColorToRGBA(t)||A._rgbaColorToRGBA(t)||A._hslColorToRGBA(t)},_namedColorToRBA:function(t){var e=p[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}},_hslColorToRGBA:function(t){if(/hsl\((\d+),\s*([\d.]+)%,\s*([\d.]+)%\)/g.test(t)){var e=/hsl\((\d+),\s*([\d.]+)%,\s*([\d.]+)%\)/g.exec(t),i=(e[0],e.slice(1)),n=Number(i[0])/360,r=Number(i[1])/100,o=Number(i[2])/100,a=void 0,s=void 0,h=void 0;if(0==r)return h=255*o,{r:Math.round(h),g:Math.round(h),b:Math.round(h),a:1};for(var c=2*o-(a=o<.5?o*(1+r):o+r-o*r),l=[0,0,0],d=0;d<3;d++)(s=n+1/3*-(d-1))<0&&s++,1t.x+t.width||e.x+e.widtht.y+t.height||e.y+e.heighte.length&&(r=e,e=t,t=r),n=0;n=this.parent.children.length)&&A.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},dt.prototype.getAbsoluteOpacity=function(){return this._getCache(Z,this._getAbsoluteOpacity)},dt.prototype._getAbsoluteOpacity=function(){var t=this.opacity(),e=this.getParent();return e&&!e._isUnderCache&&(t*=e.getAbsoluteOpacity()),t},dt.prototype.moveTo=function(t){return this.getParent()!==t&&(this._remove(),t.add(this)),this},dt.prototype.toObject=function(){var t,e,i,n={},r=this.getAttrs();for(t in n.attrs={},r)e=r[t],A.isObject(e)&&!A._isPlainObject(e)&&!A._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(),A._prepareToStringify(n)},dt.prototype.toJSON=function(){return JSON.stringify(this.toObject())},dt.prototype.getParent=function(){return this.parent},dt.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},dt.prototype.isAncestorOf=function(t){return!1},dt.prototype.findAncestor=function(t,e,i){return this.findAncestors(t,e,i)[0]},dt.prototype._isMatch=function(t){if(!t)return!1;if("function"==typeof t)return t(this);for(var e,i=t.replace(/ /g,"").split(","),n=i.length,r=0;rthis.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())},Ae.prototype.getTime=function(){return this._time},Ae.prototype.setPosition=function(t){this.prevPos=this._pos,this.propFunc(t),this._pos=t},Ae.prototype.getPosition=function(t){return void 0===t&&(t=this._time),this.func(t,this.begin,this._change,this.duration)},Ae.prototype.play=function(){this.state=2,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onPlay")},Ae.prototype.reverse=function(){this.state=3,this._time=this.duration-this._time,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onReverse")},Ae.prototype.seek=function(t){this.pause(),this._time=t,this.update(),this.fire("onSeek")},Ae.prototype.reset=function(){this.pause(),this._time=0,this.update(),this.fire("onReset")},Ae.prototype.finish=function(){this.pause(),this._time=this.duration,this.update(),this.fire("onFinish")},Ae.prototype.update=function(){this.setPosition(this.getPosition(this._time))},Ae.prototype.onEnterFrame=function(){var t=this.getTimer()-this._startTime;2===this.state?this.setTime(t):3===this.state&&this.setTime(this.duration-t)},Ae.prototype.pause=function(){this.state=1,this.fire("onPause")},Ae.prototype.getTimer=function(){return(new Date).getTime()},Ae);function Ae(t,e,i,n,r,o,a){this.prop=t,this.propFunc=e,this.begin=n,this._pos=n,this.duration=o,this._change=0,this.prevPos=0,this.yoyo=a,this._time=0,this._position=0,this._startTime=0,this._finish=0,this.func=i,this._change=r-this.begin,this.pause()}var Me=(Ge.prototype._addAttr=function(t,e){var i,n,r,o,a,s,h,c,l=this.node,d=l._id,p=Ge.tweens[d][t];if(p&&delete Ge.attrs[d][p][t],i=l.getAttr(t),A._isArray(e))if(n=[],o=Math.max(e.length,i.length),"points"===t&&e.length!==i.length&&(e.length>i.length?(s=i,i=A._prepareArrayForTween(i,e,l.closed())):(a=e,e=A._prepareArrayForTween(e,i,l.closed()))),0===t.indexOf("fill"))for(r=0;rthis.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],o=r.points;switch(r.command){case"L":return li.getPointOnLine(t,r.start.x,r.start.y,o[0],o[1]);case"C":return li.getPointOnCubicBezier(t/r.pathLength,r.start.x,r.start.y,o[0],o[1],o[2],o[3],o[4],o[5]);case"Q":return li.getPointOnQuadraticBezier(t/r.pathLength,r.start.x,r.start.y,o[0],o[1],o[2],o[3]);case"A":var a=o[0],s=o[1],h=o[2],c=o[3],l=o[4],d=o[5],p=o[6];return l+=d*t/r.pathLength,li.getPointOnEllipticalArc(a,s,h,c,l,p)}return null},li.getLineLength=function(t,e,i,n){return Math.sqrt((i-t)*(i-t)+(n-e)*(n-e))},li.getPointOnLine=function(t,e,i,n,r,o,a){void 0===o&&(o=e),void 0===a&&(a=i);var s=(r-i)/(n-e+1e-8),h=Math.sqrt(t*t/(1+s*s));n>>1,A=_.slice(0,1+T),M=this._getTextWidth(A)+y;M<=c?(w=1+T,P=A+(g?"…":""),k=M):C=T}if(!P)break;if(!f||0<(S=(" "===(x=_[P.length])||"-"===x)&&k<=c?P.length:Math.max(P.lastIndexOf(" "),P.lastIndexOf("-"))+1)&&(w=S,P=P.slice(0,w),k=this._getTextWidth(P)),P=P.trimRight(),this._addTextLine(P),i=Math.max(i,k),d+=n,!u||s&&le?g=ci.getPointOnLine(e,f.x,f.y,y.points[0],y.points[1],f.x,f.y):y=void 0;break;case"A":var a=y.points[4],s=y.points[5],h=y.points[4]+s;0===m?m=a+1e-8:iy.pathLength?1e-8:e/y.pathLength:ic.x?-1:1,d=this.findOne(".top-left").y()>c.y?-1:1,w=s*this.cos*l,C=s*this.sin*d,this.findOne(".top-left").x(c.x-w),this.findOne(".top-left").y(c.y-C)):"top-center"===this._movingAnchorName?this.findOne(".top-left").y(e.y()):"top-right"===this._movingAnchorName?(a&&(c=p?{x:this.width()/2,y:this.height()/2}:{x:this.findOne(".bottom-left").x(),y:this.findOne(".bottom-left").y()},s=Math.sqrt(Math.pow(e.x()-c.x,2)+Math.pow(c.y-e.y(),2)),l=this.findOne(".top-right").x()c.y?-1:1,w=s*this.cos*l,C=s*this.sin*d,this.findOne(".top-right").x(c.x+w),this.findOne(".top-right").y(c.y-C)),h=e.position(),this.findOne(".top-left").y(h.y),this.findOne(".bottom-right").x(h.x)):"middle-left"===this._movingAnchorName?this.findOne(".top-left").x(e.x()):"middle-right"===this._movingAnchorName?this.findOne(".bottom-right").x(e.x()):"bottom-left"===this._movingAnchorName?(a&&(c=p?{x:this.width()/2,y:this.height()/2}:{x:this.findOne(".top-right").x(),y:this.findOne(".top-right").y()},s=Math.sqrt(Math.pow(c.x-e.x(),2)+Math.pow(e.y()-c.y,2)),l=c.x>N,0!==w?(w=255/w,P[a]=(h*B>>N)*w,P[a+1]=(c*B>>N)*w,P[a+2]=(l*B>>N)*w):P[a]=P[a+1]=P[a+2]=0,h-=p,c-=u,l-=f,d-=g,p-=O.r,u-=O.g,f-=O.b,g-=O.a,r=s+((r=i+e+1)>N,0>N)*w,P[r+1]=(c*B>>N)*w,P[r+2]=(l*B>>N)*w):P[r]=P[r+1]=P[r+2]=0,h-=p,c-=u,l-=f,d-=g,p-=O.r,u-=O.g,f-=O.b,g-=O.a,r=i+((r=n+R) { enhance: GetSet; filters: GetSet; position: GetSet; + absolutePosition: GetSet; size: GetSet<{ width: number; height: number }, this>; id: GetSet; @@ -2547,6 +2548,8 @@ export abstract class Node { Node.prototype.nodeType = 'Node'; Node.prototype._attrsAffectingSize = []; +const addGetterSetter = Factory.addGetterSetter; + /** * get/set zIndex relative to the node's siblings who share the same parent. * Please remember that zIndex is not absolute (like in CSS). It is relative to parent element only. @@ -2561,7 +2564,7 @@ Node.prototype._attrsAffectingSize = []; * // set index * node.zIndex(2); */ -Factory.addGetterSetter(Node, 'zIndex'); +addGetterSetter(Node, 'zIndex'); /** * get/set node absolute position @@ -2581,9 +2584,9 @@ Factory.addGetterSetter(Node, 'zIndex'); * y: 10 * }); */ -Factory.addGetterSetter(Node, 'absolutePosition'); +addGetterSetter(Node, 'absolutePosition'); -Factory.addGetterSetter(Node, 'position'); +addGetterSetter(Node, 'position'); /** * get/set node position relative to parent * @name Konva.Node#position @@ -2603,7 +2606,7 @@ Factory.addGetterSetter(Node, 'position'); * }); */ -Factory.addGetterSetter(Node, 'x', 0, getNumberValidator()); +addGetterSetter(Node, 'x', 0, getNumberValidator()); /** * get/set x position @@ -2619,7 +2622,7 @@ Factory.addGetterSetter(Node, 'x', 0, getNumberValidator()); * node.x(5); */ -Factory.addGetterSetter(Node, 'y', 0, getNumberValidator()); +addGetterSetter(Node, 'y', 0, getNumberValidator()); /** * get/set y position @@ -2635,7 +2638,7 @@ Factory.addGetterSetter(Node, 'y', 0, getNumberValidator()); * node.y(5); */ -Factory.addGetterSetter( +addGetterSetter( Node, 'globalCompositeOperation', 'source-over', @@ -2655,7 +2658,7 @@ Factory.addGetterSetter( * // set globalCompositeOperation * shape.globalCompositeOperation('source-in'); */ -Factory.addGetterSetter(Node, 'opacity', 1, getNumberValidator()); +addGetterSetter(Node, 'opacity', 1, getNumberValidator()); /** * get/set opacity. Opacity values range from 0 to 1. @@ -2673,7 +2676,7 @@ Factory.addGetterSetter(Node, 'opacity', 1, getNumberValidator()); * node.opacity(0.5); */ -Factory.addGetterSetter(Node, 'name', '', getStringValidator()); +addGetterSetter(Node, 'name', '', getStringValidator()); /** * get/set name @@ -2692,7 +2695,7 @@ Factory.addGetterSetter(Node, 'name', '', getStringValidator()); * node.name('foo bar'); */ -Factory.addGetterSetter(Node, 'id', '', getStringValidator()); +addGetterSetter(Node, 'id', '', getStringValidator()); /** * get/set id. Id is global for whole page. @@ -2708,7 +2711,7 @@ Factory.addGetterSetter(Node, 'id', '', getStringValidator()); * node.id('foo'); */ -Factory.addGetterSetter(Node, 'rotation', 0, getNumberValidator()); +addGetterSetter(Node, 'rotation', 0, getNumberValidator()); /** * get/set rotation in degrees @@ -2745,7 +2748,7 @@ Factory.addComponentsGetterSetter(Node, 'scale', ['x', 'y']); * }); */ -Factory.addGetterSetter(Node, 'scaleX', 1, getNumberValidator()); +addGetterSetter(Node, 'scaleX', 1, getNumberValidator()); /** * get/set scale x @@ -2761,7 +2764,7 @@ Factory.addGetterSetter(Node, 'scaleX', 1, getNumberValidator()); * node.scaleX(2); */ -Factory.addGetterSetter(Node, 'scaleY', 1, getNumberValidator()); +addGetterSetter(Node, 'scaleY', 1, getNumberValidator()); /** * get/set scale y @@ -2798,7 +2801,7 @@ Factory.addComponentsGetterSetter(Node, 'skew', ['x', 'y']); * }); */ -Factory.addGetterSetter(Node, 'skewX', 0, getNumberValidator()); +addGetterSetter(Node, 'skewX', 0, getNumberValidator()); /** * get/set skew x @@ -2814,7 +2817,7 @@ Factory.addGetterSetter(Node, 'skewX', 0, getNumberValidator()); * node.skewX(3); */ -Factory.addGetterSetter(Node, 'skewY', 0, getNumberValidator()); +addGetterSetter(Node, 'skewY', 0, getNumberValidator()); /** * get/set skew y @@ -2850,7 +2853,7 @@ Factory.addComponentsGetterSetter(Node, 'offset', ['x', 'y']); * }); */ -Factory.addGetterSetter(Node, 'offsetX', 0, getNumberValidator()); +addGetterSetter(Node, 'offsetX', 0, getNumberValidator()); /** * get/set offset x @@ -2866,7 +2869,7 @@ Factory.addGetterSetter(Node, 'offsetX', 0, getNumberValidator()); * node.offsetX(3); */ -Factory.addGetterSetter(Node, 'offsetY', 0, getNumberValidator()); +addGetterSetter(Node, 'offsetY', 0, getNumberValidator()); /** * get/set offset y @@ -2882,7 +2885,7 @@ Factory.addGetterSetter(Node, 'offsetY', 0, getNumberValidator()); * node.offsetY(3); */ -Factory.addGetterSetter(Node, 'dragDistance', null, getNumberValidator()); +addGetterSetter(Node, 'dragDistance', null, getNumberValidator()); /** * get/set drag distance @@ -2901,7 +2904,7 @@ Factory.addGetterSetter(Node, 'dragDistance', null, getNumberValidator()); * Konva.dragDistance = 3; */ -Factory.addGetterSetter(Node, 'width', 0, getNumberValidator()); +addGetterSetter(Node, 'width', 0, getNumberValidator()); /** * get/set width * @name Konva.Node#width @@ -2916,7 +2919,7 @@ Factory.addGetterSetter(Node, 'width', 0, getNumberValidator()); * node.width(100); */ -Factory.addGetterSetter(Node, 'height', 0, getNumberValidator()); +addGetterSetter(Node, 'height', 0, getNumberValidator()); /** * get/set height * @name Konva.Node#height @@ -2931,7 +2934,7 @@ Factory.addGetterSetter(Node, 'height', 0, getNumberValidator()); * node.height(100); */ -Factory.addGetterSetter(Node, 'listening', true, getBooleanValidator()); +addGetterSetter(Node, 'listening', true, getBooleanValidator()); /** * get/set listening attr. If you need to determine if a node is listening or not * by taking into account its parents, use the isListening() method @@ -2969,9 +2972,9 @@ Factory.addGetterSetter(Node, 'listening', true, getBooleanValidator()); * shape.preventDefault(false); */ -Factory.addGetterSetter(Node, 'preventDefault', true, getBooleanValidator()); +addGetterSetter(Node, 'preventDefault', true, getBooleanValidator()); -Factory.addGetterSetter(Node, 'filters', null, function (val) { +addGetterSetter(Node, 'filters', null, function (val) { this._filterUpToDate = false; return val; }); @@ -2998,7 +3001,7 @@ Factory.addGetterSetter(Node, 'filters', null, function (val) { * ]); */ -Factory.addGetterSetter(Node, 'visible', true, getBooleanValidator()); +addGetterSetter(Node, 'visible', true, getBooleanValidator()); /** * get/set visible attr. Can be true, or false. The default is true. * If you need to determine if a node is visible or not @@ -3019,7 +3022,7 @@ Factory.addGetterSetter(Node, 'visible', true, getBooleanValidator()); * */ -Factory.addGetterSetter(Node, 'transformsEnabled', 'all', getStringValidator()); +addGetterSetter(Node, 'transformsEnabled', 'all', getStringValidator()); /** * get/set transforms that are enabled. Can be "all", "none", or "position". The default @@ -3056,7 +3059,7 @@ Factory.addGetterSetter(Node, 'transformsEnabled', 'all', getStringValidator()); * height: 200 * }); */ -Factory.addGetterSetter(Node, 'size'); +addGetterSetter(Node, 'size'); /** * get/set drag bound function. This is used to override the default @@ -3079,7 +3082,7 @@ Factory.addGetterSetter(Node, 'size'); * }; * }); */ -Factory.addGetterSetter(Node, 'dragBoundFunc'); +addGetterSetter(Node, 'dragBoundFunc'); /** * get/set draggable flag @@ -3097,7 +3100,7 @@ Factory.addGetterSetter(Node, 'dragBoundFunc'); * // disable drag and drop * node.draggable(false); */ -Factory.addGetterSetter(Node, 'draggable', false, getBooleanValidator()); +addGetterSetter(Node, 'draggable', false, getBooleanValidator()); Factory.backCompat(Node, { rotateDeg: 'rotate', diff --git a/src/Shape.ts b/src/Shape.ts index bdfadfcb..6283000c 100644 --- a/src/Shape.ts +++ b/src/Shape.ts @@ -541,11 +541,10 @@ export class Shape extends Node< return rect; } drawScene(can?: SceneCanvas, top?: Node) { - // basically there are 4 drawing modes + // basically there are 3 drawing modes // 1 - simple drawing when nothing is cached. // 2 - when we are caching current // 3 - when node is cached and we need to draw it into layer - // 4 - ?? var layer = this.getLayer(), canvas = can || layer.getCanvas(), @@ -623,26 +622,6 @@ export class Shape extends Node< } drawFunc.call(this, context, this); - // if shape has stroke we need to redraw shape - // otherwise we will see a shadow under stroke (and over fill) - // but I think this is unexpected behavior - if ( - hasShadow && - hasStroke && - this.hasFill() && - this.shadowForStrokeEnabled() && - false - ) { - // TODO: are there any ways to avoid double draw? - // hint: https://stackoverflow.com/questions/13470101/getting-single-shadow-for-fill-and-stroke-on-html-canvas - - // clear the shadow - context.setAttr('shadowColor', 0); - context.setAttr('shadowOffsetX', 0); - context.setAttr('shadowOffsetY', 0); - context.setAttr('shadowBlur', 0); - drawFunc.call(this, context, this); - } } context.restore(); return this;