mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-01-10 14:08:37 +08:00
67 lines
1.4 KiB
TypeScript
67 lines
1.4 KiB
TypeScript
import {
|
|
h,
|
|
ref,
|
|
PropType,
|
|
onMounted,
|
|
onBeforeUnmount,
|
|
defineComponent,
|
|
} from 'vue'
|
|
import { BubbleMenuPlugin, BubbleMenuPluginProps } from '@tiptap/extension-bubble-menu'
|
|
|
|
export const BubbleMenu = defineComponent({
|
|
name: 'BubbleMenu',
|
|
|
|
props: {
|
|
pluginKey: {
|
|
// TODO: TypeScript breaks :(
|
|
// type: [String, Object as PropType<Exclude<BubbleMenuPluginProps['pluginKey'], string>>],
|
|
type: null,
|
|
default: 'bubbleMenu',
|
|
},
|
|
|
|
editor: {
|
|
type: Object as PropType<BubbleMenuPluginProps['editor']>,
|
|
required: true,
|
|
},
|
|
|
|
tippyOptions: {
|
|
type: Object as PropType<BubbleMenuPluginProps['tippyOptions']>,
|
|
default: () => ({}),
|
|
},
|
|
|
|
shouldShow: {
|
|
type: Function as PropType<Exclude<Required<BubbleMenuPluginProps>['shouldShow'], null>>,
|
|
default: null,
|
|
},
|
|
},
|
|
|
|
setup(props, { slots }) {
|
|
const root = ref<HTMLElement | null>(null)
|
|
|
|
onMounted(() => {
|
|
const {
|
|
pluginKey,
|
|
editor,
|
|
tippyOptions,
|
|
shouldShow,
|
|
} = props
|
|
|
|
editor.registerPlugin(BubbleMenuPlugin({
|
|
pluginKey,
|
|
editor,
|
|
element: root.value as HTMLElement,
|
|
tippyOptions,
|
|
shouldShow,
|
|
}))
|
|
})
|
|
|
|
onBeforeUnmount(() => {
|
|
const { pluginKey, editor } = props
|
|
|
|
editor.unregisterPlugin(pluginKey)
|
|
})
|
|
|
|
return () => h('div', { ref: root }, slots.default?.())
|
|
},
|
|
})
|