mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
Added some text trim logic to wrap in better
This commit is contained in:
parent
29c2228867
commit
77b51bb587
13
CHANGELOG.md
13
CHANGELOG.md
@ -5,17 +5,22 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
## [new version][unreleased]
|
## [new version][unreleased]
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Added some text trim logic to wrap in better
|
||||||
|
|
||||||
## [2.4.0][2018-09-19]
|
## [2.4.0][2018-09-19]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
* Centered resize with ALT key for `Konva.Transformer`
|
||||||
|
* New `centeredScaling` for `Konva.Transformer`
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
* Tween support for gradient properties
|
* Tween support for gradient properties
|
||||||
* Add `user-select: none` to the stage container to fix some "selected contend around" issues
|
* Add `user-select: none` to the stage container to fix some "selected contend around" issues
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
* Centered resize with ALT key for `Konva.Transformer`
|
|
||||||
* New `centeredScaling` for `Konva.Transformer`
|
|
||||||
|
|
||||||
## [2.3.0][2018-08-30]
|
## [2.3.0][2018-08-30]
|
||||||
|
|
||||||
|
7
konva.js
7
konva.js
@ -2,7 +2,7 @@
|
|||||||
* Konva JavaScript Framework v2.4.0
|
* Konva JavaScript Framework v2.4.0
|
||||||
* http://konvajs.github.io/
|
* http://konvajs.github.io/
|
||||||
* Licensed under the MIT
|
* Licensed under the MIT
|
||||||
* Date: Sat Sep 22 2018
|
* Date: Mon Sep 24 2018
|
||||||
*
|
*
|
||||||
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
|
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
|
||||||
* Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva)
|
* Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva)
|
||||||
@ -15424,6 +15424,7 @@
|
|||||||
maxHeightPx = height - padding * 2,
|
maxHeightPx = height - padding * 2,
|
||||||
currentHeightPx = 0,
|
currentHeightPx = 0,
|
||||||
wrap = this.getWrap(),
|
wrap = this.getWrap(),
|
||||||
|
// align = this.getAlign(),
|
||||||
shouldWrap = wrap !== NONE,
|
shouldWrap = wrap !== NONE,
|
||||||
wrapAtWord = wrap !== CHAR && shouldWrap,
|
wrapAtWord = wrap !== CHAR && shouldWrap,
|
||||||
shouldAddEllipsis = this.getEllipsis() && !shouldWrap;
|
shouldAddEllipsis = this.getEllipsis() && !shouldWrap;
|
||||||
@ -15491,6 +15492,9 @@
|
|||||||
matchWidth = this._getTextWidth(match);
|
matchWidth = this._getTextWidth(match);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// if (align === 'right') {
|
||||||
|
match = match.trimRight();
|
||||||
|
// }
|
||||||
this._addTextLine(match);
|
this._addTextLine(match);
|
||||||
textWidth = Math.max(textWidth, matchWidth);
|
textWidth = Math.max(textWidth, matchWidth);
|
||||||
currentHeightPx += lineHeightPx;
|
currentHeightPx += lineHeightPx;
|
||||||
@ -15505,6 +15509,7 @@
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
line = line.slice(low);
|
line = line.slice(low);
|
||||||
|
line = line.trimStart();
|
||||||
if (line.length > 0) {
|
if (line.length > 0) {
|
||||||
// Check if the remaining text would fit on one line
|
// Check if the remaining text would fit on one line
|
||||||
lineWidth = this._getTextWidth(line);
|
lineWidth = this._getTextWidth(line);
|
||||||
|
4
konva.min.js
vendored
4
konva.min.js
vendored
File diff suppressed because one or more lines are too long
@ -371,6 +371,7 @@
|
|||||||
maxHeightPx = height - padding * 2,
|
maxHeightPx = height - padding * 2,
|
||||||
currentHeightPx = 0,
|
currentHeightPx = 0,
|
||||||
wrap = this.getWrap(),
|
wrap = this.getWrap(),
|
||||||
|
// align = this.getAlign(),
|
||||||
shouldWrap = wrap !== NONE,
|
shouldWrap = wrap !== NONE,
|
||||||
wrapAtWord = wrap !== CHAR && shouldWrap,
|
wrapAtWord = wrap !== CHAR && shouldWrap,
|
||||||
shouldAddEllipsis = this.getEllipsis() && !shouldWrap;
|
shouldAddEllipsis = this.getEllipsis() && !shouldWrap;
|
||||||
@ -438,6 +439,9 @@
|
|||||||
matchWidth = this._getTextWidth(match);
|
matchWidth = this._getTextWidth(match);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// if (align === 'right') {
|
||||||
|
match = match.trimRight();
|
||||||
|
// }
|
||||||
this._addTextLine(match);
|
this._addTextLine(match);
|
||||||
textWidth = Math.max(textWidth, matchWidth);
|
textWidth = Math.max(textWidth, matchWidth);
|
||||||
currentHeightPx += lineHeightPx;
|
currentHeightPx += lineHeightPx;
|
||||||
@ -452,6 +456,7 @@
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
line = line.slice(low);
|
line = line.slice(low);
|
||||||
|
line = line.trimStart();
|
||||||
if (line.length > 0) {
|
if (line.length > 0) {
|
||||||
// Check if the remaining text would fit on one line
|
// Check if the remaining text would fit on one line
|
||||||
lineWidth = this._getTextWidth(line);
|
lineWidth = this._getTextWidth(line);
|
||||||
|
@ -806,4 +806,33 @@ suite('Text', function() {
|
|||||||
// so Konva.Text + textarea editing works better
|
// so Konva.Text + textarea editing works better
|
||||||
assert.equal(lines[0].text, 'Hello, this');
|
assert.equal(lines[0].text, 'Hello, this');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('check trip when go to new line', function() {
|
||||||
|
var stage = addStage();
|
||||||
|
var layer = new Konva.Layer();
|
||||||
|
|
||||||
|
var text = new Konva.Text({
|
||||||
|
text: 'Hello, this is some good text',
|
||||||
|
fontSize: 30
|
||||||
|
});
|
||||||
|
layer.add(text);
|
||||||
|
stage.add(layer);
|
||||||
|
|
||||||
|
text.setWidth(245);
|
||||||
|
|
||||||
|
var lines = text.textArr;
|
||||||
|
|
||||||
|
// remove all trimming spaces
|
||||||
|
// it also looks better in many cases
|
||||||
|
// it will work as text in div
|
||||||
|
assert.equal(lines[0].text, 'Hello, this is some');
|
||||||
|
assert.equal(lines[1].text, 'good text');
|
||||||
|
|
||||||
|
text.setWidth(261);
|
||||||
|
var lines = text.textArr;
|
||||||
|
|
||||||
|
assert.equal(lines[0].text, 'Hello, this is some');
|
||||||
|
assert.equal(lines[1].text, 'good text');
|
||||||
|
layer.draw();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user