优化复制指令

This commit is contained in:
不做码农 2023-07-13 13:00:58 +08:00
parent 89b6be286d
commit 44041620a1
3 changed files with 51 additions and 129 deletions

View File

@ -3,7 +3,6 @@ import hasPermi from './permission/hasPermi'
import clipboard from './module/clipboard'
import drag from './module/drag'
import waves from './module/waves'
// import copyText from './module/copyText'
export default function directive(app) {
app.directive('hasRole', hasRole)
@ -11,5 +10,4 @@ export default function directive(app) {
app.directive('clipboard', clipboard)
app.directive('drag', drag)
app.directive('waves', waves)
// app.directive('copyText', copyText)
}
}

View File

@ -1,77 +1,67 @@
/**
* v-clipboard 文字复制剪贴
*
作者 CodePlayer
链接 https: //juejin.cn/post/7052968352007847972
来源 稀土掘金
著作权归作者所有 商业转载请联系作者获得授权 非商业转载请注明出处
*/
// import Clipboard from 'clipboard'
import useClipboard from "vue-clipboard3";
const { toClipboard } = useClipboard();
import useClipboard from 'vue-clipboard3'
const { toClipboard } = useClipboard()
export default {
// 挂载
mounted(el, binding) {
// binding.arg 为动态指令参数
// 由于 指令是支持响应式的 因此我们指令需要有一个“全局”对象这里我们为了不借助其他对象浪费资源就直接使用el自身了
// 将copy的值 成功回调 失败回调 及 click事件都绑定到el上 这样在更新和卸载时方便操作
switch (binding.arg) {
case "copy":
// copy值
el.clipValue = binding.value;
// click事件
el.clipCopy = function () {
toClipboard(el.clipValue)
.then(result => {
el.clipSuccess && el.clipSuccess(result);
})
.catch(err => {
el.clipError && el.clipError(err);
});
};
// 绑定click事件
el.addEventListener("click", el.clipCopy);
break;
case "success":
// 成功回调
el.clipSuccess = binding.value;
break;
case "error":
// 失败回调
el.clipError = binding.value;
break;
const { value, arg } = binding
switch (arg) {
case 'copy':
// copy值
el.clipValue = value
// click事件
el.clipCopy = function () {
toClipboard(el.clipValue)
.then((result) => {
el.clipSuccess && el.clipSuccess(result)
})
.catch((err) => {
el.clipError && el.clipError(err)
})
}
// 绑定click事件
el.addEventListener('click', el.clipCopy)
break
case 'success':
// 成功回调
el.clipSuccess = binding.value
break
case 'error':
// 失败回调
el.clipError = binding.value
break
}
},
// 相应修改 这里比较简单 重置相应的值即可
updated(el, binding) {
switch (binding.arg) {
case "copy":
el.clipValue = binding.value;
break;
case "success":
el.clipSuccess = binding.value;
break;
case "error":
el.clipError = binding.value;
break;
case 'copy':
el.clipValue = binding.value
break
case 'success':
el.clipSuccess = binding.value
break
case 'error':
el.clipError = binding.value
break
}
},
// 卸载 删除click事件 删除对应的自定义属性
unmounted(el, binding) {
switch (binding.arg) {
case "copy":
el.removeEventListener("click", el.clipCopy);
delete el.clipValue;
delete el.clipCopy;
break;
case "success":
delete el.clipSuccess;
break;
case "error":
delete el.clipError;
break;
case 'copy':
el.removeEventListener('click', el.clipCopy)
delete el.clipValue
delete el.clipCopy
break
case 'success':
delete el.clipSuccess
break
case 'error':
delete el.clipError
break
}
},
}
}
}

View File

@ -1,66 +0,0 @@
/**
* v-copyText 复制文本内容
* Copyright (c) 2022 ruoyi
*/
export default {
beforeMount(el, { value, arg }) {
if (arg === "callback") {
el.$copyCallback = value;
} else {
el.$copyValue = value;
const handler = () => {
copyTextToClipboard(el.$copyValue);
if (el.$copyCallback) {
el.$copyCallback(el.$copyValue);
}
};
el.addEventListener("click", handler);
el.$destroyCopy = () => el.removeEventListener("click", handler);
}
}
}
function copyTextToClipboard(input, { target = document.body } = {}) {
const element = document.createElement('textarea');
const previouslyFocusedElement = document.activeElement;
element.value = input;
// Prevent keyboard from showing on mobile
element.setAttribute('readonly', '');
element.style.contain = 'strict';
element.style.position = 'absolute';
element.style.left = '-9999px';
element.style.fontSize = '12pt'; // Prevent zooming on iOS
const selection = document.getSelection();
const originalRange = selection.rangeCount > 0 && selection.getRangeAt(0);
target.append(element);
element.select();
// Explicit selection workaround for iOS
element.selectionStart = 0;
element.selectionEnd = input.length;
let isSuccess = false;
try {
isSuccess = document.execCommand('copy');
} catch { }
element.remove();
if (originalRange) {
selection.removeAllRanges();
selection.addRange(originalRange);
}
// Get the focus back on the previously focused element, if any
if (previouslyFocusedElement) {
previouslyFocusedElement.focus();
}
return isSuccess;
}