bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/user-list/container.jsx
2017-07-12 10:18:26 -03:00

48 lines
1.2 KiB
JavaScript

import React from 'react';
import { createContainer } from 'meteor/react-meteor-data';
import { meetingIsBreakout } from '/imports/ui/components/app/service';
import { makeCall } from '/imports/ui/services/api';
import Meetings from '/imports/api/1.1/meetings';
import Service from './service';
import UserList from './component';
const UserListContainer = (props) => {
const {
compact,
users,
currentUser,
openChats,
openChat,
userActions,
isBreakoutRoom,
children,
meeting,
} = props;
return (
<UserList
compact={compact}
users={users}
meeting={meeting}
currentUser={currentUser}
openChats={openChats}
openChat={openChat}
isBreakoutRoom={isBreakoutRoom}
makeCall={makeCall}
userActions={userActions}
>
{children}
</UserList>
);
};
export default createContainer(({ params }) => ({
users: Service.getUsers(),
meeting: Meetings.findOne({}),
currentUser: Service.getCurrentUser(),
openChats: Service.getOpenChats(params.chatID),
openChat: params.chatID,
userActions: Service.userActions,
isBreakoutRoom: meetingIsBreakout(),
}), UserListContainer);