摩纳哥编辑器可动态调整大小

IT技术 javascript node.js reactjs monaco-editor
2021-05-03 07:01:52

我一直在寻找有关在 Internet 上使用Monaco Editor字段时是否可以模拟 html 标签 textarea 调整大小的讨论,但我找不到一个回答我的问题的人。

React应用程序中使用monaco-editor npm 包你知道这是否容易实现吗?

先感谢您!

解决方案
使用纯 css 我选择了目标 html 元素并添加了这些属性:

div {
  resize: vertical;
  overflow: auto;
}
4个回答

TL;DR:添加automaticLayout: true到编辑器的配置中。

荷兰;公关:

摩纳哥有一个内置的自动调整大小到父容器的功能:

React >= 16.3.0(推荐)

constructor(props){super(props); this.editorDiv = React.createRef();}

render(){
 return <div ref={this.editorDiv} className="editor" ></div>
}

componentDidMount(){
 let editor = monaco.editor.create(this.editorDiv.current, {
        value: "var x = 0;",
        language: 'javascript',
        automaticLayout: true // the important part
      });
}

react<16.3.0

render(){
 return <div ref={el=>{this.editorDiv = el}} className="editor" ></div>
}
 // I use this configuration in the editor:
componentDidMount(){
 let editor = monaco.editor.create(this.editorDiv, {
        value: "var x = 0;",
        language: 'javascript',
        automaticLayout: true // the important part
      });
}

以及编辑器的 CSS(它避免了第一次以 10px 的高度渲染编辑器):

.editor{
 height: 100%;
} 

摩纳哥版本:^0.10.1,最后测试:0.20.0

注意: < 0.20.0 版本:该机制不监听其容器大小的变化,而是轮询它们

@nrayburn-tech(摩纳哥编辑的贡献者):0.20 版对所有浏览器使用 MutationObserver。0.21 及更高版本在支持的浏览器上使用 ResizeObserver,否则,它使用轮询作为后备。

如果你有编辑器的参考,你可以调用 editor.layout() 一些调整大小的事件。例如,在调整窗口大小时:

window.onresize = function (){
    editor.layout();
};

这是个老问题,但使用react-resize-detector解决问题

基于ResizeObserver它完全满足需要(检查浏览器兼容性

组件示例:

import React, { Component } from 'react';
import ReactResizeDetector from 'react-resize-detector';
import * as monaco from 'monaco-editor';

class Editor extends Component {
    constructor(props) {
        super(props)

        this.state = {
            width: 0,
            height: 0,
        }
        this.editor_div = React.createRef()

        this.handle_rezise = this.handle_rezise.bind(this);
    }

    componentDidMount() {
        const editor_model = monaco.editor.createModel('', 'sql');
        this.monaco_editor = monaco.editor.create(this.editor_div.current, this.props.editorOptions);
        this.monaco_editor.setModel(editor_model);
    }

    componentWillUnmount() {
        this.monaco_editor && this.monaco_editor.dispose();
    }

    handle_rezise(width, height) {
        this.monaco_editor.layout({ height, width });
    }

    render() {
        return(
            <div 
                className="editor-container"
                style={{ height: '100%' }}>
                <ReactResizeDetector
                    handleWidth
                    handleHeight
                    onResize={ this.handle_rezise }
                    refreshMode="debounce"
                    refreshRate={100} />
                <div 
                    className="editor"
                    ref={ this.editor_div }
                    style={{ height: '100%' }} />
            </div>
        )
    }
}

export default Editor;

希望有帮助

在我的情况下,我使用的是那个确切的 CSS,但尽管 automaticLayout: true 有效,但我发现过度杀伤(似乎将 DOM 100ms 间隔合并,并且我在文档中打开了几个编辑器。所以我最终手动实现了它:

以防万一,我的需求是不同的:我希望用户调整容器的大小 - 以标准的方式并且在库和性能方面便宜(在代码和性能上)。这就是我所做的:

css容器: resize: vertical; overflow: auto

和这个js:

function installResizeWatcher(el, fn, interval){
  let offset = {width: el.offsetWidth, height: el.offsetHeight}
  setInterval(()=>{
    let newOffset = {width: el.offsetWidth, height: el.offsetHeight}
    if(offset.height!=newOffset.height||offset.width!=newOffset.width){
      offset = newOffset
      fn()
    }
  }, interval)
}
  const typeScriptCodeContainer = document.getElementById('typeScriptCodeContainer')
  typeScriptCodeEditor = monaco.editor.create(typeScriptCodeContainer, Object.assign(editorOptions, {value: example.codeValue}))
  installResizeWatcher(typeScriptCodeContainer, typeScriptCodeEditor.layout.bind(typeScriptCodeEditor), 2000)

是的,2 秒间隔并确保它只注册一次。我看到摩纳哥的自动重新布局有 / 是 100 毫秒的调整大小间隔 - 恕我直言,这太多了。

看看它在行动:https : //typescript-api-playground.glitch.me/?example=2