✨ Add presence support #10
Merged
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.
This change adds support for the
transformPresence()
method thatsharedb
uses.We add support for both
text0
andjson0
.text0
The
text0
implementation leans on the existingtransformPosition
, and takes its form and tests fromrich-text
.Its shape takes the form:
Where:
index
is the cursor positionlength
is the selection length (0
for a collapsed selection)json0
The
json0
implementation has limited functionality because of thelimitations of the
json0
type itself: we handle list moveslm
, butcannot infer any information when moving objects around the tree,
because the
oi
andod
operations are destructive.However, it will attempt to transform embedded subtypes that support
presence.
Its shape takes the form:
Where:
p
is the path to the client's position within the documentv
is the presence valueThe presence value
v
can take any arbitrary value (in simple cases itmay even be omitted entirely).
The exception to this is when using subtypes, where
v
should take thepresence shape defined by the subtype. For example, when using
text0
: