import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { throttle } from 'lodash'; import { defineMessages, injectIntl, intlShape } from 'react-intl'; import Modal from 'react-modal'; import browser from 'browser-detect'; import PanelManager from '/imports/ui/components/panel-manager/component'; import PollingContainer from '/imports/ui/components/polling/container'; import logger from '/imports/startup/client/logger'; import ToastContainer from '../toast/container'; import ModalContainer from '../modal/container'; import NotificationsBarContainer from '../notifications-bar/container'; import AudioContainer from '../audio/container'; import ChatAlertContainer from '../chat/alert/container'; import { styles } from './styles'; const MOBILE_MEDIA = 'only screen and (max-width: 40em)'; const APP_CONFIG = Meteor.settings.public.app; const DESKTOP_FONT_SIZE = APP_CONFIG.desktopFontSize; const MOBILE_FONT_SIZE = APP_CONFIG.mobileFontSize; const intlMessages = defineMessages({ userListLabel: { id: 'app.userList.label', description: 'Aria-label for Userlist Nav', }, chatLabel: { id: 'app.chat.label', description: 'Aria-label for Chat Section', }, mediaLabel: { id: 'app.media.label', description: 'Aria-label for Media Section', }, actionsBarLabel: { id: 'app.actionsBar.label', description: 'Aria-label for ActionsBar Section', }, }); const propTypes = { navbar: PropTypes.element, sidebar: PropTypes.element, media: PropTypes.element, actionsbar: PropTypes.element, closedCaption: PropTypes.element, userListIsOpen: PropTypes.bool.isRequired, chatIsOpen: PropTypes.bool.isRequired, locale: PropTypes.string, intl: intlShape.isRequired, }; const defaultProps = { navbar: null, sidebar: null, media: null, actionsbar: null, closedCaption: null, locale: 'en', }; class App extends Component { constructor() { super(); this.state = { enableResize: !window.matchMedia(MOBILE_MEDIA).matches, }; this.handleWindowResize = throttle(this.handleWindowResize).bind(this); } componentDidMount() { const { locale } = this.props; const BROWSER_RESULTS = browser(); const isMobileBrowser = BROWSER_RESULTS.mobile || BROWSER_RESULTS.os.includes('Android'); Modal.setAppElement('#app'); document.getElementsByTagName('html')[0].lang = locale; document.getElementsByTagName('html')[0].style.fontSize = isMobileBrowser ? MOBILE_FONT_SIZE : DESKTOP_FONT_SIZE; const body = document.getElementsByTagName('body')[0]; if (BROWSER_RESULTS && BROWSER_RESULTS.name) { body.classList.add(`browser-${BROWSER_RESULTS.name}`); } if (BROWSER_RESULTS && BROWSER_RESULTS.os) { body.classList.add(`os-${BROWSER_RESULTS.os.split(' ').shift().toLowerCase()}`); } this.handleWindowResize(); window.addEventListener('resize', this.handleWindowResize, false); logger.info('Client loaded successfully'); } componentWillUnmount() { window.removeEventListener('resize', this.handleWindowResize, false); } handleWindowResize() { const { enableResize } = this.state; const shouldEnableResize = !window.matchMedia(MOBILE_MEDIA).matches; if (enableResize === shouldEnableResize) return; this.setState({ enableResize: shouldEnableResize }); } renderPanel() { const { enableResize } = this.state; const { openPanel } = this.props; return ( ); } renderNavBar() { const { navbar } = this.props; if (!navbar) return null; return (
{navbar}
); } renderSidebar() { const { sidebar } = this.props; if (!sidebar) return null; return ( ); } renderClosedCaption() { const { closedCaption } = this.props; if (!closedCaption) return null; return (
{closedCaption}
); } renderMedia() { const { media, intl, chatIsOpen, userListIsOpen, } = this.props; if (!media) return null; return (
{media} {this.renderClosedCaption()}
); } renderActionsBar() { const { actionsbar, intl, userListIsOpen, chatIsOpen, } = this.props; if (!actionsbar) return null; return (
{actionsbar}
); } render() { const { customStyle, customStyleUrl, micsLocked, openPanel, } = this.props; return (
{this.renderNavBar()} {this.renderMedia()} {this.renderActionsBar()}
{this.renderPanel()} {this.renderSidebar()}
{micsLocked ? null : } {customStyleUrl ? : null} {customStyle ? : null}
); } } App.propTypes = propTypes; App.defaultProps = defaultProps; export default injectIntl(App);