docs: update content
This commit is contained in:
@@ -49,15 +49,4 @@ export default {
|
|||||||
margin-top: 0.75em;
|
margin-top: 0.75em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.output {
|
|
||||||
background-color: #0D0D0D;
|
|
||||||
color: #fff;
|
|
||||||
padding: 1rem;
|
|
||||||
font-family: monospace;
|
|
||||||
font-size: 1.1rem;
|
|
||||||
border-radius: 0.5rem;
|
|
||||||
margin: 1rem 0;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
62
docs/src/demos/Guide/NodeViews/JavaScript/index.js
Normal file
62
docs/src/demos/Guide/NodeViews/JavaScript/index.js
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
import { Node, mergeAttributes } from '@tiptap/core'
|
||||||
|
|
||||||
|
export default Node.create({
|
||||||
|
name: 'nodeView',
|
||||||
|
|
||||||
|
group: 'block',
|
||||||
|
|
||||||
|
atom: true,
|
||||||
|
|
||||||
|
addAttributes() {
|
||||||
|
return {
|
||||||
|
count: {
|
||||||
|
default: 0,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
parseHTML() {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
tag: 'node-view',
|
||||||
|
},
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
|
renderHTML({ HTMLAttributes }) {
|
||||||
|
return ['node-view', mergeAttributes(HTMLAttributes)]
|
||||||
|
},
|
||||||
|
|
||||||
|
addNodeView() {
|
||||||
|
return ({
|
||||||
|
editor, node, getPos, HTMLAttributes, decorations, extension,
|
||||||
|
}) => {
|
||||||
|
const dom = document.createElement('div')
|
||||||
|
dom.classList.add('node-view')
|
||||||
|
|
||||||
|
const label = document.createElement('span')
|
||||||
|
label.classList.add('label')
|
||||||
|
label.innerHTML = 'Node View'
|
||||||
|
|
||||||
|
const content = document.createElement('div')
|
||||||
|
content.classList.add('content')
|
||||||
|
content.innerHTML = 'I’m rendered with JavaScript.'
|
||||||
|
|
||||||
|
dom.append(label, content)
|
||||||
|
|
||||||
|
return {
|
||||||
|
dom,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
// <node-view-wrapper class="vue-component">
|
||||||
|
// <span class="label">Vue Component</span>
|
||||||
|
|
||||||
|
// <div class="content">
|
||||||
|
// <button @click="increase">
|
||||||
|
// This button has been clicked {{ node.attrs.count }} times.
|
||||||
|
// </button>
|
||||||
|
// </div>
|
||||||
|
// </node-view-wrapper>
|
||||||
77
docs/src/demos/Guide/NodeViews/JavaScript/index.vue
Normal file
77
docs/src/demos/Guide/NodeViews/JavaScript/index.vue
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
<template>
|
||||||
|
<editor-content :editor="editor" />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { Editor, EditorContent } from '@tiptap/vue-2'
|
||||||
|
import { defaultExtensions } from '@tiptap/starter-kit'
|
||||||
|
import VueComponent from './index.js'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
EditorContent,
|
||||||
|
},
|
||||||
|
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
editor: null,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
mounted() {
|
||||||
|
this.editor = new Editor({
|
||||||
|
extensions: [
|
||||||
|
...defaultExtensions(),
|
||||||
|
VueComponent,
|
||||||
|
],
|
||||||
|
content: `
|
||||||
|
<p>
|
||||||
|
This is still the text editor you’re used to, but enriched with node views.
|
||||||
|
</p>
|
||||||
|
<node-view count="0"></node-view>
|
||||||
|
<p>
|
||||||
|
Did you see that? That’s a JavaScript node view. We are really living in the future.
|
||||||
|
</p>
|
||||||
|
`,
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
beforeDestroy() {
|
||||||
|
this.editor.destroy()
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
/* Basic editor styles */
|
||||||
|
.ProseMirror {
|
||||||
|
> * + * {
|
||||||
|
margin-top: 0.75em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.node-view {
|
||||||
|
border: 1px solid #adb5bd;
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
margin: 1rem 0;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.label {
|
||||||
|
margin-left: 1rem;
|
||||||
|
background-color: #adb5bd;
|
||||||
|
font-size: 0.6rem;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
font-weight: bold;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: #fff;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
padding: 0.25rem 0.75rem;
|
||||||
|
border-radius: 0 0 0.5rem 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
margin: 2.5rem 1rem 1rem;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -49,15 +49,4 @@ export default {
|
|||||||
margin-top: 0.75em;
|
margin-top: 0.75em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.output {
|
|
||||||
background-color: #0D0D0D;
|
|
||||||
color: #fff;
|
|
||||||
padding: 1rem;
|
|
||||||
font-family: monospace;
|
|
||||||
font-size: 1.1rem;
|
|
||||||
border-radius: 0.5rem;
|
|
||||||
margin: 1rem 0;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -51,15 +51,4 @@ export default {
|
|||||||
margin-top: 0.75em;
|
margin-top: 0.75em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.output {
|
|
||||||
background-color: #0D0D0D;
|
|
||||||
color: #fff;
|
|
||||||
padding: 1rem;
|
|
||||||
font-family: monospace;
|
|
||||||
font-size: 1.1rem;
|
|
||||||
border-radius: 0.5rem;
|
|
||||||
margin: 1rem 0;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
## Introduction
|
## Introduction
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
|
## Code snippet
|
||||||
```js
|
```js
|
||||||
import { Node } from '@tiptap/core'
|
import { Node } from '@tiptap/core'
|
||||||
import { VueNodeViewRenderer } from '@tiptap/vue-2'
|
import { VueNodeViewRenderer } from '@tiptap/vue-2'
|
||||||
@@ -20,7 +21,22 @@ export default Node.create({
|
|||||||
return {
|
return {
|
||||||
dom,
|
dom,
|
||||||
}
|
}
|
||||||
})
|
}
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Render markup
|
||||||
|
<demo name="Guide/NodeViews/JavaScript" />
|
||||||
|
|
||||||
|
## Access node attributes
|
||||||
|
TODO
|
||||||
|
|
||||||
|
## Update node attributes
|
||||||
|
TODO
|
||||||
|
|
||||||
|
## Adding a content editable
|
||||||
|
TODO
|
||||||
|
|
||||||
|
## All available props
|
||||||
|
TODO
|
||||||
|
|||||||
Reference in New Issue
Block a user