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

119 lines
2.5 KiB
Vue
Raw Normal View History

2018-08-22 22:05:44 +08:00
<template>
<div>
2018-08-23 01:28:57 +08:00
<editor class="editor" @update="onUpdate">
2018-08-22 22:05:44 +08:00
<div class="menubar is-hidden" :class="{ 'is-focused': focused }" slot="menubar" slot-scope="{ nodes, marks, focused }">
<div v-if="nodes && marks">
2018-08-23 01:28:57 +08:00
<button
class="menubar__button"
:class="{ 'is-active': marks.bold.active() }"
@click="marks.bold.command"
>
<icon name="bold" />
</button>
<button
class="menubar__button"
:class="{ 'is-active': marks.italic.active() }"
@click="marks.italic.command"
>
<icon name="italic" />
</button>
2018-08-22 22:05:44 +08:00
2018-08-22 22:48:52 +08:00
<button
2018-08-23 01:28:57 +08:00
class="menubar__button"
@click="marks.code.command"
:class="{ 'is-active': marks.code.active() }
">
<icon name="code" />
</button>
<button
class="menubar__button"
:class="{ 'is-active': nodes.paragraph.active() }"
@click="nodes.paragraph.command"
>
2018-08-22 22:48:52 +08:00
<icon name="paragraph" />
</button>
<button
2018-08-23 01:28:57 +08:00
class="menubar__button"
:class="{ 'is-active': nodes.heading.active({ level: 1 }) }"
@click="nodes.heading.command({ level: 1 })"
>
2018-08-22 22:48:52 +08:00
H1
</button>
<button
2018-08-23 01:28:57 +08:00
class="menubar__button"
:class="{ 'is-active': nodes.heading.active({ level: 2 }) }"
@click="nodes.heading.command({ level: 2 })"
>
2018-08-22 22:48:52 +08:00
H2
</button>
<button
2018-08-23 01:28:57 +08:00
class="menubar__button"
:class="{ 'is-active': nodes.heading.active({ level: 3 }) }"
@click="nodes.heading.command({ level: 3 })"
>
2018-08-22 22:48:52 +08:00
H3
</button>
<button
2018-08-23 01:28:57 +08:00
class="menubar__button"
:class="{ 'is-active': nodes.bullet_list.active() }"
@click="nodes.bullet_list.command"
>
2018-08-22 22:48:52 +08:00
<icon name="ul" />
</button>
<button
2018-08-23 01:28:57 +08:00
class="menubar__button"
:class="{ 'is-active': nodes.ordered_list.active() }"
@click="nodes.ordered_list.command"
>
2018-08-22 22:48:52 +08:00
<icon name="ol" />
</button>
<button
2018-08-23 01:28:57 +08:00
class="menubar__button"
:class="{ 'is-active': nodes.code_block.active() }"
@click="nodes.code_block.command"
>
2018-08-22 22:48:52 +08:00
<icon name="code" />
</button>
2018-08-22 22:05:44 +08:00
</div>
</div>
<div class="editor__content" slot="content" slot-scope="props">
2018-08-23 01:28:57 +08:00
<h1>
Hiding Menu Bar
</h1>
<p>
Try to focus the editor to see the menu. It's like magic. 🔮
</p>
</div>
2018-08-22 22:05:44 +08:00
</editor>
</div>
</template>
<script>
import Icon from 'Components/Icon'
import { Editor } from 'tiptap'
export default {
2018-08-23 01:28:57 +08:00
components: {
Editor,
Icon,
},
methods: {
onUpdate(state) {
// console.log(state.doc.toJSON())
},
},
2018-08-22 22:05:44 +08:00
}
</script>