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

275 lines
8.5 KiB
React
Raw Normal View History

import React, { Component } from 'react';
import PropTypes from 'prop-types';
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';
2020-04-29 00:43:14 +08:00
import Icon from '../icon/component';
2018-02-23 01:30:12 +08:00
import { styles } from './styles.scss';
2020-06-05 07:01:17 +08:00
import Button from '/imports/ui/components/button/component';
import RecordingIndicator from './recording-indicator/container';
import TalkingIndicatorContainer from '/imports/ui/components/nav-bar/talking-indicator/container';
import ConnectionStatusButton from '/imports/ui/components/connection-status/button/container';
import ConnectionStatusService from '/imports/ui/components/connection-status/service';
2018-02-23 01:30:12 +08:00
import SettingsDropdownContainer from './settings-dropdown/container';
import browserInfo from '/imports/utils/browserInfo';
import deviceInfo from '/imports/utils/deviceInfo';
import _ from "lodash";
2022-01-24 00:18:09 +08:00
import { politeSRAlert } from '/imports/utils/dom-utils';
2021-05-18 04:25:07 +08:00
import { PANELS, ACTIONS } from '../layout/enums';
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',
},
newMsgAria: {
id: 'app.navBar.toggleUserList.newMsgAria',
description: 'label for new message screen reader alert',
},
defaultBreakoutName: {
id: 'app.createBreakoutRoom.room',
description: 'default breakout room name',
},
});
2016-04-29 03:02:51 +08:00
const propTypes = {
presentationTitle: PropTypes.string,
hasUnreadMessages: PropTypes.bool,
shortcuts: PropTypes.string,
2022-01-27 01:16:10 +08:00
breakoutNum: PropTypes.number,
breakoutName: PropTypes.string,
meetingName: 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,
shortcuts: '',
2016-04-29 03:02:51 +08:00
};
class NavBar extends Component {
2021-05-18 04:25:07 +08:00
constructor(props) {
super(props);
this.state = {
acs: props.activeChats,
}
2021-05-18 04:25:07 +08:00
this.handleToggleUserList = this.handleToggleUserList.bind(this);
2019-01-16 21:08:20 +08:00
}
2019-01-04 02:14:35 +08:00
componentDidMount() {
2019-01-09 06:17:11 +08:00
const {
processOutsideToggleRecording,
connectRecordingObserver,
shortcuts: TOGGLE_USERLIST_AK,
intl,
breakoutNum,
breakoutName,
meetingName,
2019-01-09 06:17:11 +08:00
} = this.props;
if (breakoutNum && breakoutNum > 0) {
2022-01-27 01:16:10 +08:00
if (breakoutName && meetingName) {
const defaultBreakoutName = intl.formatMessage(intlMessages.defaultBreakoutName, {
0: breakoutNum,
});
2022-01-27 01:16:10 +08:00
if (breakoutName === defaultBreakoutName) {
document.title = `${breakoutNum} - ${meetingName}`;
} else {
document.title = `${breakoutName} - ${meetingName}`;
}
}
}
const { isFirefox } = browserInfo;
const { isMacos } = deviceInfo;
2019-01-04 05:09:00 +08:00
if (Meteor.settings.public.allowOutsideCommands.toggleRecording
|| getFromUserSettings('bbb_outside_toggle_recording', false)) {
2019-01-09 06:17:11 +08:00
connectRecordingObserver();
window.addEventListener('message', processOutsideToggleRecording);
2019-01-04 02:14:35 +08:00
}
// accessKey U does not work on firefox for macOS for some unknown reason
if (isMacos && isFirefox && TOGGLE_USERLIST_AK === 'U') {
document.addEventListener('keyup', (event) => {
const { key, code } = event;
const eventKey = key?.toUpperCase();
const eventCode = code;
if (event?.altKey && (eventKey === TOGGLE_USERLIST_AK || eventCode === `Key${TOGGLE_USERLIST_AK}`)) {
this.handleToggleUserList();
}
});
}
2019-01-04 02:14:35 +08:00
}
componentDidUpdate(prevProps, prevState) {
if (!_.isEqual(prevProps.activeChats, this.props.activeChats)) {
this.setState({ acs: this.props.activeChats})
}
}
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
}
2021-05-18 04:25:07 +08:00
handleToggleUserList() {
const {
sidebarNavigation,
sidebarContent,
2021-08-05 19:03:24 +08:00
layoutContextDispatch,
2021-05-18 04:25:07 +08:00
} = this.props;
if (sidebarNavigation.isOpen) {
if (sidebarContent.isOpen) {
2021-08-05 19:03:24 +08:00
layoutContextDispatch({
2021-05-18 04:25:07 +08:00
type: ACTIONS.SET_SIDEBAR_CONTENT_IS_OPEN,
value: false,
});
2021-08-05 19:03:24 +08:00
layoutContextDispatch({
2021-05-18 04:25:07 +08:00
type: ACTIONS.SET_SIDEBAR_CONTENT_PANEL,
value: PANELS.NONE,
});
2021-08-05 19:03:24 +08:00
layoutContextDispatch({
2021-05-18 04:25:07 +08:00
type: ACTIONS.SET_ID_CHAT_OPEN,
value: '',
});
}
2021-08-05 19:03:24 +08:00
layoutContextDispatch({
2021-05-18 04:25:07 +08:00
type: ACTIONS.SET_SIDEBAR_NAVIGATION_IS_OPEN,
value: false,
});
2021-08-05 19:03:24 +08:00
layoutContextDispatch({
2021-05-18 04:25:07 +08:00
type: ACTIONS.SET_SIDEBAR_NAVIGATION_PANEL,
value: PANELS.NONE,
});
} else {
2021-08-05 19:03:24 +08:00
layoutContextDispatch({
2021-05-18 04:25:07 +08:00
type: ACTIONS.SET_SIDEBAR_NAVIGATION_IS_OPEN,
value: true,
});
2021-08-05 19:03:24 +08:00
layoutContextDispatch({
2021-05-18 04:25:07 +08:00
type: ACTIONS.SET_SIDEBAR_NAVIGATION_PANEL,
value: PANELS.USERLIST,
});
}
}
2017-10-11 06:08:51 +08:00
render() {
2018-05-02 08:02:45 +08:00
const {
hasUnreadMessages,
hasUnreadNotes,
2021-05-18 04:25:07 +08:00
// isExpanded,
activeChats,
intl,
shortcuts: TOGGLE_USERLIST_AK,
2019-01-04 02:14:35 +08:00
mountModal,
presentationTitle,
2019-08-15 04:49:16 +08:00
amIModerator,
2021-05-18 04:25:07 +08:00
style,
main,
sidebarNavigation,
2018-05-02 08:02:45 +08:00
} = this.props;
2017-10-11 06:08:51 +08:00
const hasNotification = hasUnreadMessages || hasUnreadNotes;
2017-10-11 06:08:51 +08:00
const toggleBtnClasses = {};
toggleBtnClasses[styles.btn] = true;
toggleBtnClasses[styles.btnWithNotificationDot] = hasNotification;
2017-10-11 06:08:51 +08:00
let ariaLabel = intl.formatMessage(intlMessages.toggleUserListAria);
ariaLabel += hasNotification ? (` ${intl.formatMessage(intlMessages.newMessages)}`) : '';
2021-05-18 04:25:07 +08:00
const isExpanded = sidebarNavigation.isOpen;
const { acs } = this.state;
activeChats.map((c, i) => {
if (c?.unreadCounter > 0 && c?.unreadCounter !== acs[i]?.unreadCounter) {
2022-01-24 00:18:09 +08:00
politeSRAlert(`${intl.formatMessage(intlMessages.newMsgAria, { 0: c.name })}`)
}
});
2017-10-11 06:08:51 +08:00
return (
2021-05-18 04:25:07 +08:00
<header
className={styles.navbar}
2021-05-18 04:25:07 +08:00
style={
main === 'new'
? {
position: 'absolute',
top: style.top,
left: style.left,
height: style.height,
width: style.width,
}
: {
position: 'relative',
height: style.height,
width: '100%',
}
}
>
<div className={styles.top}>
<div className={styles.left}>
2021-11-05 01:30:47 +08:00
{isExpanded && document.dir === 'ltr'
&& <Icon iconName="left_arrow" className={styles.arrowLeft} />}
{!isExpanded && document.dir === 'rtl'
&& <Icon iconName="left_arrow" className={styles.arrowLeft} />}
<Button
2021-05-18 04:25:07 +08:00
onClick={this.handleToggleUserList}
ghost
circle
hideLabel
2022-01-20 21:03:18 +08:00
data-test={hasNotification ? 'hasUnreadMessages' : 'toggleUserList'}
2021-08-27 21:49:20 +08:00
label={intl.formatMessage(intlMessages.toggleUserListLabel)}
tooltipLabel={intl.formatMessage(intlMessages.toggleUserListLabel)}
aria-label={ariaLabel}
icon="user"
className={cx(toggleBtnClasses)}
aria-expanded={isExpanded}
accessKey={TOGGLE_USERLIST_AK}
/>
2021-11-05 01:30:47 +08:00
{!isExpanded && document.dir === 'ltr'
&& <Icon iconName="right_arrow" className={styles.arrowRight} />}
{isExpanded && document.dir === 'rtl'
&& <Icon iconName="right_arrow" className={styles.arrowRight} />}
</div>
<div className={styles.center}>
2022-01-20 21:03:18 +08:00
<h1 className={styles.presentationTitle} data-test="presentationTitle">
{presentationTitle}
</h1>
<RecordingIndicator
mountModal={mountModal}
amIModerator={amIModerator}
/>
</div>
<div className={styles.right}>
{ConnectionStatusService.isEnabled() ? <ConnectionStatusButton /> : null}
<SettingsDropdownContainer amIModerator={amIModerator} />
</div>
2017-10-11 06:08:51 +08:00
</div>
<div className={styles.bottom}>
<TalkingIndicatorContainer amIModerator={amIModerator} />
2017-10-11 06:08:51 +08:00
</div>
2021-05-18 04:25:07 +08:00
</header>
2017-10-11 06:08:51 +08:00
);
}
2016-04-29 03:02:51 +08:00
}
NavBar.propTypes = propTypes;
NavBar.defaultProps = defaultProps;
export default withShortcutHelper(withModalMounter(injectIntl(NavBar)), 'toggleUserList');