Fixed a wrong cache when a shape inside group has listening = false

This commit is contained in:
Anton Lavrenov 2018-10-12 12:07:04 -05:00
parent c76bbcd3e6
commit ffbb871a02
5 changed files with 114 additions and 7 deletions

View File

@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [new version][unreleased]
### Fixed
* Fixed a wrong cache when a shape inside group has `listening = false`
## [2.4.1][2018-10-08]
### Changed

View File

@ -2,7 +2,7 @@
* Konva JavaScript Framework v2.4.1
* http://konvajs.github.io/
* Licensed under the MIT
* Date: Mon Oct 08 2018
* Date: Fri Oct 12 2018
*
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
* Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva)
@ -3332,10 +3332,11 @@
* @memberof Konva.Node.prototype
* @returns {Boolean}
*/
shouldDrawHit: function(canvas) {
shouldDrawHit: function() {
var layer = this.getLayer();
return (
(canvas && canvas.isCache) ||
(!layer && this.isListening() && this.isVisible()) ||
(layer &&
layer.hitGraphEnabled() &&
this.isListening() &&

4
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -809,10 +809,11 @@
* @memberof Konva.Node.prototype
* @returns {Boolean}
*/
shouldDrawHit: function(canvas) {
shouldDrawHit: function() {
var layer = this.getLayer();
return (
(canvas && canvas.isCache) ||
(!layer && this.isListening() && this.isVisible()) ||
(layer &&
layer.hitGraphEnabled() &&
this.isListening() &&

View File

@ -869,4 +869,105 @@ suite('Caching', function() {
compareLayerAndCanvas(layer, canvas, 5);
assert.equal(stage.getIntersection({ x: 150, y: 100 }), rect);
});
it('listening false on a shape should not create hit area', function() {
var stage = addStage();
var layer = new Konva.Layer();
stage.add(layer);
var bigCircle = new Konva.Circle({
x: 100,
y: 100,
radius: 100,
fill: 'green'
});
layer.add(bigCircle);
var smallCircle = new Konva.Circle({
x: 100,
y: 100,
radius: 50,
fill: 'red',
listening: false
});
layer.add(smallCircle);
smallCircle.cache();
layer.draw();
var shape = stage.getIntersection({ x: 100, y: 100 });
assert.equal(shape, bigCircle);
});
it('listening false on a shape inside group should not create hit area', function() {
var stage = addStage();
var layer = new Konva.Layer();
stage.add(layer);
var group = new Konva.Group();
layer.add(group);
var bigCircle = new Konva.Circle({
x: 100,
y: 100,
radius: 100,
fill: 'green'
});
group.add(bigCircle);
var smallCircle = new Konva.Circle({
x: 100,
y: 100,
radius: 50,
fill: 'red',
listening: false
});
group.add(smallCircle);
group.cache();
layer.draw();
var shape = stage.getIntersection({ x: 100, y: 100 });
assert.equal(shape, bigCircle);
});
it('listening false on a group inside a group should not create hit area', function() {
var stage = addStage();
var layer = new Konva.Layer();
stage.add(layer);
var group = new Konva.Group();
layer.add(group);
var bigCircle = new Konva.Circle({
x: 100,
y: 100,
radius: 100,
fill: 'green'
});
group.add(bigCircle);
var innerGroup = new Konva.Group({
listening: false
});
group.add(innerGroup);
var smallCircle = new Konva.Circle({
x: 100,
y: 100,
radius: 50,
fill: 'red'
});
innerGroup.add(smallCircle);
group.cache();
layer.draw();
var shape = stage.getIntersection({ x: 100, y: 100 });
assert.equal(shape, bigCircle);
});
});