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

127 lines
3.9 KiB
React
Raw Normal View History

2021-03-23 02:02:31 +08:00
import React, { PureComponent } from 'react';
import cx from 'classnames';
import Button from '/imports/ui/components/button/component';
import CaptionsButtonContainer from '/imports/ui/components/actions-bar/captions/container';
2021-03-22 07:47:15 +08:00
import withShortcutHelper from '/imports/ui/components/shortcut-help/service';
import { styles } from './styles.scss';
import ActionsDropdown from './actions-dropdown/container';
import ScreenshareButtonContainer from '/imports/ui/components/actions-bar/screenshare/container';
import AudioControlsContainer from '../audio/audio-controls/container';
import JoinVideoOptionsContainer from '../video-provider/video-button/container';
import PresentationOptionsContainer from './presentation-options/component';
2016-12-15 03:55:35 +08:00
2021-03-23 02:02:31 +08:00
class ActionsBar extends PureComponent {
render() {
const {
amIPresenter,
amIModerator,
enableVideo,
isLayoutSwapped,
toggleSwapLayout,
handleTakePresenter,
intl,
isSharingVideo,
stopExternalVideoShare,
isCaptionsAvailable,
isMeteorConnected,
isPollingEnabled,
2021-03-20 02:52:03 +08:00
isSelectRandomUserEnabled,
isRaiseHandButtonEnabled,
isPresentationDisabled,
isThereCurrentPresentation,
allowExternalVideo,
setEmojiStatus,
currentUser,
2021-03-22 07:47:15 +08:00
shortcuts,
newLayoutContextDispatch,
actionsBarStyle,
} = this.props;
return (
<div
className={styles.actionsbar}
style={
2021-08-05 12:22:07 +08:00
{
height: actionsBarStyle.innerHeight,
}
}
>
<div className={styles.left}>
<ActionsDropdown {...{
amIPresenter,
amIModerator,
isPollingEnabled,
2021-03-20 02:52:03 +08:00
isSelectRandomUserEnabled,
allowExternalVideo,
handleTakePresenter,
intl,
isSharingVideo,
stopExternalVideoShare,
isMeteorConnected,
}}
/>
{isCaptionsAvailable
? (
<CaptionsButtonContainer {...{ intl }} />
)
2021-05-04 03:04:54 +08:00
: null}
</div>
<div className={styles.center}>
<AudioControlsContainer />
{enableVideo
? (
<JoinVideoOptionsContainer />
)
: null}
<ScreenshareButtonContainer {...{
amIPresenter,
isMeteorConnected,
}}
/>
</div>
<div className={styles.right}>
{isLayoutSwapped && !isPresentationDisabled
? (
<PresentationOptionsContainer
toggleSwapLayout={toggleSwapLayout}
newLayoutContextDispatch={newLayoutContextDispatch}
isThereCurrentPresentation={isThereCurrentPresentation}
/>
)
2021-05-04 03:04:54 +08:00
: null}
{isRaiseHandButtonEnabled
? (
<Button
icon="hand"
label={intl.formatMessage({
id: `app.actionsBar.emojiMenu.${
currentUser.emoji === 'raiseHand'
? 'lowerHandLabel'
: 'raiseHandLabel'
}`,
})}
accessKey={shortcuts.raisehand}
color={currentUser.emoji === 'raiseHand' ? 'primary' : 'default'}
data-test={currentUser.emoji === 'raiseHand' ? 'lowerHandLabel' : 'raiseHandLabel'}
ghost={currentUser.emoji !== 'raiseHand'}
className={cx(currentUser.emoji === 'raiseHand' || styles.btn)}
hideLabel
circle
size="lg"
onClick={() => {
setEmojiStatus(
currentUser.userId,
currentUser.emoji === 'raiseHand' ? 'none' : 'raiseHand',
);
}}
/>
)
: null}
</div>
</div>
);
}
}
2017-03-24 23:37:33 +08:00
2021-03-22 07:47:15 +08:00
export default withShortcutHelper(ActionsBar, ['raiseHand']);