mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-22 08:07:50 +08:00
199 lines
3.7 KiB
TypeScript
199 lines
3.7 KiB
TypeScript
import { Plugin, Transaction } from 'prosemirror-state'
|
||
import { InputRule } from 'prosemirror-inputrules'
|
||
import { Editor } from './Editor'
|
||
import { GlobalAttributes } from './types'
|
||
|
||
export interface ExtensionConfig<Options = any, Commands = {}> {
|
||
/**
|
||
* Name
|
||
*/
|
||
name?: string,
|
||
|
||
/**
|
||
* Default options
|
||
*/
|
||
defaultOptions?: Options,
|
||
|
||
/**
|
||
* Global attributes
|
||
*/
|
||
addGlobalAttributes?: (this: {
|
||
options: Options,
|
||
}) => GlobalAttributes,
|
||
|
||
/**
|
||
* Commands
|
||
*/
|
||
addCommands?: (this: {
|
||
options: Options,
|
||
editor: Editor,
|
||
}) => Commands,
|
||
|
||
/**
|
||
* Keyboard shortcuts
|
||
*/
|
||
addKeyboardShortcuts?: (this: {
|
||
options: Options,
|
||
editor: Editor,
|
||
}) => {
|
||
[key: string]: any
|
||
},
|
||
|
||
/**
|
||
* Input rules
|
||
*/
|
||
addInputRules?: (this: {
|
||
options: Options,
|
||
editor: Editor,
|
||
}) => InputRule[],
|
||
|
||
/**
|
||
* Paste rules
|
||
*/
|
||
addPasteRules?: (this: {
|
||
options: Options,
|
||
editor: Editor,
|
||
}) => Plugin[],
|
||
|
||
/**
|
||
* ProseMirror plugins
|
||
*/
|
||
addProseMirrorPlugins?: (this: {
|
||
options: Options,
|
||
editor: Editor,
|
||
}) => Plugin[],
|
||
|
||
/**
|
||
* The editor is ready.
|
||
*/
|
||
onCreate?: ((this: {
|
||
options: Options,
|
||
editor: Editor,
|
||
}) => void) | null,
|
||
|
||
/**
|
||
* The content has changed.
|
||
*/
|
||
onUpdate?: ((this: {
|
||
options: Options,
|
||
editor: Editor,
|
||
}) => void) | null,
|
||
|
||
/**
|
||
* The selection has changed.
|
||
*/
|
||
onSelection?: ((this: {
|
||
options: Options,
|
||
editor: Editor,
|
||
}) => void) | null,
|
||
|
||
/**
|
||
* The editor state has changed.
|
||
*/
|
||
onTransaction?: ((
|
||
this: {
|
||
options: Options,
|
||
editor: Editor,
|
||
},
|
||
props: {
|
||
transaction: Transaction,
|
||
},
|
||
) => void) | null,
|
||
|
||
/**
|
||
* The editor is focused.
|
||
*/
|
||
onFocus?: ((
|
||
this: {
|
||
options: Options,
|
||
editor: Editor,
|
||
},
|
||
props: {
|
||
event: FocusEvent,
|
||
},
|
||
) => void) | null,
|
||
|
||
/**
|
||
* The editor isn’t focused anymore.
|
||
*/
|
||
onBlur?: ((
|
||
this: {
|
||
options: Options,
|
||
editor: Editor,
|
||
},
|
||
props: {
|
||
event: FocusEvent,
|
||
},
|
||
) => void) | null,
|
||
|
||
/**
|
||
* The editor is destroyed.
|
||
*/
|
||
onDestroy?: ((this: {
|
||
options: Options,
|
||
editor: Editor,
|
||
}) => void) | null,
|
||
}
|
||
|
||
export class Extension<Options = any, Commands = any> {
|
||
type = 'extension'
|
||
|
||
config: Required<ExtensionConfig> = {
|
||
name: 'extension',
|
||
defaultOptions: {},
|
||
addGlobalAttributes: () => [],
|
||
addCommands: () => ({}),
|
||
addKeyboardShortcuts: () => ({}),
|
||
addInputRules: () => [],
|
||
addPasteRules: () => [],
|
||
addProseMirrorPlugins: () => [],
|
||
onCreate: null,
|
||
onUpdate: null,
|
||
onSelection: null,
|
||
onTransaction: null,
|
||
onFocus: null,
|
||
onBlur: null,
|
||
onDestroy: null,
|
||
}
|
||
|
||
options!: Options
|
||
|
||
constructor(config: ExtensionConfig<Options, Commands>) {
|
||
this.config = {
|
||
...this.config,
|
||
...config,
|
||
}
|
||
|
||
this.options = this.config.defaultOptions
|
||
}
|
||
|
||
static create<O, C>(config: ExtensionConfig<O, C>) {
|
||
return new Extension<O, C>(config)
|
||
}
|
||
|
||
configure(options: Partial<Options>) {
|
||
return Extension
|
||
.create<Options, Commands>(this.config as ExtensionConfig<Options, Commands>)
|
||
.#configure({
|
||
...this.config.defaultOptions,
|
||
...options,
|
||
})
|
||
}
|
||
|
||
#configure = (options: Partial<Options>) => {
|
||
this.options = {
|
||
...this.config.defaultOptions,
|
||
...options,
|
||
}
|
||
|
||
return this
|
||
}
|
||
|
||
extend<ExtendedOptions = Options, ExtendedCommands = Commands>(extendedConfig: Partial<ExtensionConfig<ExtendedOptions, ExtendedCommands>>) {
|
||
return new Extension<ExtendedOptions, ExtendedCommands>({
|
||
...this.config,
|
||
...extendedConfig,
|
||
} as ExtensionConfig<ExtendedOptions, ExtendedCommands>)
|
||
}
|
||
}
|