-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: resolve clipboard.writeText failure under HTTP protocol (#12936)
- Loading branch information
Showing
2 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
export async function writeTextToClipboard(text: string): Promise<void> { | ||
if (navigator.clipboard && navigator.clipboard.writeText) | ||
return navigator.clipboard.writeText(text) | ||
|
||
return fallbackCopyTextToClipboard(text) | ||
} | ||
|
||
async function fallbackCopyTextToClipboard(text: string): Promise<void> { | ||
const textArea = document.createElement('textarea') | ||
textArea.value = text | ||
textArea.style.position = 'fixed' // Avoid scrolling to bottom | ||
document.body.appendChild(textArea) | ||
textArea.focus() | ||
textArea.select() | ||
try { | ||
const successful = document.execCommand('copy') | ||
if (successful) | ||
return Promise.resolve() | ||
|
||
return Promise.reject(new Error('document.execCommand failed')) | ||
} | ||
catch (err) { | ||
return Promise.reject(convertAnyToError(err)) | ||
} | ||
finally { | ||
document.body.removeChild(textArea) | ||
} | ||
} | ||
|
||
function convertAnyToError(err: any): Error { | ||
if (err instanceof Error) | ||
return err | ||
|
||
return new Error(`Caught: ${String(err)}`) | ||
} |