admin管理员组文章数量:1344645
I'm using monaco editor for my project and I can be able to emit editor events for undo/redo actions like so:
editor.getModel().redo();
editor.getModel().undo();
This is a very mon editor, so I think there should be cut/copy/pase actions also, but unfortunately, I don't see similar actions like editor.getModel().cut.. e.t.c.
What have I missed?
I'm using monaco editor for my project and I can be able to emit editor events for undo/redo actions like so:
editor.getModel().redo();
editor.getModel().undo();
This is a very mon editor, so I think there should be cut/copy/pase actions also, but unfortunately, I don't see similar actions like editor.getModel().cut.. e.t.c.
What have I missed?
Share Improve this question asked May 6, 2018 at 13:24 WebArtisanWebArtisan 4,23612 gold badges47 silver badges66 bronze badges3 Answers
Reset to default 6You can trigger editor actions to copy/paste:
editorInstance.trigger('source','editor.action.clipboardCopyAction');
editorInstance.trigger('source','editor.action.clipboardPasteAction');
Actions available can be listed with: editorInstance.getActions().map(a => a.id)
I still haven't figured out what effect the first argument to trigger has, so I have simply provided a string that suggests what triggered the action.
You can use native browser events along with your editor and make sure your editor has 'focus' for those actions:
editor.focus();
document.execCommand('cut'); // copy paste, e.t.c
If you want to use modern APIs, then you can use the Clipboard API as follows
For cut:
function cutOrCopy(editor:monaco.editor.IStandaloneEditor, isCut:boolean) {
editor.focus();
// Get the current selection in the editor.
const selection = editor.getSelection();
if (!selection || selection.isEmpty()) {
navigator.clipboard.writeText("");
return;
}
// Get the text from that selection.
const data = editor.getModel()?.getValueInRange(selection);
// Set the clipboard contents.
navigator.clipboard.writeText(data || "");
if (isCut) {
// This is a cut operation, so replace the selection with an empty string.
editor.executeEdits("clipboard", [{
range: selection,
text: "",
forceMoveMarkers: true,
}]);
}
}
And likewise for paste
async function paste(editor:monaco.editor.IStandaloneEditor) {
editor.focus();
// Get the current clipboard contents
const text = await navigator.clipboard.readText();
// Get the current selection in the editor.
const selection = editor.getSelection();
if (!selection) {
return;
}
// Replace the current contents with the text from the clipboard.
editor.executeEdits("clipboard", [{
range: selection,
text: text,
forceMoveMarkers: true,
}]);
}
本文标签: javascriptMonaco editor copycutpaste actionStack Overflow
版权声明:本文标题:javascript - Monaco editor copycutpaste action - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743693405a2523089.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论