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

40 lines
897 B
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';
import Service from './service.js';
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,
children,
} = this.props;
2016-05-20 02:22:56 +08:00
return (
<UserList
2016-09-15 01:48:50 +08:00
compact={compact}
users={users}
currentUser={currentUser}
openChats={openChats}
openChat={openChat}
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(),
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,
2016-06-07 00:45:30 +08:00
}), UserListContainer);