* refactoring * improve link regex * WIP: add new markPasteRule und linkify to image mark * move copy of inputrule to core * trigger codeblock inputrule on enter * refactoring * add regex match to markpasterulematch * refactoring * improve link regex * WIP: add new markPasteRule und linkify to image mark * move copy of inputrule to core * trigger codeblock inputrule on enter * refactoring * add regex match to markpasterulematch * update linkify * wip * wip * log * wip * remove debug code * wip * wip * wip * wip * wip * wip * wip * wip * rename matcher * add data to ExtendedRegExpMatchArray * remove logging * add code option to marks, prevent inputrules in code mark * remove link regex * fix codeblock inputrule on enter * refactoring * refactoring * refactoring * refactoring * fix position bug * add test * export InputRule and PasteRule * clean up link demo * fix types
102 lines
2.1 KiB
Vue
102 lines
2.1 KiB
Vue
<template>
|
||
<div v-if="editor">
|
||
<button @click="setLink" :class="{ 'is-active': editor.isActive('link') }">
|
||
setLink
|
||
</button>
|
||
<button @click="editor.chain().focus().unsetLink().run()" v-if="editor.isActive('link')">
|
||
unsetLink
|
||
</button>
|
||
<editor-content :editor="editor" />
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import { Editor, EditorContent } from '@tiptap/vue-3'
|
||
import Document from '@tiptap/extension-document'
|
||
import Paragraph from '@tiptap/extension-paragraph'
|
||
import Text from '@tiptap/extension-text'
|
||
import Link from '@tiptap/extension-link'
|
||
|
||
export default {
|
||
components: {
|
||
EditorContent,
|
||
},
|
||
|
||
data() {
|
||
return {
|
||
editor: null,
|
||
}
|
||
},
|
||
|
||
mounted() {
|
||
this.editor = new Editor({
|
||
extensions: [
|
||
Document,
|
||
Paragraph,
|
||
Text,
|
||
Link.configure({
|
||
openOnClick: false,
|
||
}),
|
||
],
|
||
content: `
|
||
<p>
|
||
Wow, this editor has support for links to the whole <a href="https://en.wikipedia.org/wiki/World_Wide_Web">world wide web</a>. We tested a lot of URLs and I think you can add *every URL* you want. Isn’t that cool? Let’s try <a href="https://statamic.com/">another one!</a> Yep, seems to work.
|
||
</p>
|
||
<p>
|
||
By default every link will get a \`rel="noopener noreferrer nofollow"\` attribute. It’s configurable though.
|
||
</p>
|
||
`,
|
||
})
|
||
},
|
||
|
||
methods: {
|
||
setLink() {
|
||
const previousUrl = this.editor.getAttributes('link').href
|
||
const url = window.prompt('URL', previousUrl)
|
||
|
||
// cancelled
|
||
if (url === null) {
|
||
return
|
||
}
|
||
|
||
// empty
|
||
if (url === '') {
|
||
this.editor
|
||
.chain()
|
||
.focus()
|
||
.extendMarkRange('link')
|
||
.unsetLink()
|
||
.run()
|
||
|
||
return
|
||
}
|
||
|
||
// update link
|
||
this.editor
|
||
.chain()
|
||
.focus()
|
||
.extendMarkRange('link')
|
||
.setLink({ href: url })
|
||
.run()
|
||
},
|
||
},
|
||
|
||
beforeUnmount() {
|
||
this.editor.destroy()
|
||
},
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
/* Basic editor styles */
|
||
.ProseMirror {
|
||
> * + * {
|
||
margin-top: 0.75em;
|
||
}
|
||
|
||
a {
|
||
color: #68CEF8;
|
||
}
|
||
}
|
||
</style>
|