blob: b374f9d0a4451119250f0d35458bd1d16d9651f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import { t } from '@nextcloud/l10n'
/**
*
* @param text
*/
function unsecuredCopyToClipboard(text) {
const textArea = document.createElement('textarea')
const textAreaContent = document.createTextNode(text)
textArea.appendChild(textAreaContent)
document.body.appendChild(textArea)
textArea.focus({ preventScroll: true })
textArea.select()
try {
// This is a fallback for browsers that do not support the Clipboard API
// execCommand is deprecated, but it is the only way to copy text to the clipboard in some browsers
document.execCommand('copy')
} catch (err) {
window.prompt(t('core', 'Clipboard not available, please copy manually'), text)
console.error('[ERROR] core: files Unable to copy to clipboard', err)
}
document.body.removeChild(textArea)
}
/**
*
*/
function initFallbackClipboardAPI() {
if (!window.navigator?.clipboard?.writeText) {
console.info('[INFO] core: Clipboard API not available, using fallback')
Object.defineProperty(window.navigator, 'clipboard', {
value: {
writeText: unsecuredCopyToClipboard,
},
writable: false,
})
}
}
export { initFallbackClipboardAPI }
|