bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/app/component.jsx

342 lines
8.4 KiB
React
Raw Normal View History

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 cx from 'classnames';
2018-04-29 01:53:20 +08:00
import Resizable from 're-resizable';
import browser from 'browser-detect';
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';
import NotificationsBarContainer from '../notifications-bar/container';
2017-03-28 04:40:44 +08:00
import AudioContainer from '../audio/container';
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
const MOBILE_MEDIA = 'only screen and (max-width: 40em)';
const USERLIST_COMPACT_WIDTH = 50;
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',
},
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',
},
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-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',
},
});
2016-04-29 03:02:51 +08:00
const propTypes = {
fontSize: PropTypes.string,
2016-04-29 03:02:51 +08:00
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: intlShape.isRequired,
};
const defaultProps = {
fontSize: '16px',
navbar: null,
sidebar: null,
media: null,
actionsbar: null,
closedCaption: null,
userList: null,
chat: null,
locale: 'en',
2016-04-29 03:02:51 +08:00
};
class App extends Component {
constructor() {
super();
2017-03-10 03:50:21 +08:00
2016-09-15 01:48:50 +08:00
this.state = {
compactUserList: false,
enableResize: !window.matchMedia(MOBILE_MEDIA).matches,
2016-09-15 01:48:50 +08:00
};
this.handleWindowResize = throttle(this.handleWindowResize).bind(this);
}
componentDidMount() {
const { locale } = this.props;
2017-07-04 22:32:22 +08:00
Modal.setAppElement('#app');
2017-07-04 22:32:22 +08:00
document.getElementsByTagName('html')[0].lang = locale;
document.getElementsByTagName('html')[0].style.fontSize = this.props.fontSize;
const BROWSER_RESULTS = browser();
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);
}
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 });
2016-09-15 01:48:50 +08:00
}
2018-09-15 01:50:18 +08:00
renderPoll() {
const { poll } = this.props;
if (!poll) return null;
return (
<div className={styles.poll}>
{poll}
</div>
);
}
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
}
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 (
<aside className={styles.sidebar}>
2017-03-17 00:52:43 +08:00
{sidebar}
</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
}
renderUserList() {
const { intl, chatIsOpen } = this.props;
let { userList } = this.props;
2016-09-15 01:48:50 +08:00
const { compactUserList } = this.state;
if (!userList) return null;
2017-06-03 03:25:02 +08:00
const userListStyle = {};
2016-09-15 01:48:50 +08:00
userListStyle[styles.compact] = compactUserList;
userList = React.cloneElement(userList, {
compact: compactUserList,
});
return (
<div
className={cx(styles.userList, userListStyle)}
aria-label={intl.formatMessage(intlMessages.userListLabel)}
aria-hidden={chatIsOpen}
>
{userList}
</div>
);
}
renderUserListResizable() {
const { userList } = this.props;
// Variables for resizing user-list.
const USERLIST_MIN_WIDTH_PX = 100;
const USERLIST_MAX_WIDTH_PX = 240;
const USERLIST_DEFAULT_WIDTH_RELATIVE = 18;
// decide whether using pixel or percentage unit as a default width for userList
const USERLIST_DEFAULT_WIDTH = (window.innerWidth * (USERLIST_DEFAULT_WIDTH_RELATIVE / 100.0)) < USERLIST_MAX_WIDTH_PX ? `${USERLIST_DEFAULT_WIDTH_RELATIVE}%` : USERLIST_MAX_WIDTH_PX;
if (!userList) return null;
const resizableEnableOptions = {
top: false,
right: true,
bottom: false,
left: false,
topRight: false,
bottomRight: false,
bottomLeft: false,
topLeft: false,
};
return (
2018-04-29 01:53:20 +08:00
<Resizable
defaultSize={{ width: USERLIST_DEFAULT_WIDTH }}
2018-05-26 01:10:13 +08:00
minWidth={USERLIST_MIN_WIDTH_PX}
maxWidth={USERLIST_MAX_WIDTH_PX}
ref={(node) => { this.resizableUserList = node; }}
className={styles.resizableUserList}
enable={resizableEnableOptions}
onResize={(e, direction, ref) => {
const { compactUserList } = this.state;
2018-06-05 03:43:54 +08:00
const shouldBeCompact = ref.clientWidth <= USERLIST_COMPACT_WIDTH;
if (compactUserList === shouldBeCompact) return;
this.setState({ compactUserList: shouldBeCompact });
}}
2017-06-03 03:25:02 +08:00
>
{this.renderUserList()}
2018-04-29 01:53:20 +08:00
</Resizable>
);
}
renderChat() {
const { chat, intl } = this.props;
2017-03-17 00:52:43 +08:00
if (!chat) return null;
return (
<section
className={styles.chat}
aria-label={intl.formatMessage(intlMessages.chatLabel)}
>
{chat}
</section>
);
}
renderChatResizable() {
const { chat } = this.props;
// Variables for resizing chat.
const CHAT_MIN_WIDTH = '10%';
const CHAT_MAX_WIDTH = '25%';
const CHAT_DEFAULT_WIDTH = '15%';
if (!chat) return null;
const resizableEnableOptions = {
top: false,
right: true,
bottom: false,
left: false,
topRight: false,
bottomRight: false,
bottomLeft: false,
topLeft: false,
};
2017-03-17 00:52:43 +08:00
return (
2018-04-29 01:53:20 +08:00
<Resizable
defaultSize={{ width: CHAT_DEFAULT_WIDTH }}
minWidth={CHAT_MIN_WIDTH}
maxWidth={CHAT_MAX_WIDTH}
ref={(node) => { this.resizableChat = node; }}
className={styles.resizableChat}
enable={resizableEnableOptions}
2017-06-03 03:25:02 +08:00
>
{this.renderChat()}
2018-04-29 01:53:20 +08:00
</Resizable>
2017-03-17 00:52:43 +08:00
);
}
2016-04-29 03:02:51 +08:00
renderMedia() {
const {
media, intl, chatIsOpen, userlistIsOpen,
} = 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 (
<section
className={styles.media}
2017-06-03 03:25:02 +08:00
aria-label={intl.formatMessage(intlMessages.mediaLabel)}
2018-04-24 22:43:11 +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>
);
}
renderActionsBar() {
const {
actionsbar, intl, userlistIsOpen, chatIsOpen,
} = 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 (
<section
className={styles.actionsbar}
2017-08-11 00:05:51 +08:00
aria-label={intl.formatMessage(intlMessages.actionsBarLabel)}
2018-04-24 22:43:11 +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
);
}
render() {
const { params, userlistIsOpen } = this.props;
const { enableResize } = this.state;
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}>
<NotificationsBarContainer />
2016-05-03 06:42:54 +08:00
<section className={styles.wrapper}>
<div className={styles.content}>
{this.renderNavBar()}
2016-04-29 03:02:51 +08:00
{this.renderMedia()}
{this.renderActionsBar()}
2016-04-29 03:02:51 +08:00
</div>
{enableResize ? this.renderUserListResizable() : this.renderUserList()}
{userlistIsOpen && enableResize ? <div className={styles.userlistPad} /> : null}
{enableResize ? this.renderChatResizable() : this.renderChat()}
2018-09-15 01:50:18 +08:00
{this.renderPoll()}
{this.renderSidebar()}
2016-04-29 03:02:51 +08:00
</section>
2017-04-19 03:06:51 +08:00
<ModalContainer />
2017-03-28 04:40:44 +08:00
<AudioContainer />
2017-10-13 02:53:33 +08:00
<ToastContainer />
<ChatAlertContainer currentChatID={params.chatID} />
2016-04-29 03:02:51 +08:00
</main>
);
}
}
App.propTypes = propTypes;
App.defaultProps = defaultProps;
export default injectIntl(App);