bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/panel-manager/component.jsx

190 lines
4.9 KiB
React
Raw Normal View History

2018-11-20 07:29:48 +08:00
import React, { Component } from 'react';
2018-12-18 23:15:51 +08:00
import PropTypes from 'prop-types';
2018-11-20 07:29:48 +08:00
import BreakoutRoomContainer from '/imports/ui/components/breakout-room/container';
import UserListContainer from '/imports/ui/components/user-list/container';
import ChatContainer from '/imports/ui/components/chat/container';
import PollContainer from '/imports/ui/components/poll/container';
import { defineMessages, injectIntl } from 'react-intl';
import Resizable from 're-resizable';
import { styles } from '/imports/ui/components/app/styles';
import _ from 'lodash';
2018-11-20 07:29:48 +08:00
const intlMessages = defineMessages({
chatLabel: {
id: 'app.chat.label',
description: 'Aria-label for Chat Section',
},
userListLabel: {
id: 'app.userList.label',
description: 'Aria-label for Userlist Nav',
},
});
2018-12-18 23:15:51 +08:00
const propTypes = {
intl: PropTypes.shape({
formatMessage: PropTypes.func.isRequired,
}).isRequired,
enableResize: PropTypes.bool.isRequired,
openPanel: PropTypes.string.isRequired,
};
2018-11-20 07:29:48 +08:00
class PanelManager extends Component {
constructor() {
super();
this.padKey = _.uniqueId('resize-pad-');
this.userlistKey = _.uniqueId('userlist-');
this.breakoutroomKey = _.uniqueId('breakoutroom-');
this.chatKey = _.uniqueId('chat-');
this.pollKey = _.uniqueId('poll-');
2018-11-20 07:29:48 +08:00
}
renderUserList() {
const {
intl,
enableResize,
2018-11-20 07:29:48 +08:00
} = this.props;
return (
<div
className={styles.userList}
2018-11-20 07:29:48 +08:00
aria-label={intl.formatMessage(intlMessages.userListLabel)}
key={enableResize ? null : this.userlistKey}
2018-11-20 07:29:48 +08:00
>
<UserListContainer />
</div>
);
}
renderUserListResizable() {
// Variables for resizing user-list.
const USERLIST_MIN_WIDTH_PX = 150;
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;
const resizableEnableOptions = {
top: false,
right: true,
bottom: false,
left: false,
topRight: false,
bottomRight: false,
bottomLeft: false,
topLeft: false,
};
return (
<Resizable
defaultSize={{ width: USERLIST_DEFAULT_WIDTH }}
minWidth={USERLIST_MIN_WIDTH_PX}
maxWidth={USERLIST_MAX_WIDTH_PX}
ref={(node) => { this.resizableUserList = node; }}
className={styles.resizableUserList}
enable={resizableEnableOptions}
key={this.userlistKey}
2018-11-20 07:29:48 +08:00
>
{this.renderUserList()}
</Resizable>
);
}
renderChat() {
const { intl, enableResize } = this.props;
2018-11-20 07:29:48 +08:00
return (
<section
className={styles.chat}
aria-label={intl.formatMessage(intlMessages.chatLabel)}
key={enableResize ? null : this.chatKey}
2018-11-20 07:29:48 +08:00
>
<ChatContainer />
</section>
);
}
renderChatResizable() {
// Variables for resizing chat.
const CHAT_MIN_WIDTH = '10%';
const CHAT_MAX_WIDTH = '25%';
const CHAT_DEFAULT_WIDTH = '15%';
const resizableEnableOptions = {
top: false,
right: true,
bottom: false,
left: false,
topRight: false,
bottomRight: false,
bottomLeft: false,
topLeft: false,
};
return (
<Resizable
defaultSize={{ width: CHAT_DEFAULT_WIDTH }}
minWidth={CHAT_MIN_WIDTH}
maxWidth={CHAT_MAX_WIDTH}
ref={(node) => { this.resizableChat = node; }}
className={styles.resizableChat}
enable={resizableEnableOptions}
key={this.chatKey}
2018-11-20 07:29:48 +08:00
>
{this.renderChat()}
</Resizable>
);
}
renderPoll() {
return (
<div className={styles.poll} key={this.pollKey}>
2018-11-20 07:29:48 +08:00
<PollContainer />
</div>
);
}
renderBreakoutRoom() {
return (
<div className={styles.breakoutRoom} key={this.breakoutroomKey}>
<BreakoutRoomContainer />
2018-11-20 07:29:48 +08:00
</div>
);
}
render() {
const { enableResize, openPanel } = this.props;
if (openPanel === '') return null;
const panels = [this.renderUserList()];
const resizablePanels = [
this.renderUserListResizable(),
<div className={styles.userlistPad} key={this.padKey} />,
];
if (openPanel === 'chat') {
2018-12-18 23:15:51 +08:00
if (enableResize) resizablePanels.push(this.renderChatResizable());
if (!enableResize) panels.push(this.renderChat());
2018-11-20 07:29:48 +08:00
}
if (openPanel === 'poll') {
2018-12-18 23:15:51 +08:00
if (enableResize) resizablePanels.push(this.renderPoll());
if (!enableResize) panels.push(this.renderPoll());
}
if (openPanel === 'breakoutroom') {
2018-12-18 23:15:51 +08:00
if (enableResize) resizablePanels.push(this.renderBreakoutRoom());
if (!enableResize) panels.push(this.renderBreakoutRoom());
}
return enableResize
? resizablePanels
: panels;
2018-11-20 07:29:48 +08:00
}
}
export default injectIntl(PanelManager);
2018-12-18 23:15:51 +08:00
PanelManager.propTypes = propTypes;