2020-11-30 21:12:36 +08:00
|
|
|
|
import { Plugin, Transaction } from 'prosemirror-state'
|
2020-11-17 04:54:40 +08:00
|
|
|
|
import { InputRule } from 'prosemirror-inputrules'
|
2020-10-22 15:14:24 +08:00
|
|
|
|
import { Editor } from './Editor'
|
2021-02-19 16:54:39 +08:00
|
|
|
|
import { Node } from './Node'
|
2021-04-16 03:43:41 +08:00
|
|
|
|
import { Mark } from './Mark'
|
2021-01-20 16:18:49 +08:00
|
|
|
|
import mergeDeep from './utilities/mergeDeep'
|
2021-04-21 04:58:09 +08:00
|
|
|
|
import {
|
2021-05-07 00:39:47 +08:00
|
|
|
|
AnyExtension,
|
2021-04-21 04:58:09 +08:00
|
|
|
|
GlobalAttributes,
|
|
|
|
|
RawCommands,
|
|
|
|
|
ParentConfig,
|
|
|
|
|
KeyboardShortcutCommand,
|
|
|
|
|
} from './types'
|
2021-03-31 19:44:56 +08:00
|
|
|
|
import { ExtensionConfig } from '.'
|
2021-02-20 00:35:50 +08:00
|
|
|
|
|
|
|
|
|
declare module '@tiptap/core' {
|
|
|
|
|
interface ExtensionConfig<Options = any> {
|
2021-02-20 00:47:22 +08:00
|
|
|
|
[key: string]: any;
|
|
|
|
|
|
2021-02-20 00:35:50 +08:00
|
|
|
|
/**
|
|
|
|
|
* Name
|
|
|
|
|
*/
|
|
|
|
|
name: string,
|
|
|
|
|
|
2021-04-08 00:29:16 +08:00
|
|
|
|
/**
|
|
|
|
|
* Priority
|
|
|
|
|
*/
|
|
|
|
|
priority?: number,
|
|
|
|
|
|
2021-02-20 00:35:50 +08:00
|
|
|
|
/**
|
|
|
|
|
* Default options
|
|
|
|
|
*/
|
|
|
|
|
defaultOptions?: Options,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Global attributes
|
|
|
|
|
*/
|
|
|
|
|
addGlobalAttributes?: (this: {
|
2021-04-21 05:11:35 +08:00
|
|
|
|
name: string,
|
2021-02-19 16:54:39 +08:00
|
|
|
|
options: Options,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<ExtensionConfig<Options>>['addGlobalAttributes'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
}) => GlobalAttributes | {},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Raw
|
|
|
|
|
*/
|
|
|
|
|
addCommands?: (this: {
|
2021-04-21 05:11:35 +08:00
|
|
|
|
name: string,
|
2021-02-19 16:54:39 +08:00
|
|
|
|
options: Options,
|
2021-02-20 00:35:50 +08:00
|
|
|
|
editor: Editor,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<ExtensionConfig<Options>>['addCommands'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
}) => Partial<RawCommands>,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Keyboard shortcuts
|
|
|
|
|
*/
|
|
|
|
|
addKeyboardShortcuts?: (this: {
|
2021-04-21 05:11:35 +08:00
|
|
|
|
name: string,
|
2020-11-30 21:12:36 +08:00
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<ExtensionConfig<Options>>['addKeyboardShortcuts'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
}) => {
|
2021-04-21 04:58:09 +08:00
|
|
|
|
[key: string]: KeyboardShortcutCommand,
|
2020-11-30 21:12:36 +08:00
|
|
|
|
},
|
|
|
|
|
|
2021-02-20 00:35:50 +08:00
|
|
|
|
/**
|
|
|
|
|
* Input rules
|
|
|
|
|
*/
|
|
|
|
|
addInputRules?: (this: {
|
2021-04-21 05:11:35 +08:00
|
|
|
|
name: string,
|
2020-11-30 21:12:36 +08:00
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<ExtensionConfig<Options>>['addInputRules'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
}) => InputRule[],
|
2020-11-30 21:12:36 +08:00
|
|
|
|
|
2021-02-20 00:35:50 +08:00
|
|
|
|
/**
|
|
|
|
|
* Paste rules
|
|
|
|
|
*/
|
|
|
|
|
addPasteRules?: (this: {
|
2021-04-21 05:11:35 +08:00
|
|
|
|
name: string,
|
2020-11-30 21:12:36 +08:00
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<ExtensionConfig<Options>>['addPasteRules'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
}) => Plugin[],
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* ProseMirror plugins
|
|
|
|
|
*/
|
|
|
|
|
addProseMirrorPlugins?: (this: {
|
2021-04-21 05:11:35 +08:00
|
|
|
|
name: string,
|
2021-02-20 00:35:50 +08:00
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<ExtensionConfig<Options>>['addProseMirrorPlugins'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
}) => Plugin[],
|
|
|
|
|
|
2021-05-07 00:39:47 +08:00
|
|
|
|
/**
|
|
|
|
|
* Extensions
|
|
|
|
|
*/
|
|
|
|
|
addExtensions?: (this: {
|
|
|
|
|
name: string,
|
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
|
|
|
|
parent: ParentConfig<ExtensionConfig<Options>>['addExtensions'],
|
|
|
|
|
}) => AnyExtension[],
|
|
|
|
|
|
2021-02-20 00:35:50 +08:00
|
|
|
|
/**
|
|
|
|
|
* Extend Node Schema
|
|
|
|
|
*/
|
|
|
|
|
extendNodeSchema?: ((
|
|
|
|
|
this: {
|
2021-04-21 05:11:35 +08:00
|
|
|
|
name: string,
|
2021-02-20 00:35:50 +08:00
|
|
|
|
options: Options,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<ExtensionConfig<Options>>['extendNodeSchema'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
},
|
|
|
|
|
extension: Node,
|
2021-04-21 15:43:31 +08:00
|
|
|
|
) => Record<string, any>) | null,
|
2021-02-20 00:35:50 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Extend Mark Schema
|
|
|
|
|
*/
|
|
|
|
|
extendMarkSchema?: ((
|
|
|
|
|
this: {
|
2021-04-21 05:11:35 +08:00
|
|
|
|
name: string,
|
2021-02-20 00:35:50 +08:00
|
|
|
|
options: Options,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<ExtensionConfig<Options>>['extendMarkSchema'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
},
|
2021-04-16 03:43:41 +08:00
|
|
|
|
extension: Mark,
|
2021-04-21 15:43:31 +08:00
|
|
|
|
) => Record<string, any>) | null,
|
2021-02-20 00:35:50 +08:00
|
|
|
|
|
2021-04-02 06:07:40 +08:00
|
|
|
|
/**
|
|
|
|
|
* The editor is not ready yet.
|
|
|
|
|
*/
|
2021-04-21 05:11:35 +08:00
|
|
|
|
onBeforeCreate?: ((this: {
|
|
|
|
|
name: string,
|
2021-04-02 06:07:40 +08:00
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<ExtensionConfig<Options>>['onBeforeCreate'],
|
2021-04-02 06:07:40 +08:00
|
|
|
|
}) => void) | null,
|
|
|
|
|
|
2021-02-20 00:35:50 +08:00
|
|
|
|
/**
|
|
|
|
|
* The editor is ready.
|
|
|
|
|
*/
|
|
|
|
|
onCreate?: ((this: {
|
2021-04-21 05:11:35 +08:00
|
|
|
|
name: string,
|
2021-02-20 00:35:50 +08:00
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<ExtensionConfig<Options>>['onCreate'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
}) => void) | null,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The content has changed.
|
|
|
|
|
*/
|
|
|
|
|
onUpdate?: ((this: {
|
2021-04-21 05:11:35 +08:00
|
|
|
|
name: string,
|
2021-02-20 00:35:50 +08:00
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<ExtensionConfig<Options>>['onUpdate'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
}) => void) | null,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The selection has changed.
|
|
|
|
|
*/
|
2021-03-09 16:50:03 +08:00
|
|
|
|
onSelectionUpdate?: ((this: {
|
2021-04-21 05:11:35 +08:00
|
|
|
|
name: string,
|
2021-03-09 16:50:03 +08:00
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<ExtensionConfig<Options>>['onSelectionUpdate'],
|
2021-03-09 16:50:03 +08:00
|
|
|
|
}) => void) | null,
|
|
|
|
|
|
2021-02-20 00:35:50 +08:00
|
|
|
|
/**
|
|
|
|
|
* The editor state has changed.
|
|
|
|
|
*/
|
|
|
|
|
onTransaction?: ((
|
|
|
|
|
this: {
|
2021-04-21 05:11:35 +08:00
|
|
|
|
name: string,
|
2021-02-20 00:35:50 +08:00
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<ExtensionConfig<Options>>['onTransaction'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
},
|
|
|
|
|
props: {
|
|
|
|
|
transaction: Transaction,
|
|
|
|
|
},
|
|
|
|
|
) => void) | null,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The editor is focused.
|
|
|
|
|
*/
|
|
|
|
|
onFocus?: ((
|
|
|
|
|
this: {
|
2021-04-21 05:11:35 +08:00
|
|
|
|
name: string,
|
2021-02-20 00:35:50 +08:00
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<ExtensionConfig<Options>>['onFocus'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
},
|
|
|
|
|
props: {
|
|
|
|
|
event: FocusEvent,
|
|
|
|
|
},
|
|
|
|
|
) => void) | null,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The editor isn’t focused anymore.
|
|
|
|
|
*/
|
|
|
|
|
onBlur?: ((
|
|
|
|
|
this: {
|
2021-04-21 05:11:35 +08:00
|
|
|
|
name: string,
|
2021-02-20 00:35:50 +08:00
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<ExtensionConfig<Options>>['onBlur'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
},
|
|
|
|
|
props: {
|
|
|
|
|
event: FocusEvent,
|
|
|
|
|
},
|
|
|
|
|
) => void) | null,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The editor is destroyed.
|
|
|
|
|
*/
|
|
|
|
|
onDestroy?: ((this: {
|
2021-04-21 05:11:35 +08:00
|
|
|
|
name: string,
|
2021-02-20 00:35:50 +08:00
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<ExtensionConfig<Options>>['onDestroy'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
}) => void) | null,
|
|
|
|
|
}
|
2020-10-21 21:17:05 +08:00
|
|
|
|
}
|
2020-09-24 06:29:05 +08:00
|
|
|
|
|
2021-02-10 16:59:35 +08:00
|
|
|
|
export class Extension<Options = any> {
|
2020-11-20 04:08:25 +08:00
|
|
|
|
type = 'extension'
|
|
|
|
|
|
2021-04-16 04:03:45 +08:00
|
|
|
|
name = 'extension'
|
2021-04-12 17:11:02 +08:00
|
|
|
|
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: Extension | null = null
|
2020-11-16 06:25:25 +08:00
|
|
|
|
|
2021-04-15 20:40:28 +08:00
|
|
|
|
child: Extension | null = null
|
|
|
|
|
|
2021-04-16 04:03:45 +08:00
|
|
|
|
options: Options
|
|
|
|
|
|
|
|
|
|
config: ExtensionConfig = {
|
|
|
|
|
name: this.name,
|
|
|
|
|
priority: 100,
|
|
|
|
|
defaultOptions: {},
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-15 20:40:28 +08:00
|
|
|
|
constructor(config: Partial<ExtensionConfig<Options>> = {}) {
|
2020-11-16 06:25:25 +08:00
|
|
|
|
this.config = {
|
|
|
|
|
...this.config,
|
2020-10-21 21:17:05 +08:00
|
|
|
|
...config,
|
2020-11-16 06:25:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-16 04:03:45 +08:00
|
|
|
|
this.name = this.config.name
|
2020-11-16 06:25:25 +08:00
|
|
|
|
this.options = this.config.defaultOptions
|
2020-09-09 05:44:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-15 20:40:28 +08:00
|
|
|
|
static create<O>(config: Partial<ExtensionConfig<O>> = {}) {
|
2021-02-10 16:59:35 +08:00
|
|
|
|
return new Extension<O>(config)
|
2020-11-16 06:25:25 +08:00
|
|
|
|
}
|
2020-04-13 20:03:39 +08:00
|
|
|
|
|
2021-01-20 05:29:46 +08:00
|
|
|
|
configure(options: Partial<Options> = {}) {
|
2021-04-15 20:40:28 +08:00
|
|
|
|
this.options = mergeDeep(this.options, options) as Options
|
2020-11-16 16:43:17 +08:00
|
|
|
|
|
|
|
|
|
return this
|
2019-12-17 06:20:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-14 15:48:38 +08:00
|
|
|
|
extend<ExtendedOptions = Options>(extendedConfig: Partial<ExtensionConfig<ExtendedOptions>> = {}) {
|
2021-04-15 20:40:28 +08:00
|
|
|
|
const extension = new Extension<ExtendedOptions>(extendedConfig)
|
2021-04-12 17:11:02 +08:00
|
|
|
|
|
2021-04-14 15:48:38 +08:00
|
|
|
|
extension.parent = this
|
2021-04-15 20:40:28 +08:00
|
|
|
|
|
|
|
|
|
this.child = extension
|
|
|
|
|
|
2021-04-16 04:03:45 +08:00
|
|
|
|
extension.name = extendedConfig.name
|
|
|
|
|
? extendedConfig.name
|
2021-04-18 03:25:29 +08:00
|
|
|
|
: extension.parent.name
|
2021-04-16 04:03:45 +08:00
|
|
|
|
|
2021-04-18 03:25:29 +08:00
|
|
|
|
extension.options = extendedConfig.defaultOptions
|
|
|
|
|
? extendedConfig.defaultOptions
|
|
|
|
|
: extension.parent.options
|
2021-04-12 17:11:02 +08:00
|
|
|
|
|
|
|
|
|
return extension
|
2020-11-16 06:25:25 +08:00
|
|
|
|
}
|
2019-12-17 06:20:05 +08:00
|
|
|
|
}
|