mirror of
https://github.com/docmost/docmost.git
synced 2026-05-19 16:04:17 +08:00
3fae41a5ca
* Switch to useEditorState * change shouldRerenderOnTransaction to false
98 lines
2.4 KiB
TypeScript
98 lines
2.4 KiB
TypeScript
import {
|
|
BubbleMenu as BaseBubbleMenu,
|
|
findParentNode,
|
|
posToDOMRect,
|
|
useEditorState,
|
|
} from "@tiptap/react";
|
|
import { useCallback } from "react";
|
|
import { sticky } from "tippy.js";
|
|
import { Node as PMNode } from "prosemirror-model";
|
|
import {
|
|
EditorMenuProps,
|
|
ShouldShowProps,
|
|
} from "@/features/editor/components/table/types/types.ts";
|
|
import { NodeWidthResize } from "@/features/editor/components/common/node-width-resize.tsx";
|
|
|
|
export function ExcalidrawMenu({ editor }: EditorMenuProps) {
|
|
const shouldShow = useCallback(
|
|
({ state }: ShouldShowProps) => {
|
|
if (!state) {
|
|
return false;
|
|
}
|
|
|
|
return (
|
|
editor.isActive("excalidraw") && editor.getAttributes("excalidraw")?.src
|
|
);
|
|
},
|
|
[editor],
|
|
);
|
|
|
|
const editorState = useEditorState({
|
|
editor,
|
|
selector: (ctx) => {
|
|
if (!ctx.editor) {
|
|
return null;
|
|
}
|
|
|
|
const excalidrawAttr = ctx.editor.getAttributes("excalidraw");
|
|
return {
|
|
isExcalidraw: ctx.editor.isActive("excalidraw"),
|
|
width: excalidrawAttr?.width ? parseInt(excalidrawAttr.width) : null,
|
|
};
|
|
},
|
|
});
|
|
|
|
const getReferenceClientRect = useCallback(() => {
|
|
const { selection } = editor.state;
|
|
const predicate = (node: PMNode) => node.type.name === "excalidraw";
|
|
const parent = findParentNode(predicate)(selection);
|
|
|
|
if (parent) {
|
|
const dom = editor.view.nodeDOM(parent?.pos) as HTMLElement;
|
|
return dom.getBoundingClientRect();
|
|
}
|
|
|
|
return posToDOMRect(editor.view, selection.from, selection.to);
|
|
}, [editor]);
|
|
|
|
const onWidthChange = useCallback(
|
|
(value: number) => {
|
|
editor.commands.updateAttributes("excalidraw", { width: `${value}%` });
|
|
},
|
|
[editor],
|
|
);
|
|
|
|
return (
|
|
<BaseBubbleMenu
|
|
editor={editor}
|
|
pluginKey={`excalidraw-menu}`}
|
|
updateDelay={0}
|
|
tippyOptions={{
|
|
getReferenceClientRect,
|
|
offset: [0, 8],
|
|
zIndex: 99,
|
|
popperOptions: {
|
|
modifiers: [{ name: "flip", enabled: false }],
|
|
},
|
|
plugins: [sticky],
|
|
sticky: "popper",
|
|
}}
|
|
shouldShow={shouldShow}
|
|
>
|
|
<div
|
|
style={{
|
|
display: "flex",
|
|
flexDirection: "column",
|
|
alignItems: "center",
|
|
}}
|
|
>
|
|
{editorState?.width && (
|
|
<NodeWidthResize onChange={onWidthChange} value={editorState.width} />
|
|
)}
|
|
</div>
|
|
</BaseBubbleMenu>
|
|
);
|
|
}
|
|
|
|
export default ExcalidrawMenu;
|