Source code

Revision control

Copy as Markdown

Other Tools

/* 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,
const {
span,
const Badges = createFactory(
);
const AuditController = createFactory(
);
const {
REPS,
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;