mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore(cli): extract copyToClipboard to common (#10263)
* chore(cli): extract copyToClipboard to common * style: update copied
This commit is contained in:
parent
09731607d2
commit
d348b36159
@ -8,4 +8,31 @@ export function decamelize(str, sep = '-') {
|
|||||||
.toLowerCase();
|
.toLowerCase();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// from https://30secondsofcode.org
|
||||||
|
export 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 { isMobile };
|
export { isMobile };
|
||||||
|
@ -8,32 +8,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
// from https://30secondsofcode.org
|
import { copyToClipboard } from '../../common';
|
||||||
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 {
|
export default {
|
||||||
name: 'VanDocContent',
|
name: 'VanDocContent',
|
||||||
@ -79,11 +54,14 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
copyAction() {
|
copyAction() {
|
||||||
const codeBoxs = document.querySelectorAll('.van-doc-card pre code');
|
const codeBoxes = document.querySelectorAll('.van-doc-card pre code');
|
||||||
|
|
||||||
if (!codeBoxs || !codeBoxs.length) return;
|
if (!codeBoxes || !codeBoxes.length) {
|
||||||
for (let i = 0; i < codeBoxs.length; i++) {
|
return;
|
||||||
const item = codeBoxs[i];
|
}
|
||||||
|
|
||||||
|
for (let i = 0; i < codeBoxes.length; i++) {
|
||||||
|
const item = codeBoxes[i];
|
||||||
let timer = null;
|
let timer = null;
|
||||||
|
|
||||||
item.addEventListener('click', () => {
|
item.addEventListener('click', () => {
|
||||||
@ -91,6 +69,7 @@ export default {
|
|||||||
const content = item.innerText;
|
const content = item.innerText;
|
||||||
copyToClipboard(content);
|
copyToClipboard(content);
|
||||||
item.classList.add('code-copy-success');
|
item.classList.add('code-copy-success');
|
||||||
|
|
||||||
timer = setTimeout(() => {
|
timer = setTimeout(() => {
|
||||||
item.classList.remove('code-copy-success');
|
item.classList.remove('code-copy-success');
|
||||||
timer = null;
|
timer = null;
|
||||||
@ -144,17 +123,19 @@ export default {
|
|||||||
z-index: 9;
|
z-index: 9;
|
||||||
right: -4px;
|
right: -4px;
|
||||||
top: 0;
|
top: 0;
|
||||||
animation: CODE_COPY_ANITION 0.8s;
|
animation: ease-out code-copy-animation 0.2s;
|
||||||
animation-fill-mode: forwards;
|
animation-fill-mode: forwards;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes CODE_COPY_ANITION {
|
@keyframes code-copy-animation {
|
||||||
0% {
|
0% {
|
||||||
top: 0;
|
top: 0;
|
||||||
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
100% {
|
100% {
|
||||||
top: -20px;
|
top: -20px;
|
||||||
|
opacity: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
title="Toggle source code panel"
|
title="Toggle source code panel"
|
||||||
class="action-icon"
|
class="action-icon"
|
||||||
role="source"
|
role="source"
|
||||||
@click="toogleSource"
|
@click="toggleSource"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
@ -33,32 +33,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
// from https://30secondsofcode.org
|
import { copyToClipboard } from '../../common';
|
||||||
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 {
|
export default {
|
||||||
name: 'DemoPlayground',
|
name: 'DemoPlayground',
|
||||||
@ -77,7 +52,7 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
unescape,
|
unescape,
|
||||||
toogleSource() {
|
toggleSource() {
|
||||||
this.showSource = !this.showSource;
|
this.showSource = !this.showSource;
|
||||||
},
|
},
|
||||||
copySourceCode() {
|
copySourceCode() {
|
||||||
|
@ -28,14 +28,14 @@ Vant follows [Semantic Versioning 2.0.0](https://semver.org/lang/zh-CN/).
|
|||||||
|
|
||||||
**Feature**
|
**Feature**
|
||||||
|
|
||||||
- Locale: add Hindi translation [#10248](https://github.com/issues/10248)
|
- Locale: add Hindi translation [#10248](https://github.com/youzan/vant/issues/10248)
|
||||||
- Locale: add Korean translations [#10243](https://github.com/issues/10243)
|
- Locale: add Korean translations [#10243](https://github.com/youzan/vant/issues/10243)
|
||||||
- improve cursor of haptics elements [#10232](https://github.com/issues/10232)
|
- improve cursor of haptics elements [#10232](https://github.com/youzan/vant/issues/10232)
|
||||||
|
|
||||||
**Bug Fixes**
|
**Bug Fixes**
|
||||||
|
|
||||||
- Icon: remove white space under image when using image URL [#10220](https://github.com/issues/10220)
|
- Icon: remove white space under image when using image URL [#10220](https://github.com/youzan/vant/issues/10220)
|
||||||
- TreeSelect: click-nav event not work when clicking active item [#10239](https://github.com/issues/10239)
|
- TreeSelect: click-nav event not work when clicking active item [#10239](https://github.com/youzan/vant/issues/10239)
|
||||||
|
|
||||||
### [v3.4.2](https://github.com/compare/v3.4.1...v3.4.2)
|
### [v3.4.2](https://github.com/compare/v3.4.1...v3.4.2)
|
||||||
|
|
||||||
|
@ -28,14 +28,14 @@ Vant 遵循 [Semver](https://semver.org/lang/zh-CN/) 语义化版本规范。
|
|||||||
|
|
||||||
**Feature**
|
**Feature**
|
||||||
|
|
||||||
- Locale: 新增 Hindi 印地语 [#10248](https://github.com/issues/10248)
|
- Locale: 新增 Hindi 印地语 [#10248](https://github.com/youzan/vant/issues/10248)
|
||||||
- Locale: 新增 Korean 韩语 [#10243](https://github.com/issues/10243)
|
- Locale: 新增 Korean 韩语 [#10243](https://github.com/youzan/vant/issues/10243)
|
||||||
- 优化 cursor 样式 [#10232](https://github.com/issues/10232)
|
- 优化 cursor 样式 [#10232](https://github.com/youzan/vant/issues/10232)
|
||||||
|
|
||||||
**Bug Fixes**
|
**Bug Fixes**
|
||||||
|
|
||||||
- Icon: 修复使用图片作为图标时水平未对齐的问题 [#10220](https://github.com/issues/10220)
|
- Icon: 修复使用图片作为图标时水平未对齐的问题 [#10220](https://github.com/youzan/vant/issues/10220)
|
||||||
- TreeSelect: 修复重复点击时无法触发 click-nav 事件的问题 [#10239](https://github.com/issues/10239)
|
- TreeSelect: 修复重复点击时无法触发 click-nav 事件的问题 [#10239](https://github.com/youzan/vant/issues/10239)
|
||||||
|
|
||||||
### [v3.4.2](https://github.com/compare/v3.4.1...v3.4.2)
|
### [v3.4.2](https://github.com/compare/v3.4.1...v3.4.2)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user