Merge branch 'master' of github.com:konvajs/konva into master

This commit is contained in:
Anton Lavrenov 2022-08-19 17:48:46 -05:00
commit 08498ab463
3 changed files with 40 additions and 10 deletions

View File

@ -306,7 +306,7 @@ export class TextPath extends Shape<TextPathConfig> {
}
}
if (pathCmd === {} || p0 === undefined) {
if (Object.keys(pathCmd).length === 0 || p0 === undefined) {
return undefined;
}

View File

@ -1220,9 +1220,13 @@ export class Transformer extends Group {
}
getClientRect() {
// return zero size
// so it will be skipped in calculations
return { x: 0, y: 0, width: 0, height: 0 };
if (this.nodes().length > 0) {
return super.getClientRect();
} else {
// if we are detached return zero size
// so it will be skipped in calculations
return { x: 0, y: 0, width: 0, height: 0 };
}
}
nodes: GetSet<Node[], this>;

View File

@ -4710,12 +4710,38 @@ describe('Transformer', function () {
});
layer.add(tr);
const box = layer.getClientRect();
const layerClientRect = layer.getClientRect();
const rectClientRect = rect.getClientRect();
// it should update second transformer
assert.equal(box.x, rect.x());
assert.equal(box.y, rect.y());
assert.equal(box.width, rect.width());
assert.equal(box.height, rect.height());
// the client rect should not be affected by the transformer
assert.deepEqual(layerClientRect, rectClientRect);
});
it('attached transformer should affect client rect', function () {
var stage = addStage();
var layer = new Konva.Layer();
stage.add(layer);
var rect = new Konva.Rect({
x: 100,
y: 60,
draggable: true,
width: 100,
height: 100,
fill: 'yellow',
});
layer.add(rect);
var tr = new Konva.Transformer({
nodes: [rect],
});
layer.add(tr);
const layerClientRect = layer.getClientRect();
const rectClientRect = rect.getClientRect();
const trClientRect = tr.getClientRect();
// the client rect should be affecte by the transformer
assert.notDeepEqual(layerClientRect, rectClientRect);
assert.deepEqual(layerClientRect, trClientRect);
});
});