194 lines
4.3 KiB
JavaScript
194 lines
4.3 KiB
JavaScript
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
import {
|
|
participantListSelector
|
|
} from '../../Selectors';
|
|
import classnames from 'classnames';
|
|
import { withStyles } from '@material-ui/core/styles';
|
|
import { withRoomContext } from '../../../RoomContext';
|
|
import PropTypes from 'prop-types';
|
|
import { Flipper, Flipped } from 'react-flip-toolkit';
|
|
import { FormattedMessage } from 'react-intl';
|
|
import ListPeer from './ListPeer';
|
|
import ListMe from './ListMe';
|
|
import ListModerator from './ListModerator';
|
|
import Volume from '../../Containers/Volume';
|
|
|
|
const styles = (theme) =>
|
|
({
|
|
root :
|
|
{
|
|
width : '100%',
|
|
overflowY : 'auto',
|
|
padding : theme.spacing(1)
|
|
},
|
|
list :
|
|
{
|
|
listStyleType : 'none',
|
|
padding : theme.spacing(1),
|
|
boxShadow : '0 2px 5px 2px rgba(0, 0, 0, 0.2)',
|
|
backgroundColor : 'rgba(255, 255, 255, 1)'
|
|
},
|
|
listheader :
|
|
{
|
|
fontWeight : 'bolder'
|
|
},
|
|
listItem :
|
|
{
|
|
width : '100%',
|
|
overflow : 'hidden',
|
|
cursor : 'pointer',
|
|
'&.selected' :
|
|
{
|
|
backgroundColor : 'rgba(55, 126, 255, 1)'
|
|
},
|
|
'&:not(:last-child)' :
|
|
{
|
|
borderBottom : '1px solid #CBCBCB'
|
|
}
|
|
}
|
|
});
|
|
|
|
class ParticipantList extends React.PureComponent
|
|
{
|
|
componentDidMount()
|
|
{
|
|
this.node.scrollTop = this.node.scrollHeight;
|
|
}
|
|
|
|
getSnapshotBeforeUpdate()
|
|
{
|
|
return this.node.scrollTop
|
|
+ this.node.offsetHeight === this.node.scrollHeight;
|
|
}
|
|
|
|
componentDidUpdate(prevProps, prevState, shouldScroll)
|
|
{
|
|
if (shouldScroll)
|
|
{
|
|
this.node.scrollTop = this.node.scrollHeight;
|
|
}
|
|
}
|
|
|
|
render()
|
|
{
|
|
const {
|
|
roomClient,
|
|
advancedMode,
|
|
isModerator,
|
|
participants,
|
|
spotlights,
|
|
selectedPeerId,
|
|
classes
|
|
} = this.props;
|
|
|
|
return (
|
|
<div className={classes.root} ref={(node) => { this.node = node; }}>
|
|
{ isModerator &&
|
|
<ul className={classes.list}>
|
|
<li className={classes.listheader}>
|
|
<FormattedMessage
|
|
id='room.moderatoractions'
|
|
defaultMessage='Moderator actions'
|
|
/>
|
|
</li>
|
|
<ListModerator />
|
|
</ul>
|
|
}
|
|
<ul className={classes.list}>
|
|
<li className={classes.listheader}>
|
|
<FormattedMessage
|
|
id='room.me'
|
|
defaultMessage='Me'
|
|
/>
|
|
</li>
|
|
<ListMe />
|
|
</ul>
|
|
<ul className={classes.list}>
|
|
<li className={classes.listheader}>
|
|
<FormattedMessage
|
|
id='label.participants'
|
|
defaultMessage='Participants'
|
|
/>
|
|
</li>
|
|
<Flipper
|
|
flipKey={participants}
|
|
>
|
|
{ participants.map((peer) => (
|
|
<Flipped key={peer.id} flipId={peer.id}>
|
|
<li
|
|
key={peer.id}
|
|
className={classnames(classes.listItem, {
|
|
selected : peer.id === selectedPeerId
|
|
})}
|
|
onClick={() => roomClient.setSelectedPeer(peer.id)}
|
|
>
|
|
{ spotlights.includes(peer.id) ?
|
|
<ListPeer
|
|
id={peer.id}
|
|
advancedMode={advancedMode}
|
|
isModerator={isModerator}
|
|
spotlight
|
|
>
|
|
<Volume small id={peer.id} />
|
|
</ListPeer>
|
|
:
|
|
<ListPeer
|
|
id={peer.id}
|
|
advancedMode={advancedMode}
|
|
isModerator={isModerator}
|
|
/>
|
|
}
|
|
</li>
|
|
</Flipped>
|
|
))}
|
|
</Flipper>
|
|
</ul>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
ParticipantList.propTypes =
|
|
{
|
|
roomClient : PropTypes.any.isRequired,
|
|
advancedMode : PropTypes.bool,
|
|
isModerator : PropTypes.bool,
|
|
participants : PropTypes.array,
|
|
spotlights : PropTypes.array,
|
|
selectedPeerId : PropTypes.string,
|
|
classes : PropTypes.object.isRequired
|
|
};
|
|
|
|
const mapStateToProps = (state) =>
|
|
{
|
|
return {
|
|
isModerator :
|
|
state.me.roles.some((role) =>
|
|
state.room.permissionsFromRoles.MODERATE_ROOM.includes(role)),
|
|
participants : participantListSelector(state),
|
|
spotlights : state.room.spotlights,
|
|
selectedPeerId : state.room.selectedPeerId
|
|
};
|
|
};
|
|
|
|
const ParticipantListContainer = withRoomContext(connect(
|
|
mapStateToProps,
|
|
null,
|
|
null,
|
|
{
|
|
areStatesEqual : (next, prev) =>
|
|
{
|
|
return (
|
|
prev.room.permissionsFromRoles === next.room.permissionsFromRoles &&
|
|
prev.me.roles === next.me.roles &&
|
|
prev.peers === next.peers &&
|
|
prev.room.spotlights === next.room.spotlights &&
|
|
prev.room.selectedPeerId === next.room.selectedPeerId
|
|
);
|
|
}
|
|
}
|
|
)(withStyles(styles)(ParticipantList)));
|
|
|
|
export default ParticipantListContainer;
|