mirror of
https://github.com/docmost/docmost.git
synced 2026-08-23 22:02:18 +10:00
tabs menu
This commit is contained in:
@@ -0,0 +1,151 @@
|
|||||||
|
import { BubbleMenu } from "@tiptap/react/menus";
|
||||||
|
import React, { useCallback } from "react";
|
||||||
|
import { EditorMenuProps, ShouldShowProps } from "../table/types/types";
|
||||||
|
import { isEditorReady, isTextSelected } from "@docmost/editor-ext";
|
||||||
|
import { Node as PMNode } from "@tiptap/pm/model";
|
||||||
|
import { findParentNode, posToDOMRect } from "@tiptap/core";
|
||||||
|
import classes from "../common/toolbar-menu.module.css";
|
||||||
|
import { ActionIcon, Tooltip } from "@mantine/core";
|
||||||
|
import { useTranslation } from "react-i18next";
|
||||||
|
import {
|
||||||
|
IconChevronLeft,
|
||||||
|
IconChevronRight,
|
||||||
|
IconColumnInsertLeft,
|
||||||
|
IconColumnInsertRight,
|
||||||
|
IconColumnRemove,
|
||||||
|
IconTrashX,
|
||||||
|
} from "@tabler/icons-react";
|
||||||
|
|
||||||
|
const TabsMenu = React.memo(({ editor }: EditorMenuProps) => {
|
||||||
|
const { t } = useTranslation();
|
||||||
|
const shouldShow = useCallback(
|
||||||
|
({ state }: ShouldShowProps) => {
|
||||||
|
if (!state) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isTextSelected(editor)) return false;
|
||||||
|
|
||||||
|
return editor.isActive("tabs");
|
||||||
|
},
|
||||||
|
[editor]
|
||||||
|
);
|
||||||
|
|
||||||
|
const getReferencedVirtualElement = useCallback(() => {
|
||||||
|
if (!isEditorReady(editor)) return;
|
||||||
|
const { selection } = editor.state;
|
||||||
|
const predicate = (node: PMNode) => node.type.name === "tabs";
|
||||||
|
const parent = findParentNode(predicate)(selection);
|
||||||
|
|
||||||
|
if (parent) {
|
||||||
|
const dom = editor.view.nodeDOM(parent?.pos) as HTMLElement;
|
||||||
|
const domRect = dom.getBoundingClientRect();
|
||||||
|
return {
|
||||||
|
getBoundingClientRect: () => domRect,
|
||||||
|
getClientRects: () => [domRect],
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const domRect = posToDOMRect(editor.view, selection.from, selection.to);
|
||||||
|
return {
|
||||||
|
getBoundingClientRect: () => domRect,
|
||||||
|
getClientRects: () => [domRect],
|
||||||
|
};
|
||||||
|
}, [editor]);
|
||||||
|
|
||||||
|
const handleAddTabLeft = useCallback(() => {
|
||||||
|
editor.chain().focus().insertTab("left").run();
|
||||||
|
}, [editor]);
|
||||||
|
|
||||||
|
const handleAddTabRight = useCallback(() => {
|
||||||
|
editor.chain().focus().insertTab("right").run();
|
||||||
|
}, [editor]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<BubbleMenu
|
||||||
|
style={{ zIndex: 99 }}
|
||||||
|
editor={editor}
|
||||||
|
pluginKey="tabs-menu"
|
||||||
|
resizeDelay={0}
|
||||||
|
getReferencedVirtualElement={getReferencedVirtualElement}
|
||||||
|
shouldShow={shouldShow}
|
||||||
|
options={{
|
||||||
|
placement: "top",
|
||||||
|
offset: false,
|
||||||
|
flip: false,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<div className={classes.toolbar}>
|
||||||
|
<Tooltip position="top" label={t("Add left tab")} withinPortal={false}>
|
||||||
|
<ActionIcon
|
||||||
|
onClick={handleAddTabLeft}
|
||||||
|
variant="subtle"
|
||||||
|
size="lg"
|
||||||
|
aria-label={t("Add left tab")}
|
||||||
|
>
|
||||||
|
<IconColumnInsertLeft size={18} />
|
||||||
|
</ActionIcon>
|
||||||
|
</Tooltip>
|
||||||
|
<Tooltip position="top" label={t("Add right tab")} withinPortal={false}>
|
||||||
|
<ActionIcon
|
||||||
|
onClick={handleAddTabRight}
|
||||||
|
variant="subtle"
|
||||||
|
size="lg"
|
||||||
|
aria-label={t("Add right tab")}
|
||||||
|
>
|
||||||
|
<IconColumnInsertRight size={18} />
|
||||||
|
</ActionIcon>
|
||||||
|
</Tooltip>
|
||||||
|
<Tooltip position="top" label={t("Delete tab")} withinPortal={false}>
|
||||||
|
<ActionIcon
|
||||||
|
onClick={handleAddTabLeft}
|
||||||
|
variant="subtle"
|
||||||
|
size="lg"
|
||||||
|
aria-label={t("Delete tab")}
|
||||||
|
>
|
||||||
|
<IconColumnRemove size={18} />
|
||||||
|
</ActionIcon>
|
||||||
|
</Tooltip>
|
||||||
|
|
||||||
|
<div className={classes.divider} />
|
||||||
|
|
||||||
|
<Tooltip position="top" label={t("Move tab left")} withinPortal={false}>
|
||||||
|
<ActionIcon
|
||||||
|
onClick={handleAddTabLeft}
|
||||||
|
variant="subtle"
|
||||||
|
size="lg"
|
||||||
|
aria-label={t("Move tab left")}
|
||||||
|
>
|
||||||
|
<IconChevronLeft size={18} />
|
||||||
|
</ActionIcon>
|
||||||
|
</Tooltip>
|
||||||
|
|
||||||
|
<Tooltip position="top" label={t("Move tab right")} withinPortal={false}>
|
||||||
|
<ActionIcon
|
||||||
|
onClick={handleAddTabLeft}
|
||||||
|
variant="subtle"
|
||||||
|
size="lg"
|
||||||
|
aria-label={t("Move tab right")}
|
||||||
|
>
|
||||||
|
<IconChevronRight size={18} />
|
||||||
|
</ActionIcon>
|
||||||
|
</Tooltip>
|
||||||
|
|
||||||
|
<div className={classes.divider} />
|
||||||
|
|
||||||
|
<Tooltip position="top" label={t("Delete")} withinPortal={false}>
|
||||||
|
<ActionIcon
|
||||||
|
onClick={handleAddTabLeft}
|
||||||
|
variant="subtle"
|
||||||
|
size="lg"
|
||||||
|
aria-label={t("Delete")}
|
||||||
|
>
|
||||||
|
<IconTrashX size={18} />
|
||||||
|
</ActionIcon>
|
||||||
|
</Tooltip>
|
||||||
|
</div>
|
||||||
|
</BubbleMenu>
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
export default TabsMenu;
|
||||||
@@ -6,9 +6,9 @@ import React, {
|
|||||||
useRef,
|
useRef,
|
||||||
useState,
|
useState,
|
||||||
type KeyboardEvent,
|
type KeyboardEvent,
|
||||||
} from 'react';
|
} from "react";
|
||||||
import { NodeViewContent, NodeViewWrapper, type NodeViewProps } from '@tiptap/react';
|
import { NodeViewContent, NodeViewWrapper, type NodeViewProps } from "@tiptap/react";
|
||||||
import { Tabs, TextInput } from '@mantine/core';
|
import { Tabs, TextInput } from "@mantine/core";
|
||||||
|
|
||||||
export default function TabsView(props: NodeViewProps) {
|
export default function TabsView(props: NodeViewProps) {
|
||||||
const { node, editor, getPos } = props;
|
const { node, editor, getPos } = props;
|
||||||
@@ -22,14 +22,14 @@ export default function TabsView(props: NodeViewProps) {
|
|||||||
const labelId = node.child(index)?.attrs?.id;
|
const labelId = node.child(index)?.attrs?.id;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
label: labelText ?? '',
|
label: labelText ?? "",
|
||||||
id: labelId ?? index,
|
id: labelId ?? index,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
}, [node]);
|
}, [node]);
|
||||||
|
|
||||||
const activeTab = clampIndex(node.attrs.activeTab);
|
const activeTab = clampIndex(node.attrs.activeTab);
|
||||||
const [activeLabel, setActiveLabel] = useState(tabs[activeTab].label ?? '');
|
const [activeLabel, setActiveLabel] = useState(tabs[activeTab].label ?? "");
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setActiveLabel(tabs[activeTab].label);
|
setActiveLabel(tabs[activeTab].label);
|
||||||
@@ -67,7 +67,7 @@ export default function TabsView(props: NodeViewProps) {
|
|||||||
setActiveLabel(label);
|
setActiveLabel(label);
|
||||||
|
|
||||||
if (label === tabs[activeTab].label) return;
|
if (label === tabs[activeTab].label) return;
|
||||||
if (typeof getPos === 'function') {
|
if (typeof getPos === "function") {
|
||||||
editor.commands.updateTabLabel?.(activeTab, label, getPos());
|
editor.commands.updateTabLabel?.(activeTab, label, getPos());
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -77,7 +77,7 @@ export default function TabsView(props: NodeViewProps) {
|
|||||||
const handleLabelKeyDown = useCallback(
|
const handleLabelKeyDown = useCallback(
|
||||||
(event: KeyboardEvent<HTMLInputElement>) => {
|
(event: KeyboardEvent<HTMLInputElement>) => {
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
if (event.key === 'Escape') {
|
if (event.key === "Escape") {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
event.currentTarget.blur();
|
event.currentTarget.blur();
|
||||||
}
|
}
|
||||||
@@ -86,7 +86,7 @@ export default function TabsView(props: NodeViewProps) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<NodeViewWrapper data-type='tabs'>
|
<NodeViewWrapper data-type="tabs">
|
||||||
<Tabs value={String(activeTab)}>
|
<Tabs value={String(activeTab)}>
|
||||||
<Tabs.List style={{ marginBottom: 10 }}>
|
<Tabs.List style={{ marginBottom: 10 }}>
|
||||||
{tabs.map(({ label, id }, index) => (
|
{tabs.map(({ label, id }, index) => (
|
||||||
@@ -96,20 +96,20 @@ export default function TabsView(props: NodeViewProps) {
|
|||||||
onFocus={(event) => event.currentTarget.blur()}
|
onFocus={(event) => event.currentTarget.blur()}
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
if (typeof getPos === 'function') {
|
if (typeof getPos === "function") {
|
||||||
editor.commands.setActiveTab?.(index, getPos());
|
editor.commands.setActiveTab?.(index, getPos());
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<TextInput
|
<TextInput
|
||||||
aria-label='Edit tab label'
|
aria-label="Edit tab label"
|
||||||
onMouseDown={handleMouseDown}
|
onMouseDown={handleMouseDown}
|
||||||
onFocus={handleFocus}
|
onFocus={handleFocus}
|
||||||
onBlur={handleBlur}
|
onBlur={handleBlur}
|
||||||
onChange={commitLabel}
|
onChange={commitLabel}
|
||||||
onKeyDown={handleLabelKeyDown}
|
onKeyDown={handleLabelKeyDown}
|
||||||
variant='unstyled'
|
variant="unstyled"
|
||||||
size='xs'
|
size="xs"
|
||||||
value={
|
value={
|
||||||
index === activeTab && allowFocusRef.current ? activeLabel : label
|
index === activeTab && allowFocusRef.current ? activeLabel : label
|
||||||
}
|
}
|
||||||
@@ -117,7 +117,7 @@ export default function TabsView(props: NodeViewProps) {
|
|||||||
input: {
|
input: {
|
||||||
minWidth: 80,
|
minWidth: 80,
|
||||||
padding: 0,
|
padding: 0,
|
||||||
cursor: 'pointer',
|
cursor: "pointer",
|
||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
@@ -126,15 +126,15 @@ export default function TabsView(props: NodeViewProps) {
|
|||||||
</Tabs.List>
|
</Tabs.List>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
|
|
||||||
<div className='dm-tabs__content'>
|
<div className="dm-tabs__content">
|
||||||
<NodeViewContent as='div' />
|
<NodeViewContent as="div" />
|
||||||
</div>
|
</div>
|
||||||
</NodeViewWrapper>
|
</NodeViewWrapper>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const clampIndex = (value: unknown, length = Number.MAX_SAFE_INTEGER) => {
|
const clampIndex = (value: unknown, length = Number.MAX_SAFE_INTEGER) => {
|
||||||
const parsed = typeof value === 'number' ? value : Number(value ?? 0);
|
const parsed = typeof value === "number" ? value : Number(value ?? 0);
|
||||||
if (!Number.isFinite(parsed) || length <= 0) return 0;
|
if (!Number.isFinite(parsed) || length <= 0) return 0;
|
||||||
return Math.max(0, Math.min(Math.trunc(parsed), length - 1));
|
return Math.max(0, Math.min(Math.trunc(parsed), length - 1));
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -82,6 +82,7 @@ import {
|
|||||||
getCollabSocket,
|
getCollabSocket,
|
||||||
releaseCollabSocket,
|
releaseCollabSocket,
|
||||||
} from "@/features/editor/collab-socket";
|
} from "@/features/editor/collab-socket";
|
||||||
|
import TabsMenu from "./components/tabs/tabs-menu";
|
||||||
|
|
||||||
interface PageEditorProps {
|
interface PageEditorProps {
|
||||||
pageId: string;
|
pageId: string;
|
||||||
@@ -453,6 +454,7 @@ function CollabPageEditor({
|
|||||||
<ExcalidrawMenu editor={editor} />
|
<ExcalidrawMenu editor={editor} />
|
||||||
<DrawioMenu editor={editor} />
|
<DrawioMenu editor={editor} />
|
||||||
<ColumnsMenu editor={editor} />
|
<ColumnsMenu editor={editor} />
|
||||||
|
<TabsMenu editor={editor} />
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
{editor && !editorIsEditable && (editable || canComment) && (
|
{editor && !editorIsEditable && (editable || canComment) && (
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { Node, mergeAttributes } from '@tiptap/core';
|
import { Node, mergeAttributes } from '@tiptap/core';
|
||||||
import { Fragment, type Node as PMNode } from '@tiptap/pm/model';
|
import { Fragment, type Node as PMNode } from '@tiptap/pm/model';
|
||||||
import { TextSelection, type EditorState } from '@tiptap/pm/state';
|
import { TextSelection, Transaction, type EditorState } from '@tiptap/pm/state';
|
||||||
import { ReactNodeViewRenderer, type ReactNodeViewProps } from '@tiptap/react';
|
import { ReactNodeViewRenderer, type ReactNodeViewProps } from '@tiptap/react';
|
||||||
import type { ComponentType } from 'react';
|
import type { ComponentType } from 'react';
|
||||||
import { generateNodeId } from '../utils';
|
import { generateNodeId } from '../utils';
|
||||||
@@ -14,11 +14,12 @@ declare module '@tiptap/core' {
|
|||||||
interface Commands<ReturnType> {
|
interface Commands<ReturnType> {
|
||||||
tabs: {
|
tabs: {
|
||||||
insertTabs: () => ReturnType;
|
insertTabs: () => ReturnType;
|
||||||
setActiveTab: (index: number, tabsPos?: number) => ReturnType;
|
insertTab: (pos: string) => ReturnType;
|
||||||
|
setActiveTab: (index: number, tabsPos: number) => ReturnType;
|
||||||
updateTabLabel: (
|
updateTabLabel: (
|
||||||
index: number,
|
index: number,
|
||||||
label: string,
|
label: string,
|
||||||
tabsPos?: number,
|
tabsPos: number,
|
||||||
) => ReturnType;
|
) => ReturnType;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@@ -85,6 +86,24 @@ export const Tabs = Node.create<TabsOptions>({
|
|||||||
]);
|
]);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const resolveTabs = (state: EditorState) => {
|
||||||
|
const { $from } = state.selection;
|
||||||
|
let depth = $from.depth;
|
||||||
|
|
||||||
|
while (depth >= 0) {
|
||||||
|
const node = $from.node(depth);
|
||||||
|
if (node.type.name === 'tabs') {
|
||||||
|
return {
|
||||||
|
node,
|
||||||
|
pos: $from.before(depth),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
depth--;
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
const resolveTarget = (state: EditorState, pos: number) => {
|
const resolveTarget = (state: EditorState, pos: number) => {
|
||||||
const node = state.doc.nodeAt(pos);
|
const node = state.doc.nodeAt(pos);
|
||||||
return { node, pos: pos };
|
return { node, pos: pos };
|
||||||
@@ -95,6 +114,49 @@ export const Tabs = Node.create<TabsOptions>({
|
|||||||
return pos.posAtIndex(tabIndex, pos.depth);
|
return pos.posAtIndex(tabIndex, pos.depth);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const applyActiveTabState = (
|
||||||
|
tr: Transaction,
|
||||||
|
tabsPos: number,
|
||||||
|
previousIndex: number,
|
||||||
|
nextIndex: number,
|
||||||
|
) => {
|
||||||
|
const tabsNode = tr.doc.nodeAt(tabsPos);
|
||||||
|
if (tabsNode?.type.name !== 'tabs' || tabsNode.childCount <= 0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const prev = clampIndex(previousIndex, tabsNode.childCount);
|
||||||
|
const next = clampIndex(nextIndex, tabsNode.childCount);
|
||||||
|
|
||||||
|
tr.setNodeMarkup(tabsPos, undefined, {
|
||||||
|
...tabsNode.attrs,
|
||||||
|
activeTab: next,
|
||||||
|
});
|
||||||
|
|
||||||
|
const prevTabPos = getTabPos(tr.doc, tabsPos, prev);
|
||||||
|
const nextTabPos = getTabPos(tr.doc, tabsPos, next);
|
||||||
|
|
||||||
|
if (prev !== next) {
|
||||||
|
const prevTabNode = tr.doc.nodeAt(prevTabPos);
|
||||||
|
if (prevTabNode) {
|
||||||
|
tr.setNodeMarkup(prevTabPos, undefined, {
|
||||||
|
...prevTabNode.attrs,
|
||||||
|
active: false,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const nextTabNode = tr.doc.nodeAt(nextTabPos);
|
||||||
|
if (nextTabNode) {
|
||||||
|
tr.setNodeMarkup(nextTabPos, undefined, {
|
||||||
|
...nextTabNode.attrs,
|
||||||
|
active: true,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return nextTabPos;
|
||||||
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
insertTabs:
|
insertTabs:
|
||||||
() =>
|
() =>
|
||||||
@@ -128,6 +190,55 @@ export const Tabs = Node.create<TabsOptions>({
|
|||||||
return true;
|
return true;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
insertTab:
|
||||||
|
(pos: string) =>
|
||||||
|
({ state, tr, dispatch }) => {
|
||||||
|
const tabs = resolveTabs(state);
|
||||||
|
if (!tabs || tabs.node.childCount <= 0) return false;
|
||||||
|
|
||||||
|
const currentTabIndex = clampIndex(
|
||||||
|
tabs.node.attrs.activeTab,
|
||||||
|
tabs.node.childCount,
|
||||||
|
);
|
||||||
|
|
||||||
|
const insertIndex =
|
||||||
|
pos === 'right' ? currentTabIndex + 1 : currentTabIndex;
|
||||||
|
|
||||||
|
const newTab = createTab(state.schema, 'Tab', false);
|
||||||
|
if (!newTab) return false;
|
||||||
|
|
||||||
|
const insertPos = getTabPos(state.doc, tabs.pos, insertIndex);
|
||||||
|
tr.insert(insertPos, newTab);
|
||||||
|
|
||||||
|
const insertedTabPos = getTabPos(tr.doc, tabs.pos, insertIndex);
|
||||||
|
tr.setNodeMarkup(insertedTabPos, undefined, {
|
||||||
|
...newTab.attrs,
|
||||||
|
active: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
const previousActiveIndex =
|
||||||
|
pos === 'left' ? currentTabIndex + 1 : currentTabIndex;
|
||||||
|
|
||||||
|
const activeTabPos = applyActiveTabState(
|
||||||
|
tr,
|
||||||
|
tabs.pos,
|
||||||
|
previousActiveIndex,
|
||||||
|
insertIndex,
|
||||||
|
);
|
||||||
|
if (activeTabPos == null) return false;
|
||||||
|
|
||||||
|
const tabNode = tr.doc.nodeAt(activeTabPos);
|
||||||
|
const labelSize = tabNode?.child(0).nodeSize ?? 0;
|
||||||
|
const panelContentPos = activeTabPos + 1 + labelSize + 1;
|
||||||
|
|
||||||
|
tr.setSelection(
|
||||||
|
TextSelection.near(tr.doc.resolve(panelContentPos), 1),
|
||||||
|
);
|
||||||
|
|
||||||
|
if (dispatch) dispatch(tr);
|
||||||
|
return true;
|
||||||
|
},
|
||||||
|
|
||||||
setActiveTab:
|
setActiveTab:
|
||||||
(index, tabsPos) =>
|
(index, tabsPos) =>
|
||||||
({ state, tr, dispatch }) => {
|
({ state, tr, dispatch }) => {
|
||||||
@@ -140,27 +251,17 @@ export const Tabs = Node.create<TabsOptions>({
|
|||||||
target.node.childCount,
|
target.node.childCount,
|
||||||
);
|
);
|
||||||
|
|
||||||
const nextTab = getTabPos(state.doc, target.pos, nextIndex);
|
const activeTabPos = applyActiveTabState(
|
||||||
if (prevIndex !== nextIndex) {
|
tr,
|
||||||
const prevTab = getTabPos(state.doc, target.pos, prevIndex);
|
target.pos,
|
||||||
|
prevIndex,
|
||||||
|
nextIndex,
|
||||||
|
);
|
||||||
|
if (activeTabPos == null) return false;
|
||||||
|
|
||||||
tr.setNodeMarkup(target.pos, undefined, {
|
const tabNode = tr.doc.nodeAt(activeTabPos);
|
||||||
...target.node.attrs,
|
|
||||||
activeTab: nextIndex,
|
|
||||||
});
|
|
||||||
tr.setNodeMarkup(prevTab, undefined, {
|
|
||||||
...target.node.child(prevIndex).attrs,
|
|
||||||
active: false,
|
|
||||||
});
|
|
||||||
tr.setNodeMarkup(nextTab, undefined, {
|
|
||||||
...target.node.child(nextIndex).attrs,
|
|
||||||
active: true,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
const tabNode = state.doc.nodeAt(nextTab);
|
|
||||||
const labelSize = tabNode?.child(0).nodeSize ?? 0;
|
const labelSize = tabNode?.child(0).nodeSize ?? 0;
|
||||||
const panelContentPos = nextTab + 1 + labelSize + 1;
|
const panelContentPos = activeTabPos + 1 + labelSize + 1;
|
||||||
|
|
||||||
tr.setSelection(
|
tr.setSelection(
|
||||||
TextSelection.near(tr.doc.resolve(panelContentPos), 1),
|
TextSelection.near(tr.doc.resolve(panelContentPos), 1),
|
||||||
|
|||||||
Reference in New Issue
Block a user