-
Notifications
You must be signed in to change notification settings - Fork 247
perf: clipboard and move cells #3072
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 51 commits
Commits
Show all changes
55 commits
Select commit
Hold shift + click to select a range
f52b9b3
perf: clipboard and move cells
AyushAgrawal-A2 5332ad3
use transferables for paste data transfer
AyushAgrawal-A2 aa98264
fix
AyushAgrawal-A2 14bb361
avoid clones
AyushAgrawal-A2 756ec31
Merge branch 'tables-perf' of github.com:quadratichq/quadratic into a…
AyushAgrawal-A2 d395a24
optimise data table formats to clipboard
AyushAgrawal-A2 ce6af3a
clippy
AyushAgrawal-A2 6fb9552
avoid display values in move ops
AyushAgrawal-A2 761102e
SetCellValues
AyushAgrawal-A2 c8ddfb2
fix and log
AyushAgrawal-A2 51cd666
try compression
AyushAgrawal-A2 8479912
cargo file
AyushAgrawal-A2 96480c2
Merge branch 'tables-perf' of github.com:quadratichq/quadratic into a…
AyushAgrawal-A2 fa8ea83
use zstd compression
AyushAgrawal-A2 a30bd07
fix set_cell_values_operations
AyushAgrawal-A2 6252f0b
fix formats perf for sorted + hidden tables
AyushAgrawal-A2 9fdb523
get wrap rows perf
AyushAgrawal-A2 6958a73
fix bugs
AyushAgrawal-A2 c1a92f8
clippy
AyushAgrawal-A2 6383708
apply data tables formats perf
AyushAgrawal-A2 8c4b492
fix flatten validations
AyushAgrawal-A2 381a4b7
serialize html with value and style
AyushAgrawal-A2 1bc1bfa
paste special
AyushAgrawal-A2 addc924
Merge branch 'tables-perf' of github.com:quadratichq/quadratic into a…
AyushAgrawal-A2 bd7d242
fix
AyushAgrawal-A2 ea0e2cf
redo format_ops fn
AyushAgrawal-A2 0ee25bc
add try catch
AyushAgrawal-A2 29a2fd5
Merge branch 'number-types-poc' of github.com:quadratichq/quadratic i…
AyushAgrawal-A2 55091eb
Merge branch 'qa' of github.com:quadratichq/quadratic into ayush/2894
AyushAgrawal-A2 fb808fe
Merge branch 'number-types-poc' of github.com:quadratichq/quadratic i…
AyushAgrawal-A2 1c039c0
Merge branch 'number-types-poc' of github.com:quadratichq/quadratic i…
AyushAgrawal-A2 fdc17fb
Merge branch 'number-types-poc' of github.com:quadratichq/quadratic i…
AyushAgrawal-A2 67e4a6c
Merge branch 'qa' of github.com:quadratichq/quadratic into ayush/2894
AyushAgrawal-A2 0265f00
fix test
AyushAgrawal-A2 eb80b07
fix e2e and remove cancel button
AyushAgrawal-A2 0be37a0
fix wrap and compute tracking for sorted / hidden states
AyushAgrawal-A2 4fd8d26
fix wrap in table on column resize
AyushAgrawal-A2 fa6e4c6
Merge branch 'qa' into ayush/2894
AyushAgrawal-A2 756d824
improve sorted table perf
AyushAgrawal-A2 ddeb243
Merge branch 'qa' of github.com:quadratichq/quadratic into ayush/2894
AyushAgrawal-A2 64dda19
more sorted perf
AyushAgrawal-A2 5283a4e
fix sorted perf
AyushAgrawal-A2 5ac3362
fix perf and bugs
AyushAgrawal-A2 56f4185
Merge branch 'qa' of github.com:quadratichq/quadratic into ayush/2894
AyushAgrawal-A2 a5f2ef9
remove expensive get_display_index_from_row_index
AyushAgrawal-A2 d90671c
Merge branch 'qa' of github.com:quadratichq/quadratic into ayush/2894
AyushAgrawal-A2 ea908e0
optimize inserts in Contiguous2D
AyushAgrawal-A2 7a1cc5e
Merge branch 'qa' of github.com:quadratichq/quadratic into ayush/2894
AyushAgrawal-A2 11f1f73
pr feedback
AyushAgrawal-A2 1a2a889
let chaining
AyushAgrawal-A2 6e0a815
Merge branch 'qa' of github.com:quadratichq/quadratic into ayush/2894
AyushAgrawal-A2 0ead3aa
fix format summary behind tables
davidfig f41cee9
Merge pull request #3274 from quadratichq/fix-format-summary-in-tables
AyushAgrawal-A2 247cbb2
Merge branch 'qa' of github.com:quadratichq/quadratic into ayush/2894
AyushAgrawal-A2 b1c9b2f
dd feedback
AyushAgrawal-A2 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,7 +78,6 @@ | |
"healthchecks", | ||
"hljs", | ||
"HLOOKUP", | ||
"htmlescape", | ||
"iloc", | ||
"indexeddb", | ||
"indexmap", | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 11 additions & 18 deletions
29
quadratic-client/src/app/ui/menus/BottomBar/TopLeftPosition.tsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️