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

50 lines
1.2 KiB
React
Raw Normal View History

2016-06-29 03:52:03 +08:00
import React, { Component } from 'react';
2016-05-20 02:22:56 +08:00
import { createContainer } from 'meteor/react-meteor-data';
2017-03-16 00:21:26 +08:00
import { meetingIsBreakout } from '/imports/ui/components/app/service';
import { makeCall } from '/imports/ui/services/api';
2016-05-20 02:22:56 +08:00
import Service from './service.js';
import Meetings from '/imports/api/meetings';
2016-05-20 02:22:56 +08:00
import UserList from './component.jsx';
class UserListContainer extends Component {
render() {
2016-09-15 01:48:50 +08:00
const {
compact,
users,
currentUser,
openChats,
openChat,
userActions,
2017-03-16 03:03:56 +08:00
isBreakoutRoom,
2016-09-15 01:48:50 +08:00
children,
meeting,
2016-09-15 01:48:50 +08:00
} = this.props;
2016-05-20 02:22:56 +08:00
return (
<UserList
2016-09-15 01:48:50 +08:00
compact={compact}
users={users}
meeting={meeting}
2016-09-15 01:48:50 +08:00
currentUser={currentUser}
openChats={openChats}
openChat={openChat}
2017-03-16 03:03:56 +08:00
isBreakoutRoom={isBreakoutRoom}
makeCall={makeCall}
2016-09-15 01:48:50 +08:00
userActions={userActions}>
{children}
2016-05-20 02:22:56 +08:00
</UserList>
);
}
}
2016-06-28 21:10:20 +08:00
export default createContainer(({ params }) => ({
2016-06-07 00:45:30 +08:00
users: Service.getUsers(),
meeting: Meetings.findOne({}),
2016-06-28 21:10:20 +08:00
currentUser: Service.getCurrentUser(),
2016-06-30 22:45:19 +08:00
openChats: Service.getOpenChats(params.chatID),
openChat: params.chatID,
2016-06-28 21:10:20 +08:00
userActions: Service.userActions,
2017-03-16 02:03:58 +08:00
isBreakoutRoom: meetingIsBreakout(),
2016-06-07 00:45:30 +08:00
}), UserListContainer);