Editor Has Block

1.0.0Last update Dec 7, 2024
by@krishn404

Transform Editor.hasBlock to Editor.nodes

This codemod replaces occurrences of Editor.hasBlock with the equivalent Editor.nodes structure. The transformation updates the code to use a more modern API, ensuring compatibility and improved functionality.

// Before (v0.88) - Editor.hasBlock usage

if (Editor.hasBlock(editor, 'paragraph')) {
// do something
}

After (v0.104) - Alternative approach using Editor.nodes

if (Editor.nodes(editor, {
match: n => Element.isElement(n) && n.type === 'paragraph'
}).next().done === false) {
// do something
}

Build custom codemods

Use AI-powered codemod studio and automate undifferentiated tasks for yourself, colleagues or the community

background illustrationGet Started Now