2017-10-06 20:50:01 +08:00
|
|
|
import React from 'react';
|
2018-01-10 23:44:21 +08:00
|
|
|
import cx from 'classnames';
|
2018-01-08 14:17:18 +08:00
|
|
|
import { styles } from './styles.scss';
|
2018-07-10 03:04:24 +08:00
|
|
|
import DesktopShare from './desktop-share/component';
|
2016-09-27 05:55:33 +08:00
|
|
|
import ActionsDropdown from './actions-dropdown/component';
|
2017-09-20 01:47:57 +08:00
|
|
|
import AudioControlsContainer from '../audio/audio-controls/container';
|
2018-02-19 12:23:05 +08:00
|
|
|
import JoinVideoOptionsContainer from '../video-provider/video-menu/container';
|
2016-12-15 03:55:35 +08:00
|
|
|
|
2018-01-10 23:44:21 +08:00
|
|
|
class ActionsBar extends React.PureComponent {
|
|
|
|
render() {
|
|
|
|
const {
|
|
|
|
isUserPresenter,
|
|
|
|
handleExitVideo,
|
|
|
|
handleJoinVideo,
|
|
|
|
handleShareScreen,
|
|
|
|
handleUnshareScreen,
|
|
|
|
isVideoBroadcasting,
|
2018-02-16 03:42:50 +08:00
|
|
|
isUserModerator,
|
|
|
|
recordSettingsList,
|
2018-02-28 22:10:00 +08:00
|
|
|
toggleRecording,
|
2018-09-14 02:09:30 +08:00
|
|
|
screenSharingCheck,
|
|
|
|
enableVideo,
|
2018-10-24 01:18:09 +08:00
|
|
|
createBreakoutRoom,
|
|
|
|
meetingIsBreakout,
|
|
|
|
hasBreakoutRoom,
|
2018-10-30 03:29:45 +08:00
|
|
|
meetingName,
|
2018-11-27 20:44:22 +08:00
|
|
|
users,
|
2018-01-10 23:44:21 +08:00
|
|
|
} = this.props;
|
|
|
|
|
2018-02-16 03:42:50 +08:00
|
|
|
const {
|
|
|
|
allowStartStopRecording,
|
2018-02-21 02:23:35 +08:00
|
|
|
recording: isRecording,
|
|
|
|
record,
|
2018-02-16 03:42:50 +08:00
|
|
|
} = recordSettingsList;
|
|
|
|
|
2018-01-10 23:44:21 +08:00
|
|
|
const actionBarClasses = {};
|
|
|
|
actionBarClasses[styles.centerWithActions] = isUserPresenter;
|
|
|
|
actionBarClasses[styles.center] = true;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={styles.actionsbar}>
|
|
|
|
<div className={styles.left}>
|
|
|
|
<ActionsDropdown {...{
|
|
|
|
isUserPresenter,
|
2018-02-16 03:42:50 +08:00
|
|
|
isUserModerator,
|
|
|
|
allowStartStopRecording,
|
|
|
|
isRecording,
|
2018-02-21 02:23:35 +08:00
|
|
|
record,
|
2018-02-28 22:10:00 +08:00
|
|
|
toggleRecording,
|
2018-10-24 01:18:09 +08:00
|
|
|
createBreakoutRoom,
|
|
|
|
meetingIsBreakout,
|
|
|
|
hasBreakoutRoom,
|
2018-10-30 03:29:45 +08:00
|
|
|
meetingName,
|
2018-11-27 20:44:22 +08:00
|
|
|
users,
|
2018-07-10 03:04:24 +08:00
|
|
|
}}
|
2018-01-10 23:44:21 +08:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div className={isUserPresenter ? cx(styles.centerWithActions, actionBarClasses) : styles.center}>
|
|
|
|
<AudioControlsContainer />
|
2018-09-14 02:09:30 +08:00
|
|
|
{enableVideo ?
|
2018-01-10 23:44:21 +08:00
|
|
|
<JoinVideoOptionsContainer
|
|
|
|
handleJoinVideo={handleJoinVideo}
|
|
|
|
handleCloseVideo={handleExitVideo}
|
|
|
|
/>
|
|
|
|
: null}
|
2018-07-10 03:04:24 +08:00
|
|
|
<DesktopShare {...{
|
2018-08-01 23:43:31 +08:00
|
|
|
handleShareScreen,
|
|
|
|
handleUnshareScreen,
|
|
|
|
isVideoBroadcasting,
|
|
|
|
isUserPresenter,
|
2018-09-14 02:09:30 +08:00
|
|
|
screenSharingCheck,
|
2018-08-01 23:43:31 +08:00
|
|
|
}}
|
2018-07-10 03:04:24 +08:00
|
|
|
/>
|
2018-01-10 23:44:21 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2017-03-24 23:37:33 +08:00
|
|
|
|
2017-10-06 20:50:01 +08:00
|
|
|
export default ActionsBar;
|