2021-03-23 02:02:31 +08:00
|
|
|
import React, { PureComponent } from 'react';
|
2024-09-14 01:53:14 +08:00
|
|
|
import { defineMessages } from 'react-intl';
|
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-11-16 21:45:59 +08:00
|
|
|
import AudioControlsContainer from '../audio/audio-graphql/audio-controls/component';
|
2024-06-17 19:54:03 +08:00
|
|
|
import JoinVideoOptionsContainer from '../video-provider/video-button/container';
|
2021-03-12 09:47:05 +08:00
|
|
|
import PresentationOptionsContainer from './presentation-options/component';
|
2023-09-19 19:39:52 +08:00
|
|
|
import Button from '/imports/ui/components/common/button/component';
|
2024-05-29 21:26:11 +08:00
|
|
|
import { getSettingsSingletonInstance } from '/imports/ui/services/settings';
|
2023-11-25 04:23:22 +08:00
|
|
|
import { LAYOUT_TYPE } from '../layout/enums';
|
2024-07-18 20:58:38 +08:00
|
|
|
import ReactionsButtonContainer from '/imports/ui/components/actions-bar/reactions-button/container';
|
2024-10-15 00:16:59 +08:00
|
|
|
import RaiseHandButtonContainer from '/imports/ui/components/actions-bar/raise-hand-button/container';
|
2016-12-15 03:55:35 +08:00
|
|
|
|
2024-09-14 01:53:14 +08:00
|
|
|
const intlMessages = defineMessages({
|
|
|
|
actionsBarLabel: {
|
|
|
|
id: 'app.actionsBar.label',
|
|
|
|
description: 'Aria-label for ActionsBar Section',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
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-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;
|
|
|
|
})
|
|
|
|
}
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2024-07-18 20:58:38 +08:00
|
|
|
renderReactionsButton() {
|
2023-11-25 04:23:22 +08:00
|
|
|
return (
|
|
|
|
<>
|
2024-07-18 20:58:38 +08:00
|
|
|
<ReactionsButtonContainer actionsBarRef={this.actionsBarRef} />
|
2023-11-25 04:23:22 +08:00
|
|
|
</>
|
|
|
|
);
|
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,
|
|
|
|
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-06-14 21:30:48 +08:00
|
|
|
isPresentationEnabled,
|
2024-09-14 01:53:14 +08:00
|
|
|
ariaHidden,
|
2021-03-12 09:47:05 +08:00
|
|
|
} = this.props;
|
2018-01-10 23:44:21 +08:00
|
|
|
|
2024-05-29 21:26:11 +08:00
|
|
|
const Settings = getSettingsSingletonInstance();
|
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
|
|
|
|
2024-06-14 21:30:48 +08:00
|
|
|
const shouldShowOptionsButton = (isPresentationEnabled && isThereCurrentPresentation)
|
2023-03-24 21:07:56 +08:00
|
|
|
|| isSharingVideo || hasScreenshare || isSharedNotesPinned;
|
2023-11-25 04:23:22 +08:00
|
|
|
|
2021-03-12 09:47:05 +08:00
|
|
|
return (
|
2024-09-14 01:53:14 +08:00
|
|
|
<Styled.ActionsBarWrapper
|
|
|
|
id="ActionsBar"
|
|
|
|
role="region"
|
|
|
|
aria-label={intl.formatMessage(intlMessages.actionsBarLabel)}
|
|
|
|
aria-hidden={ariaHidden}
|
2021-07-22 22:04:38 +08:00
|
|
|
style={
|
2021-08-05 12:22:07 +08:00
|
|
|
{
|
2024-09-14 01:53:14 +08:00
|
|
|
position: 'absolute',
|
|
|
|
top: actionsBarStyle.top,
|
|
|
|
left: actionsBarStyle.left,
|
|
|
|
height: actionsBarStyle.height,
|
|
|
|
width: actionsBarStyle.width,
|
|
|
|
padding: actionsBarStyle.padding,
|
2021-08-05 12:22:07 +08:00
|
|
|
}
|
2021-07-22 22:04:38 +08:00
|
|
|
}
|
2021-03-12 09:47:05 +08:00
|
|
|
>
|
2024-09-14 01:53:14 +08:00
|
|
|
<Styled.ActionsBar
|
|
|
|
ref={this.actionsBarRef}
|
|
|
|
style={
|
|
|
|
{
|
|
|
|
height: actionsBarStyle.innerHeight,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<Styled.Left>
|
|
|
|
<ActionsDropdown {...{
|
2023-11-25 04:23:22 +08:00
|
|
|
amIPresenter,
|
2024-09-14 01:53:14 +08:00
|
|
|
amIModerator,
|
|
|
|
isPollingEnabled,
|
|
|
|
allowExternalVideo,
|
|
|
|
intl,
|
|
|
|
isSharingVideo,
|
|
|
|
stopExternalVideoShare,
|
|
|
|
isTimerActive,
|
|
|
|
isTimerEnabled,
|
2023-11-25 04:23:22 +08:00
|
|
|
isMeteorConnected,
|
2024-09-14 01:53:14 +08:00
|
|
|
setMeetingLayout,
|
|
|
|
setPushLayout,
|
|
|
|
presentationIsOpen,
|
|
|
|
showPushLayout,
|
|
|
|
hasCameraAsContent,
|
|
|
|
setPresentationFitToWidth,
|
2023-11-25 04:23:22 +08:00
|
|
|
}}
|
|
|
|
/>
|
2024-09-14 01:53:14 +08:00
|
|
|
|
|
|
|
<AudioCaptionsButtonContainer />
|
|
|
|
</Styled.Left>
|
|
|
|
<Styled.Center>
|
|
|
|
{this.renderPluginsActionBarItems(ActionsBarPosition.LEFT)}
|
|
|
|
<AudioControlsContainer />
|
|
|
|
{shouldShowVideoButton && enableVideo
|
|
|
|
? (
|
|
|
|
<JoinVideoOptionsContainer />
|
|
|
|
)
|
|
|
|
: null}
|
|
|
|
{shouldShowPresentationButton && (
|
|
|
|
<ScreenshareButtonContainer {...{
|
|
|
|
amIPresenter,
|
|
|
|
isMeteorConnected,
|
|
|
|
}}
|
2023-11-25 04:23:22 +08:00
|
|
|
/>
|
2024-09-14 01:53:14 +08:00
|
|
|
)}
|
|
|
|
{this.renderReactionsButton()}
|
2024-10-15 00:16:59 +08:00
|
|
|
<RaiseHandButtonContainer />
|
2024-09-14 01:53:14 +08:00
|
|
|
{this.renderPluginsActionBarItems(ActionsBarPosition.RIGHT)}
|
|
|
|
</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}
|
|
|
|
</Styled.Right>
|
|
|
|
</Styled.ActionsBar>
|
|
|
|
</Styled.ActionsBarWrapper>
|
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;
|