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

116 lines
2.1 KiB
Vue
Raw Normal View History

2018-08-22 22:20:56 +08:00
<template>
<div>
2018-08-24 04:08:19 +08:00
<editor :extensions="extensions" class="editor" @update="onUpdate">
2018-08-22 22:20:56 +08:00
<div class="menubar" slot="menubar" slot-scope="{ nodes, marks }">
<div v-if="nodes && marks">
<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:24:28 +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:24:28 +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:24:28 +08:00
H3
</button>
<button
2018-08-23 01:28:57 +08:00
class="menubar__button"
:class="{ 'is-active': nodes.todo_list.active() }"
@click="nodes.todo_list.command"
>
2018-08-22 22:20:56 +08:00
<icon name="checklist" />
</button>
</div>
</div>
<div class="editor__content" slot="content" slot-scope="props">
2018-08-23 14:36:10 +08:00
<h2>
2018-08-23 01:28:57 +08:00
Todo List
2018-08-23 14:36:10 +08:00
</h2>
2018-08-23 01:28:57 +08:00
<ul data-type="todo_list">
2018-08-22 22:20:56 +08:00
<li data-type="todo_item" data-done="true">
Buy beer
</li>
<li data-type="todo_item" data-done="true">
Buy meat
</li>
<li data-type="todo_item" data-done="false">
Buy milk
</li>
<li data-type="todo_item" data-done="false">
Call mom
</li>
</ul>
2018-08-23 01:28:57 +08:00
</div>
2018-08-22 22:20:56 +08:00
</editor>
</div>
</template>
<script>
import Icon from 'Components/Icon'
import { Editor } from 'tiptap'
2018-08-24 04:08:19 +08:00
import {
Blockquote,
BulletList,
CodeBlock,
HardBreak,
Heading,
ListItem,
OrderedList,
TodoItem,
TodoList,
Bold,
Code,
Italic,
Link,
} from 'tiptap-extensions'
2018-08-22 22:20:56 +08:00
export default {
2018-08-23 01:28:57 +08:00
components: {
Editor,
Icon,
},
2018-08-24 04:08:19 +08:00
data() {
return {
extensions: [
new Blockquote(),
new BulletList(),
new CodeBlock(),
new HardBreak(),
2018-08-24 14:41:17 +08:00
new Heading({ maxLevel: 3 }),
2018-08-24 04:08:19 +08:00
new ListItem(),
new OrderedList(),
new TodoItem(),
new TodoList(),
new Bold(),
new Code(),
new Italic(),
new Link(),
],
}
},
2018-08-23 01:28:57 +08:00
methods: {
onUpdate(state) {
// console.log(state.doc.toJSON())
},
},
2018-08-22 22:20:56 +08:00
}
</script>