2021-04-01 21:55:19 +08:00
|
|
|
import React, { useEffect, useRef } from 'react'
|
|
|
|
import { FloatingMenuPlugin, FloatingMenuPluginKey, FloatingMenuPluginProps } from '@tiptap/extension-floating-menu'
|
|
|
|
|
|
|
|
export type FloatingMenuProps = Omit<FloatingMenuPluginProps, 'element'> & {
|
|
|
|
className?: string,
|
|
|
|
}
|
|
|
|
|
|
|
|
export const FloatingMenu: React.FC<FloatingMenuProps> = props => {
|
|
|
|
const element = useRef<HTMLDivElement>(null)
|
|
|
|
|
|
|
|
useEffect(() => {
|
2021-04-16 18:42:56 +08:00
|
|
|
const { editor, tippyOptions } = props
|
2021-04-01 21:55:19 +08:00
|
|
|
|
|
|
|
editor.registerPlugin(FloatingMenuPlugin({
|
|
|
|
editor,
|
|
|
|
element: element.current as HTMLElement,
|
2021-04-16 18:42:56 +08:00
|
|
|
tippyOptions,
|
2021-04-01 21:55:19 +08:00
|
|
|
}))
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
editor.unregisterPlugin(FloatingMenuPluginKey)
|
|
|
|
}
|
|
|
|
}, [])
|
|
|
|
|
|
|
|
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>
|
|
|
|
)
|
|
|
|
}
|