2021-05-28 02:12:49 +08:00
|
|
|
import React, { Component } from 'react';
|
2017-06-04 10:40:14 +08:00
|
|
|
import PropTypes from 'prop-types';
|
2020-05-26 04:00:13 +08:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2023-03-20 21:08:35 +08:00
|
|
|
import ReactModal from 'react-modal';
|
2021-04-01 19:14:24 +08:00
|
|
|
import browserInfo from '/imports/utils/browserInfo';
|
2021-04-01 01:13:36 +08:00
|
|
|
import deviceInfo from '/imports/utils/deviceInfo';
|
2018-10-12 23:05:53 +08:00
|
|
|
import PollingContainer from '/imports/ui/components/polling/container';
|
2018-12-07 01:26:08 +08:00
|
|
|
import logger from '/imports/startup/client/logger';
|
2019-02-27 01:40:01 +08:00
|
|
|
import ActivityCheckContainer from '/imports/ui/components/activity-check/container';
|
2022-02-16 01:57:50 +08:00
|
|
|
import ToastContainer from '/imports/ui/components/common/toast/container';
|
2024-01-16 03:49:09 +08:00
|
|
|
import PadsSessionsContainer from '/imports/ui/components/pads/pads-graphql/sessions/component';
|
2023-07-31 22:24:25 +08:00
|
|
|
import WakeLockContainer from '../wake-lock/container';
|
2016-08-10 00:28:16 +08:00
|
|
|
import NotificationsBarContainer from '../notifications-bar/container';
|
2017-03-28 04:40:44 +08:00
|
|
|
import AudioContainer from '../audio/container';
|
2019-03-16 04:07:14 +08:00
|
|
|
import BannerBarContainer from '/imports/ui/components/banner-bar/container';
|
2023-06-08 09:10:07 +08:00
|
|
|
import RaiseHandNotifier from '/imports/ui/components/raisehand-notifier/container';
|
2024-06-17 19:54:03 +08:00
|
|
|
import ManyWebcamsNotifier from '/imports/ui/components/video-provider/many-users-notify/container';
|
2024-04-17 06:39:29 +08:00
|
|
|
import AudioCaptionsSpeechContainer from '/imports/ui/components/audio/audio-graphql/audio-captions/speech/component';
|
2020-02-26 03:29:14 +08:00
|
|
|
import UploaderContainer from '/imports/ui/components/presentation/presentation-uploader/container';
|
2022-05-24 01:09:50 +08:00
|
|
|
import ScreenReaderAlertContainer from '../screenreader-alert/container';
|
2024-04-06 06:30:58 +08:00
|
|
|
import ScreenReaderAlertAdapter from '../screenreader-alert/adapter';
|
2024-06-17 19:54:03 +08:00
|
|
|
import WebcamContainer from '../webcam/component';
|
2023-10-12 20:32:24 +08:00
|
|
|
import PresentationContainer from '../presentation/container';
|
2021-06-15 04:25:05 +08:00
|
|
|
import ScreenshareContainer from '../screenshare/container';
|
2023-11-29 21:22:59 +08:00
|
|
|
import ExternalVideoPlayerContainer from '../external-video-player/external-video-player-graphql/component';
|
2024-06-15 02:32:55 +08:00
|
|
|
import GenericContentMainAreaContainer from '../generic-content/generic-main-content/container';
|
2023-11-14 02:36:49 +08:00
|
|
|
import EmojiRainContainer from '../emoji-rain/container';
|
2021-10-28 00:43:51 +08:00
|
|
|
import Styled from './styles';
|
2021-09-24 04:46:50 +08:00
|
|
|
import LayoutEngine from '../layout/layout-manager/layoutEngine';
|
2021-05-18 04:25:07 +08:00
|
|
|
import NavBarContainer from '../nav-bar/container';
|
|
|
|
import SidebarNavigationContainer from '../sidebar-navigation/container';
|
|
|
|
import SidebarContentContainer from '../sidebar-content/container';
|
2024-01-16 01:12:39 +08:00
|
|
|
import PluginsEngineManager from '../plugins-engine/manager';
|
2024-04-19 08:43:26 +08:00
|
|
|
import Notifications from '../notifications/component';
|
2021-11-06 03:59:01 +08:00
|
|
|
import GlobalStyles from '/imports/ui/stylesheets/styled-components/globalStyles';
|
2022-02-10 03:45:43 +08:00
|
|
|
import ActionsBarContainer from '../actions-bar/container';
|
2022-09-03 02:18:17 +08:00
|
|
|
import PushLayoutEngine from '../layout/push-layout/pushLayoutEngine';
|
2024-05-01 20:39:03 +08:00
|
|
|
import NotesContainer from '/imports/ui/components/notes/component';
|
2023-03-21 03:28:57 +08:00
|
|
|
import AppService from '/imports/ui/components/app/service';
|
2023-08-11 21:39:58 +08:00
|
|
|
import TimeSync from './app-graphql/time-sync/component';
|
2023-10-19 20:57:40 +08:00
|
|
|
import PresentationUploaderToastContainer from '/imports/ui/components/presentation/presentation-toast/presentation-uploader-toast/container';
|
2023-12-12 00:21:00 +08:00
|
|
|
import BreakoutJoinConfirmationContainerGraphQL from '../breakout-join-confirmation/breakout-join-confirmation-graphql/component';
|
2023-12-16 01:04:33 +08:00
|
|
|
import FloatingWindowContainer from '/imports/ui/components/floating-window/container';
|
2024-02-24 02:14:12 +08:00
|
|
|
import ChatAlertContainerGraphql from '../chat/chat-graphql/alert/component';
|
2024-06-12 05:55:38 +08:00
|
|
|
import { notify } from '/imports/ui/services/notification';
|
2024-06-29 04:21:30 +08:00
|
|
|
import VoiceActivityAdapter from '../../core/adapters/voice-activity';
|
2024-08-28 20:59:22 +08:00
|
|
|
import LayoutObserver from '../layout/observer';
|
2018-06-05 02:44:23 +08:00
|
|
|
|
2017-03-28 03:49:46 +08:00
|
|
|
const intlMessages = defineMessages({
|
|
|
|
userListLabel: {
|
2017-09-23 01:51:47 +08:00
|
|
|
id: 'app.userList.label',
|
2017-04-10 23:50:03 +08:00
|
|
|
description: 'Aria-label for Userlist Nav',
|
2017-03-28 03:49:46 +08:00
|
|
|
},
|
|
|
|
chatLabel: {
|
2017-09-23 01:23:25 +08:00
|
|
|
id: 'app.chat.label',
|
2017-04-19 03:42:55 +08:00
|
|
|
description: 'Aria-label for Chat Section',
|
2017-03-28 03:49:46 +08:00
|
|
|
},
|
2017-08-11 00:05:51 +08:00
|
|
|
actionsBarLabel: {
|
|
|
|
id: 'app.actionsBar.label',
|
2017-04-19 03:42:55 +08:00
|
|
|
description: 'Aria-label for ActionsBar Section',
|
2017-03-28 03:49:46 +08:00
|
|
|
},
|
2023-07-21 22:10:10 +08:00
|
|
|
clearedReaction: {
|
|
|
|
id: 'app.toast.clearedReactions.label',
|
|
|
|
description: 'message for cleared reactions',
|
|
|
|
},
|
2021-03-22 01:06:16 +08:00
|
|
|
raisedHand: {
|
|
|
|
id: 'app.toast.setEmoji.raiseHand',
|
|
|
|
description: 'toast message for raised hand notification',
|
|
|
|
},
|
|
|
|
loweredHand: {
|
|
|
|
id: 'app.toast.setEmoji.lowerHand',
|
|
|
|
description: 'toast message for lowered hand notification',
|
|
|
|
},
|
2023-06-08 09:57:49 +08:00
|
|
|
away: {
|
|
|
|
id: 'app.toast.setEmoji.away',
|
|
|
|
description: 'toast message for set away notification',
|
|
|
|
},
|
|
|
|
notAway: {
|
|
|
|
id: 'app.toast.setEmoji.notAway',
|
|
|
|
description: 'toast message for remove away notification',
|
|
|
|
},
|
2019-05-30 22:42:38 +08:00
|
|
|
meetingMuteOn: {
|
|
|
|
id: 'app.toast.meetingMuteOn.label',
|
2019-06-01 02:48:41 +08:00
|
|
|
description: 'message used when meeting has been muted',
|
2019-05-30 22:42:38 +08:00
|
|
|
},
|
|
|
|
meetingMuteOff: {
|
|
|
|
id: 'app.toast.meetingMuteOff.label',
|
2019-06-01 02:48:41 +08:00
|
|
|
description: 'message used when meeting has been unmuted',
|
2019-05-30 22:42:38 +08:00
|
|
|
},
|
2019-05-22 22:44:17 +08:00
|
|
|
pollPublishedLabel: {
|
|
|
|
id: 'app.whiteboard.annotations.poll',
|
|
|
|
description: 'message displayed when a poll is published',
|
|
|
|
},
|
2021-09-05 06:36:48 +08:00
|
|
|
defaultViewLabel: {
|
|
|
|
id: 'app.title.defaultViewLabel',
|
2024-03-18 21:58:53 +08:00
|
|
|
description: 'view name appended to document title',
|
2021-09-05 06:36:48 +08:00
|
|
|
},
|
2022-01-11 13:02:24 +08:00
|
|
|
promotedLabel: {
|
|
|
|
id: 'app.toast.promotedLabel',
|
|
|
|
description: 'notification message when promoted',
|
|
|
|
},
|
|
|
|
demotedLabel: {
|
|
|
|
id: 'app.toast.demotedLabel',
|
|
|
|
description: 'notification message when demoted',
|
|
|
|
},
|
2017-03-28 03:49:46 +08:00
|
|
|
});
|
|
|
|
|
2016-04-29 03:02:51 +08:00
|
|
|
const propTypes = {
|
2022-04-09 03:05:29 +08:00
|
|
|
darkTheme: PropTypes.bool.isRequired,
|
2017-03-17 03:57:45 +08:00
|
|
|
};
|
|
|
|
|
2017-03-28 03:49:46 +08:00
|
|
|
class App extends Component {
|
2021-05-18 04:25:07 +08:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
2016-09-15 01:48:50 +08:00
|
|
|
this.state = {
|
2023-03-25 04:48:00 +08:00
|
|
|
isAudioModalOpen: false,
|
2023-03-27 23:36:25 +08:00
|
|
|
isVideoPreviewModalOpen: false,
|
2023-08-30 04:00:32 +08:00
|
|
|
presentationFitToWidth: false,
|
2016-09-15 01:48:50 +08:00
|
|
|
};
|
2018-06-05 02:44:23 +08:00
|
|
|
|
2020-06-13 02:50:42 +08:00
|
|
|
this.timeOffsetInterval = null;
|
2020-04-27 04:18:43 +08:00
|
|
|
|
2023-08-30 04:00:32 +08:00
|
|
|
this.setPresentationFitToWidth = this.setPresentationFitToWidth.bind(this);
|
2023-03-24 23:29:09 +08:00
|
|
|
this.setAudioModalIsOpen = this.setAudioModalIsOpen.bind(this);
|
2023-03-27 23:36:25 +08:00
|
|
|
this.setVideoPreviewModalIsOpen = this.setVideoPreviewModalIsOpen.bind(this);
|
2017-02-25 04:19:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
2021-04-01 19:14:24 +08:00
|
|
|
const { browserName } = browserInfo;
|
2021-05-18 04:25:07 +08:00
|
|
|
const { osName } = deviceInfo;
|
2017-07-04 22:32:22 +08:00
|
|
|
|
2023-03-20 21:08:35 +08:00
|
|
|
ReactModal.setAppElement('#app');
|
2021-05-05 09:13:00 +08:00
|
|
|
|
2018-06-08 01:51:00 +08:00
|
|
|
const body = document.getElementsByTagName('body')[0];
|
2021-04-01 19:14:24 +08:00
|
|
|
|
2021-04-03 01:23:31 +08:00
|
|
|
if (browserName) {
|
2024-08-29 21:09:53 +08:00
|
|
|
body.classList.add(`browser-${browserName.split(' ').pop().toLowerCase()}`);
|
2021-04-03 01:23:31 +08:00
|
|
|
}
|
|
|
|
|
2021-04-01 01:13:36 +08:00
|
|
|
body.classList.add(`os-${osName.split(' ').shift().toLowerCase()}`);
|
2018-06-08 01:51:00 +08:00
|
|
|
|
2021-05-18 04:25:07 +08:00
|
|
|
window.ondragover = (e) => { e.preventDefault(); };
|
|
|
|
window.ondrop = (e) => { e.preventDefault(); };
|
2018-12-07 01:26:08 +08:00
|
|
|
|
2019-02-02 03:12:06 +08:00
|
|
|
logger.info({ logCode: 'app_component_componentdidmount' }, 'Client loaded successfully');
|
2018-06-05 02:44:23 +08:00
|
|
|
}
|
|
|
|
|
2019-05-30 22:42:38 +08:00
|
|
|
componentDidUpdate(prevProps) {
|
|
|
|
const {
|
2023-06-08 09:57:49 +08:00
|
|
|
currentUserAway,
|
|
|
|
currentUserRaiseHand,
|
2020-09-26 03:41:30 +08:00
|
|
|
intl,
|
2019-05-30 22:42:38 +08:00
|
|
|
} = this.props;
|
|
|
|
|
2022-04-09 03:05:29 +08:00
|
|
|
this.renderDarkMode();
|
|
|
|
|
2023-06-08 09:57:49 +08:00
|
|
|
if (prevProps.currentUserAway !== currentUserAway) {
|
|
|
|
if (currentUserAway === true) {
|
|
|
|
notify(intl.formatMessage(intlMessages.away), 'info', 'user');
|
|
|
|
} else {
|
|
|
|
notify(intl.formatMessage(intlMessages.notAway), 'info', 'clear_status');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prevProps.currentUserRaiseHand !== currentUserRaiseHand) {
|
|
|
|
if (currentUserRaiseHand === true) {
|
|
|
|
notify(intl.formatMessage(intlMessages.raisedHand), 'info', 'user');
|
|
|
|
} else {
|
|
|
|
notify(intl.formatMessage(intlMessages.loweredHand), 'info', 'clear_status');
|
|
|
|
}
|
2019-05-30 22:42:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-05 02:44:23 +08:00
|
|
|
componentWillUnmount() {
|
2022-10-14 03:23:54 +08:00
|
|
|
window.onbeforeunload = null;
|
2020-06-13 02:50:42 +08:00
|
|
|
|
|
|
|
if (this.timeOffsetInterval) {
|
|
|
|
clearInterval(this.timeOffsetInterval);
|
|
|
|
}
|
2018-06-05 02:44:23 +08:00
|
|
|
}
|
|
|
|
|
2024-07-18 20:58:38 +08:00
|
|
|
setPresentationFitToWidth(presentationFitToWidth) {
|
|
|
|
this.setState({ presentationFitToWidth });
|
|
|
|
}
|
|
|
|
|
|
|
|
setAudioModalIsOpen(value) {
|
|
|
|
this.setState({ isAudioModalOpen: value });
|
|
|
|
}
|
|
|
|
|
|
|
|
setVideoPreviewModalIsOpen(value) {
|
|
|
|
this.setState({ isVideoPreviewModalOpen: value });
|
|
|
|
}
|
|
|
|
|
|
|
|
renderDarkMode() {
|
|
|
|
const { darkTheme } = this.props;
|
|
|
|
|
|
|
|
AppService.setDarkTheme(darkTheme);
|
2023-03-24 23:29:09 +08:00
|
|
|
}
|
2023-06-08 09:10:07 +08:00
|
|
|
|
2024-07-18 20:58:38 +08:00
|
|
|
renderActionsBar() {
|
|
|
|
const {
|
|
|
|
hideActionsBar,
|
|
|
|
presentationIsOpen,
|
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
if (hideActionsBar) return null;
|
|
|
|
|
|
|
|
return (
|
2024-09-14 01:53:14 +08:00
|
|
|
<ActionsBarContainer
|
|
|
|
presentationIsOpen={presentationIsOpen}
|
|
|
|
setPresentationFitToWidth={this.setPresentationFitToWidth}
|
|
|
|
/>
|
2024-07-18 20:58:38 +08:00
|
|
|
);
|
2023-03-27 23:36:25 +08:00
|
|
|
}
|
2023-03-24 23:29:09 +08:00
|
|
|
|
2024-07-18 20:58:38 +08:00
|
|
|
renderAudioCaptions() {
|
|
|
|
const {
|
|
|
|
audioCaptions,
|
|
|
|
captionsStyle,
|
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
if (!audioCaptions) return null;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Styled.CaptionsWrapper
|
|
|
|
role="region"
|
|
|
|
style={
|
|
|
|
{
|
|
|
|
position: 'absolute',
|
|
|
|
left: captionsStyle.left,
|
|
|
|
right: captionsStyle.right,
|
|
|
|
maxWidth: captionsStyle.maxWidth,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
>
|
|
|
|
{audioCaptions}
|
|
|
|
</Styled.CaptionsWrapper>
|
|
|
|
);
|
2023-03-25 04:48:00 +08:00
|
|
|
}
|
|
|
|
|
2017-01-14 07:57:29 +08:00
|
|
|
render() {
|
2018-10-19 04:37:14 +08:00
|
|
|
const {
|
2024-08-29 22:47:50 +08:00
|
|
|
shouldShowExternalVideo,
|
2021-06-15 04:25:05 +08:00
|
|
|
shouldShowPresentation,
|
|
|
|
shouldShowScreenshare,
|
2024-04-19 22:08:13 +08:00
|
|
|
isSharedNotesPinned,
|
2022-02-11 22:30:35 +08:00
|
|
|
presentationIsOpen,
|
2023-02-14 11:28:36 +08:00
|
|
|
darkTheme,
|
2023-10-19 20:57:40 +08:00
|
|
|
intl,
|
2024-06-11 03:31:30 +08:00
|
|
|
genericMainContentId,
|
2018-10-19 04:37:14 +08:00
|
|
|
} = this.props;
|
2023-11-30 19:08:16 +08:00
|
|
|
|
2023-08-16 06:31:11 +08:00
|
|
|
const {
|
|
|
|
isAudioModalOpen,
|
|
|
|
isVideoPreviewModalOpen,
|
2023-08-17 03:24:34 +08:00
|
|
|
presentationFitToWidth,
|
2023-08-16 06:31:11 +08:00
|
|
|
} = this.state;
|
2016-04-29 03:02:51 +08:00
|
|
|
return (
|
2021-05-18 04:25:07 +08:00
|
|
|
<>
|
2024-04-06 06:30:58 +08:00
|
|
|
<ScreenReaderAlertAdapter />
|
2024-01-16 01:12:39 +08:00
|
|
|
<PluginsEngineManager />
|
2023-12-16 01:04:33 +08:00
|
|
|
<FloatingWindowContainer />
|
2023-08-11 21:39:58 +08:00
|
|
|
<TimeSync />
|
2022-03-11 03:33:25 +08:00
|
|
|
<Notifications />
|
2024-08-29 22:47:50 +08:00
|
|
|
<PushLayoutEngine
|
|
|
|
shouldShowScreenshare={shouldShowScreenshare}
|
|
|
|
shouldShowExternalVideo={shouldShowExternalVideo}
|
|
|
|
/>
|
2024-09-14 01:53:14 +08:00
|
|
|
<LayoutEngine />
|
2024-08-28 20:59:22 +08:00
|
|
|
<LayoutObserver />
|
2021-11-06 03:59:01 +08:00
|
|
|
<GlobalStyles />
|
2021-10-28 00:43:51 +08:00
|
|
|
<Styled.Layout
|
2021-08-05 19:03:24 +08:00
|
|
|
id="layout"
|
2021-08-05 12:22:07 +08:00
|
|
|
style={{
|
|
|
|
width: '100%',
|
|
|
|
height: '100%',
|
|
|
|
}}
|
|
|
|
>
|
2024-08-29 21:09:53 +08:00
|
|
|
<ActivityCheckContainer />
|
2022-05-24 01:09:50 +08:00
|
|
|
<ScreenReaderAlertContainer />
|
2021-08-05 12:22:07 +08:00
|
|
|
<BannerBarContainer />
|
2024-08-29 21:09:53 +08:00
|
|
|
<NotificationsBarContainer />
|
2021-08-05 12:22:07 +08:00
|
|
|
<SidebarNavigationContainer />
|
2024-04-19 22:08:13 +08:00
|
|
|
<SidebarContentContainer isSharedNotesPinned={isSharedNotesPinned} />
|
2021-08-05 12:22:07 +08:00
|
|
|
<NavBarContainer main="new" />
|
2024-08-29 21:09:53 +08:00
|
|
|
<WebcamContainer />
|
2023-12-13 04:47:29 +08:00
|
|
|
<ExternalVideoPlayerContainer />
|
2024-06-15 02:32:55 +08:00
|
|
|
<GenericContentMainAreaContainer
|
2024-06-11 03:31:30 +08:00
|
|
|
genericMainContentId={genericMainContentId}
|
2024-02-19 18:59:45 +08:00
|
|
|
/>
|
2024-03-13 22:11:58 +08:00
|
|
|
{
|
|
|
|
shouldShowPresentation
|
|
|
|
? (
|
|
|
|
<PresentationContainer
|
|
|
|
setPresentationFitToWidth={this.setPresentationFitToWidth}
|
|
|
|
fitToWidth={presentationFitToWidth}
|
|
|
|
darkTheme={darkTheme}
|
|
|
|
presentationIsOpen={presentationIsOpen}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
: null
|
|
|
|
}
|
2021-08-05 12:22:07 +08:00
|
|
|
{
|
2024-03-13 22:11:58 +08:00
|
|
|
shouldShowScreenshare
|
|
|
|
? (
|
2024-09-14 01:53:14 +08:00
|
|
|
<ScreenshareContainer />
|
2024-03-13 22:11:58 +08:00
|
|
|
)
|
|
|
|
: null
|
2021-08-05 12:22:07 +08:00
|
|
|
}
|
2024-04-19 22:08:13 +08:00
|
|
|
{isSharedNotesPinned
|
2023-01-19 04:10:22 +08:00
|
|
|
? (
|
|
|
|
<NotesContainer
|
|
|
|
area="media"
|
|
|
|
/>
|
|
|
|
) : null}
|
2022-03-25 03:05:20 +08:00
|
|
|
<AudioCaptionsSpeechContainer />
|
|
|
|
{this.renderAudioCaptions()}
|
2023-10-19 20:57:40 +08:00
|
|
|
<PresentationUploaderToastContainer intl={intl} />
|
2021-08-05 12:22:07 +08:00
|
|
|
<UploaderContainer />
|
2023-12-12 00:21:00 +08:00
|
|
|
<BreakoutJoinConfirmationContainerGraphQL />
|
2023-03-24 23:29:09 +08:00
|
|
|
<AudioContainer {...{
|
|
|
|
isAudioModalOpen,
|
|
|
|
setAudioModalIsOpen: this.setAudioModalIsOpen,
|
2023-03-27 23:36:25 +08:00
|
|
|
isVideoPreviewModalOpen,
|
|
|
|
setVideoPreviewModalIsOpen: this.setVideoPreviewModalIsOpen,
|
2024-04-17 06:39:29 +08:00
|
|
|
}}
|
|
|
|
/>
|
2021-08-05 12:22:07 +08:00
|
|
|
<ToastContainer rtl />
|
2024-08-29 21:09:53 +08:00
|
|
|
<ChatAlertContainerGraphql />
|
2023-06-08 09:10:07 +08:00
|
|
|
<RaiseHandNotifier />
|
2021-08-05 12:22:07 +08:00
|
|
|
<ManyWebcamsNotifier />
|
|
|
|
<PollingContainer />
|
2021-10-16 03:07:13 +08:00
|
|
|
<PadsSessionsContainer />
|
2023-07-31 22:24:25 +08:00
|
|
|
<WakeLockContainer />
|
2021-08-05 12:22:07 +08:00
|
|
|
{this.renderActionsBar()}
|
2023-11-14 02:36:49 +08:00
|
|
|
<EmojiRainContainer />
|
2024-06-29 04:21:30 +08:00
|
|
|
<VoiceActivityAdapter />
|
2021-10-28 00:43:51 +08:00
|
|
|
</Styled.Layout>
|
2021-05-18 04:25:07 +08:00
|
|
|
</>
|
2016-04-29 03:02:51 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
App.propTypes = propTypes;
|
2018-06-05 03:11:11 +08:00
|
|
|
|
2022-04-09 03:05:29 +08:00
|
|
|
export default injectIntl(App);
|