fix(vx-brush): Fix initialBrushPosition #667
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
🐛 Bug Fix
This fixes some problems with the implementation of
initialBrushPosition
from #618BrushStartEnd
expected bothx
andy
ofstart
/end
to be defined, which doesn't work if you have avertical-
orhorizontal-
only brush. Fixed to handle partials.state.start/end
logic which is used byBrushSelection
upon moving a selection.Before
![broken-brush-move](https://user-images.githubusercontent.com/4496521/80850746-542f4b00-8bd2-11ea-88e3-29532d97d609.gif)
After
![fixed-brush-move](https://user-images.githubusercontent.com/4496521/80850741-509bc400-8bd2-11ea-88ab-c1ded7400258.gif)
Also updates the demo to include an
![image](https://user-images.githubusercontent.com/4496521/80850526-154cc580-8bd1-11ea-816a-475f2b231a21.png)
initialBrushPosition
which should be useful for peeps🏠 Internal
Jest was failing locally to collect coverage due to a missing react component function name. I added one to fix locally, and see if it fixes anything on CI.
@hshoff @kristw
cc @maryschmidt