2017-06-04 10:40:14 +08:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2018-06-05 02:44:23 +08:00
|
|
|
import { throttle } from 'lodash';
|
2017-11-02 04:11:35 +08:00
|
|
|
import { defineMessages, injectIntl, intlShape } from 'react-intl';
|
2017-07-06 23:30:50 +08:00
|
|
|
import Modal from 'react-modal';
|
2018-06-08 01:51:00 +08:00
|
|
|
import browser from 'browser-detect';
|
2018-11-22 22:46:24 +08:00
|
|
|
import PanelManager from '/imports/ui/components/panel-manager/component';
|
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';
|
2017-10-13 02:53:33 +08:00
|
|
|
import ToastContainer from '../toast/container';
|
2017-04-19 03:06:51 +08:00
|
|
|
import ModalContainer from '../modal/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';
|
2018-08-10 01:02:18 +08:00
|
|
|
import ChatAlertContainer from '../chat/alert/container';
|
2018-01-08 14:17:18 +08:00
|
|
|
import { styles } from './styles';
|
2016-04-29 03:02:51 +08:00
|
|
|
|
2018-06-05 02:44:23 +08:00
|
|
|
const MOBILE_MEDIA = 'only screen and (max-width: 40em)';
|
|
|
|
|
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
|
|
|
},
|
|
|
|
mediaLabel: {
|
2017-08-11 00:05:51 +08:00
|
|
|
id: 'app.media.label',
|
2017-04-19 03:42:55 +08:00
|
|
|
description: 'Aria-label for Media 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
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2016-04-29 03:02:51 +08:00
|
|
|
const propTypes = {
|
2017-03-17 03:57:45 +08:00
|
|
|
fontSize: PropTypes.string,
|
2016-04-29 03:02:51 +08:00
|
|
|
navbar: PropTypes.element,
|
|
|
|
sidebar: PropTypes.element,
|
|
|
|
media: PropTypes.element,
|
|
|
|
actionsbar: PropTypes.element,
|
2017-10-26 07:11:06 +08:00
|
|
|
closedCaption: PropTypes.element,
|
2018-10-06 03:23:16 +08:00
|
|
|
userListIsOpen: PropTypes.bool.isRequired,
|
2018-10-16 04:03:17 +08:00
|
|
|
chatIsOpen: PropTypes.bool.isRequired,
|
2017-09-22 22:24:24 +08:00
|
|
|
locale: PropTypes.string,
|
2017-11-02 04:11:35 +08:00
|
|
|
intl: intlShape.isRequired,
|
2017-03-17 03:57:45 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
const defaultProps = {
|
|
|
|
fontSize: '16px',
|
2017-09-22 22:24:24 +08:00
|
|
|
navbar: null,
|
|
|
|
sidebar: null,
|
|
|
|
media: null,
|
|
|
|
actionsbar: null,
|
2017-10-26 07:11:06 +08:00
|
|
|
closedCaption: null,
|
2017-09-22 22:24:24 +08:00
|
|
|
locale: 'en',
|
2016-04-29 03:02:51 +08:00
|
|
|
};
|
|
|
|
|
2017-03-28 03:49:46 +08:00
|
|
|
class App extends Component {
|
2017-10-26 07:11:06 +08:00
|
|
|
constructor() {
|
|
|
|
super();
|
2017-03-10 03:50:21 +08:00
|
|
|
|
2016-09-15 01:48:50 +08:00
|
|
|
this.state = {
|
2018-06-05 02:44:23 +08:00
|
|
|
enableResize: !window.matchMedia(MOBILE_MEDIA).matches,
|
2016-09-15 01:48:50 +08:00
|
|
|
};
|
2018-06-05 02:44:23 +08:00
|
|
|
|
|
|
|
this.handleWindowResize = throttle(this.handleWindowResize).bind(this);
|
2017-02-25 04:19:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
2018-12-18 23:15:51 +08:00
|
|
|
const { locale, fontSize } = this.props;
|
2017-07-04 22:32:22 +08:00
|
|
|
|
2017-07-06 23:30:50 +08:00
|
|
|
Modal.setAppElement('#app');
|
2017-07-04 22:32:22 +08:00
|
|
|
document.getElementsByTagName('html')[0].lang = locale;
|
2018-12-18 23:15:51 +08:00
|
|
|
document.getElementsByTagName('html')[0].style.fontSize = fontSize;
|
2018-06-05 02:44:23 +08:00
|
|
|
|
2018-06-08 01:51:00 +08:00
|
|
|
const BROWSER_RESULTS = browser();
|
|
|
|
const body = document.getElementsByTagName('body')[0];
|
2018-08-01 23:10:21 +08:00
|
|
|
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()}`);
|
|
|
|
}
|
2018-06-08 01:51:00 +08:00
|
|
|
|
2018-06-05 02:44:23 +08:00
|
|
|
this.handleWindowResize();
|
|
|
|
window.addEventListener('resize', this.handleWindowResize, false);
|
2018-12-07 01:26:08 +08:00
|
|
|
|
|
|
|
logger.info('Client loaded successfully');
|
2018-06-05 02:44:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
window.removeEventListener('resize', this.handleWindowResize, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleWindowResize() {
|
|
|
|
const { enableResize } = this.state;
|
|
|
|
const shouldEnableResize = !window.matchMedia(MOBILE_MEDIA).matches;
|
2018-06-08 01:51:00 +08:00
|
|
|
if (enableResize === shouldEnableResize) return;
|
2018-06-05 02:44:23 +08:00
|
|
|
|
|
|
|
this.setState({ enableResize: shouldEnableResize });
|
2016-09-15 01:48:50 +08:00
|
|
|
}
|
|
|
|
|
2018-11-20 07:29:48 +08:00
|
|
|
renderPanel() {
|
2018-11-20 23:28:00 +08:00
|
|
|
const { enableResize } = this.state;
|
2018-11-23 20:37:18 +08:00
|
|
|
const { openPanel } = this.props;
|
2018-09-15 01:50:18 +08:00
|
|
|
|
|
|
|
return (
|
2018-11-20 23:28:00 +08:00
|
|
|
<PanelManager
|
2018-11-23 20:37:18 +08:00
|
|
|
{...{
|
|
|
|
openPanel,
|
2018-12-18 23:15:51 +08:00
|
|
|
enableResize,
|
2018-11-23 20:37:18 +08:00
|
|
|
}}
|
2018-11-20 23:28:00 +08:00
|
|
|
/>
|
2018-09-15 01:50:18 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-05-04 22:48:53 +08:00
|
|
|
renderNavBar() {
|
2016-04-29 03:02:51 +08:00
|
|
|
const { navbar } = this.props;
|
|
|
|
|
2017-03-17 00:52:43 +08:00
|
|
|
if (!navbar) return null;
|
2016-04-29 03:02:51 +08:00
|
|
|
|
2017-03-17 00:52:43 +08:00
|
|
|
return (
|
|
|
|
<header className={styles.navbar}>
|
|
|
|
{navbar}
|
|
|
|
</header>
|
|
|
|
);
|
2016-04-29 03:02:51 +08:00
|
|
|
}
|
|
|
|
|
2016-05-04 04:40:46 +08:00
|
|
|
renderSidebar() {
|
|
|
|
const { sidebar } = this.props;
|
2016-04-29 03:02:51 +08:00
|
|
|
|
2017-03-17 00:52:43 +08:00
|
|
|
if (!sidebar) return null;
|
2016-04-29 03:02:51 +08:00
|
|
|
|
2017-03-17 00:52:43 +08:00
|
|
|
return (
|
2017-05-16 05:45:44 +08:00
|
|
|
<aside className={styles.sidebar}>
|
2017-03-17 00:52:43 +08:00
|
|
|
{sidebar}
|
2017-05-16 05:45:44 +08:00
|
|
|
</aside>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderClosedCaption() {
|
|
|
|
const { closedCaption } = this.props;
|
|
|
|
|
|
|
|
if (!closedCaption) return null;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={styles.closedCaptionBox}>
|
|
|
|
{closedCaption}
|
2017-05-13 03:17:08 +08:00
|
|
|
</div>
|
2017-03-17 00:52:43 +08:00
|
|
|
);
|
2016-04-29 03:02:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
renderMedia() {
|
2018-04-29 09:59:45 +08:00
|
|
|
const {
|
2018-10-06 03:23:16 +08:00
|
|
|
media, intl, chatIsOpen, userListIsOpen,
|
2018-04-29 09:59:45 +08:00
|
|
|
} = this.props;
|
2016-04-29 03:02:51 +08:00
|
|
|
|
2017-03-17 00:52:43 +08:00
|
|
|
if (!media) return null;
|
2016-04-29 03:02:51 +08:00
|
|
|
|
2017-03-17 00:52:43 +08:00
|
|
|
return (
|
2017-03-28 03:49:46 +08:00
|
|
|
<section
|
|
|
|
className={styles.media}
|
2017-06-03 03:25:02 +08:00
|
|
|
aria-label={intl.formatMessage(intlMessages.mediaLabel)}
|
2018-10-06 03:23:16 +08:00
|
|
|
aria-hidden={userListIsOpen || chatIsOpen}
|
2017-06-03 03:25:02 +08:00
|
|
|
>
|
|
|
|
{media}
|
|
|
|
{this.renderClosedCaption()}
|
2017-03-17 00:52:43 +08:00
|
|
|
</section>
|
|
|
|
);
|
2016-07-23 08:12:31 +08:00
|
|
|
}
|
|
|
|
|
2016-05-04 22:48:53 +08:00
|
|
|
renderActionsBar() {
|
2018-04-29 09:59:45 +08:00
|
|
|
const {
|
2018-10-06 03:23:16 +08:00
|
|
|
actionsbar, intl, userListIsOpen, chatIsOpen,
|
2018-04-29 09:59:45 +08:00
|
|
|
} = this.props;
|
2016-04-29 03:02:51 +08:00
|
|
|
|
2017-03-17 00:52:43 +08:00
|
|
|
if (!actionsbar) return null;
|
2016-04-29 03:02:51 +08:00
|
|
|
|
2016-05-12 04:43:07 +08:00
|
|
|
return (
|
2017-03-28 03:49:46 +08:00
|
|
|
<section
|
|
|
|
className={styles.actionsbar}
|
2017-08-11 00:05:51 +08:00
|
|
|
aria-label={intl.formatMessage(intlMessages.actionsBarLabel)}
|
2018-10-06 03:23:16 +08:00
|
|
|
aria-hidden={userListIsOpen || chatIsOpen}
|
2017-06-03 03:25:02 +08:00
|
|
|
>
|
|
|
|
{actionsbar}
|
2017-03-17 00:52:43 +08:00
|
|
|
</section>
|
2016-05-12 04:43:07 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-14 07:57:29 +08:00
|
|
|
render() {
|
2018-10-19 04:37:14 +08:00
|
|
|
const {
|
2018-11-22 22:46:24 +08:00
|
|
|
customStyle, customStyleUrl, micsLocked,
|
2018-10-19 04:37:14 +08:00
|
|
|
} = this.props;
|
2016-07-29 03:48:26 +08:00
|
|
|
|
2016-04-29 03:02:51 +08:00
|
|
|
return (
|
2016-05-03 06:42:54 +08:00
|
|
|
<main className={styles.main}>
|
2016-08-10 00:28:16 +08:00
|
|
|
<NotificationsBarContainer />
|
2016-05-03 06:42:54 +08:00
|
|
|
<section className={styles.wrapper}>
|
|
|
|
<div className={styles.content}>
|
2016-05-04 22:48:53 +08:00
|
|
|
{this.renderNavBar()}
|
2016-04-29 03:02:51 +08:00
|
|
|
{this.renderMedia()}
|
2016-05-04 22:48:53 +08:00
|
|
|
{this.renderActionsBar()}
|
2016-04-29 03:02:51 +08:00
|
|
|
</div>
|
2018-11-20 07:29:48 +08:00
|
|
|
{this.renderPanel()}
|
2018-11-20 23:28:00 +08:00
|
|
|
{this.renderSidebar()}
|
2016-04-29 03:02:51 +08:00
|
|
|
</section>
|
2018-10-12 23:05:53 +08:00
|
|
|
<PollingContainer />
|
2017-04-19 03:06:51 +08:00
|
|
|
<ModalContainer />
|
2018-11-15 02:04:23 +08:00
|
|
|
{micsLocked ? null : <AudioContainer />}
|
2017-10-13 02:53:33 +08:00
|
|
|
<ToastContainer />
|
2018-10-16 04:03:17 +08:00
|
|
|
<ChatAlertContainer />
|
2018-11-15 02:04:23 +08:00
|
|
|
{customStyleUrl ? <link rel="stylesheet" type="text/css" href={customStyleUrl} /> : null}
|
|
|
|
{customStyle ? <link rel="stylesheet" type="text/css" href={`data:text/css;charset=UTF-8,${encodeURIComponent(customStyle)}`} /> : null}
|
2016-04-29 03:02:51 +08:00
|
|
|
</main>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
App.propTypes = propTypes;
|
2017-03-17 03:57:45 +08:00
|
|
|
App.defaultProps = defaultProps;
|
2018-06-05 03:11:11 +08:00
|
|
|
|
2017-03-28 03:49:46 +08:00
|
|
|
export default injectIntl(App);
|