Commit Graph

2455 Commits

Author SHA1 Message Date
Anton Lavrenov
54e9aeffa7 ignore types in git 2019-01-24 08:46:54 -05:00
Anton Lavrenov
ed1e8c284b change types 2019-01-24 08:46:38 -05:00
Anton Lavrenov
d726c5d6f3 add docs, change perf test 2019-01-24 08:45:17 -05:00
Anton Lavrenov
a81f9ec1f9 Show a warning when a stage has too many layers 2019-01-22 08:43:43 -05:00
Anton Lavrenov
41a46c8afe clean up some methods 2019-01-21 21:22:36 -05:00
Anton Lavrenov
3a89a7a0c1 Merge branch 'master' of github.com:konvajs/konva 2019-01-21 19:30:54 -05:00
Anton Lavrenov
20f07dd3ce
Merge pull request #550 from VladimirTechMan/master
Simpler code logic for Node._isVisible()
2019-01-21 19:30:39 -05:00
Anton Lavrenov
0057841032 Merge branch 'master' of github.com:konvajs/konva 2019-01-21 19:29:57 -05:00
Anton Lavrenov
d49ee3dff1 fix tests for HDPI 2019-01-21 17:50:42 -05:00
Anton Lavrenov
7aa3c3238d several fixes 2019-01-21 17:42:02 -05:00
VladimirTechMan
d823beefb0 Simpler code logic for Node._isVisible()
The original logic can be implemented in a more compact and clear
way while producing the same results.
2019-01-21 23:50:07 +03:00
Anton Lavrenov
81b71d76a4
Merge pull request #547 from VladimirTechMan/master
Make the calls to getGlobalKonva() working in the current code base
2019-01-21 15:02:15 -05:00
Anton Lavrenov
199bbbbff1 some fixes 2019-01-20 18:06:46 -05:00
VladimirTechMan
0be8e779bc Fix the calls to getGlobalKonva() inside the current code base
Following the recent migration to TypeScript, getGlobalKonva()
returns undefined (as glob.Konva was not set) when using konva.js
or konva.min.js inside a web application running in a browser.
This change works around the situation by explicitly setting the
Konva property on the glob object.
2019-01-20 12:12:12 +03:00
Anton Lavrenov
d960cf5c67
Merge pull request #546 from VladimirTechMan/master
Fix handling of the width and hight changes in the Stage class
2019-01-19 21:31:51 -05:00
Anton Lavrenov
521070cb05 fix watch mode 2019-01-19 21:29:52 -05:00
VladimirTechMan
eb73c96a3a Fix handling of the width and hight changes in the Stage class
Just resize the DOM elements, don't replace the current contents
with a new (empty) one.
2019-01-19 23:52:34 +03:00
Anton Lavrenov
76299cd07a skip test 2019-01-19 10:46:24 -05:00
Anton Lavrenov
44bf0a69ca remove old checks 2019-01-19 10:39:26 -05:00
Anton Lavrenov
d660efe9fa fix log 2019-01-19 10:31:07 -05:00
Anton Lavrenov
3002891f5e more info in tests 2019-01-19 10:26:21 -05:00
Anton Lavrenov
cab03b5a88 skip test 2019-01-19 10:15:11 -05:00
Anton Lavrenov
a5d6e93c31 Merge branch 'master' of github.com:konvajs/konva 2019-01-19 10:13:43 -05:00
Anton Lavrenov
53fdd52814
Merge pull request #545 from VladimirTechMan/master
Minor improvement to the implementation of Text._sceneFunc
2019-01-19 10:13:34 -05:00
Anton Lavrenov
5c4df70738 update docs 2019-01-19 10:13:21 -05:00
Anton Lavrenov
e0f2e99320 update dev notes 2019-01-19 10:13:03 -05:00
VladimirTechMan
e6276d28db Minor improvement to the implementation of Text._sceneFunc
As the context's translate() is additive, there is no need for
the two consecutive calls of it inside _sceneFunc(): The same
effect can be achieved with with just one call of translate().

