bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/actions-bar/captions/component.jsx

42 lines
1.2 KiB
React
Raw Normal View History

import React from 'react';
import PropTypes from 'prop-types';
import cx from 'classnames';
import { defineMessages, injectIntl, intlShape } from 'react-intl';
import { styles } from '/imports/ui/components/actions-bar/styles';
import Button from '/imports/ui/components/button/component';
const propTypes = {
intl: intlShape.isRequired,
isActive: PropTypes.bool.isRequired,
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 }) => (
<Button
2020-03-10 05:33:56 +08:00
className={cx(isActive || styles.btn)}
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'}
/>
);
CaptionsButton.propTypes = propTypes;
export default injectIntl(CaptionsButton);