Session Events
content_changed
Emitted when the document content has been updated due to changes made by any user in the session.
This event allows for post-content-update actions, such as triggering third party plugins that can perform any number of actions, such as word-counting, spellchecking, or taking content snapshots
If your application listens to the editor ‘onChanged’ event to trigger actions like saving document content to the backend, it should instead listen to this
'content_changed'
or use the hook equivalent.
note: this hook will not be invoked when edits are made by the local user.From v1.3.3,
contentChanged
hook will be invoked for both local and remote updates
users_update
Emitted every time a new user joins a session or an existing user leaves a session
The event’sdata
object is an array that contains the current snapshot of users currently connected to the session. Each element of the array is a JSON object defined as follows:
Key | Value |
---|---|
user | object |
joinTime | Date |
The user
object will contain all the user meta-data that was supplied to the initialization config parameter.
As an example, the data
object might look like:
If you plan to roll your own avatar component implementation, this event provides the data you need to render and update the list of “online” users.