94 lines
1.9 KiB
React
94 lines
1.9 KiB
React
|
import React, { PureComponent } from 'react';
|
||
|
import PropTypes from 'prop-types';
|
||
|
import CaptionsService from '/imports/ui/components/captions/service';
|
||
|
|
||
|
const CAPTIONS_CONFIG = Meteor.settings.public.captions;
|
||
|
|
||
|
class LiveCaptions extends PureComponent {
|
||
|
constructor(props) {
|
||
|
super(props);
|
||
|
|
||
|
this.state = { clear: true };
|
||
|
this.timer = null;
|
||
|
this.settings = CaptionsService.getCaptionsSettings();
|
||
|
}
|
||
|
|
||
|
componentDidUpdate(prevProps) {
|
||
|
const { clear } = this.state;
|
||
|
|
||
|
if (clear) {
|
||
|
const { data } = this.props;
|
||
|
if (prevProps.data !== data) {
|
||
|
// eslint-disable-next-line react/no-did-update-set-state
|
||
|
this.setState({ clear: false });
|
||
|
}
|
||
|
} else {
|
||
|
this.resetTimer();
|
||
|
this.timer = setTimeout(() => this.setState({ clear: true }), CAPTIONS_CONFIG.time);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
componentWillUnmount() {
|
||
|
this.resetTimer();
|
||
|
}
|
||
|
|
||
|
resetTimer() {
|
||
|
if (this.timer) {
|
||
|
clearTimeout(this.timer);
|
||
|
this.timer = null;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
render() {
|
||
|
const { data } = this.props;
|
||
|
const { clear } = this.state;
|
||
|
const {
|
||
|
fontFamily,
|
||
|
fontSize,
|
||
|
fontColor,
|
||
|
backgroundColor,
|
||
|
} = this.settings;
|
||
|
|
||
|
const captionStyles = {
|
||
|
whiteSpace: 'pre-wrap',
|
||
|
wordWrap: 'break-word',
|
||
|
fontFamily,
|
||
|
fontSize,
|
||
|
background: backgroundColor,
|
||
|
color: fontColor,
|
||
|
};
|
||
|
|
||
|
const visuallyHidden = {
|
||
|
position: 'absolute',
|
||
|
overflow: 'hidden',
|
||
|
clip: 'rect(0 0 0 0)',
|
||
|
height: '1px',
|
||
|
width: '1px',
|
||
|
margin: '-1px',
|
||
|
padding: '0',
|
||
|
border: '0',
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<div>
|
||
|
<div style={captionStyles}>
|
||
|
{clear ? '' : data}
|
||
|
</div>
|
||
|
<div
|
||
|
style={visuallyHidden}
|
||
|
aria-atomic
|
||
|
aria-live="polite"
|
||
|
>
|
||
|
{clear ? '' : data}
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
LiveCaptions.propTypes = {
|
||
|
data: PropTypes.string.isRequired,
|
||
|
};
|
||
|
|
||
|
export default LiveCaptions;
|