trisquel-icecat/icecat/devtools/client/shared/components/reps/reps/object-with-url.mjs
2025-10-06 02:35:48 -06:00

65 lines
1.6 KiB
JavaScript

/* 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 PropTypes from "resource://devtools/client/shared/vendor/react-prop-types.mjs";
import { span } from "resource://devtools/client/shared/vendor/react-dom-factories.mjs";
import {
getURLDisplayString,
wrapRender,
} from "resource://devtools/client/shared/components/reps/reps/rep-utils.mjs";
/**
* Renders a grip object with URL data.
*/
ObjectWithURL.propTypes = {
object: PropTypes.object.isRequired,
shouldRenderTooltip: PropTypes.bool,
};
function ObjectWithURL(props) {
const grip = props.object;
const config = getElementConfig(props);
return span(
config,
getTitle(grip),
span({ className: "objectPropValue" }, getDescription(grip))
);
}
function getElementConfig(opts) {
const grip = opts.object;
const shouldRenderTooltip = opts.shouldRenderTooltip;
const tooltip = `${getType(grip)} ${getDescription(grip)}`;
return {
"data-link-actor-id": grip.actor,
className: `objectBox objectBox-${getType(grip)}`,
title: shouldRenderTooltip ? tooltip : null,
};
}
function getTitle(grip) {
return span({ className: "objectTitle" }, `${getType(grip)} `);
}
function getType(grip) {
return grip.class;
}
function getDescription(grip) {
return getURLDisplayString(grip.preview.url);
}
// Registration
function supportsObject(grip) {
return grip?.preview?.kind == "ObjectWithURL";
}
const rep = wrapRender(ObjectWithURL);
// Exports from this module
export { rep, supportsObject };