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

58 lines
1.5 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 {
getGripType,
wrapRender,
ELLIPSIS,
} from "resource://devtools/client/shared/components/reps/reps/rep-utils.mjs";
/**
* Renders a grip object with regular expression.
*/
RegExpRep.propTypes = {
object: PropTypes.object.isRequired,
shouldRenderTooltip: PropTypes.bool,
};
function RegExpRep(props) {
const { object } = props;
const config = getElementConfig(props);
return span(config, getSource(object));
}
function getElementConfig(opts) {
const { object, shouldRenderTooltip } = opts;
const text = getSource(object);
return {
"data-link-actor-id": object.actor,
className: "objectBox objectBox-regexp regexpSource",
title: shouldRenderTooltip ? text : null,
};
}
function getSource(grip) {
const { displayString } = grip;
if (displayString?.type === "longString") {
return `${displayString.initial}${ELLIPSIS}`;
}
return displayString;
}
// Registration
function supportsObject(object, noGrip = false) {
return getGripType(object, noGrip) == "RegExp";
}
const rep = wrapRender(RegExpRep);
// Exports from this module
export { rep, supportsObject };