2021-03-23 02:02:31 +08:00
|
|
|
import React, { PureComponent } from 'react';
|
2023-11-29 02:31:28 +08:00
|
|
|
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';
|
2021-03-12 09:47:05 +08:00
|
|
|
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';
|
2021-03-12 09:47:05 +08:00
|
|
|
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';
|
2024-04-20 04:34:43 +08:00
|
|
|
import JoinVideoOptionsContainer from '../video-provider/video-provider-graphql/video-button/container';
|
2021-03-12 09:47:05 +08:00
|
|
|
import PresentationOptionsContainer from './presentation-options/component';
|
2022-09-22 23:02:19 +08:00
|
|
|
import RaiseHandDropdownContainer from './raise-hand/container';
|
2023-02-23 04:16:43 +08:00
|
|
|
import { isPresentationEnabled } from '/imports/ui/services/features';
|
2023-09-19 19:39:52 +08:00
|
|
|
import Button from '/imports/ui/components/common/button/component';
|
2023-11-25 04:23:22 +08:00
|
|
|
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 {
|
2023-03-24 21:07:56 +08:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
2023-04-29 01:10:27 +08:00
|
|
|
this.setRenderRaiseHand = this.renderRaiseHand.bind(this);
|
2023-06-14 01:51:42 +08:00
|
|
|
this.actionsBarRef = React.createRef();
|
2023-09-19 19:39:52 +08:00
|
|
|
this.renderPluginsActionBarItems = this.renderPluginsActionBarItems.bind(this);
|
2023-03-24 21:07:56 +08:00
|
|
|
}
|
|
|
|
|
2023-09-19 19:39:52 +08:00
|
|
|
renderPluginsActionBarItems(position) {
|
|
|
|
const { actionBarItems } = this.props;
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{
|
2023-11-29 02:31:28 +08:00
|
|
|
actionBarItems.filter((plugin) => plugin.position === position).map((plugin) => {
|
2023-09-19 19:39:52 +08:00
|
|
|
let actionBarItemToReturn;
|
|
|
|
switch (plugin.type) {
|
2023-11-29 02:31:28 +08:00
|
|
|
case ActionsBarItemType.BUTTON:
|
2023-09-19 19:39:52 +08:00
|
|
|
actionBarItemToReturn = (
|
|
|
|
<Button
|
2023-09-19 21:09:59 +08:00
|
|
|
key={`${plugin.type}-${plugin.id}`}
|
2023-09-19 19:39:52 +08:00
|
|
|
onClick={plugin.onClick}
|
|
|
|
hideLabel
|
|
|
|
color="primary"
|
|
|
|
icon={plugin.icon}
|
|
|
|
size="lg"
|
|
|
|
circle
|
2023-09-25 23:43:59 +08:00
|
|
|
label={plugin.tooltip}
|
2023-09-19 19:39:52 +08:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
break;
|
2023-11-29 02:31:28 +08:00
|
|
|
case ActionsBarItemType.SEPARATOR:
|
2023-09-19 19:39:52 +08:00
|
|
|
actionBarItemToReturn = (
|
2023-09-19 21:09:59 +08:00
|
|
|
<Styled.Separator
|
|
|
|
key={`${plugin.type}-${plugin.id}`}
|
|
|
|
/>
|
2023-09-19 19:39:52 +08:00
|
|
|
);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
actionBarItemToReturn = null;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return actionBarItemToReturn;
|
|
|
|
})
|
|
|
|
}
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-04-29 01:10:27 +08:00
|
|
|
renderRaiseHand() {
|
2023-06-08 09:10:07 +08:00
|
|
|
const {
|
2023-12-07 21:45:13 +08:00
|
|
|
isReactionsButtonEnabled, isRaiseHandButtonEnabled, currentUser, intl,
|
2023-06-08 09:10:07 +08:00
|
|
|
} = this.props;
|
2023-04-29 01:10:27 +08:00
|
|
|
|
2023-11-25 04:23:22 +08:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{isReactionsButtonEnabled
|
|
|
|
? (
|
|
|
|
<>
|
|
|
|
<Styled.Separator />
|
|
|
|
<ReactionsButtonContainer actionsBarRef={this.actionsBarRef} />
|
|
|
|
</>
|
|
|
|
)
|
2023-12-07 21:45:13 +08:00
|
|
|
: isRaiseHandButtonEnabled ? <RaiseHandDropdownContainer {...{ currentUser, intl }} />
|
2023-11-25 04:23:22 +08:00
|
|
|
: null}
|
|
|
|
</>
|
|
|
|
);
|
2023-04-29 01:10:27 +08:00
|
|
|
}
|
|
|
|
|
2021-03-12 09:47:05 +08:00
|
|
|
render() {
|
|
|
|
const {
|
|
|
|
amIPresenter,
|
|
|
|
amIModerator,
|
|
|
|
enableVideo,
|
2022-02-11 22:30:35 +08:00
|
|
|
presentationIsOpen,
|
|
|
|
setPresentationIsOpen,
|
2021-03-12 09:47:05 +08:00
|
|
|
intl,
|
|
|
|
isSharingVideo,
|
2023-02-17 23:44:36 +08:00
|
|
|
isSharedNotesPinned,
|
2021-09-28 03:13:06 +08:00
|
|
|
hasScreenshare,
|
2023-03-28 05:40:08 +08:00
|
|
|
hasGenericContent,
|
|
|
|
hasCameraAsContent,
|
2021-03-12 09:47:05 +08:00
|
|
|
stopExternalVideoShare,
|
2023-05-11 04:03:20 +08:00
|
|
|
isTimerActive,
|
|
|
|
isTimerEnabled,
|
2021-03-12 09:47:05 +08:00
|
|
|
isMeteorConnected,
|
|
|
|
isPollingEnabled,
|
2023-04-29 01:10:27 +08:00
|
|
|
isRaiseHandButtonCentered,
|
2021-03-12 09:47:05 +08:00
|
|
|
isThereCurrentPresentation,
|
|
|
|
allowExternalVideo,
|
2021-08-05 19:03:24 +08:00
|
|
|
layoutContextDispatch,
|
2021-07-22 22:04:38 +08:00
|
|
|
actionsBarStyle,
|
2022-02-08 03:36:21 +08:00
|
|
|
setMeetingLayout,
|
2022-04-26 03:57:11 +08:00
|
|
|
showPushLayout,
|
2022-05-12 05:48:12 +08:00
|
|
|
setPushLayout,
|
2023-08-05 00:41:42 +08:00
|
|
|
setPresentationFitToWidth,
|
2024-04-23 07:19:03 +08:00
|
|
|
|
2021-03-12 09:47:05 +08:00
|
|
|
} = this.props;
|
2018-01-10 23:44:21 +08:00
|
|
|
|
2023-11-25 04:23:22 +08:00
|
|
|
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;
|
2023-11-25 04:23:22 +08:00
|
|
|
const shouldShowVideoButton = selectedLayout !== LAYOUT_TYPE.PRESENTATION_ONLY
|
2023-11-28 18:41:24 +08:00
|
|
|
&& selectedLayout !== LAYOUT_TYPE.PARTICIPANTS_AND_CHAT_ONLY;
|
2023-11-25 04:23:22 +08:00
|
|
|
|
2023-03-24 21:07:56 +08:00
|
|
|
const shouldShowOptionsButton = (isPresentationEnabled() && isThereCurrentPresentation)
|
|
|
|
|| isSharingVideo || hasScreenshare || isSharedNotesPinned;
|
2023-11-25 04:23:22 +08:00
|
|
|
|
2021-03-12 09:47:05 +08:00
|
|
|
return (
|
2021-10-25 21:29:29 +08:00
|
|
|
<Styled.ActionsBar
|
2023-06-14 01:51:42 +08:00
|
|
|
ref={this.actionsBarRef}
|
2021-07-22 22:04:38 +08:00
|
|
|
style={
|
2021-08-05 12:22:07 +08:00
|
|
|
{
|
|
|
|
height: actionsBarStyle.innerHeight,
|
|
|
|
}
|
2021-07-22 22:04:38 +08:00
|
|
|
}
|
2021-03-12 09:47:05 +08:00
|
|
|
>
|
2021-10-25 21:29:29 +08:00
|
|
|
<Styled.Left>
|
2021-03-12 09:47:05 +08:00
|
|
|
<ActionsDropdown {...{
|
|
|
|
amIPresenter,
|
|
|
|
amIModerator,
|
|
|
|
isPollingEnabled,
|
|
|
|
allowExternalVideo,
|
|
|
|
intl,
|
|
|
|
isSharingVideo,
|
|
|
|
stopExternalVideoShare,
|
2023-05-11 04:03:20 +08:00
|
|
|
isTimerActive,
|
|
|
|
isTimerEnabled,
|
2021-03-12 09:47:05 +08:00
|
|
|
isMeteorConnected,
|
2022-02-08 03:36:21 +08:00
|
|
|
setMeetingLayout,
|
2022-05-12 05:48:12 +08:00
|
|
|
setPushLayout,
|
2022-02-11 22:30:35 +08:00
|
|
|
presentationIsOpen,
|
2022-04-26 03:57:11 +08:00
|
|
|
showPushLayout,
|
2023-03-28 05:40:08 +08:00
|
|
|
hasCameraAsContent,
|
2023-08-05 00:41:42 +08:00
|
|
|
setPresentationFitToWidth,
|
2018-07-10 03:04:24 +08:00
|
|
|
}}
|
2021-03-12 09:47:05 +08:00
|
|
|
/>
|
2024-04-23 06:07:35 +08:00
|
|
|
|
|
|
|
<AudioCaptionsButtonContainer />
|
2021-10-25 21:29:29 +08:00
|
|
|
</Styled.Left>
|
|
|
|
<Styled.Center>
|
2023-11-29 02:31:28 +08:00
|
|
|
{this.renderPluginsActionBarItems(ActionsBarPosition.LEFT)}
|
2021-03-12 09:47:05 +08:00
|
|
|
<AudioControlsContainer />
|
2023-11-25 04:23:22 +08:00
|
|
|
{shouldShowVideoButton && enableVideo
|
2021-03-12 09:47:05 +08:00
|
|
|
? (
|
|
|
|
<JoinVideoOptionsContainer />
|
|
|
|
)
|
|
|
|
: null}
|
2023-11-25 04:23:22 +08:00
|
|
|
{shouldShowPresentationButton && (
|
|
|
|
<ScreenshareButtonContainer {...{
|
|
|
|
amIPresenter,
|
|
|
|
isMeteorConnected,
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
)}
|
2023-09-19 19:39:52 +08:00
|
|
|
{isRaiseHandButtonCentered && this.renderRaiseHand()}
|
2023-11-29 02:31:28 +08:00
|
|
|
{this.renderPluginsActionBarItems(ActionsBarPosition.RIGHT)}
|
2021-10-25 21:29:29 +08:00
|
|
|
</Styled.Center>
|
|
|
|
<Styled.Right>
|
2023-11-25 04:23:22 +08:00
|
|
|
{shouldShowPresentationButton && shouldShowOptionsButton
|
|
|
|
? (
|
|
|
|
<PresentationOptionsContainer
|
|
|
|
presentationIsOpen={presentationIsOpen}
|
|
|
|
setPresentationIsOpen={setPresentationIsOpen}
|
|
|
|
layoutContextDispatch={layoutContextDispatch}
|
|
|
|
hasPresentation={isThereCurrentPresentation}
|
|
|
|
hasExternalVideo={isSharingVideo}
|
|
|
|
hasScreenshare={hasScreenshare}
|
|
|
|
hasPinnedSharedNotes={isSharedNotesPinned}
|
|
|
|
hasGenericContent={hasGenericContent}
|
|
|
|
hasCameraAsContent={hasCameraAsContent}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
: null}
|
2023-04-29 01:10:27 +08:00
|
|
|
{!isRaiseHandButtonCentered && this.renderRaiseHand()}
|
2021-10-25 21:29:29 +08:00
|
|
|
</Styled.Right>
|
|
|
|
</Styled.ActionsBar>
|
2018-01-10 23:44:21 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2017-03-24 23:37:33 +08:00
|
|
|
|
2022-09-22 23:02:19 +08:00
|
|
|
export default ActionsBar;
|