canvas-editor-plugin
canvas-editor-plugin copied to clipboard
能否提供输入联想短语/关键字提醒插件?
效果图如下:
等待官方实现时间较长,且业务无法定制,可通过编辑器提供的api,自行扩展
instance.eventBus.on('contentChange', () => {
const rangeContext = instance.command.getRangeContext()
// 光标闭合
if (rangeContext?.isCollapsed) {
// 特殊符号
if (rangeContext.startElement.value === '@') {
// 弹出框显示
const [{ x, y, height }] = rangeContext.rangeRects
console.log('x, y, height: ', x, y, height)
}
}
})