Block Menu
Provides quick access to block-specific actions.
Installation
npm install @udecode/plate-selection @udecode/plate-node-id
Usage
import { BlockMenuPlugin } from '@udecode/plate-selection/react';
import { NodeIdPlugin } from '@udecode/plate-node-id';
const plugins = [
// ...otherPlugins,
NodeIdPlugin,
BlockSelectionPlugin.configure({
options: {
enableContextMenu: true,
},
}),
BlockMenuPlugin.configure({
render: { aboveEditable: BlockContextMenu },
}),
]
要控制特定元素的上下文菜单的打开,你可以使用 data-plate-open-context-menu
属性:
<PlateElement data-plate-open-context-menu={false} {...props}>
{children}
</PlateElement>
通常,我们只需要阻止在 <Editor />
的内边距上右键点击。
示例
Plate UI
参考上面的预览。
Plate Plus
插件
BlockMenuPlugin
块菜单状态管理。
API
editor.api.blockMenu.hide
隐藏块菜单。
editor.api.blockMenu.show
显示特定块的菜单。
Parameters
Collapse all
要显示菜单的块的 ID。
显示菜单的位置。
editor.api.blockMenu.showContextMenu
显示特定块的上下文菜单。
Parameters
Collapse all
要显示上下文菜单的块的 ID。
显示上下文菜单的位置。