mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-22 08:07:50 +08:00
480 lines
11 KiB
TypeScript
480 lines
11 KiB
TypeScript
import {
|
||
EditorState, Plugin, PluginKey, Transaction,
|
||
} from 'prosemirror-state'
|
||
import { EditorView } from 'prosemirror-view'
|
||
import { Schema, DOMParser, Node } from 'prosemirror-model'
|
||
import elementFromString from './utilities/elementFromString'
|
||
import getNodeAttributes from './helpers/getNodeAttributes'
|
||
import getMarkAttributes from './helpers/getMarkAttributes'
|
||
import isActive from './helpers/isActive'
|
||
import removeElement from './utilities/removeElement'
|
||
import getHTMLFromFragment from './helpers/getHTMLFromFragment'
|
||
import isNodeEmpty from './helpers/isNodeEmpty'
|
||
import createStyleTag from './utilities/createStyleTag'
|
||
import CommandManager from './CommandManager'
|
||
import ExtensionManager from './ExtensionManager'
|
||
import EventEmitter from './EventEmitter'
|
||
import {
|
||
EditorOptions,
|
||
Content,
|
||
CanCommands,
|
||
ChainedCommands,
|
||
SingleCommands,
|
||
AnyObject,
|
||
} from './types'
|
||
import * as extensions from './extensions'
|
||
import style from './style'
|
||
|
||
export { extensions }
|
||
|
||
export interface HTMLElement {
|
||
editor?: Editor
|
||
}
|
||
|
||
export class Editor extends EventEmitter {
|
||
|
||
private commandManager!: CommandManager
|
||
|
||
public extensionManager!: ExtensionManager
|
||
|
||
private css!: HTMLStyleElement
|
||
|
||
public schema!: Schema
|
||
|
||
public view!: EditorView
|
||
|
||
public isFocused = false
|
||
|
||
private resizeObserver!: ResizeObserver
|
||
|
||
public options: EditorOptions = {
|
||
element: document.createElement('div'),
|
||
content: '',
|
||
injectCSS: true,
|
||
extensions: [],
|
||
autofocus: false,
|
||
editable: true,
|
||
editorProps: {},
|
||
parseOptions: {},
|
||
enableInputRules: true,
|
||
enablePasteRules: true,
|
||
onBeforeCreate: () => null,
|
||
onCreate: () => null,
|
||
onUpdate: () => null,
|
||
onSelectionUpdate: () => null,
|
||
onViewUpdate: () => null,
|
||
onTransaction: () => null,
|
||
onFocus: () => null,
|
||
onBlur: () => null,
|
||
onResize: () => null,
|
||
onDestroy: () => null,
|
||
}
|
||
|
||
constructor(options: Partial<EditorOptions> = {}) {
|
||
super()
|
||
this.setOptions(options)
|
||
this.createExtensionManager()
|
||
this.createCommandManager()
|
||
this.createSchema()
|
||
this.on('beforeCreate', this.options.onCreate)
|
||
this.emit('beforeCreate', { editor: this })
|
||
this.createView()
|
||
this.injectCSS()
|
||
this.on('create', this.options.onCreate)
|
||
this.on('update', this.options.onUpdate)
|
||
this.on('selectionUpdate', this.options.onSelectionUpdate)
|
||
this.on('viewUpdate', this.options.onViewUpdate)
|
||
this.on('transaction', this.options.onTransaction)
|
||
this.on('focus', this.options.onFocus)
|
||
this.on('blur', this.options.onBlur)
|
||
this.on('destroy', this.options.onDestroy)
|
||
|
||
window.setTimeout(() => {
|
||
this.commands.focus(this.options.autofocus)
|
||
this.emit('create', { editor: this })
|
||
|
||
if (window.ResizeObserver) {
|
||
this.resizeObserver = new ResizeObserver(() => {
|
||
this.emit('resize', { editor: this })
|
||
})
|
||
this.resizeObserver.observe(this.view.dom)
|
||
}
|
||
}, 0)
|
||
|
||
}
|
||
|
||
/**
|
||
* An object of all registered commands.
|
||
*/
|
||
public get commands(): SingleCommands {
|
||
return this.commandManager.createCommands()
|
||
}
|
||
|
||
/**
|
||
* Create a command chain to call multiple commands at once.
|
||
*/
|
||
public chain(): ChainedCommands {
|
||
return this.commandManager.createChain()
|
||
}
|
||
|
||
/**
|
||
* Check if a command or a command chain can be executed. Without executing it.
|
||
*/
|
||
public can(): CanCommands {
|
||
return this.commandManager.createCan()
|
||
}
|
||
|
||
/**
|
||
* Inject CSS styles.
|
||
*/
|
||
private injectCSS(): void {
|
||
if (this.options.injectCSS && document) {
|
||
this.css = createStyleTag(style)
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Update editor options.
|
||
*
|
||
* @param options A list of options
|
||
*/
|
||
public setOptions(options: Partial<EditorOptions> = {}): void {
|
||
this.options = { ...this.options, ...options }
|
||
}
|
||
|
||
/**
|
||
* Update editable state of the editor.
|
||
*/
|
||
public setEditable(editable: boolean): void {
|
||
this.setOptions({ editable })
|
||
|
||
if (this.view && this.state && !this.isDestroyed) {
|
||
this.view.updateState(this.state)
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Returns whether the editor is editable.
|
||
*/
|
||
public get isEditable(): boolean {
|
||
return this.view && this.view.editable
|
||
}
|
||
|
||
/**
|
||
* Returns the editor state.
|
||
*/
|
||
public get state(): EditorState {
|
||
return this.view.state
|
||
}
|
||
|
||
/**
|
||
* Register a ProseMirror plugin.
|
||
*
|
||
* @param plugin A ProseMirror plugin
|
||
* @param handlePlugins Control how to merge the plugin into the existing plugins.
|
||
*/
|
||
public registerPlugin(plugin: Plugin, handlePlugins?: (newPlugin: Plugin, plugins: Plugin[]) => Plugin[]): void {
|
||
const plugins = typeof handlePlugins === 'function'
|
||
? handlePlugins(plugin, this.state.plugins)
|
||
: [...this.state.plugins, plugin]
|
||
|
||
const state = this.state.reconfigure({ plugins })
|
||
|
||
this.view.updateState(state)
|
||
}
|
||
|
||
/**
|
||
* Unregister a ProseMirror plugin.
|
||
*
|
||
* @param name The plugins name
|
||
*/
|
||
public unregisterPlugin(nameOrPluginKey: string | PluginKey): void {
|
||
if (this.isDestroyed) {
|
||
return
|
||
}
|
||
|
||
const name = typeof nameOrPluginKey === 'string'
|
||
? `${nameOrPluginKey}$`
|
||
// @ts-ignore
|
||
: nameOrPluginKey.key
|
||
|
||
const state = this.state.reconfigure({
|
||
// @ts-ignore
|
||
plugins: this.state.plugins.filter(plugin => !plugin.key.startsWith(name)),
|
||
})
|
||
|
||
this.view.updateState(state)
|
||
}
|
||
|
||
/**
|
||
* Creates an extension manager.
|
||
*/
|
||
private createExtensionManager(): void {
|
||
const coreExtensions = Object.entries(extensions).map(([, extension]) => extension)
|
||
const allExtensions = [...coreExtensions, ...this.options.extensions].filter(extension => {
|
||
return ['extension', 'node', 'mark'].includes(extension?.type)
|
||
})
|
||
|
||
this.extensionManager = new ExtensionManager(allExtensions, this)
|
||
}
|
||
|
||
/**
|
||
* Creates an command manager.
|
||
*/
|
||
private createCommandManager(): void {
|
||
this.commandManager = new CommandManager(this, this.extensionManager.commands)
|
||
}
|
||
|
||
/**
|
||
* Creates a ProseMirror schema.
|
||
*/
|
||
private createSchema(): void {
|
||
this.schema = this.extensionManager.schema
|
||
}
|
||
|
||
/**
|
||
* Creates a ProseMirror view.
|
||
*/
|
||
private createView(): void {
|
||
this.view = new EditorView(this.options.element, {
|
||
...this.options.editorProps,
|
||
dispatchTransaction: this.dispatchTransaction.bind(this),
|
||
state: EditorState.create({
|
||
doc: this.createDocument(this.options.content),
|
||
}),
|
||
})
|
||
|
||
// `editor.view` is not yet available at this time.
|
||
// Therefore we will add all plugins and node views directly afterwards.
|
||
const newState = this.state.reconfigure({
|
||
plugins: [
|
||
new Plugin({
|
||
view: () => ({
|
||
update: () => this.emit('viewUpdate', {
|
||
editor: this,
|
||
}),
|
||
}),
|
||
}),
|
||
...this.extensionManager.plugins,
|
||
],
|
||
})
|
||
|
||
this.view.updateState(newState)
|
||
|
||
this.createNodeViews()
|
||
|
||
// Let’s store the editor instance in the DOM element.
|
||
// So we’ll have access to it for tests.
|
||
const dom = this.view.dom as HTMLElement
|
||
dom.editor = this
|
||
}
|
||
|
||
/**
|
||
* Creates all node views.
|
||
*/
|
||
public createNodeViews(): void {
|
||
this.view.setProps({
|
||
nodeViews: this.extensionManager.nodeViews,
|
||
})
|
||
}
|
||
|
||
/**
|
||
* Creates a ProseMirror document.
|
||
*/
|
||
public createDocument = (content: Content, parseOptions = this.options.parseOptions): Node => {
|
||
if (content && typeof content === 'object') {
|
||
try {
|
||
return this.schema.nodeFromJSON(content)
|
||
} catch (error) {
|
||
console.warn(
|
||
'[tiptap warn]: Invalid content.',
|
||
'Passed value:',
|
||
content,
|
||
'Error:',
|
||
error,
|
||
)
|
||
return this.createDocument('')
|
||
}
|
||
}
|
||
|
||
if (typeof content === 'string') {
|
||
return DOMParser
|
||
.fromSchema(this.schema)
|
||
.parse(elementFromString(content), parseOptions)
|
||
}
|
||
|
||
return this.createDocument('')
|
||
}
|
||
|
||
public isCapturingTransaction = false
|
||
|
||
private capturedTransaction: Transaction | null = null
|
||
|
||
public captureTransaction(fn: Function) {
|
||
this.isCapturingTransaction = true
|
||
fn()
|
||
this.isCapturingTransaction = false
|
||
|
||
const tr = this.capturedTransaction
|
||
|
||
this.capturedTransaction = null
|
||
|
||
return tr
|
||
}
|
||
|
||
/**
|
||
* The callback over which to send transactions (state updates) produced by the view.
|
||
*
|
||
* @param transaction An editor state transaction
|
||
*/
|
||
private dispatchTransaction(transaction: Transaction): void {
|
||
if (transaction.docChanged && !this.isEditable) {
|
||
return
|
||
}
|
||
|
||
if (this.isCapturingTransaction) {
|
||
if (!this.capturedTransaction) {
|
||
this.capturedTransaction = transaction
|
||
|
||
return
|
||
}
|
||
|
||
transaction.steps.forEach(step => this.capturedTransaction?.step(step))
|
||
|
||
return
|
||
}
|
||
|
||
const state = this.state.apply(transaction)
|
||
const selectionHasChanged = !this.state.selection.eq(state.selection)
|
||
|
||
this.view.updateState(state)
|
||
this.emit('transaction', {
|
||
editor: this,
|
||
transaction,
|
||
})
|
||
|
||
if (selectionHasChanged) {
|
||
this.emit('selectionUpdate', {
|
||
editor: this,
|
||
})
|
||
}
|
||
|
||
const focus = transaction.getMeta('focus')
|
||
const blur = transaction.getMeta('blur')
|
||
|
||
if (focus) {
|
||
this.emit('focus', {
|
||
editor: this,
|
||
event: focus.event,
|
||
})
|
||
}
|
||
|
||
if (blur) {
|
||
this.emit('blur', {
|
||
editor: this,
|
||
event: blur.event,
|
||
})
|
||
}
|
||
|
||
if (!transaction.docChanged || transaction.getMeta('preventUpdate')) {
|
||
return
|
||
}
|
||
|
||
this.emit('update', {
|
||
editor: this,
|
||
transaction,
|
||
})
|
||
}
|
||
|
||
/**
|
||
* Get attributes of the currently selected node.
|
||
*
|
||
* @param name Name of the node
|
||
*/
|
||
public getNodeAttributes(name: string): AnyObject {
|
||
return getNodeAttributes(this.state, name)
|
||
}
|
||
|
||
/**
|
||
* Get attributes of the currently selected mark.
|
||
*
|
||
* @param name Name of the mark
|
||
*/
|
||
public getMarkAttributes(name: string): AnyObject {
|
||
return getMarkAttributes(this.state, name)
|
||
}
|
||
|
||
/**
|
||
* Returns if the currently selected node or mark is active.
|
||
*
|
||
* @param name Name of the node or mark
|
||
* @param attributes Attributes of the node or mark
|
||
*/
|
||
public isActive(name: string, attributes?: {}): boolean;
|
||
public isActive(attributes: {}): boolean;
|
||
public isActive(nameOrAttributes: string, attributesOrUndefined?: {}): boolean {
|
||
const name = typeof nameOrAttributes === 'string'
|
||
? nameOrAttributes
|
||
: null
|
||
|
||
const attributes = typeof nameOrAttributes === 'string'
|
||
? attributesOrUndefined
|
||
: nameOrAttributes
|
||
|
||
return isActive(this.state, name, attributes)
|
||
}
|
||
|
||
/**
|
||
* Get the document as JSON.
|
||
*/
|
||
public getJSON(): AnyObject {
|
||
return this.state.doc.toJSON()
|
||
}
|
||
|
||
/**
|
||
* Get the document as HTML.
|
||
*/
|
||
public getHTML(): string {
|
||
return getHTMLFromFragment(this.state.doc, this.schema)
|
||
}
|
||
|
||
/**
|
||
* Check if there is no content.
|
||
*/
|
||
public get isEmpty(): boolean {
|
||
return isNodeEmpty(this.state.doc)
|
||
}
|
||
|
||
/**
|
||
* Get the number of characters for the current document.
|
||
*/
|
||
public getCharacterCount(): number {
|
||
return this.state.doc.content.size - 2
|
||
}
|
||
|
||
/**
|
||
* Destroy the editor.
|
||
*/
|
||
public destroy(): void {
|
||
this.resizeObserver?.unobserve(this.view.dom)
|
||
|
||
this.emit('destroy')
|
||
|
||
if (this.view) {
|
||
this.view.destroy()
|
||
}
|
||
|
||
this.removeAllListeners()
|
||
removeElement(this.css)
|
||
}
|
||
|
||
/**
|
||
* Check if the editor is already destroyed.
|
||
*/
|
||
public get isDestroyed(): boolean {
|
||
// @ts-ignore
|
||
return !this.view?.docView
|
||
}
|
||
|
||
}
|