Commit Graph

954 Commits (f1afeda62c84aa87e8a326ee8b71ba24043a91e8)
 

Author SHA1 Message Date
David Luzar 58ad6d741d fix selecting elem inside already selected element ()
David Luzar 5887be6eda select filled elements by clicking inside ()
Guillermo Peralta Scura c67435719f Use cursor delta to resize shape ()
Jeremy Press abf2aaa102 "Select All" only appears when clicking outside of a shape via actionFilter ()
Co-authored-by: Christopher Chedeau <vjeuxx@gmail.com>
Enzo Ferey 88a9cee8bb History improvements ()
* Simplified redoOnce.

* Help mental model.

* Move clear redo stack where it belongs.

* Not needed anymore as we check for same state.
Gasim Gasimzada ba8bc10431 Remove element shape object from local storage save ()
Christopher Chedeau bc909b76da
Move copy paste handler to document ()
Hopefully it should resolve the copy pasting issues

Fixes 
Christopher Chedeau aad6e8f434
Reset to selection after creating a text ()
Fixes 

Test plan:
- Click on text icon
- Click anywhere to start entering text
- Add a letter
- Make sure the cursor is selection and not text
- Click anywhere else, make sure it completes the text and not create a new one
Christopher Chedeau 44657efe71
Fix undoOnce ()
I just pasted @enzoferey's implementation and it fixed the bug reported by @dwelle

Fixes 
Christopher Chedeau dd2a7eb597
Fix copy-paste on input ()
If the input is active, we shouldn't override copy paste behavior
Christopher Chedeau d45f48e60f
Set shape background to be transparent by default ()
Also makes "Clear canvas" reset the entire app state
Christopher Chedeau 3db7d69849
Debounce localstorage save ()
I profiled dragging and it looks like it takes ~3ms to save to localStorage a smallish scene and we're doing it twice per mousemove. Let's debounce so we don't pay that cost on every mouse move.

Stole the implementation from  which got reverted.
Christopher Chedeau c745fd4e5e
Prevent cmd-r from selecting rectangle ()
I keep adding empty rectangles because I reload with cmd-r which enables rectangle :p Let's only make the shortcut work if there's no modifier enabled
Christopher Chedeau 407f00bbd5
Fix alt-duplicate ()
We need to unselect all the previous elements and select all the new ones. Also made sure that the shape is regenerated when the element is duplicated
Christopher Chedeau 8785bef523
Support transparent background + inline picker ()
Unfortunately, react-color has a bug where transparent color doesn't trigger onChange. I've been annoyed by the huge dependency anyway so decided to take the generated html (which is awesome) and reimplement a specific component for it.

I also made sure that we don't actually render anything when the background is transparent on rough (I looked at the generated path and made sure it didn't have the commands for the background)
Christopher Chedeau 157f0eae0c
Export to canvas only selected elements ()
Fixes 
Christopher Chedeau 9fa69448e4
Remove Delete from panel ()
Now that we have context menu, we don't need it there
Christopher Chedeau 5bdd0a35f6
Fix cmd-a drawing arrows ()
We need to quit if we have either elements OR appState, not both.
Gasim Gasimzada 74764b06eb Regenerate roughjs shape only when the item is updated ()
* Regenerate roughjs shape only when the item is updated

* Remove shape object during export and history undo/redo

* Remove shape element during copying

* Fix shape generation during creation
Christopher Chedeau 1bf18fe4ed
Tweak context menu style ()
- Move the context menu right next to the mouse so it's not so far away. But 1px out so that nothing is selected until you move your mouse
- Change the colors to be closer to the macos one. Unfortunately, macos has a 0.5px border that I'm not able to reproduce without some annoying hacks, 1px it'll be.
Christopher Chedeau b481a29024
Remove console.log ()
Enzo Ferey c6accd9fc7 Improve color suggestions ()
* Add palettes for each type of color picker.

* Add white canvas background and black element stroke.

* Add white for element background.
Christopher Chedeau 6399b1f318
Remove zindex options from panel ()
Now that they are in the context menu, we don't need to have them in the panel anymore.

Fixes 
Timur Khazamov 8f28c59deb Removed SceneState from renderElement ()
Gasim Gasimzada 76467073f2 Use `innerText` instead of `innerHTML` when measuring text ()
Gasim Gasimzada f465121f9b Feature: Action System ()
* Add Action System

- Add keyboard test
- Add context menu label
- Add PanelComponent

* Show context menu items based on actions

* Add render action feature

