import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { defineMessages, injectIntl } from 'react-intl'; import Modal from 'react-modal'; import cx from 'classnames'; import ToastContainer from '../toast/container'; import ModalContainer from '../modal/container'; import NotificationsBarContainer from '../notifications-bar/container'; import AudioNotificationContainer from '../audio/audio-notification/container'; import AudioContainer from '../audio/container'; import ChatNotificationContainer from '../chat/notification/container'; import styles from './styles'; 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 = { fontSize: PropTypes.string, navbar: PropTypes.element, sidebar: PropTypes.element, media: PropTypes.element, actionsbar: PropTypes.element, closedCaption: PropTypes.element, userList: PropTypes.element, chat: PropTypes.element, locale: PropTypes.string, intl: PropTypes.shape({ formatMessage: PropTypes.func.isRequired, }).isRequired, }; const defaultProps = { fontSize: '16px', navbar: null, sidebar: null, media: null, actionsbar: null, closedCaption: null, userList: null, chat: null, locale: 'en', }; class App extends Component { constructor() { super(); this.state = { compactUserList: false, // TODO: Change this on userlist resize (?) }; } componentDidMount() { const { locale } = this.props; Modal.setAppElement('#app'); document.getElementsByTagName('html')[0].lang = locale; document.getElementsByTagName('html')[0].style.fontSize = this.props.fontSize; } 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}
); } renderUserList() { const { intl } = this.props; let { userList } = this.props; const { compactUserList } = this.state; if (!userList) return null; const userListStyle = {}; userListStyle[styles.compact] = compactUserList; userList = React.cloneElement(userList, { compact: compactUserList, }); return ( ); } renderChat() { const { chat, intl } = this.props; if (!chat) return null; return (
{chat}
); } renderMedia() { const { media, intl } = this.props; if (!media) return null; return (
{media} {this.renderClosedCaption()}
); } renderActionsBar() { const { actionsbar, intl } = this.props; if (!actionsbar) return null; return (
{actionsbar}
); } render() { const { params } = this.props; return (
{this.renderUserList()} {this.renderChat()}
{this.renderNavBar()} {this.renderMedia()} {this.renderActionsBar()}
{this.renderSidebar()}
); } } App.propTypes = propTypes; App.defaultProps = defaultProps; export default injectIntl(App);