1.2.6 • Published 7 years ago

woot-doc v1.2.6

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

WOOT - WithOut Operational Transform

Based on paper Real time group editors without Operational transformation.

Doc(siteId)

Doc#generateIns(pos, value)

Generate an insert operation.

Doc#generateDel(pos)

Generate a delete operation.

Doc#generateAttrib(pos, attributes)

Generate an set attributes operation.

Doc#receive(op)

Receive an operation. If the op is executable, execute it. Otherwise, push it into pool.

Doc#visiblePosition(c)

Get the visible position of a element. Returns the position of the element c in document, ignoring any invisble elements. Returns -1 if position is not found, or the c is invisible internally.

Doc#on('insert', op)

Emitted when an insert is generated locally.

Doc#on('delete', op)

Emitted when a delete is generated locally.

Doc#on('attrib', op)

Emitted when an attrib is generated locally.

Doc#on('execute', op)

Emitted when an operation from remote is executed.

Doc#toJSON()

Get an structure that can be persisted the current state of document as JSON.

Doc.fromJSON(json)

Get a Document from JSON.

Operations

Insert

Insert a character to document.

  • insert: the character to be inserted
{
  insert: char
}

Delete

Delete a character from document.

  • delete: the character to be deleted
{
  delete: char
}

Set Attribute

Update attribute of a character.

  • attrib: the character to be updated
  • value: the attributes
{
  attrib: char
  value: value
}
1.2.6

7 years ago

1.2.5

7 years ago

1.2.4

7 years ago

1.2.3

7 years ago

1.2.2

7 years ago

1.2.1

7 years ago

1.2.0

7 years ago

1.1.0

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago