feat: use navigator clipboard to copy text is possible

This commit is contained in:
Andrew Bastin
2021-07-31 20:43:02 -04:00
parent 5275d365cb
commit 369bca90fc

View File

@@ -5,10 +5,14 @@
* @param content The content to be copied
*/
export function copyToClipboard(content: string) {
const dummy = document.createElement("textarea")
document.body.appendChild(dummy)
dummy.value = content
dummy.select()
document.execCommand("copy")
document.body.removeChild(dummy)
if (navigator.clipboard) {
navigator.clipboard.writeText(content)
} else {
const dummy = document.createElement("textarea")
document.body.appendChild(dummy)
dummy.value = content
dummy.select()
document.execCommand("copy")
document.body.removeChild(dummy)
}
}