diff options
Diffstat (limited to 'devtools/client/accessibility/components/AccessibilityRowValue.js')
-rw-r--r-- | devtools/client/accessibility/components/AccessibilityRowValue.js | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/devtools/client/accessibility/components/AccessibilityRowValue.js b/devtools/client/accessibility/components/AccessibilityRowValue.js new file mode 100644 index 0000000000..59a5d7738e --- /dev/null +++ b/devtools/client/accessibility/components/AccessibilityRowValue.js @@ -0,0 +1,54 @@ +/* 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("devtools/client/shared/vendor/react"); +const PropTypes = require("devtools/client/shared/vendor/react-prop-types"); +const { span } = require("devtools/client/shared/vendor/react-dom-factories"); + +const Badges = createFactory( + require("devtools/client/accessibility/components/Badges") +); +const AuditController = createFactory( + require("devtools/client/accessibility/components/AuditController") +); + +const { REPS } = require("devtools/client/shared/components/reps/index"); +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; |