refactor(editor): embed iframe block surface toolbar extension (#11193)

This commit is contained in:
donteatfriedrice
2025-03-26 08:38:06 +00:00
parent b5945c7e7d
commit c5624bfd13
3 changed files with 203 additions and 16 deletions

View File

@@ -1081,5 +1081,14 @@ export const createCustomToolbarExtension = (
id: BlockFlavourIdentifier('custom:affine:embed-iframe'),
config: embedIframeToolbarConfig,
}),
ToolbarModuleExtension({
id: BlockFlavourIdentifier('custom:affine:surface:embed-iframe'),
config: {
actions: [embedIframeToolbarConfig.actions].flat(),
when: ctx => ctx.getSurfaceModels().length === 1,
},
}),
];
};