Meteor smart package for transparently adding ShareJS editors to an app. Includes CodeMirror and the Ace editor.
Demo app: http://documents.meteor.com (source)
For vanilla ShareJS with text only:
$ meteor add mizzao:sharejs
For ShareJS with the Ace editor:
$ meteor add mizzao:sharejs-ace
For ShareJS with the CodeMirror editor:
$ meteor add mizzao:sharejs-codemirror
No configuration necessary for anonymous document editing. If you want to integrate with Meteor accounts, see below.
Use this helper on the client to get a textarea
with the specified docid
(as an argument) and with a DOM id of "editor", for example:
{{> sharejsText docid=docid id="editor"}}
Use this helper to get an Ace editor. Make sure you specify a size (via CSS) on the #editor div or you won't see anything.
{{> sharejsAce docid=docid id="editor"}}
Use this helper to get a CodeMirror editor.
{{> sharejsCM docid=docid id="editor"}}
The templates will clean themselves up when re-rendered (i.e., you have several documents and docid changes.)
For the Ace and CodeMirror editors, you can define onRender
and onConnect
callbacks in the options hash and use it to configure the editor. onRender
is called when the editor is initially rendered, and onConnect
is called after each successful connection to a document.
{{> sharejsAce docid=document onRender=config onConnect=setMode id="editor"}}
All standard Ace themes and extensions are supported. Note that the helper has to return a function inside of a function:
Template.foo.config = function () {
return function(editor) {
# Set some reasonable options on the editor
editor.setTheme('ace/theme/monokai')
editor.getSession().setMode('ace/mode/javascript')
editor.setShowPrintMargin(false)
editor.getSession().setUseWrapMode(true)
}
};
See this example config file for the various settings that you can use.
By default, the documents and edit operations will be persisted in Meteor's Mongo database. Mongo is the recommended usage as you don't need a separate database and user integration is supported. "opsCollectionPerDoc": false
can be useful to set if you don't want a separate ops collection for each document.
You can also use db.type
of none
to have all documents and operations in memory.
In case you are using Mongo to mirror the internal sharejs DB with an external Meteor collection as in the user-accounts demo app (find it here deployed on meteor), both authorization and authentication are available using the ShareJS auth mechanism.
The use of this feature becomes effective if you store addional metadata such as owners and invites in the document collection like here in the demo app.
Your settings file should look like the following:
{
"sharejs": {
"options": {
"accounts_auth": {
"authorize": {
"collection": "documents",
"token_validations": {
"or": {
"invitedUsers": "is_in_array",
"userId": "is_equal"
}
},
"apply_on": [
"read",
"update",
"create",
"delete"
]
},
"authenticate": {
"collection": "users",
"token_validations": {
"_id": "is_equal"
}
}
}
}
}
}
All authorize and authenticate settings are under their respective categories. Please note that both of them are completely optional, however once present, they must have at least a field called collection
.
sharejs.options.accounts_auth.authorize
sharejs.options.accounts_auth.authenticate
The sub-categories for both define the allowed operations and validation.
collection
: database collection to fetch the document/user metadata from.token_validations
: contains the boolean logic and supports the keywordsis_equal
,isnt_equal
,is_in_array
andisnt_in_array
. Bothor
andand
logical operators can be used, provided at any one level of JSON, there is only one or none of them.apply_on
: you can select operations from hereType
column exceptconnect
which is reserved for authentication.
All validations are run against the token. The client-side of sharejs auth would use Meteor.userId()
for the token. So, for a returned document from database, the following will check for equality of userId
and token or presence of token in invitedUsers
.
"token_validations": {
"or": {
"userId": "is_equal",
"invitedUsers": "is_in_array"
}
}
Usually, the presence of the user in the collection is sufficient for allowing the connection to sharejs. However, criteria such as the following can also be used.
"token_validations": {
"_id": "is_equal"
}
You can access the ShareJS Server API at ShareJS.model
. For example, you may want to delete documents ops when the document is deleted in your app. See the demo for an example.
- When using the default mongo driver, you must not use collections called
docs
orops
. These are used by ShareJS. - When not using accounts integration, ShareJS is agnostic to the Meteor users, and doesn't keep track of who did what op. The document ids are used for access.
- It's best to create a
Meteor.Collection
for your documents which generates good unique ids to connect to ShareJS with. Use these to render the templates above. See the demo for examples. - Importing ace dependencies is somewhat unsatisfactory. Waiting for improvements to Meteor package management system.
Please submit pull requests for better features and cooperation!
- Andrew Mao (https://github.com/mizzao/)
- Karan Batra-Daitch (https://github.com/kbdaitch)
- CJ Carr (https://github.com/cortexelus)