基于编辑器宽度的 TinyMCE 工具栏选项

TinyMCE toolbar options based on the editor's width

提问人:Mario Nezmah 提问时间:11/13/2023 更新时间:11/13/2023 访问量:6

问:

有没有办法根据编辑器的宽度在TinyMCE中设置工具栏项目? 所以我想要的是有条件地设置工具栏道具,如下所示:

const mobileToolbar = ['bold', 'italic', 'underline']
const desktopToolbar = ['redo', 'undo', 'bold', 'italic']

<Editor
   toolbar={ width < 1024 ? mobileToolbar : desktopToolbar }

我知道对象上有一个选项。但这仅适用于实际的移动设备,如果屏幕尺寸小于一定数量的像素,则不适用。mobileinit

顺便说一句,我正在使用 React,所以如果有人有可行的解决方案,请提供它。

reactjs tinymce

评论


答: 暂无答案