bigbluebutton-Github/bigbluebutton-html5/imports/startup/client/base.jsx

151 lines
3.9 KiB
React
Raw Normal View History

2017-03-11 02:33:46 +08:00
import React, { Component } from 'react';
import { withTracker } from 'meteor/react-meteor-data';
import { withRouter } from 'react-router';
import PropTypes from 'prop-types';
2017-03-11 02:33:46 +08:00
import Auth from '/imports/ui/services/auth';
import AppContainer from '/imports/ui/components/app/container';
2017-03-11 04:47:23 +08:00
import ErrorScreen from '/imports/ui/components/error-screen/component';
import MeetingEnded from '/imports/ui/components/meeting-ended/component';
2017-03-11 02:33:46 +08:00
import LoadingScreen from '/imports/ui/components/loading-screen/component';
2017-04-06 20:36:59 +08:00
import Settings from '/imports/ui/services/settings';
import AudioManager from '/imports/ui/services/audio-manager';
2017-08-01 21:10:12 +08:00
import IntlStartup from './intl';
2017-03-11 02:33:46 +08:00
import Annotations from '/imports/api/annotations';
import AnnotationsLocal from '/imports/ui/components/whiteboard/service';
const propTypes = {
error: PropTypes.object,
errorCode: PropTypes.number,
subscriptionsReady: PropTypes.bool.isRequired,
locale: PropTypes.string,
endedCode: PropTypes.string,
};
2017-03-11 02:33:46 +08:00
const defaultProps = {
error: undefined,
errorCode: undefined,
2017-11-01 01:13:44 +08:00
locale: undefined,
endedCode: undefined,
};
2017-03-11 02:33:46 +08:00
class Base extends Component {
constructor(props) {
super(props);
this.state = {
loading: false,
error: props.error || null,
};
this.updateLoadingState = this.updateLoadingState.bind(this);
this.updateErrorState = this.updateErrorState.bind(this);
}
updateLoadingState(loading = false) {
this.setState({
loading,
});
}
updateErrorState(error = null) {
this.setState({
error,
});
}
renderByState() {
const { updateLoadingState, updateErrorState } = this;
const stateControls = { updateLoadingState, updateErrorState };
const { loading, error } = this.state;
2017-03-11 04:47:23 +08:00
const { subscriptionsReady, errorCode } = this.props;
const { endedCode } = this.props.params;
if (endedCode) {
AudioManager.exitAudio();
return (<MeetingEnded code={endedCode} />);
}
2017-03-11 02:33:46 +08:00
2017-03-11 04:47:23 +08:00
if (error || errorCode) {
return (<ErrorScreen code={errorCode}>{error}</ErrorScreen>);
2017-03-11 02:33:46 +08:00
}
if (loading || !subscriptionsReady) {
return (<LoadingScreen>{loading}</LoadingScreen>);
}
// this.props.annotationsHandler.stop();
2017-06-03 03:25:02 +08:00
return (<AppContainer {...this.props} baseControls={stateControls} />);
2017-03-11 02:33:46 +08:00
}
render() {
const { updateLoadingState, updateErrorState } = this;
2017-04-06 20:36:59 +08:00
const { locale } = this.props;
2017-03-11 02:33:46 +08:00
const stateControls = { updateLoadingState, updateErrorState };
return (
<IntlStartup locale={locale} baseControls={stateControls}>
2017-03-11 02:33:46 +08:00
{this.renderByState()}
</IntlStartup>
);
}
2017-06-03 03:25:02 +08:00
}
2017-03-11 02:33:46 +08:00
Base.propTypes = propTypes;
Base.defaultProps = defaultProps;
2017-03-11 02:33:46 +08:00
const SUBSCRIPTIONS_NAME = [
'users', 'chat', 'meetings', 'polls', 'presentations',
'slides', 'captions', 'breakouts', 'voiceUsers', 'whiteboard-multi-user', 'screenshare',
2017-03-11 02:33:46 +08:00
];
const BaseContainer = withRouter(withTracker(({ params, router }) => {
2017-03-17 00:52:43 +08:00
if (params.errorCode) return params;
2017-03-11 04:47:23 +08:00
const { locale } = Settings.application;
const { credentials, loggedIn } = Auth;
if (!loggedIn) {
return {
locale,
subscriptionsReady: false,
};
}
const subscriptionErrorHandler = {
onError: (error) => {
console.error(error);
return router.push('/logout');
},
};
const subscriptionsHandlers = SUBSCRIPTIONS_NAME.map(name =>
Meteor.subscribe(name, credentials, subscriptionErrorHandler));
const annotationsHandler = Meteor.subscribe('annotations', credentials, {
onReady: () => {
Annotations.find({}, { reactive: false }).forEach(a => {
try {
AnnotationsLocal.insert(a)
} catch (e) {
// who cares.
}
});
annotationsHandler.stop();
},
...subscriptionErrorHandler,
});
const subscriptionsReady = subscriptionsHandlers.every(handler => handler.ready());
2017-03-11 02:33:46 +08:00
return {
locale,
subscriptionsReady,
annotationsHandler,
2017-03-11 02:33:46 +08:00
};
})(Base));
export default BaseContainer;