diff --git a/CHANGELOG.md b/CHANGELOG.md index f0090c66..55389d36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Fix `a` command parsing for `Konva.Path` - Fix fill pattern for `Konva.Text` when the pattern has an offset or rotation - `Konva.names` and `Konva.ids` are removed +- new `flipEnabled` property for `Konva.Transformer`. ## 7.2.5 diff --git a/src/shapes/Transformer.ts b/src/shapes/Transformer.ts index a882b567..df5295b4 100644 --- a/src/shapes/Transformer.ts +++ b/src/shapes/Transformer.ts @@ -6,7 +6,7 @@ import { Rect } from './Rect'; import { Group } from '../Group'; import { ContainerConfig } from '../Container'; import { Konva } from '../Global'; -import { getNumberValidator } from '../Validators'; +import { getBooleanValidator, getNumberValidator } from '../Validators'; import { _registerNode } from '../Global'; import { GetSet, IRect, Vector2d } from '../types'; @@ -33,6 +33,7 @@ export interface TransformerConfig extends ContainerConfig { keepRatio?: boolean; centeredScaling?: boolean; enabledAnchors?: Array; + flipEnabled?: boolean; node?: Rect; ignoreStroke?: boolean; boundBoxFunc?: (oldBox: Box, newBox: Box) => Box; @@ -217,6 +218,7 @@ function getSnap(snaps: Array, newRotationRad: number, tol: number) { * @param {Boolean} [config.keepRatio] Should we keep ratio when we are moving edges? Default is true * @param {Boolean} [config.centeredScaling] Should we resize relative to node's center? Default is false * @param {Array} [config.enabledAnchors] Array of names of enabled handles + * @param {Boolean} [config.flipEnabled] Can we flip/mirror shape on transform?. True by default * @param {Function} [config.boundBoxFunc] Bounding box function * @param {Function} [config.ignoreStroke] Should we ignore stroke size? Default is false * @@ -909,7 +911,7 @@ export class Transformer extends Group { return; } - const allowNegativeScale = true; + const allowNegativeScale = this.flipEnabled(); var t = new Transform(); t.rotate(Konva.getAngle(this.rotation())); if ( @@ -1219,6 +1221,7 @@ export class Transformer extends Group { anchorStrokeWidth: GetSet; keepRatio: GetSet; centeredScaling: GetSet; + flipEnabled: GetSet; ignoreStroke: GetSet; boundBoxFunc: GetSet<(oldBox: Box, newBox: Box) => Box, this>; shouldOverdrawWholeArea: GetSet; @@ -1266,6 +1269,26 @@ Factory.addGetterSetter( validateAnchors ); +/** + * get/set flip enabled + * @name Konva.Transformer#flipEnabled + * @method + * @param {Boolean} flag + * @returns {Boolean} + * @example + * // get flip enabled property + * var flipEnabled = transformer.flipEnabled(); + * + * // set handlers + * transformer.flipEnabled(false); + */ +Factory.addGetterSetter( + Transformer, + 'flipEnabled', + true, + getBooleanValidator() +); + /** * get/set resize ability. If false it will automatically hide resizing handlers * @name Konva.Transformer#resizeEnabled diff --git a/test/unit/Transformer-test.ts b/test/unit/Transformer-test.ts index 89f76af8..c014e19e 100644 --- a/test/unit/Transformer-test.ts +++ b/test/unit/Transformer-test.ts @@ -3578,7 +3578,7 @@ describe('Transformer', function () { y: 15, text: 'Simple Text', fontSize: 60, - fontFamily: 'Calibri', + fontFamily: 'Arial', fill: 'green', }); layer.add(shape);