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

166 lines
3.9 KiB
TypeScript
Raw Normal View History

2019-12-08 07:16:44 +08:00
import {EditorState, Plugin} from "prosemirror-state"
import {EditorView} from "prosemirror-view"
2020-03-04 17:21:48 +08:00
import {Schema, DOMParser, DOMSerializer} from "prosemirror-model"
2019-12-08 07:16:44 +08:00
// @ts-ignore
import {schema} from "prosemirror-schema-basic"
// @ts-ignore
import {addListNodes} from "prosemirror-schema-list"
// @ts-ignore
import {exampleSetup} from "prosemirror-example-setup"
2019-12-17 06:51:18 +08:00
import elementFromString from './utils/elementFromString'
2020-03-05 04:45:49 +08:00
import injectCSS from './utils/injectCSS'
2019-12-17 06:51:18 +08:00
2019-12-17 06:20:05 +08:00
type EditorContent = string | JSON
2020-03-05 05:40:08 +08:00
interface Options {
element?: Node
2019-12-17 06:20:05 +08:00
content: EditorContent
2020-03-05 05:40:08 +08:00
injectCSS: Boolean
2019-12-08 07:16:44 +08:00
}
2019-12-17 06:20:05 +08:00
2019-12-08 07:16:44 +08:00
export class Editor {
private lastCommand = Promise.resolve()
private schema: Schema = new Schema({
nodes: addListNodes(schema.spec.nodes, "paragraph block*", "block"),
marks: schema.spec.marks
})
selection = { from: 0, to: 0 }
view: EditorView
2020-03-05 05:40:08 +08:00
options: Options = {
content: '',
injectCSS: true,
}
2019-12-08 07:16:44 +08:00
2020-03-05 05:40:08 +08:00
constructor(options: Options) {
this.options = { ...this.options, ...options }
2019-12-08 07:16:44 +08:00
this.view = this.createView()
2020-03-05 04:23:18 +08:00
this.registerCommand('focus', require('./commands/focus').default)
this.registerCommand('insertText', require('./commands/insertText').default)
this.registerCommand('insertHTML', require('./commands/insertHTML').default)
2020-03-05 04:45:49 +08:00
2020-03-05 05:40:08 +08:00
if (this.options.injectCSS) {
injectCSS(require('./style.css'))
}
2019-12-08 07:16:44 +08:00
}
get state() {
return this.view.state
}
private createState() {
return EditorState.create({
doc: this.createDocument(this.options.content),
plugins: [
...exampleSetup({schema: this.schema}),
],
})
}
private createView() {
return new EditorView(this.options.element, {
state: this.createState(),
dispatchTransaction: this.dispatchTransaction.bind(this),
})
}
private chainCommand = (method: Function) => (...args: any) => {
this.lastCommand = this.lastCommand
.then(() => method.apply(this, args))
.catch(console.error)
return this
}
2019-12-17 06:20:05 +08:00
private createDocument(content: EditorContent): any {
2019-12-08 07:16:44 +08:00
// if (content === null) {
// return this.schema.nodeFromJSON(this.options.emptyDocument)
// }
// if (typeof content === 'object') {
// try {
// return this.schema.nodeFromJSON(content)
// } catch (error) {
// console.warn('[tiptap warn]: Invalid content.', 'Passed value:', content, 'Error:', error)
// return this.schema.nodeFromJSON(this.options.emptyDocument)
// }
// }
if (typeof content === 'string') {
2019-12-17 06:51:18 +08:00
return DOMParser
.fromSchema(this.schema)
.parse(elementFromString(content))
2019-12-08 07:16:44 +08:00
}
return false
}
private dispatchTransaction(transaction: any): void {
2020-03-05 05:40:08 +08:00
const state = this.state.apply(transaction)
this.view.updateState(state)
const { from, to } = this.state.selection
this.selection = { from, to }
2019-12-08 07:16:44 +08:00
// this.setActiveNodesAndMarks()
// this.emit('transaction', {
// getHTML: this.getHTML.bind(this),
// getJSON: this.getJSON.bind(this),
// state: this.state,
// transaction,
// })
if (!transaction.docChanged || transaction.getMeta('preventUpdate')) {
return
}
// this.emitUpdate(transaction)
}
2019-12-17 06:51:18 +08:00
public registerCommand(name: string, method: Function): Editor {
// @ts-ignore
this[name] = this.chainCommand((...args: any) => {
return new Promise(resolve => {
return method(resolve as Function, this as Editor, ...args as any)
})
})
return this
}
public command(name: string, ...args: any) {
// @ts-ignore
return this[name](...args)
}
2020-03-04 17:21:48 +08:00
public json() {
return this.state.doc.toJSON()
}
public html() {
const div = document.createElement('div')
const fragment = DOMSerializer
.fromSchema(this.schema)
.serializeFragment(this.state.doc.content)
div.appendChild(fragment)
return div.innerHTML
}
2020-03-05 04:45:49 +08:00
public destroy() {
if (!this.view) {
return
}
this.view.destroy()
}
2019-12-08 07:16:44 +08:00
}