File size: 865 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
import { Button } from '@automattic/components';
import { localize } from 'i18n-calypso';
import PropTypes from 'prop-types';
import { Component } from 'react';
class SkipNavigation extends Component {
static propTypes = {
skipToElementId: PropTypes.string,
displayText: PropTypes.string,
};
onClick = ( event ) => {
event.preventDefault();
const element = document.getElementById( this.props.skipToElementId );
// Make the element focusable
if ( ! /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) {
element.tabIndex = -1;
}
element.focus();
};
render() {
const displayText = this.props.displayText || this.props.translate( 'Skip navigation' );
return (
<Button onClick={ this.onClick } className="sidebar__skip-navigation">
{ displayText }
</Button>
);
}
}
export default localize( SkipNavigation );
|