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

239 lines
7.9 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';
import { ActionsBarItemType, ActionsBarPosition } from 'bigbluebutton-html-plugin-sdk/dist/cjs/extensible-areas/actions-bar-item/enums';
2021-10-25 21:29:29 +08:00
import Styled from './styles';
import ActionsDropdown from './actions-dropdown/container';
2024-01-30 00:27:30 +08:00
import AudioCaptionsButtonContainer from '/imports/ui/components/audio/audio-graphql/audio-captions/button/component';
import CaptionsReaderMenuContainer from '/imports/ui/components/captions/reader-menu/container';
import ScreenshareButtonContainer from '/imports/ui/components/actions-bar/screenshare/container';
2023-07-18 19:54:36 +08:00
import ReactionsButtonContainer from './reactions-button/container';
2023-11-16 21:45:59 +08:00
import AudioControlsContainer from '../audio/audio-graphql/audio-controls/component';
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';
import Button from '/imports/ui/components/common/button/component';
import Settings from '/imports/ui/services/settings';
import { LAYOUT_TYPE } from '../layout/enums';
2016-12-15 03:55:35 +08:00
2021-03-23 02:02:31 +08:00
class ActionsBar extends PureComponent {
constructor(props) {
super(props);
this.state = {
isCaptionsReaderMenuModalOpen: false,
};
this.setCaptionsReaderMenuModalIsOpen = this.setCaptionsReaderMenuModalIsOpen.bind(this);
this.setRenderRaiseHand = this.renderRaiseHand.bind(this);
2023-06-14 01:51:42 +08:00
this.actionsBarRef = React.createRef();
this.renderPluginsActionBarItems = this.renderPluginsActionBarItems.bind(this);
}
setCaptionsReaderMenuModalIsOpen(value) {
this.setState({ isCaptionsReaderMenuModalOpen: value });
}
renderPluginsActionBarItems(position) {
const { actionBarItems } = this.props;
return (
<>
{
actionBarItems.filter((plugin) => plugin.position === position).map((plugin) => {
let actionBarItemToReturn;
switch (plugin.type) {
case ActionsBarItemType.BUTTON:
actionBarItemToReturn = (
<Button
2023-09-19 21:09:59 +08:00
key={`${plugin.type}-${plugin.id}`}
onClick={plugin.onClick}
hideLabel
color="primary"
icon={plugin.icon}
size="lg"
circle
label={plugin.tooltip}
/>
);
break;
case ActionsBarItemType.SEPARATOR:
actionBarItemToReturn = (
2023-09-19 21:09:59 +08:00
<Styled.Separator
key={`${plugin.type}-${plugin.id}`}
/>
);
break;
default:
actionBarItemToReturn = null;
break;
}
return actionBarItemToReturn;
})
}
</>
);
}
renderRaiseHand() {
const {
2023-12-07 21:45:13 +08:00
isReactionsButtonEnabled, isRaiseHandButtonEnabled, currentUser, intl,
} = this.props;
return (
<>
{isReactionsButtonEnabled
? (
<>
<Styled.Separator />
<ReactionsButtonContainer actionsBarRef={this.actionsBarRef} />
</>
)
2023-12-07 21:45:13 +08:00
: isRaiseHandButtonEnabled ? <RaiseHandDropdownContainer {...{ currentUser, intl }} />
: null}
</>
);
}
render() {
const {
amIPresenter,
amIModerator,
enableVideo,
presentationIsOpen,
setPresentationIsOpen,
intl,
isSharingVideo,
isSharedNotesPinned,
hasScreenshare,
hasGenericContent,
hasCameraAsContent,
stopExternalVideoShare,
2023-05-11 04:03:20 +08:00
isTimerActive,
isTimerEnabled,
isCaptionsAvailable,
isMeteorConnected,
isPollingEnabled,
isRaiseHandButtonCentered,
isThereCurrentPresentation,
allowExternalVideo,
2021-08-05 19:03:24 +08:00
layoutContextDispatch,
actionsBarStyle,
setMeetingLayout,
showPushLayout,
setPushLayout,
setPresentationFitToWidth,
} = this.props;
const { isCaptionsReaderMenuModalOpen } = this.state;
const { selectedLayout } = Settings.application;
const shouldShowPresentationButton = selectedLayout !== LAYOUT_TYPE.CAMERAS_ONLY
2023-11-28 18:41:24 +08:00
&& selectedLayout !== LAYOUT_TYPE.PARTICIPANTS_AND_CHAT_ONLY;
const shouldShowVideoButton = selectedLayout !== LAYOUT_TYPE.PRESENTATION_ONLY
2023-11-28 18:41:24 +08:00
&& selectedLayout !== LAYOUT_TYPE.PARTICIPANTS_AND_CHAT_ONLY;
const shouldShowOptionsButton = (isPresentationEnabled() && isThereCurrentPresentation)
|| isSharingVideo || hasScreenshare || isSharedNotesPinned;
return (
2021-10-25 21:29:29 +08:00
<Styled.ActionsBar
2023-06-14 01:51:42 +08:00
ref={this.actionsBarRef}
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,
allowExternalVideo,
intl,
isSharingVideo,
stopExternalVideoShare,
2023-05-11 04:03:20 +08:00
isTimerActive,
isTimerEnabled,
isMeteorConnected,
setMeetingLayout,
setPushLayout,
presentationIsOpen,
showPushLayout,
hasCameraAsContent,
setPresentationFitToWidth,
}}
/>
{isCaptionsAvailable
? (
<>
<CaptionsButtonContainer {...{
intl,
setIsOpen: this.setCaptionsReaderMenuModalIsOpen,
}}
/>
{
isCaptionsReaderMenuModalOpen ? (
<CaptionsReaderMenuContainer
{...{
onRequestClose: () => this.setCaptionsReaderMenuModalIsOpen(false),
priority: 'low',
setIsOpen: this.setCaptionsReaderMenuModalIsOpen,
isOpen: isCaptionsReaderMenuModalOpen,
}}
/>
) : null
}
</>
)
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>
{this.renderPluginsActionBarItems(ActionsBarPosition.LEFT)}
<AudioControlsContainer />
{shouldShowVideoButton && enableVideo
? (
<JoinVideoOptionsContainer />
)
: null}
{shouldShowPresentationButton && (
<ScreenshareButtonContainer {...{
amIPresenter,
isMeteorConnected,
}}
/>
)}
{isRaiseHandButtonCentered && this.renderRaiseHand()}
{this.renderPluginsActionBarItems(ActionsBarPosition.RIGHT)}
2021-10-25 21:29:29 +08:00
</Styled.Center>
<Styled.Right>
{shouldShowPresentationButton && shouldShowOptionsButton
? (
<PresentationOptionsContainer
presentationIsOpen={presentationIsOpen}
setPresentationIsOpen={setPresentationIsOpen}
layoutContextDispatch={layoutContextDispatch}
hasPresentation={isThereCurrentPresentation}
hasExternalVideo={isSharingVideo}
hasScreenshare={hasScreenshare}
hasPinnedSharedNotes={isSharedNotesPinned}
hasGenericContent={hasGenericContent}
hasCameraAsContent={hasCameraAsContent}
/>
)
: null}
{!isRaiseHandButtonCentered && this.renderRaiseHand()}
2021-10-25 21:29:29 +08:00
</Styled.Right>
</Styled.ActionsBar>
);
}
}
2017-03-24 23:37:33 +08:00
export default ActionsBar;