bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/user-list/component.jsx

124 lines
3.4 KiB
React
Raw Normal View History

import React, { PureComponent } from 'react';
2017-08-24 00:29:21 +08:00
import { injectIntl } from 'react-intl';
import PropTypes from 'prop-types';
import injectWbResizeEvent from '/imports/ui/components/presentation/resize-wrapper/component';
import { styles } from './styles.scss';
2018-03-21 03:35:28 +08:00
import CustomLogo from './custom-logo/component';
2018-10-24 22:17:13 +08:00
import UserContentContainer from './user-list-content/container';
2016-05-20 02:22:56 +08:00
2016-06-29 03:52:03 +08:00
const propTypes = {
2019-01-14 21:23:35 +08:00
activeChats: PropTypes.arrayOf(String).isRequired,
2017-07-28 21:43:39 +08:00
compact: PropTypes.bool,
intl: PropTypes.shape({
formatMessage: PropTypes.func.isRequired,
}).isRequired,
currentUser: PropTypes.shape({}).isRequired,
CustomLogoUrl: PropTypes.string.isRequired,
handleEmojiChange: PropTypes.func.isRequired,
getUsersId: PropTypes.func.isRequired,
2017-08-24 00:29:21 +08:00
isBreakoutRoom: PropTypes.bool,
getAvailableActions: PropTypes.func.isRequired,
normalizeEmojiName: PropTypes.func.isRequired,
isMeetingLocked: PropTypes.func.isRequired,
isPublicChat: PropTypes.func.isRequired,
setEmojiStatus: PropTypes.func.isRequired,
assignPresenter: PropTypes.func.isRequired,
removeUser: PropTypes.func.isRequired,
toggleVoice: PropTypes.func.isRequired,
2018-09-29 05:32:52 +08:00
muteAllUsers: PropTypes.func.isRequired,
muteAllExceptPresenter: PropTypes.func.isRequired,
changeRole: PropTypes.func.isRequired,
2017-12-07 00:53:16 +08:00
roving: PropTypes.func.isRequired,
getGroupChatPrivate: PropTypes.func.isRequired,
showBranding: PropTypes.bool.isRequired,
toggleUserLock: PropTypes.func.isRequired,
requestUserInformation: PropTypes.func.isRequired,
2016-06-29 03:52:03 +08:00
};
2016-06-29 03:52:03 +08:00
const defaultProps = {
2017-07-28 21:43:39 +08:00
compact: false,
2017-08-24 00:29:21 +08:00
isBreakoutRoom: false,
2016-06-29 03:52:03 +08:00
};
class UserList extends PureComponent {
2017-07-28 21:43:39 +08:00
render() {
2018-03-21 03:35:28 +08:00
const {
intl,
2019-01-14 21:23:35 +08:00
activeChats,
2018-03-21 03:35:28 +08:00
compact,
currentUser,
isBreakoutRoom,
setEmojiStatus,
assignPresenter,
removeUser,
toggleVoice,
2018-09-29 05:32:52 +08:00
muteAllUsers,
muteAllExceptPresenter,
2018-03-21 03:35:28 +08:00
changeRole,
getAvailableActions,
normalizeEmojiName,
isMeetingLocked,
isPublicChat,
roving,
CustomLogoUrl,
getGroupChatPrivate,
handleEmojiChange,
getEmojiList,
getEmoji,
showBranding,
2018-10-02 21:48:12 +08:00
hasBreakoutRoom,
getUsersId,
hasPrivateChatBetweenUsers,
toggleUserLock,
requestUserInformation,
2018-03-21 03:35:28 +08:00
} = this.props;
2017-07-28 21:43:39 +08:00
return (
<div className={styles.userList}>
2018-03-21 03:35:28 +08:00
{
showBranding
2019-01-14 21:23:35 +08:00
&& !compact
&& CustomLogoUrl
? <CustomLogo CustomLogoUrl={CustomLogoUrl} /> : null
2018-03-21 03:35:28 +08:00
}
2018-10-24 22:17:13 +08:00
{<UserContentContainer
2018-03-21 03:35:28 +08:00
{...{
2019-01-14 21:23:35 +08:00
intl,
activeChats,
compact,
currentUser,
isBreakoutRoom,
setEmojiStatus,
assignPresenter,
removeUser,
toggleVoice,
muteAllUsers,
muteAllExceptPresenter,
changeRole,
getAvailableActions,
normalizeEmojiName,
isMeetingLocked,
isPublicChat,
roving,
getGroupChatPrivate,
handleEmojiChange,
getEmojiList,
getEmoji,
hasBreakoutRoom,
getUsersId,
hasPrivateChatBetweenUsers,
toggleUserLock,
requestUserInformation,
2019-01-14 21:23:35 +08:00
}
}
/>}
2017-07-28 21:43:39 +08:00
</div>
);
}
2016-05-20 02:22:56 +08:00
}
2016-06-29 03:52:03 +08:00
UserList.propTypes = propTypes;
2017-07-28 21:43:39 +08:00
UserList.defaultProps = defaultProps;
export default injectWbResizeEvent(injectIntl(UserList));