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/>. */
"use strict";
// Make this available to both AMD and CJS environments
define(function (require, exports, module) {
// ReactJS
const PropTypes = require("devtools/client/shared/vendor/react-prop-types");
const { span } = require("devtools/client/shared/vendor/react-dom-factories");
// Reps
const {
getGripType,
getURLDisplayString,
wrapRender,
} = require("devtools/client/shared/components/reps/reps/rep-utils");
/**
* Renders DOM document object.
*/
Document.propTypes = {
object: PropTypes.object.isRequired,
shouldRenderTooltip: PropTypes.bool,
};
function Document(props) {
const grip = props.object;
const shouldRenderTooltip = props.shouldRenderTooltip;
const location = getLocation(grip);
const config = getElementConfig({ grip, location, shouldRenderTooltip });
return span(
config,
getTitle(grip),
location ? span({ className: "location" }, ` ${location}`) : null
);
}
function getElementConfig(opts) {
const { grip, location, shouldRenderTooltip } = opts;
const config = {
"data-link-actor-id": grip.actor,
className: "objectBox objectBox-document",
};
if (!shouldRenderTooltip || !location) {
return config;
}
config.title = `${grip.class} ${location}`;
return config;
}
function getLocation(grip) {
const location = grip.preview.location;
return location ? getURLDisplayString(location) : null;
}
function getTitle(grip) {
return span(
{
className: "objectTitle",
},
grip.class
);
}
// Registration
function supportsObject(object, noGrip = false) {
return object?.preview && getGripType(object, noGrip) === "HTMLDocument";
}
// Exports from this module
module.exports = {
rep: wrapRender(Document),
supportsObject,
};
});