- Replace bringForward etc buttons with action manager render functions

* Move all property changes and canvas into actions

* Remove unnecessary functions and add forgotten force update when elements array change

* Extract export operations into actions

* Add elements and app state as arguments to `keyTest` function

* Add key priorities

- Sort actions by key priority when handling key presses

* Extract copy/paste styles

* Add Context Menu Item order

- Sort context menu items based on menu item order parameter

* Remove unnecessary functions from App component
Timur Khazamov c253c0b635 Command clicking should "xor" selection ()
* Command clicking should "xor" selection

* Only shift key should play a role

* Get rid of `isDraggingElements`

* Renamed someElementIsDragged to draggingOccured
Gunay Mert Karadogan 3eb6d1de68 Fix history saving for resizing/dragging element ()
dwelle 81f23a8ccb fix text shape contenteditable & paste handling (fixes )
Gasim Gasimzada f2346275ef
Extract Side Panel from App component ()
* Extract Side Panel from App component

* Refactor SidePanel component

- Remove unnecessary props (we are already passing appState as a prop)
- Remove unnecessary allback (we are already passing setState)
Gasim Gasimzada 35b5f6dd0d Fix a bug where clipboard object doesn't exist in Safari ()
David Luzar 2fb3cdd5e4
fix copy/paste regression ()
David Luzar deee57314d
support export canvas to clipboard ()
Giovanni Giordano 1541428ab1 Clear active tool on escape ()
* Clear active tool on escape

* Remove console log
Gasim Gasimzada 862231da4f Make all operations on elements array immutable ()
* Make scene functions return array instead of mutate array

- Not all functions were changes; so the given argument was a new array to some

* Make data restoration functions immutable

- Make mutations in App component

* Make history actions immutable

* Fix an issue in change property that was causing elements to be removed

* mark elements params as readonly & remove unnecessary copying

* Make `clearSelection` return a new array

* Perform Id comparisons instead of reference comparisons in onDoubleClick

* Allow deselecting items with SHIFT key

- Refactor hit detection code

* Fix a bug in element selection and revert drag functionality

Co-authored-by: David Luzar <luzar.david@gmail.com>
Faustino Kialungila 1ea72e9134
Center element on paste ()
* Center element on paste

* paste on cursor position

* correctly center elements

* rename vars
davidbonan a73e4e28aa Add contributing md ()
* Add contributing setup file

* Add sandbox method
Christopher Chedeau 2553d10d34
Yet another awesome testimonial ()
Christopher Chedeau 77400c7b70
One more testimonial ()
Guillermo Peralta Scura 4a044d3ace Show move and resize cursors on hover ()
* Change to move cursor on hover

* Show resize handlers on hover
davidbonan a16cd3a34f Add font size and font familly option for selection ()
* Add font size and font familly option for selection

* Allow copy font style

* More clearner method name

* Update options size and font-familly
Gasim Gasimzada 299e7e9099
Extract app and keys ()
* Extract app component from entrypoint (index)

- Use refs to refer to canvas and rough context
- Remove ReactDOM double rendering

* Extract keys and key related utils into their own module

* Move everything back to entrypoint
Gasim Gasimzada 36ce6a26e6 Make panels collapsible ()
* Make panels collapsible

- Add Panel component with collapse logic
- Use the component in all the necessary panel groups

* Remove unnecessary container from PanelCanvas

* Add "hide property" to Pane component to hide Panel contents using a prop

- Instead of doing conditional rendering, pass the condition to Panel as props

* Change collapse icon rotation for closed

- Use one icon and use CSS transforms to rotate it

* Remove unnecessary imports from PanelSelection
Timur Khazamov e38f65dea7
Contenteditable wysiwyg ()
* Contenteditable wysiwyg

* Added comment about pasting multiline text
Christopher Chedeau 556843d9a2
Adding open collective sponsor ()
I just created an open collective for the project.
Timur Khazamov 1739540f00
Creating a text near the center of a shape should put it in the center ()
* Snap to element center

* Fixed typo

* Added comment

* Reduced threshold to 30

* Skip snapping if alt key is pressed

* Fixed creating text with shape tool
David Luzar 068dca604f
prevent commit on eslint warnings & fix lint ()
Timur Khazamov 37934c0f8b
Fixes text jumping on creation ()
* Fixes text jumping on creation

* Do not remove node on ESC

* Fixed typo
David Luzar 2122a9cf9f
fix for duplicating elements ()
David Luzar 7f7f51f70b
remove static/ from git & ignore ()