mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
663 B
26 lines
663 B
import { useClipboard } from '#imports' |
|
|
|
export const useCopy = () => { |
|
/** fallback for copy if clipboard api is not supported */ |
|
const copyFallback = (text: string) => { |
|
const textAreaEl = document.createElement('textarea') |
|
textAreaEl.innerHTML = text |
|
document.body.appendChild(textAreaEl) |
|
textAreaEl.select() |
|
const result = document.execCommand('copy') |
|
document.body.removeChild(textAreaEl) |
|
return result |
|
} |
|
|
|
const { copy: _copy, isSupported } = useClipboard() |
|
|
|
const copy = async (text: string) => { |
|
if (isSupported.value) { |
|
await _copy(text) |
|
} else { |
|
copyFallback(text) |
|
} |
|
} |
|
|
|
return { copy } |
|
}
|
|
|