2022-07-04 13:00:13 +05:00
|
|
|
import { EditorOptions } from "@tiptap/core";
|
2022-07-02 11:57:52 +05:00
|
|
|
import { DependencyList, useEffect, useRef, useState } from "react";
|
2022-07-04 13:00:13 +05:00
|
|
|
import { Editor } from "../types";
|
2022-07-01 18:02:53 +05:00
|
|
|
|
|
|
|
|
function useForceUpdate() {
|
|
|
|
|
const [, setValue] = useState(0);
|
|
|
|
|
|
|
|
|
|
return () => setValue((value) => value + 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const useEditor = (
|
|
|
|
|
options: Partial<EditorOptions> = {},
|
|
|
|
|
deps: DependencyList = []
|
|
|
|
|
) => {
|
2022-07-04 13:00:13 +05:00
|
|
|
const [editor, setEditor] = useState<Editor | null>(null);
|
2022-07-01 18:02:53 +05:00
|
|
|
const forceUpdate = useForceUpdate();
|
2022-07-04 13:00:13 +05:00
|
|
|
const editorRef = useRef<Editor | null>(editor);
|
2022-07-01 18:02:53 +05:00
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
let isMounted = true;
|
|
|
|
|
|
|
|
|
|
const instance = new Editor(options);
|
|
|
|
|
|
|
|
|
|
setEditor(instance);
|
|
|
|
|
|
|
|
|
|
instance.on("transaction", () => {
|
|
|
|
|
requestAnimationFrame(() => {
|
|
|
|
|
requestAnimationFrame(() => {
|
|
|
|
|
if (isMounted) {
|
|
|
|
|
forceUpdate();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
|
instance.destroy();
|
|
|
|
|
isMounted = false;
|
|
|
|
|
};
|
|
|
|
|
}, deps);
|
|
|
|
|
|
2022-07-02 11:57:52 +05:00
|
|
|
useEffect(() => {
|
|
|
|
|
editorRef.current = editor;
|
|
|
|
|
|
2022-07-04 13:00:13 +05:00
|
|
|
if (!editor) return;
|
|
|
|
|
|
|
|
|
|
if (!editor.current) {
|
2022-07-02 11:57:52 +05:00
|
|
|
Object.defineProperty(editor, "current", {
|
2022-08-26 16:19:39 +05:00
|
|
|
get: () => editorRef.current
|
2022-07-02 11:57:52 +05:00
|
|
|
});
|
2022-07-04 13:00:13 +05:00
|
|
|
}
|
|
|
|
|
// if (!editor.executor) {
|
|
|
|
|
// Object.defineProperty(editor, "executor", {
|
|
|
|
|
// get: () => (id?: string) => {
|
|
|
|
|
// console.log(id);
|
|
|
|
|
// return editorRef.current;
|
|
|
|
|
// },
|
|
|
|
|
// });
|
|
|
|
|
// }
|
2022-07-02 11:57:52 +05:00
|
|
|
}, [editor]);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
// this is required for the drag/drop to work properly
|
|
|
|
|
// in the editor.
|
|
|
|
|
function onDragEnter(event: DragEvent) {
|
2022-08-27 15:23:11 +05:00
|
|
|
if (editor?.view.dragging) {
|
2022-07-02 11:57:52 +05:00
|
|
|
event.preventDefault();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
editor?.view.dom.addEventListener("dragenter", onDragEnter);
|
|
|
|
|
return () => {
|
|
|
|
|
editor?.view.dom.removeEventListener("dragenter", onDragEnter);
|
|
|
|
|
};
|
|
|
|
|
}, [editor?.view.dom]);
|
|
|
|
|
|
|
|
|
|
return editor;
|
2022-07-01 18:02:53 +05:00
|
|
|
};
|