diff options
Diffstat (limited to 'devtools/client/debugger/src/components/Editor/HighlightLines.js')
-rw-r--r-- | devtools/client/debugger/src/components/Editor/HighlightLines.js | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/devtools/client/debugger/src/components/Editor/HighlightLines.js b/devtools/client/debugger/src/components/Editor/HighlightLines.js new file mode 100644 index 0000000000..d0a8eb08d7 --- /dev/null +++ b/devtools/client/debugger/src/components/Editor/HighlightLines.js @@ -0,0 +1,78 @@ +/* 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"; +import { connect } from "../../utils/connect"; +import { getHighlightedLineRange } from "../../selectors"; + +class HighlightLines extends Component { + static get propTypes() { + return { + editor: PropTypes.object.isRequired, + highlightedLineRange: PropTypes.object, + }; + } + + 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 { highlightedLineRange, editor } = this.props; + + const { codeMirror } = editor; + + if (!highlightedLineRange || !codeMirror) { + return; + } + + const { start, end } = highlightedLineRange; + codeMirror.operation(() => { + for (let line = start - 1; line < end; line++) { + codeMirror.removeLineClass(line, "wrapClass", "highlight-lines"); + } + }); + } + + highlightLineRange = () => { + const { highlightedLineRange, editor } = this.props; + + const { codeMirror } = editor; + + if (!highlightedLineRange || !codeMirror) { + return; + } + + const { start, end } = highlightedLineRange; + + codeMirror.operation(() => { + editor.alignLine(start); + for (let line = start - 1; line < end; line++) { + codeMirror.addLineClass(line, "wrapClass", "highlight-lines"); + } + }); + }; + + render() { + return null; + } +} + +export default connect(state => ({ + highlightedLineRange: getHighlightedLineRange(state), +}))(HighlightLines); |