Skip to content

Commit 491d641

Browse files
committedOct 5, 2021
refactor(highlight-code): declare properties explicitly
Refs #7497
1 parent 24aaa53 commit 491d641

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed
 

‎src/core/components/highlight-code.jsx

+7-4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ export default class HighlightCode extends Component {
1616
canCopy: PropTypes.bool
1717
}
1818

19+
#syntaxHighlighter;
20+
#pre;
21+
1922
downloadText = () => {
2023
saveAs(this.props.value, this.props.fileName || "response.txt")
2124
}
@@ -40,12 +43,12 @@ export default class HighlightCode extends Component {
4043
}
4144

4245
componentDidMount() {
43-
[this.syntaxHighlighter, this.pre]
46+
[this.#syntaxHighlighter, this.#pre]
4447
.map(element => element?.addEventListener("mousewheel", this.preventYScrollingBeyondElement, { passive: false }))
4548
}
4649

4750
componentWillUnmount() {
48-
[this.syntaxHighlighter, this.pre]
51+
[this.#syntaxHighlighter, this.#pre]
4952
.map(element => element?.removeEventListener("mousewheel", this.preventYScrollingBeyondElement))
5053
}
5154

@@ -58,14 +61,14 @@ export default class HighlightCode extends Component {
5861

5962
const codeBlock = get(config, "syntaxHighlight.activated")
6063
? <SyntaxHighlighter
61-
ref={elem => this.syntaxHighlighter = elem}
64+
ref={elem => this.#syntaxHighlighter = elem}
6265
language={language}
6366
className={className + " microlight"}
6467
style={getStyle(get(config, "syntaxHighlight.theme"))}
6568
>
6669
{value}
6770
</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>
6972

7073
return (
7174
<div className="highlight-code">

0 commit comments

Comments
 (0)
Please sign in to comment.