File tree 2 files changed +30
-31
lines changed
2 files changed +30
-31
lines changed Original file line number Diff line number Diff line change 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
+ }
9
30
} ) ;
10
31
} ) ;
Original file line number Diff line number Diff line change @@ -30,28 +30,6 @@ export default function codeblockCopyPlugin(md: any) {
30
30
</button>
31
31
` ;
32
32
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>` ;
56
34
} ;
57
35
}
You can’t perform that action at this time.
0 commit comments