mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-24 01:17:50 +08:00
80 lines
1.8 KiB
TypeScript
80 lines
1.8 KiB
TypeScript
import { EditorState, Plugin, PluginKey } from 'prosemirror-state'
|
|
import { Editor as CoreEditor, EditorOptions } from '@tiptap/core'
|
|
import {
|
|
markRaw,
|
|
Ref,
|
|
customRef,
|
|
ComponentInternalInstance,
|
|
ComponentPublicInstance,
|
|
reactive,
|
|
} from 'vue'
|
|
import { VueRenderer } from './VueRenderer'
|
|
|
|
function useDebouncedRef<T>(value: T) {
|
|
return customRef<T>((track, trigger) => {
|
|
return {
|
|
get() {
|
|
track()
|
|
return value
|
|
},
|
|
set(newValue) {
|
|
// update state
|
|
value = newValue
|
|
|
|
// update view as soon as possible
|
|
requestAnimationFrame(() => {
|
|
requestAnimationFrame(() => {
|
|
trigger()
|
|
})
|
|
})
|
|
},
|
|
}
|
|
})
|
|
}
|
|
|
|
export type ContentComponent = ComponentInternalInstance & {
|
|
ctx: ComponentPublicInstance,
|
|
}
|
|
|
|
export class Editor extends CoreEditor {
|
|
private reactiveState: Ref<EditorState>
|
|
|
|
public vueRenderers = reactive<Map<string, VueRenderer>>(new Map())
|
|
|
|
public contentComponent: ContentComponent | null = null
|
|
|
|
constructor(options: Partial<EditorOptions> = {}) {
|
|
super(options)
|
|
|
|
this.reactiveState = useDebouncedRef(this.view.state)
|
|
|
|
this.on('transaction', () => {
|
|
this.reactiveState.value = this.view.state
|
|
})
|
|
|
|
return markRaw(this)
|
|
}
|
|
|
|
get state() {
|
|
return this.reactiveState
|
|
? this.reactiveState.value
|
|
: this.view.state
|
|
}
|
|
|
|
/**
|
|
* Register a ProseMirror plugin.
|
|
*/
|
|
public registerPlugin(plugin: Plugin, handlePlugins?: (newPlugin: Plugin, plugins: Plugin[]) => Plugin[]): void {
|
|
super.registerPlugin(plugin, handlePlugins)
|
|
this.reactiveState.value = this.view.state
|
|
}
|
|
|
|
/**
|
|
* Unregister a ProseMirror plugin.
|
|
*/
|
|
public unregisterPlugin(nameOrPluginKey: string | PluginKey): void {
|
|
super.unregisterPlugin(nameOrPluginKey)
|
|
this.reactiveState.value = this.view.state
|
|
}
|
|
}
|