Addresses the #147 review (Approve with comments): - Add footnote-views.structure.test.tsx: a structural regression guard asserting the editable NodeViewContent is the FIRST child of FootnotesListView and FootnoteDefinitionView, with no contenteditable=false chrome before it. The whole #146 fix rests on this DOM-order invariant; the macOS caret symptom needs a real browser, but the order proxy is testable in jsdom. Stubs @tiptap/react so the views render as plain DOM — the test passes on the fixed order and fails on the pre-fix chrome-first order. - Reword the code-block-view comment: it claimed a "top-right overlay (the transclusion pattern)", but the menu stays fully in flow as a full-width row lifted via flex `order: -1` (the .codeBlock wrapper is a flex column). No overlay/absolute positioning. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
113 lines
3.7 KiB
TypeScript
113 lines
3.7 KiB
TypeScript
import { NodeViewContent, NodeViewProps, NodeViewWrapper } from "@tiptap/react";
|
|
import { ActionIcon, Group, Select, Tooltip } from "@mantine/core";
|
|
import { CopyButton } from "@/components/common/copy-button";
|
|
import { useEffect, useState } from "react";
|
|
import { IconCheck, IconCopy } from "@tabler/icons-react";
|
|
import classes from "./code-block.module.css";
|
|
import React from "react";
|
|
import { Suspense } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
const MermaidView = React.lazy(
|
|
() => import("@/features/editor/components/code-block/mermaid-view.tsx"),
|
|
);
|
|
|
|
export default function CodeBlockView(props: NodeViewProps) {
|
|
const { t } = useTranslation();
|
|
const { node, updateAttributes, extension, editor, getPos } = props;
|
|
const { language } = node.attrs;
|
|
const [languageValue, setLanguageValue] = useState<string | null>(
|
|
language || null,
|
|
);
|
|
const [isSelected, setIsSelected] = useState(false);
|
|
|
|
useEffect(() => {
|
|
const updateSelection = () => {
|
|
const { state } = editor;
|
|
const { from, to } = state.selection;
|
|
// Check if the selection intersects with the node's range
|
|
const isNodeSelected =
|
|
(from >= getPos() && from < getPos() + node.nodeSize) ||
|
|
(to > getPos() && to <= getPos() + node.nodeSize);
|
|
setIsSelected(isNodeSelected);
|
|
};
|
|
|
|
editor.on("selectionUpdate", updateSelection);
|
|
return () => {
|
|
editor.off("selectionUpdate", updateSelection);
|
|
};
|
|
}, [editor, getPos(), node.nodeSize]);
|
|
|
|
function changeLanguage(language: string) {
|
|
setLanguageValue(language);
|
|
updateAttributes({
|
|
language: language,
|
|
});
|
|
}
|
|
|
|
return (
|
|
<NodeViewWrapper className="codeBlock">
|
|
{/* #146: the editable <pre><code> (contentDOM) MUST come first in the DOM.
|
|
With the non-editable menu rendered before it, the browser's click
|
|
hit-testing snapped the caret up one line. Render content first; the
|
|
menu is rendered after it and lifted back above visually via flex
|
|
`order: -1` (the `.codeBlock` wrapper is a flex column — see
|
|
code-block.module.css). It stays fully in flow as a full-width row
|
|
above the code: no overlay/absolute positioning. */}
|
|
<pre
|
|
spellCheck="false"
|
|
hidden={
|
|
((language === "mermaid" && !editor.isEditable) ||
|
|
(language === "mermaid" && !isSelected)) &&
|
|
node.textContent.length > 0
|
|
}
|
|
>
|
|
{/* @ts-ignore */}
|
|
<NodeViewContent as="code" className={`language-${language}`} />
|
|
</pre>
|
|
|
|
<Group
|
|
justify="flex-end"
|
|
contentEditable={false}
|
|
className={classes.menuGroup}
|
|
>
|
|
<Select
|
|
placeholder="auto"
|
|
checkIconPosition="right"
|
|
data={extension.options.lowlight.listLanguages().sort()}
|
|
value={languageValue}
|
|
onChange={changeLanguage}
|
|
searchable
|
|
style={{ maxWidth: "130px" }}
|
|
classNames={{ input: classes.selectInput }}
|
|
disabled={!editor.isEditable}
|
|
/>
|
|
|
|
<CopyButton value={node?.textContent} timeout={2000}>
|
|
{({ copied, copy }) => (
|
|
<Tooltip
|
|
label={copied ? t("Copied") : t("Copy")}
|
|
withArrow
|
|
position="right"
|
|
>
|
|
<ActionIcon
|
|
color={copied ? "teal" : "gray"}
|
|
variant="subtle"
|
|
onClick={copy}
|
|
>
|
|
{copied ? <IconCheck size={16} /> : <IconCopy size={16} />}
|
|
</ActionIcon>
|
|
</Tooltip>
|
|
)}
|
|
</CopyButton>
|
|
</Group>
|
|
|
|
{language === "mermaid" && (
|
|
<Suspense fallback={null}>
|
|
<MermaidView props={props} />
|
|
</Suspense>
|
|
)}
|
|
</NodeViewWrapper>
|
|
);
|
|
}
|