tiptap/packages/tiptap-core/src/Extension.ts

48 lines
698 B
TypeScript
Raw Normal View History

2019-12-17 06:20:05 +08:00
import { Editor } from './Editor'
2020-03-06 03:30:58 +08:00
export default abstract class Extension {
2019-12-17 06:20:05 +08:00
constructor(options = {}) {
this.options = {
...this.defaultOptions,
...options,
}
}
2020-03-06 05:40:02 +08:00
editor!: Editor
options: { [key: string]: any } = {}
defaultOptions: { [key: string]: any } = {}
public abstract name: string
2020-03-06 18:02:35 +08:00
// public abstract plugins: any
2020-03-06 05:40:02 +08:00
public type = 'extension'
2019-12-17 06:20:05 +08:00
2020-03-08 06:37:58 +08:00
public created() {}
2019-12-17 06:20:05 +08:00
2020-03-08 06:37:58 +08:00
public bindEditor(editor: Editor): void {
2019-12-17 06:20:05 +08:00
this.editor = editor
}
get update(): any {
return () => {}
}
get plugins(): any {
return []
}
inputRules(): any {
return []
}
pasteRules(): any {
return []
}
keys(): any {
return {}
}
}