blob: bffa209e7d5be1a1ada936c9e8f25f7aa29358ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
import { Component } from "react";
import PropTypes from "prop-types";
class HighlightLines extends Component {
static get propTypes() {
return {
editor: PropTypes.object.isRequired,
range: PropTypes.object.isRequired,
};
}
componentDidMount() {
this.highlightLineRange();
}
// FIXME: https://bugzilla.mozilla.org/show_bug.cgi?id=1774507
UNSAFE_componentWillUpdate() {
this.clearHighlightRange();
}
componentDidUpdate() {
this.highlightLineRange();
}
componentWillUnmount() {
this.clearHighlightRange();
}
clearHighlightRange() {
const { range, editor } = this.props;
const { codeMirror } = editor;
if (!range || !codeMirror) {
return;
}
const { start, end } = range;
codeMirror.operation(() => {
for (let line = start - 1; line < end; line++) {
codeMirror.removeLineClass(line, "wrap", "highlight-lines");
}
});
}
highlightLineRange = () => {
const { range, editor } = this.props;
const { codeMirror } = editor;
if (!range || !codeMirror) {
return;
}
const { start, end } = range;
codeMirror.operation(() => {
editor.alignLine(start);
for (let line = start - 1; line < end; line++) {
codeMirror.addLineClass(line, "wrap", "highlight-lines");
}
});
};
render() {
return null;
}
}
export default HighlightLines;
|