Skip to content

Instantly share code, notes, and snippets.

@prappo
Created February 23, 2021 12:04
Show Gist options
  • Save prappo/b2b303545a0e01875028d546af1e5ecb to your computer and use it in GitHub Desktop.
Save prappo/b2b303545a0e01875028d546af1e5ecb to your computer and use it in GitHub Desktop.
Grapesjs Search blocks
var bm = editor.BlockManager;
var blocks = bm.getAll();
bm.render(blocks.filter(
block => {
let blockName = block.attributes.label;
return blockName.toLowerCase().includes(text);
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment