Skip to content
Document Authoring DA  API Docs v1.16.0
npmGitHub

DocAuthEditor

DocAuthEditor:

The visual editor UI. Binds to a DOM element and lets users edit documents.

Create editors using createDocAuthSystem.

setCurrentDocument(doc): void

Attaches the provided document as the current document to the editor.

DocAuthDocument

void


currentDocument(): DocAuthDocument

Returns a reference to the currently attached document.

DocAuthDocument


destroy(): void

Removes all DOM elements and releases resources held by the editor. Note: This does not release the underlying DocAuthSystem. Use DocAuthSystem.destroy after calling DocAuthEditor.destroy for a complete teardown.

void


docAuthSystem(): DocAuthSystem

Retrieves the DocAuthSystem instance this editor is bound to.

DocAuthSystem


hasActiveCursor()

>= v1.9.0Section titled “hasActiveCursor()”

hasActiveCursor(): boolean

Checks if the editor has an active cursor/insertion point. This is useful for custom actions to determine if they should be enabled.

boolean

True if cursor is active and insertion is possible, false otherwise


insertTextAtCursor()

>= v1.9.0Section titled “insertTextAtCursor()”

insertTextAtCursor(text): void

Inserts text at the current cursor position. If there’s a selection, it will be replaced with the provided text.

string

The text to insert at the cursor position

void


insertContentAtCursor()

>= v1.15.0Section titled “insertContentAtCursor()”

insertContentAtCursor(options): void

Inserts content at the current cursor position. If there’s a range selection, it will be replaced. If there is no active cursor, this is a silent no-op.

format is the same discriminator used by getSelectionContent, so a fragment captured from the editor round-trips back through this method.

InsertContentAtCursorOptions

The content to insert, discriminated by format. See InsertContentAtCursorOptions.

void

import { isUnsupportedFragmentVersionError, isDocAuthError } from '@nutrient-sdk/document-authoring';
editor.insertContentAtCursor({ content: 'hello' });
const fragment = editor.getSelectionContent({ format: 'fragment' });
if (!fragment) return;
const transformed = await sendToModel(fragment);
try {
editor.insertContentAtCursor({ format: 'fragment', content: transformed });
} catch (err) {
console.error(`Need version ${err.expected}, got ${err.actual}`);
} else if (isDocAuthError(err)) {
console.error(err.type, err.message);
}
}

getSelectionContent()

>= v1.15.0Section titled “getSelectionContent()”

getSelectionContent<F>(options): SelectionContentByFormat[F] | null

Returns the current selection in the requested format, or null if there is no range selection.

  • format: 'text' returns the selected text as a plain string.
  • format: 'fragment' returns a structured fragment object that round-trips through insertContentAtCursor with format: 'fragment'. Treat as opaque JSON-serializable data; don’t depend on its internal shape.

A collapsed cursor (zero-width caret) returns null for either format. Use hasActiveCursor to distinguish a collapsed cursor from a missing one.

F extends SelectionContentFormat

The format to read the selection in. See SelectionContentFormat.

F

SelectionContentByFormat[F] | null

The selection in the requested format, or null if no range is selected.

const text = editor.getSelectionContent({ format: 'text' });
if (text !== null) console.log('Selected:', text);
const fragment = editor.getSelectionContent({ format: 'fragment' });
if (fragment !== null) editor.insertContentAtCursor({ format: 'fragment', content: fragment });

setActions(actions): void

Set all actions (replaces any existing actions). Allows setting and executing editor actions programmatically.

Action[]

Array of actions to register

void

import { defaultActions } from '@nutrient-sdk/document-authoring';
// Register custom actions alongside default actions
editor.setActions([
...defaultActions, // Keep default actions
{
id: 'custom.insert-signature',
label: 'Insert Signature',
handler: () => {
editor.insertTextAtCursor('\n\nBest regards,\nJohn Doe');
},
shortcuts: ['Mod+Shift+S'],
},
]);

setToolbarConfig()

>= v1.9.0Section titled “setToolbarConfig()”

setToolbarConfig(config): void

Set the toolbar configuration. Use this to customize the editor’s toolbar.

ToolbarConfig

Toolbar configuration object

void

import { defaultToolbarConfig } from '@nutrient-sdk/document-authoring';
// Use default toolbar config but add a custom item
editor.setToolbarConfig({
items: [...defaultToolbarConfig.items, { type: 'action', id: 'custom', actionId: 'custom.insert-signature' }],
});
// Or create a minimal toolbar
editor.setToolbarConfig({
items: [
{ type: 'built-in', id: 'undo', builtInType: 'undo' },
{ type: 'built-in', id: 'redo', builtInType: 'redo' },
{ type: 'separator', id: 'sep-1' },
{ type: 'built-in', id: 'bold', builtInType: 'bold' },
{ type: 'built-in', id: 'italic', builtInType: 'italic' },
{ type: 'action', id: 'custom', actionId: 'custom.insert-signature' },
],
});

