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

179 lines
4.9 KiB
React
Raw Normal View History

2021-07-08 19:41:03 +08:00
import React from "react";
import PropTypes from "prop-types";
import { defineMessages, injectIntl } from "react-intl";
import Menu from "@material-ui/core/Menu";
import MenuItem from "@material-ui/core/MenuItem";
import { Divider } from "@material-ui/core";
import Icon from "/imports/ui/components/icon/component";
import Button from "/imports/ui/components/button/component";
import { styles } from "./styles";
const intlMessages = defineMessages({
close: {
id: 'app.dropdown.close',
description: 'Close button label',
},
});
//Used to switch to mobile view
2021-07-08 19:41:03 +08:00
const MAX_WIDTH = 640;
class BBBMenu extends React.Component {
constructor(props) {
super(props);
this.state = {
anchorEl: null,
};
this.opts = props.opts;
this.autoFocus = false;
2021-07-08 19:41:03 +08:00
this.handleClick = this.handleClick.bind(this);
this.handleClose = this.handleClose.bind(this);
}
handleClick(event) {
this.setState({ anchorEl: event.currentTarget });
2021-07-08 19:41:03 +08:00
};
handleClose(event) {
2021-07-08 19:41:03 +08:00
const { onCloseCallback } = this.props;
this.setState({ anchorEl: null }, onCloseCallback());
if (event) {
event.persist();
if (event.type === 'click') {
setTimeout(() => {
document.activeElement.blur();
}, 0);
}
}
2021-07-08 19:41:03 +08:00
};
makeMenuItems() {
const { actions, selectedEmoji } = this.props;
2021-07-08 19:41:03 +08:00
return actions?.map(a => {
const { dataTest, label, onClick, key, disabled } = a;
const itemClasses = [styles.menuitem, a?.className];
if (key?.toLowerCase()?.includes(selectedEmoji?.toLowerCase())) itemClasses.push(styles.emojiSelected);
return [
a.dividerTop && <Divider disabled />,
<MenuItem
key={label}
data-test={dataTest || key}
className={itemClasses.join(' ')}
disableRipple={true}
disableGutters={true}
disabled={disabled}
style={{ paddingLeft: '4px',paddingRight: '4px',paddingTop: '8px', paddingBottom: '8px', marginLeft: '4px', marginRight: '4px' }}
onClick={(event) => {
onClick();
const close = !key.includes('setstatus') && !key.includes('back');
// prevent menu close for sub menu actions
if (close) this.handleClose(event);
}}>
<div style={{ display: 'flex', flexFlow: 'row', width: '100%' }}>
2021-07-08 19:41:03 +08:00
{a.icon ? <Icon iconName={a.icon} key="icon" /> : null}
2021-07-21 01:48:08 +08:00
<div className={styles.option}>{label}</div>
2021-07-08 19:41:03 +08:00
{a.iconRight ? <Icon iconName={a.iconRight} key="iconRight" className={styles.iRight} /> : null}
</div>
</MenuItem>,
a.divider && <Divider disabled />
];
2021-07-08 19:41:03 +08:00
});
}
2021-07-08 19:41:03 +08:00
render() {
const { anchorEl } = this.state;
const { trigger, intl, wide, classes } = this.props;
2021-07-08 19:41:03 +08:00
const actionsItems = this.makeMenuItems();
const menuClasses = classes || [];
menuClasses.push(styles.menu);
2021-08-09 01:22:01 +08:00
if (wide) menuClasses.push(styles.wide);
2021-07-08 19:41:03 +08:00
return (
<>
<div
onClick={(e) => {
e.persist();
2021-09-02 20:37:04 +08:00
this.opts.autoFocus = !(['mouse', 'touch'].includes(e.nativeEvent.pointerType));
this.handleClick(e);
}}
accessKey={this.props?.accessKey}
>
{trigger}
</div>
2021-07-08 19:41:03 +08:00
<Menu
{...this.opts}
2021-07-08 19:41:03 +08:00
anchorEl={anchorEl}
open={Boolean(anchorEl)}
onClose={this.handleClose}
className={menuClasses.join(' ')}
2021-09-04 02:23:13 +08:00
style={{ zIndex: 9999 }}
2021-07-08 19:41:03 +08:00
>
{actionsItems}
{anchorEl && window.innerWidth < MAX_WIDTH &&
2021-07-08 19:41:03 +08:00
<Button
className={styles.closeBtn}
label={intl.formatMessage(intlMessages.close)}
size="lg"
color="default"
onClick={this.handleClose}
/>
}
</Menu>
</>
2021-07-08 19:41:03 +08:00
);
}
}
export default injectIntl(BBBMenu);
BBBMenu.defaultProps = {
opts: {
id: "default-dropdown-menu",
autoFocus: false,
2021-07-08 19:41:03 +08:00
keepMounted: true,
transitionDuration: 0,
elevation: 3,
getContentAnchorEl: null,
fullwidth: "true",
anchorOrigin: { vertical: 'top', horizontal: 'right' },
transformorigin: { vertical: 'top', horizontal: 'right' },
2021-07-08 19:41:03 +08:00
},
onCloseCallback: () => { },
wide: false,
2021-07-08 19:41:03 +08:00
};
BBBMenu.propTypes = {
intl: PropTypes.shape({
formatMessage: PropTypes.func.isRequired,
}).isRequired,
trigger: PropTypes.element.isRequired,
actions: PropTypes.arrayOf(PropTypes.shape({
key: PropTypes.string.isRequired,
label: PropTypes.string.isRequired,
onClick: PropTypes.func,
2021-07-08 19:41:03 +08:00
icon: PropTypes.string,
iconRight: PropTypes.string,
disabled: PropTypes.bool,
2021-07-08 19:41:03 +08:00
divider: PropTypes.bool,
dividerTop: PropTypes.bool,
2021-08-09 01:22:01 +08:00
accessKey: PropTypes.string,
2021-07-08 19:41:03 +08:00
})).isRequired,
onCloseCallback: PropTypes.func,
wide: PropTypes.bool,
2021-07-08 19:41:03 +08:00
};