bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/nav-bar/component.jsx

198 lines
5.6 KiB
React
Raw Normal View History

import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
2018-12-18 23:15:51 +08:00
import { Session } from 'meteor/session';
2017-03-10 03:50:21 +08:00
import _ from 'lodash';
import cx from 'classnames';
2017-05-03 23:06:28 +08:00
import { withModalMounter } from '/imports/ui/components/modal/service';
import withShortcutHelper from '/imports/ui/components/shortcut-help/service';
2019-01-04 02:14:35 +08:00
import getFromUserSettings from '/imports/ui/services/users-settings';
import { defineMessages, injectIntl } from 'react-intl';
2018-02-23 01:30:12 +08:00
import { styles } from './styles.scss';
import Button from '../button/component';
import RecordingIndicator from './recording-indicator/component';
import SettingsDropdownContainer from './settings-dropdown/container';
const intlMessages = defineMessages({
toggleUserListLabel: {
id: 'app.navBar.userListToggleBtnLabel',
2017-04-10 23:50:03 +08:00
description: 'Toggle button label',
},
toggleUserListAria: {
id: 'app.navBar.toggleUserList.ariaLabel',
description: 'description of the lists inside the userlist',
},
newMessages: {
2017-08-11 00:05:51 +08:00
id: 'app.navBar.toggleUserList.newMessages',
2017-04-26 22:08:47 +08:00
description: 'label for toggleUserList btn when showing red notification',
},
2018-02-16 21:47:55 +08:00
recordingSession: {
id: 'app.navBar.recording',
description: 'label for when the session is being recorded',
},
recordingIndicatorOn: {
id: 'app.navBar.recording.on',
description: 'label for indicator when the session is being recorded',
},
recordingIndicatorOff: {
id: 'app.navBar.recording.off',
description: 'label for indicator when the session is not being recorded',
},
});
2016-04-29 03:02:51 +08:00
const propTypes = {
presentationTitle: PropTypes.string,
hasUnreadMessages: PropTypes.bool,
2019-01-05 05:32:59 +08:00
recordProps: PropTypes.shape({
time: PropTypes.number,
recording: PropTypes.bool,
}),
shortcuts: PropTypes.string,
2016-04-29 03:02:51 +08:00
};
const defaultProps = {
presentationTitle: 'Default Room Title',
2016-04-29 03:02:51 +08:00
hasUnreadMessages: false,
2018-12-21 03:39:04 +08:00
recordProps: {
allowStartStopRecording: false,
autoStartRecording: false,
record: false,
recording: false,
},
shortcuts: '',
2016-04-29 03:02:51 +08:00
};
class NavBar extends PureComponent {
2019-01-16 21:08:20 +08:00
static handleToggleUserList() {
Session.set(
'openPanel',
Session.get('openPanel') !== ''
? ''
: 'userlist',
);
Session.set('idChatOpen', '');
}
2016-04-29 03:02:51 +08:00
constructor(props) {
super(props);
this.state = {
time: (props.recordProps.time ? props.recordProps.time : 0),
2019-04-04 04:51:18 +08:00
amIModerator: props.amIModerator,
};
2019-01-04 02:14:35 +08:00
this.incrementTime = this.incrementTime.bind(this);
}
2019-01-04 02:14:35 +08:00
componentDidMount() {
2019-01-09 06:17:11 +08:00
const {
processOutsideToggleRecording,
connectRecordingObserver,
} = this.props;
2019-01-04 05:09:00 +08:00
if (Meteor.settings.public.allowOutsideCommands.toggleRecording
|| getFromUserSettings('outsideToggleRecording', false)) {
2019-01-09 06:17:11 +08:00
connectRecordingObserver();
window.addEventListener('message', processOutsideToggleRecording);
2019-01-04 02:14:35 +08:00
}
}
static getDerivedStateFromProps(nextProps) {
return { amIModerator: nextProps.amIModerator };
2019-04-04 04:51:18 +08:00
}
componentDidUpdate() {
2017-10-11 06:08:51 +08:00
const {
recordProps,
2017-10-11 06:08:51 +08:00
} = this.props;
if (!recordProps.recording) {
2019-01-04 02:14:35 +08:00
clearInterval(this.interval);
this.interval = null;
} else if (this.interval === null) {
this.interval = setInterval(this.incrementTime, 1000);
}
2017-10-11 06:08:51 +08:00
}
2019-01-04 02:14:35 +08:00
componentWillUnmount() {
2019-01-04 05:09:00 +08:00
clearInterval(this.interval);
2019-01-04 02:14:35 +08:00
}
incrementTime() {
const { recordProps } = this.props;
2019-01-04 04:50:43 +08:00
const { time } = this.state;
2019-01-04 02:14:35 +08:00
2019-01-04 04:50:43 +08:00
if (recordProps.time > time) {
this.setState({ time: recordProps.time + 1 });
2019-01-04 02:14:35 +08:00
} else {
2019-01-04 04:50:43 +08:00
this.setState({ time: time + 1 });
2019-01-04 02:14:35 +08:00
}
}
2017-10-11 06:08:51 +08:00
render() {
2018-05-02 08:02:45 +08:00
const {
hasUnreadMessages,
2018-12-21 03:39:04 +08:00
recordProps,
isExpanded,
intl,
shortcuts: TOGGLE_USERLIST_AK,
2019-01-04 02:14:35 +08:00
mountModal,
2019-05-14 22:28:18 +08:00
isBreakoutRoom,
presentationTitle,
2018-05-02 08:02:45 +08:00
} = this.props;
2017-10-11 06:08:51 +08:00
2018-12-21 03:39:04 +08:00
const recordingMessage = recordProps.recording ? 'recordingIndicatorOn' : 'recordingIndicatorOff';
2019-04-04 04:51:18 +08:00
const { time, amIModerator } = this.state;
2019-04-27 04:56:12 +08:00
2019-01-04 02:14:35 +08:00
if (!this.interval) {
this.interval = setInterval(this.incrementTime, 1000);
}
2017-10-11 06:08:51 +08:00
const toggleBtnClasses = {};
toggleBtnClasses[styles.btn] = true;
toggleBtnClasses[styles.btnWithNotificationDot] = hasUnreadMessages;
let ariaLabel = intl.formatMessage(intlMessages.toggleUserListAria);
ariaLabel += hasUnreadMessages ? (` ${intl.formatMessage(intlMessages.newMessages)}`) : '';
2017-10-11 06:08:51 +08:00
return (
<div className={styles.navbar}>
<div className={styles.left}>
<Button
2018-01-09 10:43:34 +08:00
data-test="userListToggleButton"
2019-01-16 21:08:20 +08:00
onClick={NavBar.handleToggleUserList}
2017-10-11 06:08:51 +08:00
ghost
circle
hideLabel
label={intl.formatMessage(intlMessages.toggleUserListLabel)}
aria-label={ariaLabel}
2018-02-23 01:30:12 +08:00
icon="user"
2017-10-11 06:08:51 +08:00
className={cx(toggleBtnClasses)}
aria-expanded={isExpanded}
2018-05-02 08:02:45 +08:00
accessKey={TOGGLE_USERLIST_AK}
2017-10-11 06:08:51 +08:00
/>
</div>
2018-02-23 01:30:12 +08:00
<div className={styles.center}>
<h1 className={styles.presentationTitle}>{presentationTitle}</h1>
2018-12-21 03:39:04 +08:00
{recordProps.record
2019-01-28 21:33:50 +08:00
? <span className={styles.presentationTitleSeparator} aria-hidden>|</span>
2018-12-06 01:42:31 +08:00
: null}
<RecordingIndicator
2018-12-21 03:39:04 +08:00
{...recordProps}
title={intl.formatMessage(intlMessages[recordingMessage])}
2019-01-04 02:14:35 +08:00
mountModal={mountModal}
2019-01-04 05:09:00 +08:00
time={time}
2019-04-04 04:51:18 +08:00
amIModerator={amIModerator}
/>
2017-10-11 06:08:51 +08:00
</div>
<div className={styles.right}>
2019-05-14 22:28:18 +08:00
<SettingsDropdownContainer amIModerator={amIModerator} isBreakoutRoom={isBreakoutRoom} />
2017-10-11 06:08:51 +08:00
</div>
</div>
);
}
2016-04-29 03:02:51 +08:00
}
NavBar.propTypes = propTypes;
NavBar.defaultProps = defaultProps;
export default withShortcutHelper(withModalMounter(injectIntl(NavBar)), 'toggleUserList');