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

37 lines
1.4 KiB
React
Raw Normal View History

2017-07-12 21:18:26 +08:00
import React from 'react';
2017-12-07 00:53:16 +08:00
import PropTypes from 'prop-types';
import { withTracker } from 'meteor/react-meteor-data';
import getFromUserSettings from '/imports/ui/services/users-settings';
2017-07-12 21:18:26 +08:00
import Service from './service';
import UserList from './component';
2016-05-20 02:22:56 +08:00
2017-12-07 00:53:16 +08:00
const propTypes = {
2019-01-14 21:23:35 +08:00
activeChats: PropTypes.arrayOf(String).isRequired,
2017-12-07 00:53:16 +08:00
isPublicChat: PropTypes.func.isRequired,
setEmojiStatus: PropTypes.func.isRequired,
roving: PropTypes.func.isRequired,
requestUserInformation: PropTypes.func.isRequired,
2017-12-07 00:53:16 +08:00
};
2018-06-05 03:43:54 +08:00
const UserListContainer = props => <UserList {...props} />;
2016-05-20 02:22:56 +08:00
2017-12-07 00:53:16 +08:00
UserListContainer.propTypes = propTypes;
export default withTracker(({ chatID, compact }) => ({
2018-10-27 03:57:37 +08:00
hasBreakoutRoom: Service.hasBreakoutRoom(),
2019-01-14 21:23:35 +08:00
activeChats: Service.getActiveChats(chatID),
isPublicChat: Service.isPublicChat,
setEmojiStatus: Service.setEmojiStatus,
roving: Service.roving,
2018-03-21 03:35:28 +08:00
CustomLogoUrl: Service.getCustomLogoUrl(),
compact,
getGroupChatPrivate: Service.getGroupChatPrivate,
handleEmojiChange: Service.setEmojiStatus,
getEmojiList: Service.getEmojiList(),
getEmoji: Service.getEmoji(),
showBranding: getFromUserSettings('bbb_display_branding_area', Meteor.settings.public.app.branding.displayBrandingArea),
hasPrivateChatBetweenUsers: Service.hasPrivateChatBetweenUsers,
toggleUserLock: Service.toggleUserLock,
requestUserInformation: Service.requestUserInformation,
}))(UserListContainer);