tiptap/packages/core/src/Extension.ts

114 lines
2.3 KiB
TypeScript
Raw Normal View History

2020-10-23 05:21:52 +08:00
import { MarkType, NodeType } from 'prosemirror-model'
2020-10-22 18:34:49 +08:00
import { Plugin } from 'prosemirror-state'
2020-10-22 15:14:24 +08:00
import { Editor } from './Editor'
2020-10-22 05:55:14 +08:00
import { GlobalAttributes } from './types'
2020-10-21 21:30:34 +08:00
export interface ExtensionSpec<Options = {}, Commands = {}> {
2020-10-22 18:34:49 +08:00
/**
* Default options
*/
2020-10-21 21:17:05 +08:00
defaultOptions?: Options,
2020-10-22 18:34:49 +08:00
/**
* Global attributes
*/
2020-10-23 05:21:52 +08:00
addGlobalAttributes?: (this: {
options: Options,
}) => GlobalAttributes,
2020-10-22 18:34:49 +08:00
/**
* Commands
*/
2020-10-22 17:14:44 +08:00
addCommands?: (this: {
2020-10-21 21:17:05 +08:00
options: Options,
2020-10-22 15:14:24 +08:00
editor: Editor,
2020-10-23 05:21:52 +08:00
type: NodeType | MarkType,
2020-10-22 15:14:24 +08:00
}) => Commands,
2020-10-22 18:34:49 +08:00
/**
* Keyboard shortcuts
*/
2020-10-22 17:14:44 +08:00
addKeyboardShortcuts?: (this: {
2020-10-22 15:42:28 +08:00
options: Options,
editor: Editor,
2020-10-23 05:21:52 +08:00
type: NodeType | MarkType,
2020-10-22 15:42:28 +08:00
}) => {
[key: string]: any
},
2020-10-22 18:34:49 +08:00
/**
* Input rules
*/
addInputRules?: (this: {
options: Options,
editor: Editor,
2020-10-23 05:21:52 +08:00
// type: NodeType | MarkType,
2020-10-22 18:34:49 +08:00
}) => any[],
/**
* Paste rules
*/
addPasteRules?: (this: {
options: Options,
editor: Editor,
2020-10-23 05:21:52 +08:00
type: NodeType | MarkType,
2020-10-22 18:34:49 +08:00
}) => any[],
/**
* ProseMirror plugins
*/
addProseMirrorPlugins?: (this: {
options: Options,
editor: Editor,
2020-10-23 05:21:52 +08:00
type: NodeType | MarkType,
2020-10-22 18:34:49 +08:00
}) => Plugin[],
2020-10-21 21:17:05 +08:00
}
2020-09-24 06:29:05 +08:00
2020-10-22 18:34:49 +08:00
/**
* Extension interface for internal usage
*/
2020-10-21 21:30:34 +08:00
export type Extension = Required<Omit<ExtensionSpec, 'defaultOptions'> & {
type: string,
options: {
[key: string]: any
},
}>
2020-10-22 18:34:49 +08:00
/**
* Default extension
*/
2020-10-22 15:14:24 +08:00
export const defaultExtension: Extension = {
2020-10-21 21:17:05 +08:00
type: 'extension',
options: {},
2020-10-22 17:14:44 +08:00
addGlobalAttributes: () => [],
addCommands: () => ({}),
addKeyboardShortcuts: () => ({}),
2020-10-22 18:34:49 +08:00
addInputRules: () => [],
addPasteRules: () => [],
addProseMirrorPlugins: () => [],
2020-10-21 21:17:05 +08:00
}
2020-09-09 05:44:45 +08:00
2020-10-21 21:17:05 +08:00
export function createExtension<Options extends {}, Commands extends {}>(config: ExtensionSpec<Options, Commands>) {
const extend = <ExtendedOptions = Options, ExtendedCommands = Commands>(extendedConfig: Partial<ExtensionSpec<ExtendedOptions, ExtendedCommands>>) => {
return createExtension({
...config,
...extendedConfig,
} as ExtensionSpec<ExtendedOptions, ExtendedCommands>)
2020-09-09 05:44:45 +08:00
}
2020-10-21 21:17:05 +08:00
const setOptions = (options?: Partial<Options>) => {
const { defaultOptions, ...rest } = config
2020-04-13 20:03:39 +08:00
2020-10-21 21:17:05 +08:00
return {
...defaultExtension,
...rest,
options: {
...defaultOptions,
...options,
} as Options,
}
2019-12-17 06:20:05 +08:00
}
2020-10-21 21:17:05 +08:00
return Object.assign(setOptions, { config, extend })
2019-12-17 06:20:05 +08:00
}