tiptap/examples/Components/Routes/FloatingMenu/index.vue

155 lines
3.2 KiB
Vue
Raw Normal View History

2018-10-14 05:41:54 +08:00
<template>
2018-11-09 05:03:10 +08:00
<div class="editor">
2018-11-09 05:44:07 +08:00
<editor-floating-menu :editor="editor">
2018-11-09 05:03:10 +08:00
<div
slot-scope="{ commands, isActive, menu }"
class="editor__floating-menu"
:class="{ 'is-active': menu.isActive }"
:style="`top: ${menu.top}px`"
>
<button
class="menubar__button"
:class="{ 'is-active': isActive('heading', { level: 1 }) }"
@click="commands.heading({ level: 1 })"
>
H1
</button>
<button
class="menubar__button"
:class="{ 'is-active': isActive('heading', { level: 2 }) }"
@click="commands.heading({ level: 2 })"
>
H2
</button>
<button
class="menubar__button"
:class="{ 'is-active': isActive('heading', { level: 3 }) }"
@click="commands.heading({ level: 3 })"
>
H3
</button>
<button
class="menubar__button"
:class="{ 'is-active': isActive('bullet_list') }"
@click="commands.bullet_list"
>
<icon name="ul" />
</button>
<button
class="menubar__button"
:class="{ 'is-active': isActive('ordered_list') }"
@click="commands.ordered_list"
>
<icon name="ol" />
</button>
<button
class="menubar__button"
:class="{ 'is-active': isActive('blockquote') }"
@click="commands.blockquote"
>
<icon name="quote" />
</button>
<button
class="menubar__button"
:class="{ 'is-active': isActive('code_block') }"
@click="commands.code_block"
>
<icon name="code" />
</button>
</div>
2018-11-09 05:44:07 +08:00
</editor-floating-menu>
2018-11-09 05:03:10 +08:00
<editor-content class="editor__content" :editor="editor" />
</div>
2018-10-14 05:41:54 +08:00
</template>
<script>
import Icon from 'Components/Icon'
2018-11-09 05:44:07 +08:00
import { Editor, EditorContent, EditorFloatingMenu } from 'tiptap'
2018-10-14 05:41:54 +08:00
import {
2018-11-09 05:03:10 +08:00
Blockquote,
BulletList,
CodeBlock,
HardBreak,
Heading,
ListItem,
OrderedList,
TodoItem,
TodoList,
Bold,
Code,
Italic,
Link,
History,
2018-10-14 05:41:54 +08:00
} from 'tiptap-extensions'
export default {
2018-11-09 05:03:10 +08:00
components: {
EditorContent,
2018-11-09 05:44:07 +08:00
EditorFloatingMenu,
2018-11-09 05:03:10 +08:00
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>
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 {
2018-11-09 05:03:10 +08:00
position: relative;
2018-10-14 05:41:54 +08:00
2018-11-09 05:03:10 +08:00
&__floating-menu {
position: absolute;
margin-top: -0.25rem;
visibility: hidden;
opacity: 0;
transition: opacity 0.2s, visibility 0.2s;
2018-11-05 02:46:09 +08:00
2018-11-09 05:03:10 +08:00
&.is-active {
opacity: 1;
visibility: visible;
}
}
2018-10-14 05:41:54 +08:00
}
2018-11-09 05:03:10 +08:00
</style>