canvas-editor-plugin icon indicating copy to clipboard operation
canvas-editor-plugin copied to clipboard

能否提供输入联想短语/关键字提醒插件?

Open gmfu opened this issue 2 years ago • 1 comments

效果图如下:

image image image

gmfu avatar Nov 07 '23 01:11 gmfu

等待官方实现时间较长,且业务无法定制,可通过编辑器提供的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)
      }
    }
  })

Hufe921 avatar Nov 08 '23 14:11 Hufe921