2020-03-07 00:27:45 +08:00
|
|
|
/*
|
|
|
|
BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
|
|
|
|
|
2020-05-12 21:31:00 +08:00
|
|
|
Copyright (c) 2020 BigBlueButton Inc. and by respective authors (see below).
|
2020-03-07 00:27:45 +08:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
2017-10-24 21:01:58 +08:00
|
|
|
/* eslint no-unused-vars: 0 */
|
2021-08-18 00:59:18 +08:00
|
|
|
|
2024-03-07 01:28:18 +08:00
|
|
|
import React, { useContext, useEffect } from 'react';
|
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';
|
2021-01-20 01:06:32 +08:00
|
|
|
import ContextProviders from '/imports/ui/components/context-providers/component';
|
2024-03-07 01:28:18 +08:00
|
|
|
import ConnectionManager from '/imports/ui/components/connection-manager/component';
|
2022-04-26 01:02:53 +08:00
|
|
|
// 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
|
|
|
|
2024-03-07 01:28:18 +08:00
|
|
|
import { LoadingContext } from '/imports/ui/components/common/loading-screen/loading-screen-HOC/component';
|
|
|
|
import IntlAdapter from '/imports/startup/client/intlAdapter';
|
2024-05-01 03:14:22 +08:00
|
|
|
import PresenceAdapter from '../imports/ui/components/presence-adapter/component';
|
2024-03-07 01:28:18 +08:00
|
|
|
import CustomUsersSettings from '/imports/ui/components/join-handler/custom-users-settings/component';
|
2024-10-03 05:34:10 +08:00
|
|
|
import createUseSubscription from '/imports/ui/core/hooks/createUseSubscription';
|
|
|
|
import PLUGIN_CONFIGURATION_QUERY from '/imports/ui/components/plugins-engine/query';
|
2021-09-07 04:51:42 +08:00
|
|
|
|
2024-03-07 01:28:18 +08:00
|
|
|
// eslint-disable-next-line import/prefer-default-export
|
|
|
|
const Startup = () => {
|
|
|
|
const loadingContextInfo = useContext(LoadingContext);
|
|
|
|
useEffect(() => {
|
|
|
|
loadingContextInfo.setLoading(false, '');
|
|
|
|
}, []);
|
2018-06-20 00:46:59 +08:00
|
|
|
// Logs all uncaught exceptions to the client logger
|
2017-10-24 20:59:23 +08:00
|
|
|
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}`;
|
2018-10-25 23:51:53 +08:00
|
|
|
}
|
2019-07-31 20:30:34 +08:00
|
|
|
logger.error({
|
|
|
|
logCode: 'startup_error',
|
|
|
|
extraInfo: {
|
|
|
|
stackTrace: stack,
|
|
|
|
},
|
|
|
|
}, message);
|
2017-10-24 20:59:23 +08:00
|
|
|
});
|
2018-09-21 23:43:10 +08:00
|
|
|
|
2024-10-03 05:34:10 +08:00
|
|
|
const { data: pluginConfig } = createUseSubscription(
|
|
|
|
PLUGIN_CONFIGURATION_QUERY,
|
|
|
|
)((obj) => obj);
|
2024-03-07 01:28:18 +08:00
|
|
|
return (
|
2021-01-20 01:06:32 +08:00
|
|
|
<ContextProviders>
|
2024-03-23 03:07:49 +08:00
|
|
|
<PresenceAdapter>
|
2024-04-26 21:33:20 +08:00
|
|
|
<IntlAdapter>
|
2024-10-03 05:34:10 +08:00
|
|
|
<Base pluginConfig={pluginConfig} />
|
2024-04-26 21:33:20 +08:00
|
|
|
</IntlAdapter>
|
2024-03-23 03:07:49 +08:00
|
|
|
</PresenceAdapter>
|
2024-03-07 01:28:18 +08:00
|
|
|
</ContextProviders>
|
2018-11-15 01:11:10 +08:00
|
|
|
);
|
2024-03-07 01:28:18 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
export default Startup;
|