mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
48 lines
1.7 KiB
TypeScript
48 lines
1.7 KiB
TypeScript
// Host clipboard write shared by Web UI copy controls. Success feedback stays
|
|
// with each control; this helper only reports whether the host accepted a write.
|
|
|
|
/**
|
|
* Write text to the host clipboard, preferring the async Clipboard API and
|
|
* falling back to `execCommand('copy')` on hosts (jsdom, insecure contexts)
|
|
* that omit it.
|
|
* @param text - the exact text to place on the clipboard.
|
|
* @returns true only when the host accepted the write.
|
|
*/
|
|
export async function writeClipboard(text: string): Promise<boolean> {
|
|
// lib.dom types clipboard non-optional, but insecure contexts omit it —
|
|
// that runtime gap is exactly what this guard detects.
|
|
/* oxlint-disable-next-line typescript/no-unnecessary-condition */
|
|
if (navigator.clipboard?.writeText) {
|
|
try {
|
|
await navigator.clipboard.writeText(text)
|
|
return true
|
|
} catch {
|
|
// Denied permissions / iframe policy — do not claim success.
|
|
return false
|
|
}
|
|
}
|
|
// jsdom and older hosts: best-effort execCommand path when present.
|
|
// execCommand('copy') is the only clipboard fallback where the async API
|
|
// is missing; deprecated but deliberately retained.
|
|
/* oxlint-disable typescript/no-deprecated */
|
|
const exec = typeof document.execCommand === 'function'
|
|
? document.execCommand.bind(document)
|
|
: undefined
|
|
if (exec === undefined) return false
|
|
const el = document.createElement('textarea')
|
|
el.value = text
|
|
el.setAttribute('readonly', '')
|
|
el.style.position = 'fixed'
|
|
el.style.left = '-9999px'
|
|
document.body.appendChild(el)
|
|
el.select()
|
|
try {
|
|
return exec('copy')
|
|
} catch {
|
|
return false
|
|
} finally {
|
|
el.remove()
|
|
}
|
|
/* oxlint-enable typescript/no-deprecated */
|
|
}
|