Fix focus switch to accessible text output (#318)
* Change accessibility example links * ensure we focus on text output
This commit is contained in:
parent
8167366ce0
commit
8e688a6103
2 changed files with 16 additions and 2 deletions
|
@ -1,9 +1,15 @@
|
||||||
import React from 'react';
|
import React, { PropTypes } from 'react';
|
||||||
|
|
||||||
class TextOutput extends React.Component {
|
class TextOutput extends React.Component {
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
this.canvasTextOutput.focus();
|
this.canvasTextOutput.focus();
|
||||||
}
|
}
|
||||||
|
componentDidUpdate(prevProps) {
|
||||||
|
// if the user explicitly clicks on the play button, want to refocus on the text output
|
||||||
|
if (this.props.isPlaying && this.props.previewIsRefreshing) {
|
||||||
|
this.canvasTextOutput.focus();
|
||||||
|
}
|
||||||
|
}
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<section
|
<section
|
||||||
|
@ -43,4 +49,9 @@ class TextOutput extends React.Component {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TextOutput.propTypes = {
|
||||||
|
isPlaying: PropTypes.bool.isRequired,
|
||||||
|
previewIsRefreshing: PropTypes.bool.isRequired
|
||||||
|
};
|
||||||
|
|
||||||
export default TextOutput;
|
export default TextOutput;
|
||||||
|
|
|
@ -329,7 +329,10 @@ class IDEView extends React.Component {
|
||||||
{(() => {
|
{(() => {
|
||||||
if ((this.props.preferences.textOutput && this.props.ide.isPlaying) || this.props.ide.isTextOutputPlaying) {
|
if ((this.props.preferences.textOutput && this.props.ide.isPlaying) || this.props.ide.isTextOutputPlaying) {
|
||||||
return (
|
return (
|
||||||
<TextOutput />
|
<TextOutput
|
||||||
|
isPlaying={this.props.ide.isPlaying}
|
||||||
|
previewIsRefreshing={this.props.ide.previewIsRefreshing}
|
||||||
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return '';
|
return '';
|
||||||
|
|
Loading…
Reference in a new issue