2018-10-14 05:41:54 +08:00
|
|
|
<template>
|
2018-10-24 05:44:48 +08:00
|
|
|
<div class="editor">
|
|
|
|
<floating-menu class="editor__floating-menu" :editor="editor">
|
|
|
|
<template slot-scope="{ nodes, marks }">
|
|
|
|
|
|
|
|
<button
|
|
|
|
class="menubar__button"
|
|
|
|
:class="{ 'is-active': nodes.heading.active({ level: 1 }) }"
|
|
|
|
@click="nodes.heading.command({ level: 1 })"
|
|
|
|
>
|
|
|
|
H1
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<button
|
|
|
|
class="menubar__button"
|
|
|
|
:class="{ 'is-active': nodes.heading.active({ level: 2 }) }"
|
|
|
|
@click="nodes.heading.command({ level: 2 })"
|
|
|
|
>
|
|
|
|
H2
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<button
|
|
|
|
class="menubar__button"
|
|
|
|
:class="{ 'is-active': nodes.heading.active({ level: 3 }) }"
|
|
|
|
@click="nodes.heading.command({ level: 3 })"
|
|
|
|
>
|
|
|
|
H3
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<button
|
|
|
|
class="menubar__button"
|
|
|
|
:class="{ 'is-active': nodes.bullet_list.active() }"
|
|
|
|
@click="nodes.bullet_list.command"
|
|
|
|
>
|
|
|
|
<icon name="ul" />
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<button
|
|
|
|
class="menubar__button"
|
|
|
|
:class="{ 'is-active': nodes.ordered_list.active() }"
|
|
|
|
@click="nodes.ordered_list.command"
|
|
|
|
>
|
|
|
|
<icon name="ol" />
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<button
|
|
|
|
class="menubar__button"
|
|
|
|
:class="{ 'is-active': nodes.blockquote.active() }"
|
|
|
|
@click="nodes.blockquote.command"
|
|
|
|
>
|
|
|
|
<icon name="quote" />
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<button
|
|
|
|
class="menubar__button"
|
|
|
|
:class="{ 'is-active': nodes.code_block.active() }"
|
|
|
|
@click="nodes.code_block.command"
|
|
|
|
>
|
|
|
|
<icon name="code" />
|
|
|
|
</button>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
</floating-menu>
|
|
|
|
|
|
|
|
<editor-content class="editor__content" :editor="editor" />
|
2018-10-14 05:41:54 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import Icon from 'Components/Icon'
|
2018-10-24 05:44:48 +08:00
|
|
|
import { Editor, EditorContent, FloatingMenu } from 'tiptap'
|
2018-10-14 05:41:54 +08:00
|
|
|
import {
|
|
|
|
BlockquoteNode,
|
|
|
|
BulletListNode,
|
|
|
|
CodeBlockNode,
|
|
|
|
HardBreakNode,
|
|
|
|
HeadingNode,
|
|
|
|
ListItemNode,
|
|
|
|
OrderedListNode,
|
|
|
|
TodoItemNode,
|
|
|
|
TodoListNode,
|
|
|
|
BoldMark,
|
|
|
|
CodeMark,
|
|
|
|
ItalicMark,
|
|
|
|
LinkMark,
|
|
|
|
HistoryExtension,
|
|
|
|
} from 'tiptap-extensions'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
2018-10-24 05:44:48 +08:00
|
|
|
EditorContent,
|
|
|
|
FloatingMenu,
|
2018-10-14 05:41:54 +08:00
|
|
|
Icon,
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2018-10-24 05:44:48 +08:00
|
|
|
editor: new Editor({
|
|
|
|
extensions: [
|
|
|
|
new BlockquoteNode(),
|
|
|
|
new BulletListNode(),
|
|
|
|
new CodeBlockNode(),
|
|
|
|
new HardBreakNode(),
|
|
|
|
new HeadingNode({ maxLevel: 3 }),
|
|
|
|
new ListItemNode(),
|
|
|
|
new OrderedListNode(),
|
|
|
|
new TodoItemNode(),
|
|
|
|
new TodoListNode(),
|
|
|
|
new BoldMark(),
|
|
|
|
new CodeMark(),
|
|
|
|
new ItalicMark(),
|
|
|
|
new LinkMark(),
|
|
|
|
new HistoryExtension(),
|
|
|
|
],
|
|
|
|
content: `
|
|
|
|
<h2>
|
|
|
|
Floating Menu
|
|
|
|
</h2>
|
|
|
|
<p>
|
|
|
|
This is an example of a medium-like editor. Enter a new line and some buttons will appear.
|
|
|
|
</p>
|
|
|
|
`,
|
|
|
|
}),
|
2018-10-14 05:41:54 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
@import "~variables";
|
|
|
|
|
|
|
|
.editor {
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&__floating-menu {
|
|
|
|
position: absolute;
|
|
|
|
margin-top: -0.25rem;
|
2018-10-14 14:57:31 +08:00
|
|
|
visibility: hidden;
|
|
|
|
opacity: 0;
|
2018-10-14 14:56:26 +08:00
|
|
|
transition: opacity 0.2s, visibility 0.2s;
|
2018-10-14 05:41:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
</style>
|