refactor(hooks): remove clipboard

remove `use clipboard` add `v-copy`
This commit is contained in:
Coffee-crocodile 2023-06-25 13:08:45 +08:00
parent 96fc4c68e7
commit 0eaabd1547
7 changed files with 54 additions and 37 deletions

View File

@ -30,7 +30,7 @@ const toolbarsExclude: ToolbarNames[] = [
<template>
<MdEditor
v-model="data" :theme="theme" read-only :toolbars-exclude="toolbarsExclude"
v-model="data" :theme="theme" :toolbars-exclude="toolbarsExclude"
/>
</template>

View File

@ -48,9 +48,6 @@ const initConfig = {
//
images_upload_handler: imagesUploadHandler,
// file_picker_types: 'file image media', // file image medialinkimageaxupimgsmedia
//
// file_picker_callback: filesUploadHandler,
}
</script>

47
src/directive/copy.ts Normal file
View File

@ -0,0 +1,47 @@
import type { App, Directive } from 'vue'
interface CopyHTMLElement extends HTMLElement {
_copyText: string
}
export function setupCopy(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)
}

View File

@ -1,6 +1,8 @@
import type { App } from 'vue'
import { setupPermission } from './permission'
import { setupCopy } from './copy'
export function setupDirectives(app: App) {
setupPermission(app)
setupCopy(app)
}

View File

@ -2,5 +2,4 @@ export * from './useAppRouter'
export * from './useBoolean'
export * from './useLoading'
export * from './useEcharts'
export * from './useClipBoard'
export * from './useSystem'

View File

@ -1,26 +0,0 @@
export function useClipBoard() {
function isSupport() {
return !navigator.clipboard
}
function copy(text: string) {
if (isSupport())
return window.$message?.error('当前浏览器不支持复制!')
if (!text) {
window.$message?.error('请输入要复制的内容')
return
}
navigator.clipboard.writeText(text).then(
() => {
window.$message?.success(`复制成功:${text}`)
},
() => {
window.$message?.error('复制失败')
},
)
}
return {
copy,
}
}

View File

@ -1,16 +1,14 @@
<script setup lang="ts">
import { useClipBoard } from '@/hooks'
const { copy } = useClipBoard()
const text = ref('Hello Clipboard')
const text = ref('Hello v-copy')
</script>
<template>
<n-card>
<n-h1> v-copy 使用</n-h1>
<n-input-group>
<n-input v-model:value="text" placeholder="请输入要复制的内容" />
<n-button type="primary" @click="copy(text)">
复制
<n-button v-copy="text" type="primary">
v-copy复制
</n-button>
</n-input-group>
</n-card>