File size: 431 Bytes
2409829
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import { type Editor } from "@graphite/editor";
import { TriggerTextCopy } from "@graphite/messages";

export function createClipboardManager(editor: Editor) {
	// Subscribe to process backend event
	editor.subscriptions.subscribeJsMessage(TriggerTextCopy, (triggerTextCopy) => {
		// If the Clipboard API is supported in the browser, copy text to the clipboard
		navigator.clipboard?.writeText?.(triggerTextCopy.copyText);
	});
}