javascript - Monaco editor copycutpaste action - Stack Overflow

I'm using monaco editor for my project and I can be able to emit editor events for undoredo actio

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 badges
Add a ment  | 

3 Answers 3

Reset to default 6

You 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,
  }]);
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743693406a4491342.html

相关推荐

  • javascript - Monaco editor copycutpaste action - Stack Overflow

    I'm using monaco editor for my project and I can be able to emit editor events for undoredo actio

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信