import React, { cloneElement } from 'react'; import { withTracker } from 'meteor/react-meteor-data'; import { withRouter } from 'react-router'; import { defineMessages, injectIntl } from 'react-intl'; import PropTypes from 'prop-types'; import Auth from '/imports/ui/services/auth'; import Users from '/imports/api/users'; import Breakouts from '/imports/api/breakouts'; import Meetings from '/imports/api/meetings'; import ClosedCaptionsContainer from '/imports/ui/components/closed-captions/container'; import { getFontSize, getCaptionsStatus, meetingIsBreakout, } from './service'; import { withModalMounter } from '../modal/service'; import App from './component'; import NavBarContainer from '../nav-bar/container'; import ActionsBarContainer from '../actions-bar/container'; import MediaContainer from '../media/container'; const propTypes = { navbar: PropTypes.node, actionsbar: PropTypes.node, media: PropTypes.node, location: PropTypes.shape({}).isRequired, }; const defaultProps = { navbar: , actionsbar: , media: , }; const intlMessages = defineMessages({ waitingApprovalMessage: { id: 'app.guest.waiting', description: 'Message while a guest is waiting to be approved', }, }); const AppContainer = (props) => { // inject location on the navbar container const { navbar, actionsbar, media, ...otherProps } = props; const navbarWithLocation = cloneElement(navbar, { location: props.location }); return ( ); }; export default withRouter(injectIntl(withModalMounter(withTracker(({ router, intl, baseControls }) => { const currentUser = Users.findOne({ userId: Auth.userID }); const isMeetingBreakout = meetingIsBreakout(); if (!currentUser.approved) { baseControls.updateLoadingState(intl.formatMessage(intlMessages.waitingApprovalMessage)); } // Check if user is removed out of the session Users.find({ userId: Auth.userID }).observeChanges({ changed(id, fields) { const hasNewConnection = 'connectionId' in fields && (fields.connectionId !== Meteor.connection._lastSessionId); if (fields.ejected || hasNewConnection) { router.push(`/ended/${403}`); } }, }); // forcelly logged out when the meeting is ended Meetings.find({ meetingId: Auth.meetingID }).observeChanges({ removed() { if (isMeetingBreakout) return; router.push(`/ended/${410}`); }, }); // Close the widow when the current breakout room ends Breakouts.find({ breakoutId: Auth.meetingID }).observeChanges({ removed() { Auth.clearCredentials().then(window.close); }, }); return { closedCaption: getCaptionsStatus() ? : null, fontSize: getFontSize(), userlistIsOpen: window.location.pathname.includes('users'), chatIsOpen: window.location.pathname.includes('chat'), }; })(AppContainer)))); AppContainer.defaultProps = defaultProps; AppContainer.propTypes = propTypes;