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

184 lines
3.7 KiB
Vue
Raw Normal View History

2018-08-22 19:30:53 +08:00
<template>
<div>
2018-08-28 15:31:08 +08:00
<editor class="editor" :extensions="extensions">
2018-08-22 21:58:32 +08:00
2018-08-22 22:05:44 +08:00
<div class="menubar" slot="menubar" slot-scope="{ nodes, marks }">
2018-08-22 21:51:41 +08:00
<div v-if="nodes && marks">
2018-08-22 21:58:32 +08:00
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 21:58:32 +08:00
2018-09-06 18:22:33 +08:00
<button
class="menubar__button"
:class="{ 'is-active': marks.strike.active() }"
@click="marks.strike.command"
>
<icon name="strike" />
</button>
2018-09-06 17:19:10 +08:00
<button
class="menubar__button"
:class="{ 'is-active': marks.underline.active() }"
@click="marks.underline.command"
>
<icon name="underline" />
</button>
2018-08-22 21:58:32 +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 19:30:53 +08:00
<icon name="paragraph" />
</button>
2018-08-22 21:58:32 +08:00
<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 19:30:53 +08:00
H1
</button>
2018-08-22 21:58:32 +08:00
<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 19:30:53 +08:00
H2
</button>
2018-08-22 21:58:32 +08:00
<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 19:30:53 +08:00
H3
</button>
2018-08-22 21:58:32 +08:00
<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 19:30:53 +08:00
<icon name="ul" />
</button>
2018-08-22 21:58:32 +08:00
<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 19:30:53 +08:00
<icon name="ol" />
</button>
2018-08-22 21:58:32 +08:00
<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 19:30:53 +08:00
<icon name="code" />
</button>
2018-08-22 21:58:32 +08:00
2018-08-22 19:30:53 +08:00
</div>
</div>
2018-08-22 21:58:32 +08:00
2018-08-22 21:51:41 +08:00
<div class="editor__content" slot="content" slot-scope="props">
2018-08-23 14:03:42 +08:00
<h2>
2018-08-25 05:02:32 +08:00
Hi there,
2018-08-23 14:03:42 +08:00
</h2>
2018-08-23 01:28:57 +08:00
<p>
2018-08-25 05:02:32 +08:00
this is a very <em>basic</em> example of tiptap.
2018-08-23 01:28:57 +08:00
</p>
<pre><code>body { display: none; }</code></pre>
<ul>
<li>
A regular list
</li>
<li>
With regular items
</li>
</ul>
<blockquote>
It's amazing 👏
<br />
mom
</blockquote>
</div>
2018-08-22 21:58:32 +08:00
2018-08-22 19:30:53 +08:00
</editor>
</div>
</template>
<script>
import Icon from 'Components/Icon'
import { Editor } from 'tiptap'
2018-08-24 04:08:19 +08:00
import {
2018-08-27 01:43:02 +08:00
BlockquoteNode,
BulletListNode,
CodeBlockNode,
HardBreakNode,
HeadingNode,
ListItemNode,
OrderedListNode,
TodoItemNode,
TodoListNode,
BoldMark,
CodeMark,
ItalicMark,
LinkMark,
2018-09-06 18:22:33 +08:00
StrikeMark,
2018-09-06 17:19:10 +08:00
UnderlineMark,
2018-08-27 01:43:02 +08:00
HistoryExtension,
2018-08-24 04:08:19 +08:00
} from 'tiptap-extensions'
2018-08-22 19:30:53 +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: [
2018-08-27 01:43:02 +08:00
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(),
2018-09-06 18:22:33 +08:00
new StrikeMark(),
2018-09-06 17:19:10 +08:00
new UnderlineMark(),
2018-08-27 01:43:02 +08:00
new HistoryExtension(),
2018-08-24 04:08:19 +08:00
],
}
},
2018-08-22 19:30:53 +08:00
}
</script>