Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulf

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulf - npm Package Compare versions

Comparing version 3.0.0 to 3.0.1

2

package.json
{
"name": "gulf",
"version": "3.0.0",
"version": "3.0.1",
"description": "transport-agnostic operational transformation control layer",

@@ -5,0 +5,0 @@ "repository": {

@@ -103,21 +103,25 @@ # Gulf [![Build Status](https://travis-ci.org/marcelklehr/gulf.png)](https://travis-ci.org/marcelklehr/gulf)

document._change = function(newcontent, cs) {
if(cs) {
applyChanges(myTextarea, cs)
}
else {
setContent(myTextarea, newcontent)
}
document._change = function(cs, cb) {
applyChanges(myTextarea, cs)
cb()
}
document._collectChanges = function() {
document._setContents = function(newcontent, cb) {
setContent(myTextarea, newcontent)
cb()
}
document._collectChanges = functioncb() {
if(!myTextarea.wasChanged()) return
document.update(computeChanges()) // *bling*
cb()
}
```
Everytime the document is changed by an incoming edit `_change` is called with the new contents and the changeset (upon initializing the document it may get called only with the new content).
Before anything can happen, the document is initialized wwith `_setContents`.
Before an incoming edit is processed `_collectChanges` is called allowing you to save possible changes before the new edit is applied. Just like you'd git commit before git pulling anything -- we don't want things would get hairy.
Everytime the document is changed by an incoming edit `_change` is called with the changeset.
Before an incoming edit is processed `_collectChanges` is called, allowing you to save possible changes before the new edit is applied. Just like you'd git commit before git pulling anything -- we don't want things would get hairy.
## Operational transform *bling*

@@ -215,2 +219,11 @@ Gulf expects you to provide an OT library that adhere's to [shareJs's OT type spec](https://github.com/share/ottypes#spec).

#### gulf.EditableDocument#_change(cs:mixed, cb:Function)
Needs to be implemented by you or by wrappers (see [Editor wrappers][#editor-wrappers]). Is called after the document has been initialized with `_setContents` for every change that is received from master.
#### gulf.EditableDocument#_setContents(contents:mixed, cb:Function)
Needs to be implemented by you or by wrappers (see [Editor wrappers][#editor-wrappers]). Is called if the document receives an `init` message or to reset the document in case of an error.
#### gulf.EditableDocument#_collectChanges(cb:Function)
Needs to be implemented by you or by wrappers (see [Editor wrappers][#editor-wrappers]). Is called right before `_change()` is called to keep track of any outstanding changes. This isn't necessary if you call `update()` in an event handler that listens on local change events.
### Class: gulf.Edit

@@ -217,0 +230,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc