Skip to content
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

Perfomance improvements #2523

Open
3 tasks
CatHood0 opened this issue Mar 24, 2025 · 4 comments
Open
3 tasks

Perfomance improvements #2523

CatHood0 opened this issue Mar 24, 2025 · 4 comments
Assignees
Labels
enhancement New feature or request

Comments

@CatHood0
Copy link
Collaborator

CatHood0 commented Mar 24, 2025

Description

As some of you may know, our current way of getting the difference between two versions of the text is by taking the old version with the new version and going character by character, checking what was deleted and what was inserted (using the cursor position as a starting point).

However, this seems suboptimal to me. To be honest, many of us here, like myself, when using this editor, look for good performance and stability when doing anything with the editor. One of these things (and the most important) is inserting or deleting text.

Everyone here wants performance similar to Word, which can work without too many complications even with a document of more than 100k words.

This is possible, but we need to consider several aspects:

  1. How we render nodes: we need to find a new way to determine which elements are visible on the screen and render them. We can cache them and update the cache once they are displayed to the user (more or less like ListView does).
    • Status: being planned. Check this line, there is the place where we need to apply this fix.

Important

This point probably will be closed without fix it, since we are taking care about changing our implementation of TextInputClient.
2. How we get the differences in the TextInputClient implementation.

  1. How we update the selection: We need to find a new way to update nodes internally when selecting nodes, and not require such aggressive rendering (currently, every small change causes _buildChildren in raw_editor_state to be called, and this can be unnecessarily expensive when there are nodes that aren't actually visible on screen).
    • Status: being planned.

I'd love to be able to do all this myself, but honestly, I have my own projects and things to do, so making these changes will take some time (it will need a lot of testing too).

Anyone is welcome to contribute to this issue and improve the editor's performance, whether it's ideas or PRs.

@CatHood0 CatHood0 added the enhancement New feature or request label Mar 24, 2025
@CatHood0 CatHood0 changed the title [Suggestion] Improve getDiff from TextInputClient [Suggestion] Perfomance improvements Mar 24, 2025
@CatHood0
Copy link
Collaborator Author

CatHood0 commented Mar 24, 2025

@CatHood0 CatHood0 changed the title [Suggestion] Perfomance improvements Perfomance improvements Mar 24, 2025
@CatHood0 CatHood0 self-assigned this Mar 24, 2025
@CatHood0 CatHood0 pinned this issue Mar 24, 2025
@EchoEllet
Copy link
Collaborator

Sounds good, but the testing situation hasn't improved. If we're going to refactor new parts, can we at least write some tests? If you need assistance with the tests, let me know.

@CatHood0
Copy link
Collaborator Author

It sounds like we'll be doing this right now. But I'll add these changes gradually later. As you mentioned, testing is an aspect we need to focus on primarily.

(That's why I mentioned it would take time, since first one thing, then the other.)

@CatHood0

This comment has been minimized.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants