2021-04-01 21:55:19 +08:00
|
|
|
import React, { useEffect, useRef } from 'react'
|
2021-08-11 20:37:58 +08:00
|
|
|
import { FloatingMenuPlugin, FloatingMenuPluginProps } from '@tiptap/extension-floating-menu'
|
2021-04-01 21:55:19 +08:00
|
|
|
|
|
|
|
export type FloatingMenuProps = Omit<FloatingMenuPluginProps, 'element'> & {
|
|
|
|
className?: string,
|
|
|
|
}
|
|
|
|
|
|
|
|
export const FloatingMenu: React.FC<FloatingMenuProps> = props => {
|
|
|
|
const element = useRef<HTMLDivElement>(null)
|
|
|
|
|
|
|
|
useEffect(() => {
|
2021-08-11 20:37:58 +08:00
|
|
|
const {
|
2021-08-13 18:33:06 +08:00
|
|
|
pluginKey,
|
2021-08-11 20:37:58 +08:00
|
|
|
editor,
|
|
|
|
tippyOptions,
|
|
|
|
shouldShow,
|
|
|
|
} = props
|
2021-04-01 21:55:19 +08:00
|
|
|
|
|
|
|
editor.registerPlugin(FloatingMenuPlugin({
|
2021-08-13 18:33:06 +08:00
|
|
|
pluginKey,
|
2021-04-01 21:55:19 +08:00
|
|
|
editor,
|
|
|
|
element: element.current as HTMLElement,
|
2021-04-16 18:42:56 +08:00
|
|
|
tippyOptions,
|
2021-08-11 20:37:58 +08:00
|
|
|
shouldShow,
|
2021-04-01 21:55:19 +08:00
|
|
|
}))
|
|
|
|
|
|
|
|
return () => {
|
2021-08-13 18:33:06 +08:00
|
|
|
editor.unregisterPlugin(pluginKey)
|
2021-04-01 21:55:19 +08:00
|
|
|
}
|
|
|
|
}, [])
|
|
|
|
|
|
|
|
return (
|
2021-04-01 23:55:32 +08:00
|
|
|
<div ref={element} className={props.className} style={{ visibility: 'hidden' }}>
|
2021-04-01 21:55:19 +08:00
|
|
|
{props.children}
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|