mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-15 02:59:01 +08:00
fix code decorations again
This commit is contained in:
parent
795e5ecb13
commit
59d37f5697
@ -122,12 +122,14 @@ export default class CodeBlockHighlight extends Node {
|
||||
init(_, { doc }) {
|
||||
return getDecorations(doc)
|
||||
},
|
||||
apply(transaction, decorationSet, oldState) {
|
||||
apply(transaction, decorationSet, oldState, state) {
|
||||
// TODO: find way to cache decorations
|
||||
// see: https://discuss.prosemirror.net/t/how-to-update-multiple-inline-decorations-on-node-change/1493
|
||||
|
||||
const nodeName = state.selection.$head.parent.type.name
|
||||
const previousNodeName = oldState.selection.$head.parent.type.name
|
||||
if (transaction.docChanged && previousNodeName === 'code_block') {
|
||||
|
||||
if (transaction.docChanged && [nodeName, previousNodeName].includes('code_block')) {
|
||||
return getDecorations(transaction.doc)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user