mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
fix getClientRect for container. close #85
This commit is contained in:
parent
74221f396b
commit
e21ea5daa2
@ -5,7 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
## [Not released][Not released]
|
||||
|
||||
### Fixed
|
||||
- Correct calculation in `getClientRect` method of `Konva.Line.
|
||||
- Correct calculation in `getClientRect` method of `Konva.Line` and `Konva.Container`.
|
||||
|
||||
### Changed
|
||||
- Dragging now works much better. If your pointer is out of stage content dragging will still continue.
|
||||
|
@ -410,6 +410,12 @@
|
||||
},
|
||||
getClientRect: function(skipTransform) {
|
||||
var minX, minY, maxX, maxY;
|
||||
var selfRect = {
|
||||
x: 0,
|
||||
y: 0,
|
||||
width: 0,
|
||||
height: 0
|
||||
};
|
||||
this.children.each(function(child) {
|
||||
var rect = child.getClientRect();
|
||||
if (minX === undefined) { // initial value for first child
|
||||
@ -426,12 +432,15 @@
|
||||
|
||||
});
|
||||
|
||||
var selfRect = {
|
||||
x: minX,
|
||||
y: minY,
|
||||
width: maxX - minX,
|
||||
height: maxY - minY
|
||||
};
|
||||
if (this.children.length !== 0) {
|
||||
selfRect = {
|
||||
x: minX,
|
||||
y: minY,
|
||||
width: maxX - minX,
|
||||
height: maxY - minY
|
||||
};
|
||||
}
|
||||
|
||||
if (!skipTransform) {
|
||||
return this._transformedRect(selfRect);
|
||||
}
|
||||
|
@ -1616,4 +1616,17 @@ suite('Container', function() {
|
||||
layer.add(circle1, circle2, circle3);
|
||||
assert.equal(layer.getChildren().length, 3, 'layer has exactly three children');
|
||||
});
|
||||
|
||||
test('getClientRect - test empty case', function() {
|
||||
var stage = addStage();
|
||||
var layer = new Konva.Layer();
|
||||
stage.add(layer);
|
||||
var group = new Konva.Group({
|
||||
x : 10,
|
||||
y : 10
|
||||
});
|
||||
group.add(new Konva.Group());
|
||||
assert.deepEqual(group.getClientRect(), {x:10, y:10, width: 0, height:0});
|
||||
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user