Skip to content

Commit fd20f71

Browse files
authored
fix: restore copy button in tabs (#1326)
1 parent f8d233e commit fd20f71

File tree

2 files changed

+30
-31
lines changed

2 files changed

+30
-31
lines changed

copy.client.ts

+29-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,31 @@
1-
const copyBtns = document.querySelectorAll("button[data-copy]");
2-
3-
copyBtns.forEach((btn) => {
4-
btn.addEventListener("click", () => {
5-
let textToCopy = btn.getAttribute("data-copy") as string;
6-
// CLEAN COMMANDS: Remove leading spaces, $, and > from each line
7-
textToCopy = textToCopy.replace(/^[\$>\s]+/, "");
8-
navigator?.clipboard?.writeText(textToCopy);
1+
document.addEventListener("click", (event) => {
2+
const btn = (event.target as HTMLElement).closest("button[data-copy]");
3+
4+
if (!btn) {
5+
return;
6+
}
7+
8+
let textToCopy = btn.getAttribute("data-copy") as string;
9+
10+
// CLEAN COMMANDS: Remove leading spaces, $, and > from each line
11+
textToCopy = textToCopy.replace(/^[\$>\s]+/, "");
12+
13+
navigator?.clipboard?.writeText(textToCopy).then(() => {
14+
if (!btn) {
15+
return;
16+
}
17+
18+
const copyIcon = btn.querySelector(".copy-icon");
19+
const checkIcon = btn.querySelector(".check-icon");
20+
21+
if (copyIcon && checkIcon) {
22+
copyIcon.classList.add("hidden");
23+
checkIcon.classList.remove("hidden");
24+
25+
setTimeout(() => {
26+
copyIcon.classList.remove("hidden");
27+
checkIcon.classList.add("hidden");
28+
}, 2000);
29+
}
930
});
1031
});

markdown-it/codeblock-copy.ts

+1-23
Original file line numberDiff line numberDiff line change
@@ -30,28 +30,6 @@ export default function codeblockCopyPlugin(md: any) {
3030
</button>
3131
`;
3232

33-
const script = `
34-
<script>
35-
(function() {
36-
const button = document.getElementById('${uniqueId}');
37-
button.addEventListener('click', function() {
38-
let textToCopy = this.getAttribute('data-copy');
39-
// CLEAN COMMANDS: Remove leading spaces, $, and > from each line
40-
textToCopy = textToCopy.replace(/^[\$>\s]+/, '');
41-
42-
navigator.clipboard.writeText(textToCopy).then(() => {
43-
this.querySelector('.copy-icon').classList.add('hidden');
44-
this.querySelector('.check-icon').classList.remove('hidden');
45-
setTimeout(() => {
46-
this.querySelector('.copy-icon').classList.remove('hidden');
47-
this.querySelector('.check-icon').classList.add('hidden');
48-
}, 2000);
49-
});
50-
});
51-
})();
52-
</script>
53-
`;
54-
55-
return `<div class="relative">${render}${buttonHtml}${script}</div>`;
33+
return `<div class="relative">${render}${buttonHtml}</div>`;
5634
};
5735
}

0 commit comments

Comments
 (0)