0

我正在尝试在光标位置插入以下块:

插入文本

我使用以下方法来获取确切的光标位置:

  • this.jodit.selectionStart
  • window.getSelection().getRangeAt(0).startOffset

我的功能 buttonClick 将其插入行内,但当我尝试插入时无法重新捕获更改的光标位置。

import React from "react";
import ReactDOM from "react-dom";
import jodit from "jodit";
import "./App.css";
import JoditEditor from "jodit-react";

class App extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      content: "",
      pos: 0,
    };
  }

  updateContent = (value) => {
    this.setState({
      content: value,
      pos: window.getSelection().getRangeAt(0).startOffset,
    });
  };
  buttonClick = (event) => {
    var abc = this.state.content.slice(
      this.jodit.selectionStart,
      this.jodit.selectionEnd + 1
    );
    var startString = this.state.content.substring(0, this.state.pos + 3);
    var endString = this.state.content.substring(this.jodit.selectionEnd);
    console.log("abc" + startString + "::::::" + endString);
    this.setState({
      content: startString + '<a href="#">Inserted Text</a>' + endString,
    });
  };
  config = {
    readonly: false,
  };
  /**
   * @property Jodit jodit instance of native Jodit
   */
  jodit;
  setRef = (jodit) => (this.jodit = jodit);
  render() {
    return (
      <>
        <JoditEditor
          ref={this.setRef}
          value={this.state.content}
          config={this.config}
          tabIndex={1} // tabIndex of textarea
          onBlur={this.onFocusRemove}
          onChange={this.updateContent}
        />
        <button onClick={this.buttonClick}>insert</button>
      </>
    );
  }
}

export default App;

我还用 this.jodit.selectionstart 而不是window.getSelection().getRangeAt(0).startOffset 尝试了上面的代码,但问题仍然存在。

根据我的分析,每当我们输入内容时,onChange 处理程序都会更新光标位置,但是当我们更改光标位置时,它不会再次更新它。

4

1 回答 1

0

在配置对象中添加以下内容

config = {
      readonly: false, // all options from https://xdsoft.net/jodit/doc/
      events: 
           { 
            afterInit: (instance) => { this.jodit = instance; } 

}


buttonClick = (event) => { 
     this.jodit.selection.insertHTML('<a href="">Anchor Tag</a>'); 
};

这样,您将在 afterInit 之后获得编辑器的实例。这应该可以解决您的问题。

于 2021-04-04T10:27:40.227 回答