mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
event fixes
This commit is contained in:
parent
2c17492ef2
commit
ce40d752e8
11
src/Stage.js
11
src/Stage.js
@ -486,6 +486,11 @@
|
||||
this.targetShape._fireAndBubble(MOUSELEAVE, { evt: evt });
|
||||
this.targetShape = null;
|
||||
}
|
||||
this._fire(MOUSEMOVE, {
|
||||
evt: evt,
|
||||
target: this,
|
||||
currentTarget: this
|
||||
});
|
||||
}
|
||||
|
||||
// content event
|
||||
@ -702,6 +707,12 @@
|
||||
if (shape.isListening() && shape.preventDefault() && evt.cancelable) {
|
||||
evt.preventDefault();
|
||||
}
|
||||
} else {
|
||||
this._fire(TOUCHMOVE, {
|
||||
evt: evt,
|
||||
target: this,
|
||||
currentTarget: this
|
||||
});
|
||||
}
|
||||
this._fire(CONTENT_TOUCHMOVE, { evt: evt });
|
||||
}
|
||||
|
@ -733,7 +733,7 @@ suite('Stage', function() {
|
||||
assert.equal(Konva.DD.node, undefined);
|
||||
});
|
||||
|
||||
test('test can listen click on empty areas', function() {
|
||||
test('can listen click on empty areas', function() {
|
||||
var stage = addStage();
|
||||
var layer = new Konva.Layer();
|
||||
stage.add(layer);
|
||||
@ -742,6 +742,7 @@ suite('Stage', function() {
|
||||
var clicks = 0;
|
||||
var mousedowns = 0;
|
||||
var mouseups = 0;
|
||||
var mousemoves = 0;
|
||||
|
||||
stage.on('mousedown', function(e) {
|
||||
mousedowns += 1;
|
||||
@ -749,6 +750,12 @@ suite('Stage', function() {
|
||||
assert.equal(e.currentTarget, stage);
|
||||
});
|
||||
|
||||
stage.on('mousemove', function(e) {
|
||||
mousemoves += 1;
|
||||
assert.equal(e.target, stage);
|
||||
assert.equal(e.currentTarget, stage);
|
||||
});
|
||||
|
||||
stage.on('mouseup', function(e) {
|
||||
mouseups += 1;
|
||||
assert.equal(e.target, stage);
|
||||
@ -773,6 +780,11 @@ suite('Stage', function() {
|
||||
y: 10
|
||||
});
|
||||
|
||||
stage.simulateMouseMove({
|
||||
x: 60,
|
||||
y: 10
|
||||
});
|
||||
|
||||
stage.simulateMouseUp({
|
||||
x: 65,
|
||||
y: 10
|
||||
@ -781,6 +793,7 @@ suite('Stage', function() {
|
||||
assert.equal(mousedowns, 1, 'first mousedown registered');
|
||||
assert.equal(mouseups, 1, 'first mouseup registered');
|
||||
assert.equal(clicks, 1, 'first click registered');
|
||||
assert.equal(mousemoves, 1, 'first mousemove registered');
|
||||
assert.equal(dblicks, 0, 'no dbclicks registered');
|
||||
|
||||
stage.simulateMouseDown({
|
||||
@ -808,6 +821,7 @@ suite('Stage', function() {
|
||||
var taps = 0;
|
||||
var touchstarts = 0;
|
||||
var touchends = 0;
|
||||
var touchmoves = 0;
|
||||
|
||||
stage.on('touchstart', function(e) {
|
||||
touchstarts += 1;
|
||||
@ -821,6 +835,12 @@ suite('Stage', function() {
|
||||
assert.equal(e.currentTarget, stage);
|
||||
});
|
||||
|
||||
stage.on('touchmove', function(e) {
|
||||
touchmoves += 1;
|
||||
assert.equal(e.target, stage);
|
||||
assert.equal(e.currentTarget, stage);
|
||||
});
|
||||
|
||||
stage.on('tap', function(e) {
|
||||
taps += 1;
|
||||
assert.equal(e.target, stage);
|
||||
@ -844,6 +864,15 @@ suite('Stage', function() {
|
||||
]
|
||||
});
|
||||
|
||||
stage._touchmove({
|
||||
touches: [
|
||||
{
|
||||
clientX: 100,
|
||||
clientY: 100 + top
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
stage._touchend({
|
||||
touches: []
|
||||
});
|
||||
@ -851,6 +880,7 @@ suite('Stage', function() {
|
||||
assert.equal(touchstarts, 1, 'first touchstart registered');
|
||||
assert.equal(touchends, 1, 'first touchends registered');
|
||||
assert.equal(taps, 1, 'first tap registered');
|
||||
assert.equal(touchmoves, 1, 'first touchmove registered');
|
||||
assert.equal(dbltaps, 0, 'no dbltap registered');
|
||||
|
||||
stage._touchstart({
|
||||
|
Loading…
Reference in New Issue
Block a user