setEditorMode()

>= v1.13.0Section titled “setEditorMode()”

setEditorMode(mode): void

Sets the current editor mode.

DocAuthEditorMode

The editor mode to use.

void


getEditorMode()

>= v1.13.0Section titled “getEditorMode()”

getEditorMode(): DocAuthEditorMode

Returns the current editor mode.

DocAuthEditorMode


setAuthor(name): void

Sets the author name used when creating comments, replies, and tracked changes.

string

The author name to use for new comments

void

// Set author when user logs in
editor.setAuthor('John Doe');
// Clear author when user logs out (will use localized "Anonymous")
editor.setAuthor('');

UIOptions.author for setting the initial author.


getAuthor(): string

Returns the author name used when creating comments, replies, and tracked changes.

string


enableSpellcheck()

>= v1.13.0Section titled “enableSpellcheck()”

enableSpellcheck(language): void

Enables spell checking for the given language. Returns immediately; misspelled words begin to be underlined shortly after, once the dictionary has loaded. Also works to switch from one language to another — call again with a different language at any time.

SpellcheckLanguage

The spellcheck language to activate.

void

editor.enableSpellcheck('fr-FR');
editor.enableSpellcheck('en-US');

disableSpellcheck()

>= v1.13.0Section titled “disableSpellcheck()”

disableSpellcheck(): void

Disables spell checking. Removes any misspelled-word underlines currently drawn and stops checking new edits. Safe to call when spell checking is already off.

void

editor.disableSpellcheck();

editor.enableSpellcheck() to turn spell checking on.


on(event, handler): DocAuthEditor

Adds an event listener that will be called every time the specified event is emitted.

EventName

(payload: EventPayload) => void

DocAuthEditor

The editor instance for method chaining

// Auto-save on content changes
editor.on('content.change', async () => {
const doc = await editor.currentDocument().saveDocument();
localStorage.setItem('draft', JSON.stringify(doc));
});
// Track document load
editor.on('document.load', () => {
console.log('Document loaded successfully');
});
// Debounced save to prevent excessive API calls
let saveTimeout;
editor.on('content.change', async () => {
clearTimeout(saveTimeout);
saveTimeout = setTimeout(async () => {
const doc = await editor.currentDocument().saveDocument();
await fetch('/api/save', {
method: 'POST',
body: JSON.stringify(doc),
});
}, 1000);
});
// Method chaining
editor.on('document.load', () => console.log('loaded')).on('content.change', () => console.log('changed'));
Event nameEvent payloadDescription
document.loadnoneFired when a document is initially loaded into the editor. This event is triggered once per document load, including when switching documents.
content.changenoneFired when the document content has changed due to user editing or programmatic modifications. Use this event to react to document changes, such as saving drafts or updating UI state.

off(event, handler?): DocAuthEditor

Removes an event listener. If no handler is provided, removes all listeners for the event.

EventName

(payload: EventPayload) => void

DocAuthEditor

The editor instance for method chaining

// Remove specific handler (prevent memory leaks)
const handleChange = async () => {
const doc = await editor.currentDocument().saveDocument();
localStorage.setItem('draft', JSON.stringify(doc));
};
editor.on('content.change', handleChange);
// ... later ...
editor.off('content.change', handleChange);
// Remove all handlers for an event
editor.off('content.change');
// Cleanup pattern
const setupEditor = (target) => {
const editor = await system.createEditor(target);
const handleChange = () => console.log('changed');
const handleLoad = () => console.log('loaded');
editor.on('content.change', handleChange);
editor.on('document.load', handleLoad);
return () => {
editor.off('content.change', handleChange);
editor.off('document.load', handleLoad);
editor.destroy();
};
};
Event nameEvent payloadDescription
document.loadnoneFired when a document is initially loaded into the editor. This event is triggered once per document load, including when switching documents.
content.changenoneFired when the document content has changed due to user editing or programmatic modifications. Use this event to react to document changes, such as saving drafts or updating UI state.

once(event, handler): DocAuthEditor

Adds an event listener that will be called only once when the specified event is emitted. The listener is automatically removed after being called.

EventName

(payload: EventPayload) => void

DocAuthEditor

The editor instance for method chaining

// Wait for initial document load
editor.once('document.load', () => {
console.log('Document loaded for the first time');
});
// Perform action after first change
editor.once('content.change', () => {
console.log('User made their first edit');
});
// Promise-based pattern for waiting on load
const waitForLoad = (editor) => {
return new Promise((resolve) => {
editor.once('document.load', resolve);
});
};
await waitForLoad(editor);
console.log('Ready to use');
Event nameEvent payloadDescription
document.loadnoneFired when a document is initially loaded into the editor. This event is triggered once per document load, including when switching documents.
content.changenoneFired when the document content has changed due to user editing or programmatic modifications. Use this event to react to document changes, such as saving drafts or updating UI state.