add toc demo
This commit is contained in:
106
docs/src/demos/Guide/NodeViews/TableOfContents/Component.vue
Normal file
106
docs/src/demos/Guide/NodeViews/TableOfContents/Component.vue
Normal file
@@ -0,0 +1,106 @@
|
|||||||
|
<template>
|
||||||
|
<node-view-wrapper class="toc">
|
||||||
|
<ul class="toc__list">
|
||||||
|
<li
|
||||||
|
class="toc__item"
|
||||||
|
:class="`toc__item--${heading.level}`"
|
||||||
|
v-for="(heading, index) in headings"
|
||||||
|
:key="index"
|
||||||
|
>
|
||||||
|
{{ heading.text }}
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</node-view-wrapper>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
editor: {
|
||||||
|
type: Object,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
headings: [],
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
handleUpdate() {
|
||||||
|
const headings = []
|
||||||
|
|
||||||
|
this.editor.state.doc.descendants(node => {
|
||||||
|
if (node.type.name === 'heading') {
|
||||||
|
headings.push({
|
||||||
|
level: node.attrs.level,
|
||||||
|
text: node.textContent,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
this.headings = headings
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
mounted() {
|
||||||
|
this.editor.on('update', this.handleUpdate)
|
||||||
|
this.handleUpdate()
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
/* Basic editor styles */
|
||||||
|
.ProseMirror {
|
||||||
|
> * + * {
|
||||||
|
margin-top: 0.75em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.toc {
|
||||||
|
opacity: 0.75;
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
padding: 0.75rem;
|
||||||
|
background: rgba(black, 0.1);
|
||||||
|
|
||||||
|
&__list {
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
display: block;
|
||||||
|
content: "In this document";
|
||||||
|
font-weight: 700;
|
||||||
|
letter-spacing: 0.025rem;
|
||||||
|
font-size: 0.75rem;
|
||||||
|
text-transform: uppercase;
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__item {
|
||||||
|
&--3 {
|
||||||
|
padding-left: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
&--4 {
|
||||||
|
padding-left: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
&--5 {
|
||||||
|
padding-left: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
&--6 {
|
||||||
|
padding-left: 4rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
import { Node, mergeAttributes } from '@tiptap/core'
|
||||||
|
import { VueRenderer } from '@tiptap/vue'
|
||||||
|
import Component from './Component.vue'
|
||||||
|
|
||||||
|
export default Node.create({
|
||||||
|
name: 'tableOfContents',
|
||||||
|
|
||||||
|
group: 'block',
|
||||||
|
|
||||||
|
atom: true,
|
||||||
|
|
||||||
|
parseHTML() {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
tag: 'toc',
|
||||||
|
},
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
|
renderHTML({ HTMLAttributes }) {
|
||||||
|
return ['toc', mergeAttributes(HTMLAttributes)]
|
||||||
|
},
|
||||||
|
|
||||||
|
addNodeView() {
|
||||||
|
return VueRenderer(Component)
|
||||||
|
},
|
||||||
|
})
|
||||||
48
docs/src/demos/Guide/NodeViews/TableOfContents/index.vue
Normal file
48
docs/src/demos/Guide/NodeViews/TableOfContents/index.vue
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
<template>
|
||||||
|
<div v-if="editor">
|
||||||
|
<editor-content :editor="editor" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { Editor, EditorContent, defaultExtensions } from '@tiptap/vue-starter-kit'
|
||||||
|
import TableOfContents from './TableOfContents.js'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
EditorContent,
|
||||||
|
},
|
||||||
|
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
editor: null,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
mounted() {
|
||||||
|
this.editor = new Editor({
|
||||||
|
extensions: [
|
||||||
|
...defaultExtensions(),
|
||||||
|
TableOfContents,
|
||||||
|
],
|
||||||
|
content: `
|
||||||
|
<toc></toc>
|
||||||
|
<h2>heading</h2>
|
||||||
|
<p>paragraph</p>
|
||||||
|
<h3>heading</h3>
|
||||||
|
<p>paragraph</p>
|
||||||
|
<h3>heading</h3>
|
||||||
|
<p>paragraph</p>
|
||||||
|
<h2>heading</h2>
|
||||||
|
<p>paragraph</p>
|
||||||
|
<h3>heading</h3>
|
||||||
|
<p>paragraph</p>
|
||||||
|
`,
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
beforeDestroy() {
|
||||||
|
this.editor.destroy()
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
@@ -28,6 +28,8 @@ TODO
|
|||||||
</div>
|
</div>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
<demo name="Guide/NodeViews/TableOfContents" />
|
||||||
|
|
||||||
### Advanced node views with content
|
### Advanced node views with content
|
||||||
|
|
||||||
```html
|
```html
|
||||||
|
|||||||
Reference in New Issue
Block a user