A corresponding update was done in the unit test for Text that
had a pair of calls to translate() in the expected call dump.
2019-01-19 14:56:38 +03:00
Anton Lavrenov
9baf66113e
Merge pull request #543 from VladimirTechMan/master
Very minor optimization to _getCache()
2019-01-17 12:33:05 -05:00
VladimirTechMan
30d304556f Very minor optimization to _getCache()
This is just a minor change to avoid accessing the same property
in object this._cache twice inside _getCache() when its is already
set (defined). No big performance improvements probably, but given
that the cached values can be checked many times for each node
in the tree, I think it makes sense to do that small improvement.
2019-01-16 19:42:41 +03:00
Anton Lavrenov
366abc0a79 change test again 2019-01-15 14:58:39 -05:00
Anton Lavrenov
b9942e5b62 Merge branch 'master' of github.com:konvajs/konva 2019-01-15 14:55:50 -05:00
Anton Lavrenov
ce5ab7e4cf change test 2019-01-15 14:55:41 -05:00
Anton Lavrenov
3f3e548e4f
Merge pull request #541 from VladimirTechMan/master
When rendering multi-line texts, check text decoration flags once
2019-01-15 14:54:14 -05:00
VladimirTechMan
1a62681e58 When rendering multi-line texts, check text decoration flags once
A small improvement to avoid re-testing the presence of underline
and line-through attributes in the textDecoration property on each
line of the text being rendered.
2019-01-15 21:39:40 +03:00
Anton Lavrenov
d90b0f15c2 Merge branch 'master' of github.com:konvajs/konva 2019-01-14 13:29:36 -05:00
Anton Lavrenov
5ebef8ef6e some code and comments fixes 2019-01-14 13:29:24 -05:00
Anton Lavrenov
160757781c
Merge pull request #537 from VladimirTechMan/master
Simplify the Boolean condition used in _useBufferCanvas()
2019-01-14 13:27:19 -05:00
VladimirTechMan
d5523bb11b Simplify the Boolean condition used in _useBufferCanvas()
The original Boolean condition duplicates most of the predicates
used in both parts of the "or" expression. It is enough to test
them just once, which also makes it easier to figure out what
the criterion for using the buffer canvas is. (An extra effect
is that the code becomes smaller and potentially quicker for the
JIT compiler to handle, but I don't expect much reduction here.)
2019-01-12 21:49:21 +03:00
Anton Lavrenov
fd2ff292e1
Merge pull request #536 from VladimirTechMan/master
Spelling correction to variable name
2019-01-11 20:19:16 -05:00
VladimirTechMan
70ff42d017 Spelling correction to variable name 2019-01-11 21:46:44 +03:00
Anton Lavrenov
60e425c596 Merge branch 'master' of github.com:konvajs/konva 2019-01-11 08:52:28 -05:00
Anton Lavrenov
830eb53650 bugs fixes, docs updates. fix #535 2019-01-11 08:51:46 -05:00
Anton Lavrenov
4571ea16b7
Merge pull request #531 from VladimirTechMan/master
Do not recalculate additionalWidth on every line of multiline text
2019-01-08 12:16:01 -05:00
VladimirTechMan
6c53a2b27a Do not recalculate additionalWidth on every line of multiline text
This is just a minor improvement (optimization) to _setTextData():
Flag shouldAddEllipsis is not changed inside the loop, thus no need
to recalculate the value of additionalWidth for every line of the
original text.
2019-01-08 20:03:25 +03:00
Anton Lavrenov
adcd6b9c96
Merge pull request #529 from VladimirTechMan/master
When setting new text on Konva.Text, treat undefined width or height as 'auto'
2019-01-08 09:34:07 -05:00
VladimirTechMan
4be6ed7ac8 Setting text on Konva.Text, treat undefined width or height as 'auto'
Similar to how it's handled in getWidth() and getHeight() of Konva.Text,
let _setTextData() treat undefined values of the 'width' and 'height'
attributes as if they are set to 'auto', not as if they are fixed.
2019-01-06 22:06:37 +03:00
Anton Lavrenov
a3767bdf3d Merge branch 'master' of github.com:konvajs/konva 2019-01-06 03:01:47 -05:00
Anton Lavrenov
52f2b8178b docs updatesx 2019-01-06 03:01:20 -05:00
Anton Lavrenov
15fe72c642
Merge pull request #527 from Ivanca/patch-1
TypeScript definitions: "setAttrs" must accept same arg than constructor
2019-01-03 09:46:45 -05:00
Ivan
24001ec7aa
"setAttrs" must accept same arg than constructor
Any class that extends from Node must take the same argument on setAttrs as its constructor.

TODO: Check for classes missing on this PR, which only fixes classes that extend from Shape
2019-01-02 21:12:27 -05:00