overleaf/services/document-updater/app/js/sharejs
Eric Mc Sween 3831416c2f Merge pull request #12206 from overleaf/em-camel-case-docupdater
Camel case variables in document-updater

GitOrigin-RevId: 76ad0921cc059878f21639547fad1bff1913bc8b
2023-03-22 09:04:37 +00:00
..
server Merge pull request #7986 from overleaf/jpa-eslint-8 2022-05-17 08:05:59 +00:00
types Merge pull request #12206 from overleaf/em-camel-case-docupdater 2023-03-22 09:04:37 +00:00
count.js [misc] run format_fix and lint:fix 2021-07-13 12:04:42 +01:00
helpers.js Merge pull request #5352 from overleaf/jpa-no-var 2021-10-27 08:03:00 +00:00
index.js prettier: convert app/js decaffeinated files to Prettier format 2020-05-06 12:09:33 +02:00
json-api.js Merge pull request #12206 from overleaf/em-camel-case-docupdater 2023-03-22 09:04:37 +00:00
json.js Merge pull request #5352 from overleaf/jpa-no-var 2021-10-27 08:03:00 +00:00
model.js Merge pull request #7986 from overleaf/jpa-eslint-8 2022-05-17 08:05:59 +00:00
README.md decaffeinate: rename app/coffee dir to app/js 2020-05-06 12:09:23 +02:00
simple.js [misc] run format_fix and lint:fix 2021-07-13 12:04:42 +01:00
syncqueue.js Merge pull request #5352 from overleaf/jpa-no-var 2021-10-27 08:03:00 +00:00
text-api.js [misc] run format_fix and lint:fix 2021-07-13 12:04:42 +01:00
text-composable-api.js [misc] run format_fix and lint:fix 2021-07-13 12:04:42 +01:00
text-composable.js Merge pull request #5518 from overleaf/jpa-no-empty 2021-10-27 08:03:14 +00:00
text-tp2-api.js Merge pull request #5352 from overleaf/jpa-no-var 2021-10-27 08:03:00 +00:00
text-tp2.js Merge pull request #5518 from overleaf/jpa-no-empty 2021-10-27 08:03:14 +00:00
text.js Merge pull request #12206 from overleaf/em-camel-case-docupdater 2023-03-22 09:04:37 +00:00
web-prelude.js prettier: convert app/js decaffeinated files to Prettier format 2020-05-06 12:09:33 +02:00

This directory contains all the operational transform code. Each file defines a type.

Most of the types in here are for testing or demonstration. The only types which are sent to the webclient are text and json.

An OT type

All OT types have the following fields:

name: (string) Name of the type. Should match the filename. create() -> snapshot: Function which creates and returns a new document snapshot

apply(snapshot, op) -> snapshot: A function which creates a new document snapshot with the op applied transform(op1, op2, side) -> op1': OT transform function.

Given op1, op2, apply(s, op2, transform(op1, op2, 'left')) == apply(s, op1, transform(op2, op1, 'right')).

Transform and apply must never modify their arguments.

Optional properties:

tp2: (bool) True if the transform function supports TP2. This allows p2p architectures to work. compose(op1, op2) -> op: Create and return a new op which has the same effect as op1 + op2. serialize(snapshot) -> JSON object: Serialize a document to something we can JSON.stringify() deserialize(object) -> snapshot: Deserialize a JSON object into the document's internal snapshot format prune(op1', op2, side) -> op1: Inserse transform function. Only required for TP2 types. normalize(op) -> op: Fix up an op to make it valid. Eg, remove skips of size zero. api: (object) Set of helper methods which will be mixed in to the client document object for manipulating documents. See below.

Examples

count and simple are two trivial OT type definitions if you want to take a look. JSON defines the ot-for-JSON type (see the wiki for documentation) and all the text types define different text implementations. (I still have no idea which one I like the most, and they're fun to write!)

API

Types can also define API functions. These methods are mixed into the client's Doc object when a document is created. You can use them to help construct ops programatically (so users don't need to understand how ops are structured).

For example, the three text types defined here (text, text-composable and text-tp2) all provide the text API, supplying .insert(), .del(), .getLength and .getText methods.

See text-api.coffee for an example.