mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.9 KiB
68 lines
1.9 KiB
<script lang="ts" setup> |
|
import type { Editor } from '@tiptap/vue-3' |
|
import { BubbleMenu } from '@tiptap/vue-3' |
|
|
|
const props = defineProps<Props>() |
|
|
|
interface Props { |
|
editor: Editor |
|
} |
|
|
|
const editor = computed(() => props.editor) |
|
|
|
// Debounce show menu to prevent flickering |
|
const showMenu = computed(() => { |
|
if (!editor) return false |
|
|
|
return !editor.value.state.selection.empty |
|
}) |
|
const showMenuDebounced = ref(false) |
|
|
|
watchDebounced( |
|
() => showMenu.value, |
|
(value) => { |
|
showMenuDebounced.value = value |
|
}, |
|
{ |
|
debounce: 200, |
|
maxWait: 800, |
|
immediate: true, |
|
}, |
|
) |
|
|
|
const handleEditorMouseDown = (e: MouseEvent) => { |
|
const domsInEvent = document.elementsFromPoint(e.clientX, e.clientY) as HTMLElement[] |
|
const isBubble = domsInEvent.some((dom) => dom?.classList?.contains('bubble-menu')) |
|
if (isBubble) return |
|
|
|
const pageContent = document.querySelector('.nc-docs-page-wrapper') |
|
pageContent?.classList.add('bubble-menu-hidden') |
|
} |
|
|
|
const handleEditorMouseUp = (e: MouseEvent) => { |
|
const domsInEvent = document.elementsFromPoint(e.clientX, e.clientY) as HTMLElement[] |
|
const isBubble = domsInEvent.some((dom) => dom?.classList?.contains('bubble-menu')) |
|
if (isBubble) return |
|
|
|
setTimeout(() => { |
|
const pageContent = document.querySelector('.nc-docs-page-wrapper') |
|
pageContent?.classList.remove('bubble-menu-hidden') |
|
}, 100) |
|
} |
|
|
|
onMounted(() => { |
|
document.addEventListener('mouseup', handleEditorMouseUp) |
|
document.addEventListener('mousedown', handleEditorMouseDown) |
|
}) |
|
|
|
onUnmounted(() => { |
|
document.removeEventListener('mouseup', handleEditorMouseUp) |
|
document.removeEventListener('mousedown', handleEditorMouseDown) |
|
}) |
|
</script> |
|
|
|
<template> |
|
<BubbleMenu :editor="editor" :update-delay="300" :tippy-options="{ duration: 100, maxWidth: 600 }"> |
|
<CellRichTextSelectedBubbleMenu v-if="showMenuDebounced" :editor="editor" /> |
|
</BubbleMenu> |
|
</template>
|
|
|