mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-16 03:39:00 +08:00
c6f281e487
Directive `slot-scope` is deprecated as of Vue v2.6.0. See [here](https://vuejs.org/v2/guide/components-slots.html) for details. Currently tiptap depends on Vue ^2.6.10. So this commit introduces new directive `v-slot` on README.md and examples.
113 lines
2.8 KiB
Vue
113 lines
2.8 KiB
Vue
<template>
|
|
<div class="editor">
|
|
<editor-menu-bubble class="menububble" :editor="editor" @hide="hideLinkMenu" v-slot="{ commands, isActive, getMarkAttrs, menu }">
|
|
<div
|
|
class="menububble"
|
|
:class="{ 'is-active': menu.isActive }"
|
|
:style="`left: ${menu.left}px; bottom: ${menu.bottom}px;`"
|
|
>
|
|
|
|
<form class="menububble__form" v-if="linkMenuIsActive" @submit.prevent="setLinkUrl(commands.link, linkUrl)">
|
|
<input class="menububble__input" type="text" v-model="linkUrl" placeholder="https://" ref="linkInput" @keydown.esc="hideLinkMenu"/>
|
|
<button class="menububble__button" @click="setLinkUrl(commands.link, null)" type="button">
|
|
<icon name="remove" />
|
|
</button>
|
|
</form>
|
|
|
|
<template v-else>
|
|
<button
|
|
class="menububble__button"
|
|
@click="showLinkMenu(getMarkAttrs('link'))"
|
|
:class="{ 'is-active': isActive.link() }"
|
|
>
|
|
<span>{{ isActive.link() ? 'Update Link' : 'Add Link'}}</span>
|
|
<icon name="link" />
|
|
</button>
|
|
</template>
|
|
|
|
</div>
|
|
</editor-menu-bubble>
|
|
|
|
<editor-content class="editor__content" :editor="editor" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Icon from 'Components/Icon'
|
|
import { Editor, EditorContent, EditorMenuBubble } from 'tiptap'
|
|
import {
|
|
Blockquote,
|
|
BulletList,
|
|
CodeBlock,
|
|
HardBreak,
|
|
Heading,
|
|
ListItem,
|
|
OrderedList,
|
|
TodoItem,
|
|
TodoList,
|
|
Bold,
|
|
Code,
|
|
Italic,
|
|
Link,
|
|
History,
|
|
} from 'tiptap-extensions'
|
|
|
|
export default {
|
|
components: {
|
|
EditorContent,
|
|
EditorMenuBubble,
|
|
Icon,
|
|
},
|
|
data() {
|
|
return {
|
|
editor: new Editor({
|
|
extensions: [
|
|
new Blockquote(),
|
|
new BulletList(),
|
|
new CodeBlock(),
|
|
new HardBreak(),
|
|
new Heading({ levels: [1, 2, 3] }),
|
|
new ListItem(),
|
|
new OrderedList(),
|
|
new TodoItem(),
|
|
new TodoList(),
|
|
new Bold(),
|
|
new Code(),
|
|
new Italic(),
|
|
new Link(),
|
|
new History(),
|
|
],
|
|
content: `
|
|
<h2>
|
|
Links
|
|
</h2>
|
|
<p>
|
|
Try to add some links to the <a href="https://en.wikipedia.org/wiki/World_Wide_Web">world wide web</a>. By default every link will get a <code>rel="noopener noreferrer nofollow"</code> attribute.
|
|
</p>
|
|
`,
|
|
}),
|
|
linkUrl: null,
|
|
linkMenuIsActive: false,
|
|
}
|
|
},
|
|
methods: {
|
|
showLinkMenu(attrs) {
|
|
this.linkUrl = attrs.href
|
|
this.linkMenuIsActive = true
|
|
this.$nextTick(() => {
|
|
this.$refs.linkInput.focus()
|
|
})
|
|
},
|
|
hideLinkMenu() {
|
|
this.linkUrl = null
|
|
this.linkMenuIsActive = false
|
|
},
|
|
setLinkUrl(command, url) {
|
|
command({ href: url })
|
|
this.hideLinkMenu()
|
|
this.editor.focus()
|
|
},
|
|
},
|
|
}
|
|
</script>
|