113 lines
3.4 KiB
Vue
113 lines
3.4 KiB
Vue
<template>
|
||
<div v-if="editor">
|
||
<editor-content :editor="editor" />
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import tippy from 'tippy.js'
|
||
import { Editor, EditorContent, VueRenderer } from '@tiptap/vue-2'
|
||
import Document from '@tiptap/extension-document'
|
||
import Paragraph from '@tiptap/extension-paragraph'
|
||
import Text from '@tiptap/extension-text'
|
||
import Mention from '@tiptap/extension-mention'
|
||
import MentionList from './MentionList'
|
||
|
||
export default {
|
||
components: {
|
||
EditorContent,
|
||
},
|
||
|
||
data() {
|
||
return {
|
||
editor: null,
|
||
}
|
||
},
|
||
|
||
mounted() {
|
||
this.editor = new Editor({
|
||
extensions: [
|
||
Document,
|
||
Paragraph,
|
||
Text,
|
||
Mention.configure({
|
||
HTMLAttributes: {
|
||
class: 'mention',
|
||
},
|
||
suggestion: {
|
||
items: query => {
|
||
return [
|
||
'Lea Thompson', 'Cyndi Lauper', 'Tom Cruise', 'Madonna', 'Jerry Hall', 'Joan Collins', 'Winona Ryder', 'Christina Applegate', 'Alyssa Milano', 'Molly Ringwald', 'Ally Sheedy', 'Debbie Harry', 'Olivia Newton-John', 'Elton John', 'Michael J. Fox', 'Axl Rose', 'Emilio Estevez', 'Ralph Macchio', 'Rob Lowe', 'Jennifer Grey', 'Mickey Rourke', 'John Cusack', 'Matthew Broderick', 'Justine Bateman', 'Lisa Bonet',
|
||
].filter(item => item.toLowerCase().startsWith(query.toLowerCase())).slice(0, 10)
|
||
},
|
||
render: () => {
|
||
let component
|
||
let popup
|
||
|
||
return {
|
||
onStart: props => {
|
||
component = new VueRenderer(MentionList, {
|
||
parent: this,
|
||
propsData: props,
|
||
})
|
||
|
||
popup = tippy('body', {
|
||
getReferenceClientRect: props.clientRect,
|
||
appendTo: () => document.body,
|
||
content: component.element,
|
||
showOnCreate: true,
|
||
interactive: true,
|
||
trigger: 'manual',
|
||
placement: 'bottom-start',
|
||
})
|
||
},
|
||
onUpdate(props) {
|
||
component.updateProps(props)
|
||
|
||
popup[0].setProps({
|
||
getReferenceClientRect: props.clientRect,
|
||
})
|
||
},
|
||
onKeyDown(props) {
|
||
return component.ref?.onKeyDown(props)
|
||
},
|
||
onExit() {
|
||
popup[0].destroy()
|
||
component.destroy()
|
||
},
|
||
}
|
||
},
|
||
},
|
||
}),
|
||
],
|
||
content: `
|
||
<p>Hi everyone! Don’t forget the daily stand up at 8 AM.</p>
|
||
<p><span data-mention data-id="Jennifer Grey"></span> Would you mind to share what you’ve been working on lately? We fear not much happened since Dirty Dancing.
|
||
<p><span data-mention data-id="Winona Ryder"></span> <span data-mention data-id="Axl Rose"></span> Let’s go through your most important points quickly.</p>
|
||
<p>I have a meeting with <span data-mention data-id="Christina Applegate"></span> and don’t want to come late.</p>
|
||
<p>– Thanks, your big boss</p>
|
||
`,
|
||
})
|
||
},
|
||
|
||
beforeDestroy() {
|
||
this.editor.destroy()
|
||
},
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
.ProseMirror {
|
||
> * + * {
|
||
margin-top: 0.75em;
|
||
}
|
||
}
|
||
|
||
.mention {
|
||
color: #A975FF;
|
||
background-color: rgba(#A975FF, 0.1);
|
||
border-radius: 0.3rem;
|
||
padding: 0.1rem 0.3rem;
|
||
}
|
||
</style>
|