elk/composables/tiptap.ts

121 lines
2.9 KiB
TypeScript
Raw Normal View History

2022-12-13 13:02:43 +00:00
import { Extension, useEditor } from '@tiptap/vue-3'
import Placeholder from '@tiptap/extension-placeholder'
import Document from '@tiptap/extension-document'
import Paragraph from '@tiptap/extension-paragraph'
import Text from '@tiptap/extension-text'
import Mention from '@tiptap/extension-mention'
2022-11-26 02:01:50 +00:00
import HardBreak from '@tiptap/extension-hard-break'
import Bold from '@tiptap/extension-bold'
import Italic from '@tiptap/extension-italic'
import Code from '@tiptap/extension-code'
2023-01-10 21:16:56 +00:00
import History from '@tiptap/extension-history'
import { Plugin } from 'prosemirror-state'
import type { Ref } from 'vue'
import { HashtagSuggestion, MentionSuggestion } from './tiptap/suggestion'
2022-12-13 13:02:43 +00:00
import { CodeBlockShiki } from './tiptap/shiki'
2022-12-27 19:13:50 +00:00
import { CustomEmoji } from './tiptap/custom-emoji'
import { Emoji } from './tiptap/emoji'
export interface UseTiptapOptions {
2023-01-04 10:21:18 +00:00
content: Ref<string>
2022-11-29 22:47:24 +00:00
placeholder: Ref<string | undefined>
2022-11-25 14:07:31 +00:00
onSubmit: () => void
onFocus: () => void
onPaste: (event: ClipboardEvent) => void
autofocus: boolean
}
export function useTiptap(options: UseTiptapOptions) {
const {
autofocus,
content,
placeholder,
} = options
const editor = useEditor({
content: content.value,
extensions: [
Document,
Paragraph,
2022-11-26 02:01:50 +00:00
HardBreak,
Bold,
Italic,
Code,
Text,
Emoji,
2022-12-27 19:13:50 +00:00
CustomEmoji.configure({
inline: true,
HTMLAttributes: {
class: 'custom-emoji',
},
}),
Mention.configure({
suggestion: MentionSuggestion,
}),
Mention
.extend({ name: 'hashtag' })
.configure({
suggestion: HashtagSuggestion,
}),
Placeholder.configure({
placeholder: () => placeholder.value!,
}),
2022-12-13 13:02:43 +00:00
CodeBlockShiki,
2023-01-10 21:16:56 +00:00
History.configure({
depth: 10,
}),
Extension.create({
name: 'api',
addKeyboardShortcuts() {
return {
'Mod-Enter': () => {
2022-11-25 14:07:31 +00:00
options.onSubmit()
return true
},
}
},
onFocus() {
options.onFocus()
},
addProseMirrorPlugins() {
return [
new Plugin({
props: {
handleDOMEvents: {
paste(view, event) {
options.onPaste(event)
},
},
},
}),
]
},
}),
],
onUpdate({ editor }) {
content.value = editor.getHTML()
},
editorProps: {
attributes: {
class: 'content-editor content-rich',
},
},
autofocus,
editable: true,
})
2022-11-25 18:10:17 +00:00
watch(content, (value) => {
if (editor.value?.getHTML() === value)
return
editor.value?.commands.setContent(value || '', false)
})
watch(placeholder, () => {
editor.value?.view.dispatch(editor.value?.state.tr)
})
2022-11-25 18:10:17 +00:00
return {
editor,
}
}