2019-05-17 04:11:10 +08:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2020-05-26 04:00:13 +08:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2021-10-25 22:15:16 +08:00
|
|
|
import Styled from './styles';
|
2019-05-17 04:11:10 +08:00
|
|
|
|
|
|
|
const propTypes = {
|
2021-08-09 22:24:02 +08:00
|
|
|
intl: PropTypes.shape({
|
|
|
|
formatMessage: PropTypes.func.isRequired,
|
|
|
|
}).isRequired,
|
2019-05-18 04:02:28 +08:00
|
|
|
isActive: PropTypes.bool.isRequired,
|
2019-05-17 04:11:10 +08:00
|
|
|
handleOnClick: PropTypes.func.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
const intlMessages = defineMessages({
|
|
|
|
start: {
|
|
|
|
id: 'app.actionsBar.captions.start',
|
|
|
|
description: 'Start closed captions option',
|
|
|
|
},
|
|
|
|
stop: {
|
|
|
|
id: 'app.actionsBar.captions.stop',
|
|
|
|
description: 'Stop closed captions option',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2019-05-29 22:31:27 +08:00
|
|
|
const CaptionsButton = ({ intl, isActive, handleOnClick }) => (
|
2021-10-25 22:15:16 +08:00
|
|
|
<Styled.CaptionsButton
|
2019-06-13 03:28:00 +08:00
|
|
|
icon="closed_caption"
|
2019-05-29 22:31:27 +08:00
|
|
|
label={intl.formatMessage(isActive ? intlMessages.stop : intlMessages.start)}
|
|
|
|
color={isActive ? 'primary' : 'default'}
|
|
|
|
ghost={!isActive}
|
|
|
|
hideLabel
|
|
|
|
circle
|
|
|
|
size="lg"
|
|
|
|
onClick={handleOnClick}
|
|
|
|
id={isActive ? 'stop-captions-button' : 'start-captions-button'}
|
|
|
|
/>
|
|
|
|
);
|
2019-05-17 04:11:10 +08:00
|
|
|
|
|
|
|
CaptionsButton.propTypes = propTypes;
|
|
|
|
export default injectIntl(CaptionsButton);
|