如何从language_tools外部在React ace编辑器中添加自定义完成器

时间:2019-08-22 08:35:25

标签: ace-editor react-ace

如何使用addCompleter或setCompleter之类的功能在index.js中的基于React的ace编辑器中添加自定义完成器

import { render } from "react-dom";
import AceEditor from "../src/ace";
import "brace/mode/jsx";
import 'brace/mode/HCPCustomCalcs'
import 'brace/theme/monokai'
import "brace/snippets/HCPCustomCalcs";
import "brace/ext/language_tools";
const defaultValue = `function onLoad(editor) {
  console.log("i've loaded");
}`;
class App extends Component {

  constructor(props, context) {
    super(props, context);
    this.onChange = this.onChange.bind(this);
}
onChange(newValue) {
    console.log('changes:', newValue);
}
  render() {

      return (
          <div>
              <AceEditor
                  mode="HCPCustomCalcs"
                  theme="monokai"
                  width={ '100%' }
                  height={ '100vh' }
                  onChange={this.onChange}
                  name="UNIQUE_ID_OF_DIV"
                  editorProps={{
                      $blockScrolling: true
                  }}
                  enableBasicAutocompletion={true}
                  enableLiveAutocompletion={true}
                  enableSnippets={true}
              />
          </div>
      );
  }
}
render(<App />, document.getElementById("example"));

我想从这里添加我的自定义完成器。我的完成器就是这样

var myCompleter ={
getCompletions: function(editor, session, pos, prefix, callback) {
        var completions = [];
        ["word1", "word2"].forEach(function(w) {

            completions.push({
                value: w,
                meta: "my completion",

            });
        });
        callback(null, completions);
    }
})}

在普通的Ace编辑器中,它很简单。只需调用

var langTools = ace.require("ace/ext/language_tools")
langTools.addCompleter(myCompleter1);```

1 个答案:

答案 0 :(得分:1)

您可以执行与普通Ace编辑器非常相似的操作。

const langTools = ace.acequire('ace/ext/language_tools');

langTools.addCompleter(myCompleter);

使用ace.acequire可以访问隐藏的ACE功能。这里的一些文档:https://github.com/thlorenz/brace/wiki/Advanced:-Accessing-somewhat-hidden-ACE-features