mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
import type { App, Directive } from 'vue'
|
|
|
|
interface CopyHTMLElement extends HTMLElement {
|
|
_copyText: string
|
|
}
|
|
|
|
export function install(app: App) {
|
|
const { isSupported, copy } = useClipboard()
|
|
const permissionWrite = usePermission('clipboard-write')
|
|
|
|
function clipboardEnable() {
|
|
if (!isSupported.value) {
|
|
window.$message.error('Your browser does not support Clipboard API')
|
|
return false
|
|
}
|
|
|
|
if (permissionWrite.value !== 'granted') {
|
|
window.$message.error('Currently not permitted to use Clipboard API')
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
function copyHandler(this: any) {
|
|
if (!clipboardEnable())
|
|
return
|
|
copy(this._copyText)
|
|
window.$message.success('复制成功')
|
|
}
|
|
|
|
function updataClipboard(el: CopyHTMLElement, text: string) {
|
|
el._copyText = text
|
|
el.addEventListener('click', copyHandler)
|
|
}
|
|
|
|
const copyDirective: Directive<CopyHTMLElement, string> = {
|
|
mounted(el, binding) {
|
|
updataClipboard(el, binding.value)
|
|
},
|
|
updated(el, binding) {
|
|
updataClipboard(el, binding.value)
|
|
},
|
|
unmounted(el) {
|
|
el.removeEventListener('click', copyHandler)
|
|
},
|
|
}
|
|
app.directive('copy', copyDirective)
|
|
}
|