73 lines
2.0 KiB
JavaScript
Executable File
73 lines
2.0 KiB
JavaScript
Executable File
import React, { memo } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import cx from 'classnames';
|
|
import Button from '/imports/ui/components/button/component';
|
|
import VideoService from '../service';
|
|
import { defineMessages, injectIntl, intlShape } from 'react-intl';
|
|
import { styles } from './styles';
|
|
import { validIOSVersion } from '/imports/ui/components/app/service';
|
|
|
|
const intlMessages = defineMessages({
|
|
joinVideo: {
|
|
id: 'app.video.joinVideo',
|
|
description: 'Join video button label',
|
|
},
|
|
videoButtonDesc: {
|
|
id: 'app.video.videoButtonDesc',
|
|
description: 'video button description',
|
|
},
|
|
videoLocked: {
|
|
id: 'app.video.videoLocked',
|
|
description: 'video disabled label',
|
|
},
|
|
iOSWarning: {
|
|
id: 'app.iOSWarning.label',
|
|
description: 'message indicating to upgrade ios version',
|
|
},
|
|
});
|
|
|
|
const propTypes = {
|
|
intl: intlShape.isRequired,
|
|
hasVideoStream: PropTypes.bool.isRequired,
|
|
isDisabled: PropTypes.bool.isRequired,
|
|
handleJoinVideo: PropTypes.func.isRequired,
|
|
};
|
|
|
|
const JoinVideoButton = ({
|
|
intl,
|
|
hasVideoStream,
|
|
isDisabled,
|
|
handleJoinVideo,
|
|
}) => {
|
|
const handleOnClick = () => {
|
|
if (!validIOSVersion()) {
|
|
return VideoService.notify(intl.formatMessage(intlMessages.iOSWarning));
|
|
}
|
|
handleJoinVideo();
|
|
};
|
|
|
|
const sharingVideoLabel = intl.formatMessage(intlMessages.joinVideo);
|
|
|
|
const disabledLabel = isDisabled
|
|
? intl.formatMessage(intlMessages.videoLocked) : sharingVideoLabel;
|
|
|
|
return (
|
|
<Button
|
|
label={disabledLabel}
|
|
className={cx(styles.button, hasVideoStream || styles.btn)}
|
|
onClick={handleOnClick}
|
|
hideLabel
|
|
aria-label={intl.formatMessage(intlMessages.videoButtonDesc)}
|
|
color={hasVideoStream ? 'primary' : 'default'}
|
|
icon={hasVideoStream ? 'video' : 'video_off'}
|
|
ghost={!hasVideoStream}
|
|
size="lg"
|
|
circle
|
|
disabled={isDisabled}
|
|
/>
|
|
);
|
|
};
|
|
|
|
JoinVideoButton.propTypes = propTypes;
|
|
export default injectIntl(memo(JoinVideoButton));
|