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

143 lines
4.2 KiB
React
Raw Normal View History

2021-03-23 02:02:31 +08:00
import React, { PureComponent } from 'react';
import CaptionsButtonContainer from '/imports/ui/components/captions/button/container';
import deviceInfo from '/imports/utils/deviceInfo';
2021-10-25 21:29:29 +08:00
import Styled from './styles';
import ActionsDropdown from './actions-dropdown/container';
import AudioCaptionsButtonContainer from '/imports/ui/components/audio/captions/button/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';
import RaiseHandDropdownContainer from './raise-hand/container';
import { isPresentationEnabled } from '/imports/ui/services/features';
2016-12-15 03:55:35 +08:00
2021-03-23 02:02:31 +08:00
class ActionsBar extends PureComponent {
componentDidUpdate() {
2023-03-03 03:58:08 +08:00
const {
hasScreenshare,
2023-03-03 04:49:16 +08:00
isSharingVideo,
2023-03-03 03:58:08 +08:00
isTherePresentation,
2023-03-03 04:49:16 +08:00
isSharedNotesPinned,
2023-03-03 03:58:08 +08:00
setPresentationIsOpen,
layoutContextDispatch
} = this.props;
if (!isTherePresentation && !hasScreenshare && !isSharingVideo && !isSharedNotesPinned) {
2023-03-03 03:58:08 +08:00
setPresentationIsOpen(layoutContextDispatch, false);
}
}
render() {
const {
amIPresenter,
amIModerator,
enableVideo,
presentationIsOpen,
setPresentationIsOpen,
handleTakePresenter,
intl,
isSharingVideo,
isSharedNotesPinned,
hasScreenshare,
stopExternalVideoShare,
isCaptionsAvailable,
isMeteorConnected,
isPollingEnabled,
2021-03-20 02:52:03 +08:00
isSelectRandomUserEnabled,
isRaiseHandButtonEnabled,
isThereCurrentPresentation,
2023-03-03 03:58:08 +08:00
isTherePresentation,
allowExternalVideo,
setEmojiStatus,
currentUser,
2021-08-05 19:03:24 +08:00
layoutContextDispatch,
actionsBarStyle,
setMeetingLayout,
showPushLayout,
setPushLayout,
} = this.props;
const shouldShowOptionsButton = (isPresentationEnabled() && isThereCurrentPresentation)
|| isSharingVideo || hasScreenshare || isSharedNotesPinned;
return (
2021-10-25 21:29:29 +08:00
<Styled.ActionsBar
style={
2021-08-05 12:22:07 +08:00
{
height: actionsBarStyle.innerHeight,
}
}
>
2021-10-25 21:29:29 +08:00
<Styled.Left>
<ActionsDropdown {...{
amIPresenter,
amIModerator,
isPollingEnabled,
2021-03-20 02:52:03 +08:00
isSelectRandomUserEnabled,
allowExternalVideo,
handleTakePresenter,
intl,
isSharingVideo,
stopExternalVideoShare,
isMeteorConnected,
setMeetingLayout,
setPushLayout,
presentationIsOpen,
showPushLayout,
}}
/>
{isCaptionsAvailable
? (
<CaptionsButtonContainer {...{ intl }} />
)
2021-05-04 03:04:54 +08:00
: null}
{ !deviceInfo.isMobile
? (
<AudioCaptionsButtonContainer />
)
: null }
2021-10-25 21:29:29 +08:00
</Styled.Left>
<Styled.Center>
<AudioControlsContainer />
{enableVideo
? (
<JoinVideoOptionsContainer />
)
: null}
<ScreenshareButtonContainer {...{
amIPresenter,
isMeteorConnected,
}}
/>
2021-10-25 21:29:29 +08:00
</Styled.Center>
<Styled.Right>
{ shouldShowOptionsButton ?
<PresentationOptionsContainer
presentationIsOpen={presentationIsOpen}
setPresentationIsOpen={setPresentationIsOpen}
layoutContextDispatch={layoutContextDispatch}
2023-03-03 04:49:16 +08:00
hasCurrentPresentation={isThereCurrentPresentation}
hasPresentation={isTherePresentation}
hasExternalVideo={isSharingVideo}
hasScreenshare={hasScreenshare}
hasPinnedSharedNotes={isSharedNotesPinned}
/>
: null
}
{isRaiseHandButtonEnabled
? (
<RaiseHandDropdownContainer {...{
setEmojiStatus,
currentUser,
intl,
}
}
/>
) : null}
2021-10-25 21:29:29 +08:00
</Styled.Right>
</Styled.ActionsBar>
);
}
}
2017-03-24 23:37:33 +08:00
export default ActionsBar;