diff --git a/src/components/controls/Button.js b/src/components/controls/Button.js index 17a4da4..82a7d09 100644 --- a/src/components/controls/Button.js +++ b/src/components/controls/Button.js @@ -5,6 +5,7 @@ class Button extends Component { static propTypes = { onClick: PropTypes.func.isRequired, label: PropTypes.string.isRequired, + tabIndex: PropTypes.number.isRequired, animateIn: PropTypes.bool } @@ -20,7 +21,12 @@ class Button extends Component { render() { return ( - ); diff --git a/src/components/fullscreen-button/FullscreenButton.js b/src/components/fullscreen-button/FullscreenButton.js index f3a1260..a24605d 100644 --- a/src/components/fullscreen-button/FullscreenButton.js +++ b/src/components/fullscreen-button/FullscreenButton.js @@ -1,6 +1,7 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; +import * as tabIndex from '../../tab-index'; import Icon from '../controls/Icon'; import Button from '../controls/Button'; @@ -15,7 +16,7 @@ class FullscreenButton extends Component { const icon = this.renderIcon(); return ( - ); diff --git a/src/components/navigation/Navigation.js b/src/components/navigation/Navigation.js index 284df43..e01e7f5 100644 --- a/src/components/navigation/Navigation.js +++ b/src/components/navigation/Navigation.js @@ -1,6 +1,7 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; import Swipeable from 'react-swipeable'; +import * as tabIndex from '../../tab-index'; import NavigationButton from './NavigationButton'; import './Navigation.css'; @@ -55,19 +56,35 @@ class Navigation extends Component { renderLeft() { return ( - + ); } renderCenter() { return ( - + ); } renderRight() { return ( - + ); } diff --git a/src/components/navigation/NavigationButton.js b/src/components/navigation/NavigationButton.js index a41a028..4f2367d 100644 --- a/src/components/navigation/NavigationButton.js +++ b/src/components/navigation/NavigationButton.js @@ -11,6 +11,7 @@ export default function NavigationButton(props) { onClick={props.onClick} role="button" aria-label={props.label} + tabIndex={props.tabIndex} /> ); } diff --git a/src/components/share-button/ShareButton.js b/src/components/share-button/ShareButton.js index 2c1ea1c..2a0f488 100644 --- a/src/components/share-button/ShareButton.js +++ b/src/components/share-button/ShareButton.js @@ -1,6 +1,7 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; +import * as tabIndex from '../../tab-index'; import Icon from '../controls/Icon'; import Button from '../controls/Button'; @@ -25,7 +26,7 @@ class ShareButton extends Component { render() { return ( - {this.renderSocialMediaButtons()} @@ -44,10 +45,10 @@ class ShareButton extends Component { renderSocialMediaButtons() { if (this.state.open) { return [ - , - ]; diff --git a/src/tab-index.js b/src/tab-index.js new file mode 100644 index 0000000..db37d7e --- /dev/null +++ b/src/tab-index.js @@ -0,0 +1,7 @@ +export const nextPageButton = 0; +export const previousPageButton = 10; +export const controlsButton = 20; +export const fullscreenButton = 30; +export const shareButton = 40; +export const facebookButton = 41; +export const twitterButton = 42;