@@ -16,6 +16,9 @@ export default class HighlightCode extends Component {
16
16
canCopy : PropTypes . bool
17
17
}
18
18
19
+ #syntaxHighlighter;
20
+ #pre;
21
+
19
22
downloadText = ( ) => {
20
23
saveAs ( this . props . value , this . props . fileName || "response.txt" )
21
24
}
@@ -40,12 +43,12 @@ export default class HighlightCode extends Component {
40
43
}
41
44
42
45
componentDidMount ( ) {
43
- [ this . syntaxHighlighter , this . pre ]
46
+ [ this . # syntaxHighlighter, this . # pre]
44
47
. map ( element => element ?. addEventListener ( "mousewheel" , this . preventYScrollingBeyondElement , { passive : false } ) )
45
48
}
46
49
47
50
componentWillUnmount ( ) {
48
- [ this . syntaxHighlighter , this . pre ]
51
+ [ this . # syntaxHighlighter, this . # pre]
49
52
. map ( element => element ?. removeEventListener ( "mousewheel" , this . preventYScrollingBeyondElement ) )
50
53
}
51
54
@@ -58,14 +61,14 @@ export default class HighlightCode extends Component {
58
61
59
62
const codeBlock = get ( config , "syntaxHighlight.activated" )
60
63
? < SyntaxHighlighter
61
- ref = { elem => this . syntaxHighlighter = elem }
64
+ ref = { elem => this . # syntaxHighlighter = elem }
62
65
language = { language }
63
66
className = { className + " microlight" }
64
67
style = { getStyle ( get ( config , "syntaxHighlight.theme" ) ) }
65
68
>
66
69
{ value }
67
70
</ SyntaxHighlighter >
68
- : < pre ref = { elem => this . pre = elem } className = { className + " microlight" } > { value } </ pre >
71
+ : < pre ref = { elem => this . # pre = elem } className = { className + " microlight" } > { value } </ pre >
69
72
70
73
return (
71
74
< div className = "highlight-code" >
0 commit comments