-
Notifications
You must be signed in to change notification settings - Fork 15
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
Support cursors at end of document #207
Conversation
9f6c30c
to
b466173
Compare
Thanks @miguelangel-dev - back me up a second and help me understand the new functionality that's being exposed. With this PR we're removing I'm guessing from the parameters that the first is returning a cursor reference, and the second (new cursorPosition) takes the cursor and returns back an index position from it - so a sort of inverse. Are the Are there any mechanisms for moving the cursor around, or is this just a "position" that shifts around as document updates get applied? @alexjg feel free to chime in here - this is just a portion of the API that I haven't really explored and used, and the use cases around it aren't super clear to me. My only concern here is that the naming of the API presented seems really unclear, and just from reading them I wouldn't have any sense of what and how I should use them. |
ccf136e
to
4eb44a6
Compare
@heckj thanks for taking the time to review the PR:
Thats it. PR is not modifying existing
I agree that naming is not the best one, and probably the documentation neither. In 872a39d you will notice I have made the public API more swiftly and introduced some clarifications in the documentation. Using absolute index-based positions in a text document is unreliable, especially in collaborative environments, since any document modification can disrupt indices, requiring additional tracking. Instead, |
add example to cursors
4eb44a6
to
872a39d
Compare
The use of "cursor" here is by analogy to it's use in the database world as a stable reference to some position in a sequence. This may actually be quite a confusing name because it's a bit different to a cursor in the world of text editing. The main difference is that the reference we return here points at a specific element of a sequence whereas a text editing cursor points at the gap between elements of the sequence (the characters). The references returned by the cursor API are a bit like object IDs in that they are stable identifiers which can be stored or transmitted and later used to resolve to a position in the sequence they were created for. I would be open to changing the name of the type entirely. At some point we will generalise this concept to be able to point to any part of the document so maybe a good name would be something like "stable reference". |
I am open to refactoring the names On my side, using |
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.
@miguelangel-dev sorry for the delay!
And thank you both for chiming in to help me understand. I've asked for a few changes to the documentation, and I'm happy with the updated names. I'd guess using "cursor" will still run afoul of someone being confused, as it's a fairly overloaded term, but with including the detail that it tracks a specific character through changes should help alleviate that - at least for the folks who read the docs.
I couldn't come up with any better names myself, and I think cursor
and it's inverse of position
work well for what this API is doing. Again, thank you for shortening to the simpler, more direct names - I think that'll help tremendously.
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.
(I'd submitted the last review as "comment" when I meant to mark is at "requesting changes")
Update Sources/Automerge/Cursor.swift Co-authored-by: Joseph Heck <[email protected]> Update Sources/Automerge/Document.swift Co-authored-by: Joseph Heck <[email protected]>
2c70111
to
732726e
Compare
I've implemented your suggestions—thanks for the help with the grammar and readability improvements. The documentation now has a much more polished ❤️ |
Cursors API tracks the following character; it is the expected result in collaboration for TextEditors. Because of that, Automerge Cursors API, is not expected to accept end of document (length) as valid input. It is expected to track existing characters. It is fine, except by selection. In cursor selection, [0, length] is the valid range. Because the end of the document will define the future inputs of the user.
In that upstream PR, Automerge introduced special cases to support exactly that behaviour. Instead of introducing an alternative method into Swift bindings, I consider it an implementation detail. Cursors will be able to accept
length
as a valid range, and internally it will be mapped to introduced CursorPosition