refactoring
This commit is contained in:
@@ -8,7 +8,8 @@ declare module '../Editor' {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function insertHTML(next: Function, { state, view }: Editor, value: string): void {
|
export default function insertHTML(next: Function, editor: Editor, value: string): void {
|
||||||
|
const { view, state } = editor
|
||||||
const { selection } = state
|
const { selection } = state
|
||||||
const element = elementFromString(value)
|
const element = elementFromString(value)
|
||||||
const slice = DOMParser.fromSchema(state.schema).parseSlice(element)
|
const slice = DOMParser.fromSchema(state.schema).parseSlice(element)
|
||||||
|
|||||||
@@ -6,7 +6,8 @@ declare module '../Editor' {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function insertText(next: Function, { state, view }: Editor, value: string): void {
|
export default function insertText(next: Function, editor: Editor, value: string): void {
|
||||||
|
const { view, state } = editor
|
||||||
const transaction = state.tr.insertText(value)
|
const transaction = state.tr.insertText(value)
|
||||||
|
|
||||||
view.dispatch(transaction)
|
view.dispatch(transaction)
|
||||||
|
|||||||
Reference in New Issue
Block a user