bigbluebutton-Github/bigbluebutton-html5/client/main.jsx

102 lines
3.7 KiB
React
Raw Normal View History

/*
BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
Copyright (c) 2020 BigBlueButton Inc. and by respective authors (see below).
This program is free software; you can redistribute it and/or modify it under the
terms of the GNU Lesser General Public License as published by the Free Software
Foundation; either version 3.0 of the License, or (at your option) any later
version.
BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along
with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
*/
/* eslint no-unused-vars: 0 */
2021-08-18 00:59:18 +08:00
import React from 'react';
2016-04-29 03:02:51 +08:00
import { Meteor } from 'meteor/meteor';
2023-06-28 21:38:25 +08:00
import { render } from 'react-dom';
2018-06-20 00:46:59 +08:00
import logger from '/imports/startup/client/logger';
2022-02-17 08:51:39 +08:00
import '/imports/ui/services/mobile-app';
2018-09-21 23:43:10 +08:00
import Base from '/imports/startup/client/base';
import JoinHandler from '/imports/ui/components/join-handler/component';
import AuthenticatedHandler from '/imports/ui/components/authenticated-handler/component';
import Subscriptions from '/imports/ui/components/subscriptions/component';
import IntlStartup from '/imports/startup/client/intl';
import ContextProviders from '/imports/ui/components/context-providers/component';
import ChatAdapter from '/imports/ui/components/components-data/chat-context/adapter';
import UsersAdapter from '/imports/ui/components/components-data/users-context/adapter';
import GraphqlProvider from '/imports/ui/components/graphql-provider/component';
import { liveDataEventBrokerInitializer } from '/imports/ui/services/LiveDataEventBroker/LiveDataEventBroker';
// The adapter import is "unused" as far as static code is concerned, but it
// needs to here to override global prototypes. So: don't remove it - prlanzarin 25 Apr 2022
import adapter from 'webrtc-adapter';
2016-05-12 04:43:07 +08:00
import collectionMirrorInitializer from './collection-mirror-initializer';
import('/imports/api/audio/client/bridge/bridge-whitelist').catch(() => {
// bridge loading
});
2022-09-22 00:13:49 +08:00
const { disableWebsocketFallback } = Meteor.settings.public.app;
2022-09-21 22:03:21 +08:00
if (disableWebsocketFallback) {
Meteor.connection._stream._sockjsProtocolsWhitelist = function () { return ['websocket']; };
2022-09-21 22:03:21 +08:00
Meteor.disconnect();
Meteor.reconnect();
}
collectionMirrorInitializer();
liveDataEventBrokerInitializer();
2021-12-10 04:37:05 +08:00
2016-01-13 04:15:16 +08:00
Meteor.startup(() => {
2018-06-20 00:46:59 +08:00
// Logs all uncaught exceptions to the client logger
window.addEventListener('error', (e) => {
2019-06-25 05:11:38 +08:00
let message = e.message || e.error.toString();
// Chrome will add on "Uncaught" to the start of the message for some reason. This
// will strip that so the errors can hopefully be grouped better.
if (message) message = message.replace(/^Uncaught/, '').trim();
let { stack } = e.error;
2018-06-20 00:46:59 +08:00
// Checks if stack includes the message, if not add the two together.
2019-06-25 05:11:38 +08:00
if (!stack.includes(message)) {
stack = `${message}\n${stack}`;
}
logger.error({
logCode: 'startup_error',
extraInfo: {
stackTrace: stack,
},
}, message);
});
2018-09-21 23:43:10 +08:00
// TODO make this a Promise
2023-06-28 21:38:25 +08:00
render(
<ContextProviders>
<>
<JoinHandler>
<AuthenticatedHandler>
<GraphqlProvider>
<Subscriptions>
<IntlStartup>
<Base />
</IntlStartup>
</Subscriptions>
</GraphqlProvider>
</AuthenticatedHandler>
</JoinHandler>
<UsersAdapter />
<ChatAdapter />
</>
</ContextProviders>,
2023-06-28 21:38:25 +08:00
document.getElementById('app'),
);
2016-01-13 04:15:16 +08:00
});