Commit graph

56 commits

Author SHA1 Message Date
Keavon Chambers
e448f908e3 Fix CSS extraneous space beneath icons 2021-05-07 02:47:38 -07:00
T0mstone
47458115b8 Another round of polishing (#101)
* Implement basic refactorings

* Simplify some match statements

* Rename `ix` to `index`

If we're not going with a single letter name,
then a full word makes more sense.

* Rename `as_hex` to `to_hex`

`as_` implies lossless reinterpretation
while the function does a conversion that loses information

* Replace `for_each` with for loops

for loops are a lot easier to read and maintain.

* factor out x and y coords in Line::render

this is arguably more ergonomic

* Remove redundant `format!(format_args!())`
2021-05-07 02:47:38 -07:00
Paul Kupper
c9fea54ec5 Improve Ellipse Tool (#98) 2021-05-07 02:47:38 -07:00
Keavon Chambers
76eb944233 Add basic HTML for layers in the layer panel (#97) 2021-05-07 02:47:38 -07:00
TrueDoctor
721a442b75 Use serde to serialize responses (#96) 2021-05-07 02:47:38 -07:00
TrueDoctor
9ad5f4ce78 Add npm run lint-no-fix option (#93) 2021-05-07 02:47:38 -07:00
TrueDoctor
cb9d34c84d Improve rendering efficiency and add caching (#95)
Fixes #84

*Reduce heap allocations
* Add caching for rendering svgs
* Deduplicate UpdateCanvas Responses
2021-05-07 02:47:38 -07:00
TrueDoctor
c540d781e1 Fix active tool selection (#92) 2021-05-07 02:47:38 -07:00
TrueDoctor
3ab5f6b7ef Add responses in document for layer system (#91) 2021-05-07 02:47:38 -07:00
TrueDoctor
0b3a53c223 Split mouse events according to the button pressed (#90) 2021-05-07 02:47:38 -07:00
Keavon Chambers
825e6954df Rename tools: "Sample" to "Eyedropper", "Blur/Sharpen" to "Detail" (#87) 2021-05-07 02:47:38 -07:00
Keavon Chambers
46eb6b46ec Design tweaks to frontend components 2021-05-07 02:47:37 -07:00
Edwin Cheng
5991181f91 Implement Pen Tool (#79) 2021-05-07 02:47:37 -07:00
T0mstone
70f70b70fc Polish a few things (#81)
* Implement/suppress various compiler/clippy lints

* Change `tool_init` to take `ToolType` by value

* Factor out error conversion into a function

* Consume parameters with `todo`

* Make `workspace` stuff public

Making them public also removes the warnings
without having to suppress them.

Also, this commit removes the unused import of
`EditorError`

* Remove allow(unused_variables), use vars in `todo`

Also implements `Debug` on `DocumentToolData`
2021-05-07 02:47:37 -07:00
0HyperCube
c04a0227f1 Add colors in Rust (#78)
* 🎨 Add colors in Rust

* 🌿 Use an option for the properties and #[repr(C)]

*  Remove WASM dependency on document.

* 😎 Wrap Fill and stroke in a style struct.

* 📦 Use crate::Color

* Merge Add transactions for temporary modifications to the document

* Run cargo fmt

* Color without a 'U'
2021-05-07 02:47:34 -07:00
TrueDoctor
9ffbb4ce39
Add transactions for temporary modifications to the document (#77)
* Add transactions for temporary modifications to the document

* Add DiscardTempFolder Operation

* Add clearFolder operation

* Rename Temp to Work
2021-04-21 00:32:36 +02:00
0HyperCube
b30e9ce3ba
Add Shape Tool for drawing polygons (#75)
* ⬠ Add polygon drawing tool

* 🔤 Minor fix of variable and function names

*  Remove stroke

* ⌨️ Use N key as polygo tool shortcut.

* ⌨️ Now using key Y for polygons.

* ⌨️ The tooltip for the shortcut is fixed
2021-04-17 11:08:44 -07:00
Keavon Chambers
c94c2b3373 Fix web code linting to be portable across environments 2021-04-14 13:22:43 -07:00
Keavon Chambers
fcc4c1874b
Set CI environment variable to NODE_ENV=production during linting (#73) 2021-04-14 01:27:01 -07:00
Keavon Chambers
e3be55d4e2
Fix web lint errors and enable web linting in CI (#72) 2021-04-14 00:41:20 -07:00
Edwin Cheng
1fd298cf9e
Implement Line tool (#71)
* Add Line tool
2021-04-12 21:43:05 -07:00
TrueDoctor
8c957e572b
Implement svg layer structure (#59)
* Add folder struct

* Add file system like structure to interface with svgs

* Add primitive undo functionality

* Restructure layer system
2021-04-12 00:57:39 +02:00
Keavon Chambers
38bd41bb9f Change button hover colors 2021-04-11 14:13:21 -07:00
Keavon Chambers
d0ddc1f49c Add RadioPicker; add view mode picker to document options bar 2021-04-11 01:57:30 -07:00
Keavon Chambers
b01cd7e8b9 Add NumberInput component; add scale input and zoom buttons to options bar 2021-04-10 23:27:29 -07:00
Keavon Chambers
1ecff2e04e Improve ergonomics of npm build system 2021-04-10 19:20:10 -07:00
T0mstone
53b34a9ad0
Polish a few things (#67)
* Improve some match statements using macros

* Use `thiserror` instead of manually impl'ing Error
2021-04-10 16:27:44 +02:00
Keavon Chambers
c98bc770da Implement active tool visual syncing with tool shelf state 2021-04-10 03:49:27 -07:00
Keavon Chambers
4c546b2819 Plumb Responses from WASM to JS in the page 2021-04-10 02:48:33 -07:00
Keavon Chambers
78ed26cc16
Populate tool shelf and tool options bar (#66) 2021-04-08 06:10:27 -07:00
TrueDoctor
b7f18dfaa8
Implement key handling (#65) 2021-04-07 11:02:56 +02:00
George Atkinson
b88c246c87
Add FSM and related tool plumbing (Fix #54) (#62)
- Added FSM trait
- Added FSM to select and ellipse tools
- Moved circle stamping code to ellipse tool
2021-04-05 15:57:33 -07:00
Keavon Chambers
7c6ab1f327 Rename the "Layers" panel to "Layer Graph" 2021-04-01 21:58:28 -07:00
TrueDoctor
593572a4e8
Add loging implementation for wasm (#56) 2021-03-30 18:48:32 +02:00
Keavon Chambers
b5cd8327dd Change document, viewport, and canvas terminology 2021-03-29 03:52:08 -07:00
T0mstone
94f50377a3
Implement basic circle stamping (#53) 2021-03-29 01:44:34 +02:00
T0mstone
c437f1bd22
Add plumbing for event system (#52)
* Add plumbing for event system

* Apply review suggestions

* Add swap and reset color functions
2021-03-28 23:39:33 +02:00
RustyNixieTube
ea1f9f30f0
Record mouse movement (#51)
* Record mouse movement

* Use get for last_point and first_point

* Use first and las for first_point and last_point

* Remove unnecessary comment

* Derive Default for Trace

Co-authored-by: RustyNixieTube <RustyNixieTube@users.noreply.github.com>
2021-03-28 19:59:41 +02:00
Keavon Chambers
e280bec824 Rearrange WASM code async import style 2021-03-28 01:32:58 -07:00
Keavon Chambers
f3533b2848 Change Vue CLI's lint results from none to warning 2021-03-28 01:31:52 -07:00
T0mstone
0adfa3af72
Rename import to remove graphite prefix (#50) 2021-03-27 16:43:37 -07:00
TrueDoctor
0e553adb32
Implement event/response roundtrip (#49) 2021-03-28 00:23:41 +01:00
TrueDoctor
04dc05e575
Rework the ToolState and integrate it into the Editor struct (#48)
* Rework the ToolState and integrate it into the Editor struct

* Add asset manager sources to docs outline
2021-03-27 22:02:01 +01:00
ProTheory8
0083a2f788
Add .gitattributes file (#46)
Add .gitattributes and enforce the use of LF
2021-03-27 11:48:05 +01:00
ProTheory8
fde5f7e21f
Add metadata (#45)
* Add wasm-pack metadata
* Add Wasm tests directory
* Add basic Cargo manifest metadata
* Make web frontend unpublishable to npm
2021-03-27 11:16:05 +01:00
Keavon Chambers
479d2856c6 Various small fixes; no longer lint on Vue CLI run 2021-03-27 02:26:55 -07:00
ProTheory8
fe111a6684 Add camelcase rule, import Error type from JS and rename get_inner_color to inner. (#44)
* Add camelcase rule to .eslintrc.js

* Import Error type from JS, rename crate::wrappers::Color::get_inner_color to crate::wrappers::Color::inner
2021-03-27 02:26:55 -07:00
RustyNixieTube
0156813dec Implement update_colors (#43)
Co-authored-by: RustyNixieTube <RustyNixieTube@users.noreply.github.com>
2021-03-27 02:26:55 -07:00
TrueDoctor
f9308a6d5a Add tool_state functionality to wasm-wrapper (#42) 2021-03-27 02:26:55 -07:00
Keavon Chambers
fe51be0bb6 Move .editorconfig to root for GitHub tab rendering 2021-03-27 02:26:55 -07:00