You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
197 lines
4.5 KiB
197 lines
4.5 KiB
3 months ago
|
import React from 'react';
|
||
|
import { connect } from 'react-redux';
|
||
|
import PropTypes from 'prop-types';
|
||
|
import ReactTooltip from 'react-tooltip';
|
||
|
import classnames from 'classnames';
|
||
|
import clipboardCopy from 'clipboard-copy';
|
||
|
import * as appPropTypes from './appPropTypes';
|
||
|
import { withRoomContext } from '../RoomContext';
|
||
|
import * as requestActions from '../redux/requestActions';
|
||
|
import { Appear } from './transitions';
|
||
|
import Me from './Me';
|
||
|
import ChatInput from './ChatInput';
|
||
|
import Peers from './Peers';
|
||
|
import Stats from './Stats';
|
||
|
import Notifications from './Notifications';
|
||
|
import NetworkThrottle from './NetworkThrottle';
|
||
|
|
||
|
class Room extends React.Component
|
||
|
{
|
||
|
render()
|
||
|
{
|
||
|
const {
|
||
|
roomClient,
|
||
|
room,
|
||
|
me,
|
||
|
amActiveSpeaker,
|
||
|
onRoomLinkCopy
|
||
|
} = this.props;
|
||
|
|
||
|
const mediasoupClientVersion = room.mediasoupClientVersion === '__MEDIASOUP_CLIENT_VERSION__'
|
||
|
? 'dev'
|
||
|
: room.mediasoupClientVersion;
|
||
|
|
||
|
return (
|
||
|
<Appear duration={300}>
|
||
|
<div data-component='Room'>
|
||
|
<Notifications />
|
||
|
|
||
|
<div className='state'>
|
||
|
<div className={classnames('icon', room.state)} />
|
||
|
<p className={classnames('text', room.state)}>{room.state}</p>
|
||
|
</div>
|
||
|
|
||
|
<div className='info'>
|
||
|
<p className='text'><span className='label'>server: </span>{room.mediasoupVersion}</p>
|
||
|
<p className='text'><span className='label'>client: </span>{mediasoupClientVersion}</p>
|
||
|
<p className='text'><span className='label'>handler: </span>{room.mediasoupClientHandler}</p>
|
||
|
</div>
|
||
|
|
||
|
<div className='room-link-wrapper'>
|
||
|
<div className='room-link'>
|
||
|
<a
|
||
|
className='link'
|
||
|
href={room.url}
|
||
|
target='_blank'
|
||
|
rel='noopener noreferrer'
|
||
|
onClick={(event) =>
|
||
|
{
|
||
|
// If this is a 'Open in new window/tab' don't prevent
|
||
|
// click default action.
|
||
|
if (
|
||
|
event.ctrlKey || event.shiftKey || event.metaKey ||
|
||
|
// Middle click (IE > 9 and everyone else).
|
||
|
(event.button && event.button === 1)
|
||
|
)
|
||
|
{
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
event.preventDefault();
|
||
|
|
||
|
clipboardCopy(room.url)
|
||
|
.then(onRoomLinkCopy);
|
||
|
}}
|
||
|
>
|
||
|
invitation link
|
||
|
</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<Peers />
|
||
|
|
||
|
<div
|
||
|
className={classnames('me-container', {
|
||
|
'active-speaker' : amActiveSpeaker
|
||
|
})}
|
||
|
>
|
||
|
<Me />
|
||
|
</div>
|
||
|
|
||
|
<div className='chat-input-container'>
|
||
|
<ChatInput />
|
||
|
</div>
|
||
|
|
||
|
<div className='sidebar'>
|
||
|
<div
|
||
|
className={classnames('button', 'hide-videos', {
|
||
|
on : me.audioOnly,
|
||
|
disabled : me.audioOnlyInProgress
|
||
|
})}
|
||
|
data-tip={'Show/hide participants\' video'}
|
||
|
onClick={() =>
|
||
|
{
|
||
|
me.audioOnly
|
||
|
? roomClient.disableAudioOnly()
|
||
|
: roomClient.enableAudioOnly();
|
||
|
}}
|
||
|
/>
|
||
|
|
||
|
<div
|
||
|
className={classnames('button', 'mute-audio', {
|
||
|
on : me.audioMuted
|
||
|
})}
|
||
|
data-tip={'Mute/unmute participants\' audio'}
|
||
|
onClick={() =>
|
||
|
{
|
||
|
me.audioMuted
|
||
|
? roomClient.unmuteAudio()
|
||
|
: roomClient.muteAudio();
|
||
|
}}
|
||
|
/>
|
||
|
|
||
|
<div
|
||
|
className={classnames('button', 'restart-ice', {
|
||
|
disabled : me.restartIceInProgress
|
||
|
})}
|
||
|
data-tip='Restart ICE'
|
||
|
onClick={() => roomClient.restartIce()}
|
||
|
/>
|
||
|
</div>
|
||
|
|
||
|
<Stats />
|
||
|
|
||
|
<If condition={window.NETWORK_THROTTLE_SECRET}>
|
||
|
<NetworkThrottle
|
||
|
secret={window.NETWORK_THROTTLE_SECRET}
|
||
|
/>
|
||
|
</If>
|
||
|
|
||
|
<ReactTooltip
|
||
|
type='light'
|
||
|
effect='solid'
|
||
|
delayShow={100}
|
||
|
delayHide={100}
|
||
|
delayUpdate={50}
|
||
|
/>
|
||
|
</div>
|
||
|
</Appear>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
componentDidMount()
|
||
|
{
|
||
|
const { roomClient } = this.props;
|
||
|
|
||
|
roomClient.join();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Room.propTypes =
|
||
|
{
|
||
|
roomClient : PropTypes.any.isRequired,
|
||
|
room : appPropTypes.Room.isRequired,
|
||
|
me : appPropTypes.Me.isRequired,
|
||
|
amActiveSpeaker : PropTypes.bool.isRequired,
|
||
|
onRoomLinkCopy : PropTypes.func.isRequired
|
||
|
};
|
||
|
|
||
|
const mapStateToProps = (state) =>
|
||
|
{
|
||
|
return {
|
||
|
room : state.room,
|
||
|
me : state.me,
|
||
|
amActiveSpeaker : state.me.id === state.room.activeSpeakerId
|
||
|
};
|
||
|
};
|
||
|
|
||
|
const mapDispatchToProps = (dispatch) =>
|
||
|
{
|
||
|
return {
|
||
|
onRoomLinkCopy : () =>
|
||
|
{
|
||
|
dispatch(requestActions.notify(
|
||
|
{
|
||
|
text : 'Room link copied to the clipboard'
|
||
|
}));
|
||
|
}
|
||
|
};
|
||
|
};
|
||
|
|
||
|
const RoomContainer = withRoomContext(connect(
|
||
|
mapStateToProps,
|
||
|
mapDispatchToProps
|
||
|
)(Room));
|
||
|
|
||
|
export default RoomContainer;
|