Files
sousa-gecko/devtools/client/accessibility/components/LearnMoreLink.js
T

66 lines
1.8 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/. */
"use strict";
const {
Component,
createFactory,
} = require("resource://devtools/client/shared/vendor/react.mjs");
const PropTypes = require("resource://devtools/client/shared/vendor/react-prop-types.mjs");
const {
p,
} = require("resource://devtools/client/shared/vendor/react-dom-factories.js");
const MDNLink = createFactory(
require("resource://devtools/client/shared/components/MdnLink.js")
);
/**
* Localization friendly component for rendering a block of text with a "Learn more" link
* as a part of it.
*/
class LearnMoreLink extends Component {
static get propTypes() {
return {
className: PropTypes.string,
href: PropTypes.string,
learnMoreStringKey: PropTypes.string.isRequired,
l10n: PropTypes.object.isRequired,
messageStringKey: PropTypes.string.isRequired,
};
}
static get defaultProps() {
return {
href: "#",
learnMoreStringKey: null,
l10n: null,
messageStringKey: null,
};
}
render() {
const { className, href, learnMoreStringKey, l10n, messageStringKey } =
this.props;
const learnMoreString = l10n.getStr(learnMoreStringKey);
const messageString = l10n.getFormatStr(messageStringKey, learnMoreString);
// Split the paragraph string with the link as a separator, and include the link into
// results.
const re = new RegExp(`(\\b${learnMoreString}\\b)`);
const contents = messageString.split(re);
contents[1] = MDNLink({ url: href }, contents[1]);
return p(
{
className,
},
...contents
);
}
}
module.exports = LearnMoreLink;