Source code

Revision control

Copy as Markdown

Other Tools

/* 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 React, { PureComponent } from "devtools/client/shared/vendor/react";
import ReactDOM from "devtools/client/shared/vendor/react-dom";
import actions from "../../actions/index";
import assert from "../../utils/assert";
import { connect } from "devtools/client/shared/vendor/react-redux";
import InlinePreview from "./InlinePreview";
// Handles rendering for each line ( row )
// * Renders single widget for each line in codemirror
// * Renders InlinePreview for each preview inside the widget
class InlinePreviewRow extends PureComponent {
bookmark;
widgetNode;
componentDidMount() {
this.updatePreviewWidget(this.props, null);
}
componentDidUpdate(prevProps) {
this.updatePreviewWidget(this.props, prevProps);
}
componentWillUnmount() {
this.updatePreviewWidget(null, this.props);
}
updatePreviewWidget(props, prevProps) {
if (
this.bookmark &&
prevProps &&
(!props ||
prevProps.editor !== props.editor ||
prevProps.line !== props.line)
) {
this.bookmark.clear();
this.bookmark = null;
this.widgetNode = null;
}
if (!props) {
assert(!this.bookmark, "Inline Preview widget shouldn't be present.");
return;
}
const {
editor,
line,
previews,
openElementInInspector,
highlightDomElement,
unHighlightDomElement,
} = props;
if (!this.bookmark) {
this.widgetNode = document.createElement("div");
this.widgetNode.classList.add("inline-preview");
}
ReactDOM.render(
React.createElement(
React.Fragment,
null,
previews.map(preview =>
React.createElement(InlinePreview, {
line,
key: `${line}-${preview.name}`,
type: preview.type,
variable: preview.name,
value: preview.value,
openElementInInspector,
highlightDomElement,
unHighlightDomElement,
})
)
),
this.widgetNode,
() => {
// Only set the codeMirror bookmark once React rendered the element into this.widgetNode
this.bookmark = editor.codeMirror.setBookmark(
{
line,
ch: Infinity,
},
this.widgetNode
);
}
);
}
render() {
return null;
}
}
export default connect(() => ({}), {
openElementInInspector: actions.openElementInInspectorCommand,
highlightDomElement: actions.highlightDomElement,
unHighlightDomElement: actions.unHighlightDomElement,
})(InlinePreviewRow);