A Document represents a shared collaborative space where users can interact. Documents live inside the Organization.

Documents contain:

  • All feature data (e.g., Comments, Presence, Cursors, etc.).
  • Locations
  • Users: These are different from Organization Users. (more details in Access Control section)

Users logged into the same Document ID can see each other’s Presence, Cursors, Comments etc.

For example, in a slide presentation application, the entire slide deck is a document.

Hooks currently do not support automatic change detection in variables.

1. Setting a Document

  • Use this to initialize a Document.
  • It takes two parameters:
    • documentId: The unique identifier for the document.
    • metadata: (optional) This is a key/value pair object where you can set metadata about the document such as documentName. documentName is a special field that we use to display the document name in some Velt Components.
The SDK will not work without this call.
useSetDocument('unique-document-id', {documentName: 'Document Name'});

2. Unset a Document

  • Use this to unset a Document.
  • For some parts of your app, you may not need Velt. In such cases, you can unset the document.
useUnsetDocumentId();

3. Get Document Metadata

  • Use this to get the metadata of a Document.
  • This is useful when you want to display the document name in your app or any custom metadata that you have set.
const { client } = useVeltClient();

useEffect(() => {
    if (client) {
        client.getDocumentMetadata().subscribe((documentMetadata) => {
            console.log("Current document metadata: ", documentMetadata);
        });
    }
}, [client]);