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

59 lines
1.4 KiB
React
Raw Normal View History

2016-04-29 03:02:51 +08:00
import React, { Component, PropTypes } from 'react';
import styles from './styles.scss';
import { withRouter } from 'react-router';
import Button from '../button/component';
2016-04-29 03:02:51 +08:00
const propTypes = {
presentationTitle: PropTypes.string.isRequired,
hasUnreadMessages: PropTypes.bool.isRequired,
};
const defaultProps = {
presentationTitle: 'Default Room Title',
2016-04-29 03:02:51 +08:00
hasUnreadMessages: false,
};
class NavBar extends Component {
2016-04-29 03:02:51 +08:00
constructor(props) {
super(props);
this.handleToggleUserList = this.handleToggleUserList.bind(this);
}
handleToggleUserList() {
/*
TODO: Find out how to get the current route here
so we can change the click behavior
*/
2016-05-10 03:19:52 +08:00
this.props.router.push('/users');
2016-04-29 03:02:51 +08:00
}
render() {
const { presentationTitle } = this.props;
return (
2016-05-21 00:29:55 +08:00
<div className={styles.navbar}>
<div className={styles.left}>
<Button
onClick={this.handleToggleUserList}
ghost={true}
circle={true}
2016-05-21 00:39:58 +08:00
icon={'user'}
2016-06-07 22:33:22 +08:00
className={styles.btn}
2016-05-21 00:29:55 +08:00
/>
</div>
<div className={styles.center}>
<h1 className={styles.presentationTitle}>{presentationTitle}</h1>
</div>
<div className={styles.right}>
<span id="settingsButtonPlaceHolder"></span>
</div>
2016-04-29 03:02:51 +08:00
</div>
);
}
}
NavBar.propTypes = propTypes;
NavBar.defaultProps = defaultProps;
export default withRouter(NavBar);