Eduard Kuzmenko
4 years ago
4 changed files with 77 additions and 26 deletions
@ -0,0 +1,38 @@
@@ -0,0 +1,38 @@
|
||||
// https://stackoverflow.com/a/30810322
|
||||
function fallbackCopyTextToClipboard(text: string) { |
||||
var textArea = document.createElement("textarea"); |
||||
textArea.value = text; |
||||
|
||||
// Avoid scrolling to bottom
|
||||
textArea.style.top = "0"; |
||||
textArea.style.left = "0"; |
||||
textArea.style.position = "fixed"; |
||||
|
||||
document.body.appendChild(textArea); |
||||
textArea.focus(); |
||||
textArea.select(); |
||||
|
||||
try { |
||||
document.execCommand('copy'); |
||||
//const successful = document.execCommand('copy');
|
||||
//const msg = successful ? 'successful' : 'unsuccessful';
|
||||
//console.log('Fallback: Copying text command was ' + msg);
|
||||
} catch(err) { |
||||
//console.error('Fallback: Oops, unable to copy', err);
|
||||
} |
||||
|
||||
document.body.removeChild(textArea); |
||||
} |
||||
|
||||
export function copyTextToClipboard(text: string) { |
||||
if(!navigator.clipboard) { |
||||
fallbackCopyTextToClipboard(text); |
||||
return; |
||||
} |
||||
|
||||
navigator.clipboard.writeText(text);/* .then(function() { |
||||
console.log('Async: Copying to clipboard was successful!'); |
||||
}, function(err) { |
||||
console.error('Async: Could not copy text: ', err); |
||||
}); */ |
||||
} |
Loading…
Reference in new issue