admin管理员组文章数量:1339459
I'm trying to configure the Monaco Editor in a way that certain regions of the textcontent are readonly. More precise, I want the first and last line to be readonly. Example below:
public something(someArgument) { // This is readonly
// This is where the user can put his code
// more user code...
} // readonly again
I already did something similar with the Ace Editor but I can't figure out a way to do this with Monaco.
There is a ModelContentChangedEvent
that you can register a listener on but it's fired after the change happened (so too late to prevent anything).
Does someone with more experience with Monaco got a idea how to do this?
Thanks in advance!
I'm trying to configure the Monaco Editor in a way that certain regions of the textcontent are readonly. More precise, I want the first and last line to be readonly. Example below:
public something(someArgument) { // This is readonly
// This is where the user can put his code
// more user code...
} // readonly again
I already did something similar with the Ace Editor but I can't figure out a way to do this with Monaco.
There is a ModelContentChangedEvent
that you can register a listener on but it's fired after the change happened (so too late to prevent anything).
Does someone with more experience with Monaco got a idea how to do this?
Thanks in advance!
Share Improve this question asked Oct 27, 2017 at 20:10 custicusti 5631 gold badge4 silver badges11 bronze badges 3- Did you find a solution for this question? – Sajith Edirisinghe Commented Dec 11, 2017 at 5:28
- 1 github./Microsoft/monaco-editor/issues/953 – Murat Karagöz Commented Sep 27, 2018 at 10:50
- Did you find a solution for this question? – G Naga Subrahmanyam Commented Jul 12, 2020 at 11:19
2 Answers
Reset to default 5I have created a plugin for adding range restrictions in the monaco editor. This plugin is created to solve this issue #953 of monaco editor.
Detailed Documentation and Playground for this plugin is available here
NPM Package
npm install constrained-editor-plugin@latest
Dependencies
<!-- Optional Dependency -->
<link rel="stylesheet" href="./node_modules/constrained-editor-plugin/constrained-editor-plugin.css">
<!-- Required Dependency -->
<script src="./node_modules/constrained-editor-plugin/constrainedEditorPlugin.js" ></script>
Sample Snippet
require.config({ paths: { vs: '../node_modules/monaco-editor/min/vs' } });
require(['vs/editor/editor.main'], function () {
const container = document.getElementById('container')
const editorInstance = monaco.editor.create(container, {
value: [
'const utils = {};',
'function addKeysToUtils(){',
'',
'}',
'addKeysToUtils();'
].join('\n'),
language: 'javascript'
});
const model = editorInstance.getModel();
// - Configuration for the Constrained Editor : Starts Here
const constrainedInstance = constrainedEditor(monaco);
constrainedInstance.initializeIn(editorInstance);
constrainedInstance.addRestrictionsTo(model, [{
// range : [ startLine, startColumn, endLine, endColumn ]
range: [1, 7, 1, 12], // Range of Util Variable name
label: 'utilName',
validate: function (currentlyTypedValue, newRange, info) {
const noSpaceAndSpecialChars = /^[a-z0-9A-Z]*$/;
return noSpaceAndSpecialChars.test(currentlyTypedValue);
}
}, {
range: [3, 1, 3, 1], // Range of Function definition
allowMultiline: true,
label: 'funcDefinition'
}]);
// - Configuration for the Constrained Editor : Ends Here
});
Just change cursor position whenever it hits your readonly range:
// line 1 & 2 is readonly:
editor.onDidChangeCursorPosition(function (e) {
if (e.position.lineNumber < 3) {
this.editor.setPosition({
lineNumber:3,
column: 1
});
}
});
本文标签: javascriptMonaco EditorHow to make some areas readonlyStack Overflow
版权声明:本文标题:javascript - Monaco Editor - How to make some areas readonly - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743589511a2506943.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论