chore(cli): remove copy-text-to-clipboard

This commit is contained in:
chenjiahan 2021-04-04 08:39:56 +08:00
parent 8013d2d49f
commit c1ba5be45d
2 changed files with 27 additions and 3 deletions

View File

@ -64,7 +64,6 @@
"commander": "^6.2.1",
"consola": "^2.15.0",
"conventional-changelog": "^3.1.24",
"copy-text-to-clipboard": "^3.0.1",
"css-loader": "^4.0.0",
"eslint": "^7.17.0",
"fast-glob": "^3.2.4",

View File

@ -33,7 +33,32 @@
</template>
<script>
import copy from 'copy-text-to-clipboard';
// from https://30secondsofcode.org
function copyToClipboard(str) {
const el = document.createElement('textarea');
el.value = str;
el.setAttribute('readonly', '');
el.style.position = 'absolute';
el.style.left = '-9999px';
document.body.appendChild(el);
const selection = document.getSelection();
if (!selection) {
return;
}
const selected = selection.rangeCount > 0 ? selection.getRangeAt(0) : false;
el.select();
document.execCommand('copy');
document.body.removeChild(el);
if (selected) {
selection.removeAllRanges();
selection.addRange(selected);
}
}
export default {
name: 'DemoPlayground',
@ -56,7 +81,7 @@ export default {
this.showSource = !this.showSource;
},
copySourceCode() {
copy(unescape(this.originCode));
copyToClipboard(unescape(this.originCode));
this.copyStatus = 'copied';
setTimeout(() => {
this.copyStatus = 'ready';