React component for collaborative editing in Quill Editor. Connects JSON CRDT
quill-delta node to Quill Editor, allowing multiple users to edit the same
rich-text document concurrently.
Installation:
npm install json-joy @jsonjoy.com/collaborative-quill-react quill quill-delta react react-dom
Usage:
import {ModelWithExt, ext} from 'json-joy/lib/json-crdt-extensions';
import {CollaborativeQuill} from '@jsonjoy.com/collaborative-quill-react';
const model = ModelWithExt.create(ext.quill.new('hello'));
const MyComponent = () => {
return <CollaborativeQuill api={() => model.s.toExt()} />
};The CollaborativeQuill component accepts all props from a standard div element,
plus the following props:
api: A function that returns theQuillDeltaApiinstance for the collaborative document.options: Quill editor options (theme, modules, etc.).readonly: Whether the editor is read-only.themeCss: Custom CSS URL for the Quill theme.onEditor: Callback called with the Quill editor instance.onTextChange: Callback for text change events.onSelectionChange: Callback for selection change events.onEditorChange: Callback for all editor change events.
This project is funded through NGI Zero Core, a fund established by NLnet with financial support from the European Commission's Next Generation Internet program. Learn more at the NLnet project page.

