2020-10-23 05:21:52 +08:00
|
|
|
|
import {
|
2020-11-16 18:19:43 +08:00
|
|
|
|
DOMOutputSpec,
|
|
|
|
|
NodeSpec,
|
|
|
|
|
Node as ProseMirrorNode,
|
|
|
|
|
NodeType,
|
2020-10-23 05:21:52 +08:00
|
|
|
|
} from 'prosemirror-model'
|
2021-02-17 05:59:45 +08:00
|
|
|
|
import { Command as ProseMirrorCommand } from 'prosemirror-commands'
|
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'
|
2021-01-20 16:18:49 +08:00
|
|
|
|
import mergeDeep from './utilities/mergeDeep'
|
2021-02-10 16:59:35 +08:00
|
|
|
|
import {
|
2021-02-19 17:09:25 +08:00
|
|
|
|
Attributes,
|
|
|
|
|
NodeViewRenderer,
|
2021-02-20 00:35:50 +08:00
|
|
|
|
GlobalAttributes,
|
2021-02-19 17:09:25 +08:00
|
|
|
|
RawCommands,
|
2021-04-12 17:11:02 +08:00
|
|
|
|
ParentConfig,
|
2021-02-10 16:59:35 +08:00
|
|
|
|
} from './types'
|
2021-03-31 19:44:56 +08:00
|
|
|
|
import { NodeConfig } from '.'
|
2020-10-23 05:21:52 +08:00
|
|
|
|
import { Editor } from './Editor'
|
2020-10-21 21:17:05 +08:00
|
|
|
|
|
2021-02-20 00:35:50 +08:00
|
|
|
|
declare module '@tiptap/core' {
|
|
|
|
|
interface NodeConfig<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: {
|
2020-10-22 03:13:38 +08:00
|
|
|
|
options: Options,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['addGlobalAttributes'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
}) => GlobalAttributes | {},
|
2020-10-23 05:21:52 +08:00
|
|
|
|
|
2021-02-20 00:35:50 +08:00
|
|
|
|
/**
|
|
|
|
|
* Raw
|
|
|
|
|
*/
|
|
|
|
|
addCommands?: (this: {
|
2020-10-22 03:13:38 +08:00
|
|
|
|
options: Options,
|
2021-02-20 00:35:50 +08:00
|
|
|
|
editor: Editor,
|
|
|
|
|
type: NodeType,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['addCommands'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
}) => Partial<RawCommands>,
|
2020-10-23 05:21:52 +08:00
|
|
|
|
|
2021-02-20 00:35:50 +08:00
|
|
|
|
/**
|
|
|
|
|
* Keyboard shortcuts
|
|
|
|
|
*/
|
|
|
|
|
addKeyboardShortcuts?: (this: {
|
2021-01-20 03:27:51 +08:00
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
|
|
|
|
type: NodeType,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['addKeyboardShortcuts'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
}) => {
|
|
|
|
|
[key: string]: ProseMirrorCommand,
|
2021-01-20 03:27:51 +08:00
|
|
|
|
},
|
|
|
|
|
|
2021-02-20 00:35:50 +08:00
|
|
|
|
/**
|
|
|
|
|
* Input rules
|
|
|
|
|
*/
|
|
|
|
|
addInputRules?: (this: {
|
2020-10-22 05:32:28 +08:00
|
|
|
|
options: Options,
|
2021-02-20 00:35:50 +08:00
|
|
|
|
editor: Editor,
|
|
|
|
|
type: NodeType,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['addInputRules'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
}) => InputRule[],
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Paste rules
|
|
|
|
|
*/
|
|
|
|
|
addPasteRules?: (this: {
|
2020-11-30 21:12:36 +08:00
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
|
|
|
|
type: NodeType,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['addPasteRules'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
}) => Plugin[],
|
2020-11-30 21:12:36 +08:00
|
|
|
|
|
2021-02-20 00:35:50 +08:00
|
|
|
|
/**
|
|
|
|
|
* ProseMirror plugins
|
|
|
|
|
*/
|
|
|
|
|
addProseMirrorPlugins?: (this: {
|
2020-11-30 21:12:36 +08:00
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
|
|
|
|
type: NodeType,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['addProseMirrorPlugins'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
}) => Plugin[],
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Extend Node Schema
|
|
|
|
|
*/
|
|
|
|
|
extendNodeSchema?: ((
|
|
|
|
|
this: {
|
|
|
|
|
options: Options,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['extendNodeSchema'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
},
|
|
|
|
|
extension: Node,
|
|
|
|
|
) => {
|
|
|
|
|
[key: string]: any,
|
|
|
|
|
}) | null,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Extend Mark Schema
|
|
|
|
|
*/
|
|
|
|
|
extendMarkSchema?: ((
|
|
|
|
|
this: {
|
|
|
|
|
options: Options,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['extendMarkSchema'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
},
|
|
|
|
|
extension: Node,
|
|
|
|
|
) => {
|
|
|
|
|
[key: string]: any,
|
|
|
|
|
}) | null,
|
|
|
|
|
|
2021-04-02 06:07:40 +08:00
|
|
|
|
/**
|
|
|
|
|
* The editor is not ready yet.
|
|
|
|
|
*/
|
|
|
|
|
onBeforeCreate?: ((this: {
|
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
|
|
|
|
type: NodeType,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<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: {
|
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
|
|
|
|
type: NodeType,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['onCreate'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
}) => void) | null,
|
2020-11-30 21:12:36 +08:00
|
|
|
|
|
2021-02-20 00:35:50 +08:00
|
|
|
|
/**
|
|
|
|
|
* The content has changed.
|
|
|
|
|
*/
|
|
|
|
|
onUpdate?: ((this: {
|
2020-11-30 21:12:36 +08:00
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
|
|
|
|
type: NodeType,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['onUpdate'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
}) => void) | null,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The selection has changed.
|
|
|
|
|
*/
|
2021-04-08 04:07:36 +08:00
|
|
|
|
onSelectionUpdate?: ((this: {
|
2021-02-20 00:35:50 +08:00
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
|
|
|
|
type: NodeType,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['onSelectionUpdate'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
}) => void) | null,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The editor state has changed.
|
|
|
|
|
*/
|
|
|
|
|
onTransaction?: ((
|
|
|
|
|
this: {
|
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
|
|
|
|
type: NodeType,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['onTransaction'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
},
|
|
|
|
|
props: {
|
|
|
|
|
transaction: Transaction,
|
|
|
|
|
},
|
|
|
|
|
) => void) | null,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The editor is focused.
|
|
|
|
|
*/
|
|
|
|
|
onFocus?: ((
|
|
|
|
|
this: {
|
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
|
|
|
|
type: NodeType,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['onFocus'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
},
|
|
|
|
|
props: {
|
|
|
|
|
event: FocusEvent,
|
|
|
|
|
},
|
|
|
|
|
) => void) | null,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The editor isn’t focused anymore.
|
|
|
|
|
*/
|
|
|
|
|
onBlur?: ((
|
|
|
|
|
this: {
|
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
|
|
|
|
type: NodeType,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['onBlur'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
},
|
|
|
|
|
props: {
|
|
|
|
|
event: FocusEvent,
|
|
|
|
|
},
|
|
|
|
|
) => void) | null,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The editor is destroyed.
|
|
|
|
|
*/
|
|
|
|
|
onDestroy?: ((this: {
|
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
|
|
|
|
type: NodeType,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['onDestroy'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
}) => void) | null,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Node View
|
|
|
|
|
*/
|
|
|
|
|
addNodeView?: ((this: {
|
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
|
|
|
|
type: NodeType,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['addNodeView'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
}) => NodeViewRenderer) | null,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* TopNode
|
|
|
|
|
*/
|
|
|
|
|
topNode?: boolean,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Content
|
|
|
|
|
*/
|
2021-04-12 17:11:02 +08:00
|
|
|
|
content?: NodeSpec['content'] | ((this: {
|
|
|
|
|
options: Options,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['content'],
|
2021-04-12 17:11:02 +08:00
|
|
|
|
}) => NodeSpec['content']),
|
2021-02-20 00:35:50 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Marks
|
|
|
|
|
*/
|
2021-04-12 17:11:02 +08:00
|
|
|
|
marks?: NodeSpec['marks'] | ((this: {
|
|
|
|
|
options: Options,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['marks'],
|
2021-04-12 17:11:02 +08:00
|
|
|
|
}) => NodeSpec['marks']),
|
2021-02-20 00:35:50 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Group
|
|
|
|
|
*/
|
2021-04-12 17:11:02 +08:00
|
|
|
|
group?: NodeSpec['group'] | ((this: {
|
|
|
|
|
options: Options,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['group'],
|
2021-04-12 17:11:02 +08:00
|
|
|
|
}) => NodeSpec['group']),
|
2021-02-20 00:35:50 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Inline
|
|
|
|
|
*/
|
2021-04-12 17:11:02 +08:00
|
|
|
|
inline?: NodeSpec['inline'] | ((this: {
|
|
|
|
|
options: Options,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['inline'],
|
2021-04-12 17:11:02 +08:00
|
|
|
|
}) => NodeSpec['inline']),
|
2021-02-20 00:35:50 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Atom
|
|
|
|
|
*/
|
2021-04-12 17:11:02 +08:00
|
|
|
|
atom?: NodeSpec['atom'] | ((this: {
|
|
|
|
|
options: Options,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['atom'],
|
2021-04-12 17:11:02 +08:00
|
|
|
|
}) => NodeSpec['atom']),
|
2021-02-20 00:35:50 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Selectable
|
|
|
|
|
*/
|
2021-04-12 17:11:02 +08:00
|
|
|
|
selectable?: NodeSpec['selectable'] | ((this: {
|
|
|
|
|
options: Options,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['selectable'],
|
2021-04-12 17:11:02 +08:00
|
|
|
|
}) => NodeSpec['selectable']),
|
2021-02-20 00:35:50 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Draggable
|
|
|
|
|
*/
|
2021-04-12 17:11:02 +08:00
|
|
|
|
draggable?: NodeSpec['draggable'] | ((this: {
|
|
|
|
|
options: Options,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['draggable'],
|
2021-04-12 17:11:02 +08:00
|
|
|
|
}) => NodeSpec['draggable']),
|
2021-02-20 00:35:50 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Code
|
|
|
|
|
*/
|
2021-04-12 17:11:02 +08:00
|
|
|
|
code?: NodeSpec['code'] | ((this: {
|
|
|
|
|
options: Options,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['code'],
|
2021-04-12 17:11:02 +08:00
|
|
|
|
}) => NodeSpec['code']),
|
2021-02-20 00:35:50 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Defining
|
|
|
|
|
*/
|
2021-04-12 17:11:02 +08:00
|
|
|
|
defining?: NodeSpec['defining'] | ((this: {
|
|
|
|
|
options: Options,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['defining'],
|
2021-04-12 17:11:02 +08:00
|
|
|
|
}) => NodeSpec['defining']),
|
2021-02-20 00:35:50 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Isolating
|
|
|
|
|
*/
|
2021-04-12 17:11:02 +08:00
|
|
|
|
isolating?: NodeSpec['isolating'] | ((this: {
|
|
|
|
|
options: Options,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['isolating'],
|
2021-04-12 17:11:02 +08:00
|
|
|
|
}) => NodeSpec['isolating']),
|
2021-02-20 00:35:50 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Parse HTML
|
|
|
|
|
*/
|
|
|
|
|
parseHTML?: (
|
|
|
|
|
this: {
|
|
|
|
|
options: Options,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['parseHTML'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
},
|
|
|
|
|
) => NodeSpec['parseDOM'],
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Render HTML
|
|
|
|
|
*/
|
|
|
|
|
renderHTML?: ((
|
|
|
|
|
this: {
|
|
|
|
|
options: Options,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['renderHTML'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
},
|
|
|
|
|
props: {
|
|
|
|
|
node: ProseMirrorNode,
|
|
|
|
|
HTMLAttributes: { [key: string]: any },
|
|
|
|
|
}
|
|
|
|
|
) => DOMOutputSpec) | null,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Render Text
|
|
|
|
|
*/
|
|
|
|
|
renderText?: ((
|
|
|
|
|
this: {
|
|
|
|
|
options: Options,
|
|
|
|
|
editor: Editor,
|
|
|
|
|
type: NodeType,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['renderText'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
},
|
|
|
|
|
props: {
|
|
|
|
|
node: ProseMirrorNode,
|
|
|
|
|
}
|
|
|
|
|
) => string) | null,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add Attributes
|
|
|
|
|
*/
|
|
|
|
|
addAttributes?: (
|
|
|
|
|
this: {
|
|
|
|
|
options: Options,
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: ParentConfig<NodeConfig<Options>>['addAttributes'],
|
2021-02-20 00:35:50 +08:00
|
|
|
|
},
|
|
|
|
|
) => Attributes | {},
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-10-21 21:17:05 +08:00
|
|
|
|
|
2021-02-10 16:59:35 +08:00
|
|
|
|
export class Node<Options = any> {
|
2020-11-20 04:08:25 +08:00
|
|
|
|
type = 'node'
|
|
|
|
|
|
2021-02-19 17:54:47 +08:00
|
|
|
|
config: NodeConfig = {
|
2020-11-16 06:25:25 +08:00
|
|
|
|
name: 'node',
|
2021-04-08 00:29:16 +08:00
|
|
|
|
priority: 100,
|
2020-11-16 06:25:25 +08:00
|
|
|
|
defaultOptions: {},
|
|
|
|
|
}
|
2020-03-30 18:40:25 +08:00
|
|
|
|
|
2021-04-15 20:40:28 +08:00
|
|
|
|
options: Options
|
2021-04-12 17:11:02 +08:00
|
|
|
|
|
2021-04-15 20:40:28 +08:00
|
|
|
|
parent: Node | null = null
|
2020-11-16 06:25:25 +08:00
|
|
|
|
|
2021-04-15 20:40:28 +08:00
|
|
|
|
child: Node | null = null
|
|
|
|
|
|
|
|
|
|
constructor(config: Partial<NodeConfig<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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.options = this.config.defaultOptions
|
2020-09-09 05:44:45 +08:00
|
|
|
|
}
|
2020-10-10 04:59:25 +08:00
|
|
|
|
|
2021-04-15 20:40:28 +08:00
|
|
|
|
static create<O>(config: Partial<NodeConfig<O>> = {}) {
|
2021-02-10 16:59:35 +08:00
|
|
|
|
return new Node<O>(config)
|
2020-11-16 06:25:25 +08:00
|
|
|
|
}
|
2020-10-21 21:17:05 +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
|
2020-10-10 04:59:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-15 20:40:28 +08:00
|
|
|
|
extend<ExtendedOptions = Options>(extendedConfig: Partial<NodeConfig<ExtendedOptions>> = {}) {
|
|
|
|
|
const extension = new Node<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
|
|
|
|
|
|
|
|
|
|
extension.options = {
|
|
|
|
|
...extension.parent.options,
|
|
|
|
|
...extension.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
|
|
|
|
}
|