58 lines
1.4 KiB
JavaScript
58 lines
1.4 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 {
|
|
span,
|
|
} = require("resource://devtools/client/shared/vendor/react-dom-factories.js");
|
|
|
|
const Badges = createFactory(
|
|
require("resource://devtools/client/accessibility/components/Badges.js")
|
|
);
|
|
const AuditController = createFactory(
|
|
require("resource://devtools/client/accessibility/components/AuditController.js")
|
|
);
|
|
|
|
const { REPS } = ChromeUtils.importESModule(
|
|
"resource://devtools/client/shared/components/reps/index.mjs"
|
|
);
|
|
const { Grip } = REPS;
|
|
const Rep = createFactory(REPS.Rep);
|
|
|
|
class AccessibilityRowValue extends Component {
|
|
static get propTypes() {
|
|
return {
|
|
member: PropTypes.shape({
|
|
object: PropTypes.object,
|
|
}).isRequired,
|
|
};
|
|
}
|
|
|
|
render() {
|
|
return span(
|
|
{
|
|
role: "presentation",
|
|
},
|
|
Rep({
|
|
...this.props,
|
|
defaultRep: Grip,
|
|
cropLimit: 50,
|
|
}),
|
|
AuditController(
|
|
{
|
|
accessibleFront: this.props.member.object,
|
|
},
|
|
Badges()
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
module.exports = AccessibilityRowValue;
|