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';
|
2016-05-20 02:22:56 +08:00
|
|
|
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,
|
2017-03-16 02:03:58 +08:00
|
|
|
isBreakoutRoom: meetingIsBreakout(),
|
2016-06-07 00:45:30 +08:00
|
|
|
}), UserListContainer);
|