mirror of
https://github.com/docmost/docmost.git
synced 2026-08-29 18:14:58 +08:00
add tippyoptions for reference
This commit is contained in:
@@ -82,6 +82,14 @@ export function CalloutMenu({ editor }: EditorMenuProps) {
|
|||||||
// zIndex: 99,
|
// zIndex: 99,
|
||||||
flip: false,
|
flip: false,
|
||||||
}}
|
}}
|
||||||
|
//tippyOptions={{
|
||||||
|
// getReferenceClientRect,
|
||||||
|
// offset: [0, 10],
|
||||||
|
// placement: "bottom",
|
||||||
|
// zIndex: 99,
|
||||||
|
// popperOptions: {
|
||||||
|
// modifiers: [{ name: "flip", enabled: false }],
|
||||||
|
// },
|
||||||
shouldShow={shouldShow}
|
shouldShow={shouldShow}
|
||||||
>
|
>
|
||||||
<ActionIcon.Group className="actionIconGroup">
|
<ActionIcon.Group className="actionIconGroup">
|
||||||
|
|||||||
@@ -52,6 +52,15 @@ export function DrawioMenu({ editor }: EditorMenuProps) {
|
|||||||
// zIndex: 99,
|
// zIndex: 99,
|
||||||
flip: false,
|
flip: false,
|
||||||
}}
|
}}
|
||||||
|
// tippyOptions={{
|
||||||
|
// getReferenceClientRect,
|
||||||
|
// offset: [0, 8],
|
||||||
|
// zIndex: 99,
|
||||||
|
// popperOptions: {
|
||||||
|
// modifiers: [{ name: 'flip', enabled: false }],
|
||||||
|
// },
|
||||||
|
// plugins: [sticky],
|
||||||
|
// sticky: 'popper',
|
||||||
shouldShow={shouldShow}
|
shouldShow={shouldShow}
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
|
|||||||
@@ -52,8 +52,20 @@ export function ExcalidrawMenu({ editor }: EditorMenuProps) {
|
|||||||
placement: "bottom",
|
placement: "bottom",
|
||||||
offset: 8,
|
offset: 8,
|
||||||
// zIndex: 99,
|
// zIndex: 99,
|
||||||
|
// plugins: [sticky],
|
||||||
|
// sticky: 'popper',
|
||||||
flip: false,
|
flip: false,
|
||||||
}}
|
}}
|
||||||
|
// tippyOptions={{
|
||||||
|
// getReferenceClientRect,
|
||||||
|
// offset: [0, 8],
|
||||||
|
// zIndex: 99,
|
||||||
|
// popperOptions: {
|
||||||
|
// modifiers: [{ name: 'flip', enabled: false }],
|
||||||
|
// },
|
||||||
|
// plugins: [sticky],
|
||||||
|
// sticky: 'popper',
|
||||||
|
// }}
|
||||||
shouldShow={shouldShow}
|
shouldShow={shouldShow}
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
|
|||||||
@@ -17,16 +17,16 @@ import { useTranslation } from "react-i18next";
|
|||||||
|
|
||||||
export function ImageMenu({ editor }: EditorMenuProps) {
|
export function ImageMenu({ editor }: EditorMenuProps) {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
|
|
||||||
const editorState = useEditorState({
|
const editorState = useEditorState({
|
||||||
editor,
|
editor,
|
||||||
selector: ctx => {
|
selector: ctx => {
|
||||||
if (!ctx.editor) {
|
if (!ctx.editor) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const imageAttrs = ctx.editor.getAttributes("image");
|
const imageAttrs = ctx.editor.getAttributes("image");
|
||||||
|
|
||||||
return {
|
return {
|
||||||
isImage: ctx.editor.isActive("image"),
|
isImage: ctx.editor.isActive("image"),
|
||||||
isAlignLeft: ctx.editor.isActive("image", { align: "left" }),
|
isAlignLeft: ctx.editor.isActive("image", { align: "left" }),
|
||||||
@@ -36,7 +36,7 @@ export function ImageMenu({ editor }: EditorMenuProps) {
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const shouldShow = useCallback(
|
const shouldShow = useCallback(
|
||||||
({ state }: ShouldShowProps) => {
|
({ state }: ShouldShowProps) => {
|
||||||
if (!state) {
|
if (!state) {
|
||||||
@@ -108,6 +108,16 @@ export function ImageMenu({ editor }: EditorMenuProps) {
|
|||||||
//zIndex: 99,
|
//zIndex: 99,
|
||||||
flip: false,
|
flip: false,
|
||||||
}}
|
}}
|
||||||
|
// tippyOptions={{
|
||||||
|
// getReferenceClientRect,
|
||||||
|
// offset: [0, 8],
|
||||||
|
// zIndex: 99,
|
||||||
|
// popperOptions: {
|
||||||
|
// modifiers: [{ name: "flip", enabled: false }],
|
||||||
|
// },
|
||||||
|
// plugins: [sticky],
|
||||||
|
// sticky: "popper",
|
||||||
|
// }}
|
||||||
shouldShow={shouldShow}
|
shouldShow={shouldShow}
|
||||||
>
|
>
|
||||||
<ActionIcon.Group className="actionIconGroup">
|
<ActionIcon.Group className="actionIconGroup">
|
||||||
|
|||||||
@@ -65,6 +65,7 @@ export const TableCellMenu = React.memo(
|
|||||||
offset: 15,
|
offset: 15,
|
||||||
//zIndex: 99,
|
//zIndex: 99,
|
||||||
}}
|
}}
|
||||||
|
|
||||||
shouldShow={shouldShow}
|
shouldShow={shouldShow}
|
||||||
>
|
>
|
||||||
<ActionIcon.Group>
|
<ActionIcon.Group>
|
||||||
|
|||||||
@@ -95,6 +95,33 @@ export const TableMenu = React.memo(
|
|||||||
offset: 15,
|
offset: 15,
|
||||||
//zIndex: 99,
|
//zIndex: 99,
|
||||||
}}
|
}}
|
||||||
|
//tippyOptions={{
|
||||||
|
// getReferenceClientRect: getReferenceClientRect,
|
||||||
|
// offset: [0, 15],
|
||||||
|
// zIndex: 99,
|
||||||
|
// popperOptions: {
|
||||||
|
// modifiers: [
|
||||||
|
// {
|
||||||
|
// name: "preventOverflow",
|
||||||
|
// enabled: true,
|
||||||
|
// options: {
|
||||||
|
// altAxis: true,
|
||||||
|
// boundary: "clippingParents",
|
||||||
|
// padding: 8,
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// name: "flip",
|
||||||
|
// enabled: true,
|
||||||
|
// options: {
|
||||||
|
// boundary: editor.options.element,
|
||||||
|
// fallbackPlacements: ["top", "bottom"],
|
||||||
|
// padding: { top: 35, left: 8, right: 8, bottom: -Infinity },
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// ],
|
||||||
|
// },
|
||||||
|
// }}
|
||||||
shouldShow={shouldShow}
|
shouldShow={shouldShow}
|
||||||
>
|
>
|
||||||
<ActionIcon.Group>
|
<ActionIcon.Group>
|
||||||
|
|||||||
Reference in New Issue
Block a user