@prosemirror-adapter/vue
v0.4.0
Published
[Vue](https://vuejs.org/) adapter for [ProseMirror](https://prosemirror.net/).
Downloads
17,306
Readme
@prosemirror-adapter/vue
Vue adapter for ProseMirror.
Example
You can view the example in prosemirror-adapter/examples/vue.
Getting Started
Install the package
npm install @prosemirror-adapter/vue
Wrap your component with provider
<script setup lang="ts">
import { ProsemirrorAdapterProvider } from '@prosemirror-adapter/vue'
</script>
<template>
<ProsemirrorAdapterProvider>
<YourAwesomeEditor />
</ProsemirrorAdapterProvider>
</template>
Play with node view
In this section we will implement a node view for paragraph node.
Build component for node view
<script setup lang="ts">
import { useNodeViewContext } from '@prosemirror-adapter/vue'
const { contentRef, selected } = useNodeViewContext()
</script>
<template>
<div :ref="contentRef" role="presentation" :class="{ selected }" />
</template>
<style scoped>
.selected {
outline: blue solid 1px;
}
</style>
Bind node view components with prosemirror
<script setup lang="ts">
import type { VNodeRef } from 'vue'
import { useNodeViewFactory } from '@prosemirror-adapter/vue'
import Paragraph from './Paragraph.vue'
const nodeViewFactory = useNodeViewFactory()
const editorRef: VNodeRef = (element) => {
const el = element as HTMLElement
if (!el || el.firstChild)
return
const editorView = new EditorView(el, {
state: YourProsemirrorEditorState,
nodeViews: {
paragraph: nodeViewFactory({
component: Paragraph,
// Optional: add some options
as: 'div',
contentAs: 'p',
}),
},
})
}
</script>
<template>
<div :ref="editorRef" class="editor" />
</template>
🚀 Congratulations! You have built your first vue node view with prosemirror-adapter.
Play with mark view
In this section we will implement a mark view for links that changes color periodically.
Build component for mark view
<script setup lang="ts">
import { ref, onMounted, onUnmounted } from 'vue'
import { useMarkViewContext } from '@prosemirror-adapter/vue'
const colors = [
'#f06292', '#ba68c8', '#9575cd', '#7986cb', '#64b5f6',
'#4fc3f7', '#4dd0e1', '#4db6ac', '#81c784', '#aed581',
'#ffb74d', '#ffa726', '#ff8a65', '#d4e157', '#ffd54f',
'#ffecb3',
]
function pickRandomColor() {
return colors[Math.floor(Math.random() * colors.length)]
}
const { mark, contentRef } = useMarkViewContext()
const color = ref(colors[0])
const href = mark.attrs.href as string
const title = mark.attrs.title as string | null
let interval: number
onMounted(() => {
interval = window.setInterval(() => {
color.value = pickRandomColor()
}, 1000)
})
onUnmounted(() => {
clearInterval(interval)
})
</script>
<template>
<a
:href="href"
:ref="contentRef"
:style="{ color: color, transition: 'color 1s ease-in-out' }"
:title="title || undefined"
/>
</template>
Bind mark view components with prosemirror
<script setup lang="ts">
import type { VNodeRef } from 'vue'
import { useMarkViewFactory } from '@prosemirror-adapter/vue'
import { Plugin } from 'prosemirror-state'
import Link from './Link.vue'
const markViewFactory = useMarkViewFactory()
const editorRef: VNodeRef = (element) => {
const el = element as HTMLElement
if (!el || el.firstChild)
return
const editorView = new EditorView(el, {
state: EditorState.create({
schema: YourProsemirrorSchema,
plugins: [
new Plugin({
props: {
markViews: {
link: markViewFactory({
component: Link,
}),
},
},
}),
]
})
})
}
</script>
<template>
<div :ref="editorRef" class="editor" />
</template>
🚀 Congratulations! You have built your first vue mark view with prosemirror-adapter.
Play with plugin view
In this section we will implement a plugin view that will display the size of the document.
Build component for plugin view
<script setup lang="ts">
import { usePluginViewContext } from '@prosemirror-adapter/vue'
const { view } = usePluginViewContext()
const size = computed(() => {
return view.value.state.doc.nodeSize
})
</script>
<template>
<div>Size for document: {{ size }}</div>
</template>
Bind plugin view components with prosemirror
<script setup lang="ts">
import type { VNodeRef } from 'vue'
import { usePluginViewFactory } from '@prosemirror-adapter/vue'
import { Plugin } from 'prosemirror-state'
import Size from './Size.vue'
const pluginViewFactory = usePluginViewFactory()
const editorRef: VNodeRef = (element) => {
const el = element as HTMLElement
if (!el || el.firstChild)
return
const editorView = new EditorView(el, {
state: EditorState.create({
schema: YourProsemirrorSchema,
plugins: [
new Plugin({
view: pluginViewFactory({
component: Size,
}),
}),
]
})
})
}
</script>
<template>
<div :ref="editorRef" class="editor" />
</template>
🚀 Congratulations! You have built your first vue plugin view with prosemirror-adapter.
Play with widget view
In this section we will implement a widget view that will add hashes for heading when selected.
Build component for widget decoration view
<script setup lang="ts">
import { useWidgetViewContext } from '@prosemirror-adapter/vue'
const { spec } = useWidgetViewContext()
const level = spec?.level
const hashes = Array(level || 0).fill('#').join('')
</script>
<template>
<span class="hash">{{ hashes }}</span>
</template>
<style scoped>
.hash {
color: blue;
margin-right: 6px;
}
</style>
Bind widget view components with prosemirror
<script setup lang="ts">
import type { VNodeRef } from 'vue'
import { useWidgetViewFactory } from '@prosemirror-adapter/vue'
import { Plugin } from 'prosemirror-state'
import Hashes from './Hashes.vue'
const widgetViewFactory = useWidgetViewFactory()
const editorRef: VNodeRef = (element) => {
const el = element as HTMLElement
if (!el || el.firstChild)
return
const getHashWidget = widgetViewFactory({
as: 'i',
component: Hashes,
})
const editorView = new EditorView(el, {
state: EditorState.create({
schema: YourProsemirrorSchema,
plugins: [
new Plugin({
props: {
decorations(state) {
const { $from } = state.selection
const node = $from.node()
if (node.type.name !== 'heading')
return DecorationSet.empty
const widget = getHashWidget($from.before() + 1, {
side: -1,
level: node.attrs.level,
})
return DecorationSet.create(state.doc, [widget])
},
},
}),
]
})
})
}
</script>
<template>
<div :ref="editorRef" class="editor" />
</template>
🚀 Congratulations! You have built your first vue widget view with prosemirror-adapter.
API
Node view API
useNodeViewFactory: () => (options: NodeViewFactoryOptions) => NodeView
type DOMSpec = string | HTMLElement | ((node: Node) => HTMLElement)
interface NodeViewFactoryOptions {
// Component
component: VueComponent
// The DOM element to use as the root node of the node view.
as?: DOMSpec
// The DOM element that contains the content of the node.
contentAs?: DOMSpec
// Overrides: this part is equal to properties of [NodeView](https://prosemirror.net/docs/ref/#view.NodeView)
update?: (node: Node, decorations: readonly Decoration[], innerDecorations: DecorationSource) => boolean | void
ignoreMutation?: (mutation: ViewMutationRecord) => boolean | void
selectNode?: () => void
deselectNode?: () => void
setSelection?: (anchor: number, head: number, root: Document | ShadowRoot) => void
stopEvent?: (event: Event) => boolean
destroy?: () => void
// Called when the node view is updated.
onUpdate?: () => void
}
useNodeViewContext: () => NodeViewContext
interface NodeViewContext {
// The DOM element that contains the content of the node.
contentRef: NodeViewContentRef
// The prosemirror editor view.
view: EditorView
// Get prosemirror position of current node view.
getPos: () => number | undefined
// Set node.attrs of current node.
setAttrs: (attrs: Attrs) => void
// The prosemirror node for current node.
node: ShallowRef<Node>
// The prosemirror decorations for current node.
decorations: ShallowRef<readonly Decoration[]>
// The prosemirror inner decorations for current node.
innerDecorations: ShallowRef<DecorationSource>
// Whether the node is selected.
selected: ShallowRef<boolean>
}
Mark view API
useMarkViewFactory: () => (options: MarkViewFactoryOptions) => MarkView
type MarkViewDOMSpec = string | HTMLElement | ((mark: Mark) => HTMLElement)
interface MarkViewFactoryOptions {
// Component
component: VueComponent
// The DOM element to use as the root node of the mark view
as?: MarkViewDOMSpec
// The DOM element that contains the content of the mark
contentAs?: MarkViewDOMSpec
// Called when the mark view is destroyed
destroy?: () => void
}
useMarkViewContext: () => MarkViewContext
interface MarkViewContext {
// The DOM element that contains the content of the mark
contentRef: MarkViewContentRef
// The prosemirror editor view
view: ShallowRef<EditorView>
// The prosemirror mark for current mark view
mark: ShallowRef<Mark>
// Whether the mark is inline
inline: ShallowRef<boolean>
}
Plugin view API
usePluginViewFactory: () => (options: PluginViewFactoryOptions) => PluginView
interface PluginViewFactoryOptions {
// Component
component: VueComponent
// The DOM element to use as the root node of the plugin view.
// The `viewDOM` here means `EditorState.view.dom`.
// By default, it will be `EditorState.view.dom.parentElement`.
root?: (viewDOM: HTMLElement) => HTMLElement
// Overrides: this part is equal to properties of [PluginView](https://prosemirror.net/docs/ref/#state.PluginView)
update?: (view: EditorView, prevState: EditorState) => void
destroy?: () => void
}
usePluginViewContext: () => PluginViewContext
interface PluginViewContext {
// The prosemirror editor view.
view: ShallowRef<EditorView>
// The previously prosemirror editor state.
// Will be `undefined` when the plugin view is created.
prevState: ShallowRef<EditorState | undefined>
}
Widget view API
useWidgetViewFactory: () => (options: WidgetViewFactoryOptions) => WidgetDecorationFactory
type WidgetDecorationFactory = (pos: number, spec?: WidgetDecorationSpec) => Decoration
interface WidgetViewFactoryOptions {
// Component
component: VueComponent
// The DOM element to use as the root node of the widget view.
as: string | HTMLElement
}
useWidgetViewContext: () => WidgetViewContext
interface WidgetViewContext {
// The prosemirror editor view.
view: EditorView
// Get the position of the widget.
getPos: () => number | undefined
// Get the [spec](https://prosemirror.net/docs/ref/#view.Decoration^widget^spec) of the widget.
spec?: WidgetDecorationSpec
}
Contributing
Follow our contribution guide to learn how to contribute to prosemirror-adapter.