bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/actions-bar/desktop-share/component.jsx
2018-07-24 09:46:30 -07:00

66 lines
2.1 KiB
JavaScript
Executable File

import React from 'react';
import PropTypes from 'prop-types';
import { defineMessages, injectIntl, intlShape } from 'react-intl';
import browser from 'browser-detect';
import Button from '/imports/ui/components/button/component';
import { styles } from '../styles';
const propTypes = {
intl: intlShape.isRequired,
isUserPresenter: PropTypes.bool.isRequired,
};
const intlMessages = defineMessages({
desktopShareLabel: {
id: 'app.actionsBar.actionsDropdown.desktopShareLabel',
description: 'Desktop Share option label',
},
stopDesktopShareLabel: {
id: 'app.actionsBar.actionsDropdown.stopDesktopShareLabel',
description: 'Stop Desktop Share option label',
},
desktopShareDesc: {
id: 'app.actionsBar.actionsDropdown.desktopShareDesc',
description: 'adds context to desktop share option',
},
stopDesktopShareDesc: {
id: 'app.actionsBar.actionsDropdown.stopDesktopShareDesc',
description: 'adds context to stop desktop share option',
},
});
const BROWSER_RESULTS = browser();
const isMobileBrowser = BROWSER_RESULTS.mobile ||
BROWSER_RESULTS.os.includes('Android'); // mobile flag doesn't always work
const screenSharingCheck = Meteor.settings.public.kurento.enableScreensharing;
const DesktopShare = ({
intl,
handleShareScreen,
handleUnshareScreen,
isVideoBroadcasting,
isUserPresenter,
}) => (
(screenSharingCheck && !isMobileBrowser && isUserPresenter ?
<Button
className={styles.button}
icon="desktop"
label={intl.formatMessage(isVideoBroadcasting ?
intlMessages.stopDesktopShareLabel : intlMessages.desktopShareLabel)}
description={intl.formatMessage(isVideoBroadcasting ?
intlMessages.stopDesktopShareDesc : intlMessages.desktopShareDesc)}
color="primary"
icon="desktop"
ghost={false}
hideLabel
circle
size="lg"
onClick={isVideoBroadcasting ? handleUnshareScreen : handleShareScreen}
/>
: null)
);
DesktopShare.propTypes = propTypes;
export default injectIntl(DesktopShare);