github.com/xxRanger/go-ethereum@v1.8.23/dashboard/assets/components/SideBar.jsx (about) 1 // @flow 2 3 // Copyright 2017 The go-ethereum Authors 4 // This file is part of the go-ethereum library. 5 // 6 // The go-ethereum library is free software: you can redistribute it and/or modify 7 // it under the terms of the GNU Lesser General Public License as published by 8 // the Free Software Foundation, either version 3 of the License, or 9 // (at your option) any later version. 10 // 11 // The go-ethereum library is distributed in the hope that it will be useful, 12 // but WITHOUT ANY WARRANTY; without even the implied warranty of 13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 // GNU Lesser General Public License for more details. 15 // 16 // You should have received a copy of the GNU Lesser General Public License 17 // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. 18 19 import React, {Component} from 'react'; 20 21 import withStyles from 'material-ui/styles/withStyles'; 22 import List, {ListItem, ListItemIcon, ListItemText} from 'material-ui/List'; 23 import Icon from 'material-ui/Icon'; 24 import Transition from 'react-transition-group/Transition'; 25 import {Icon as FontAwesome} from 'react-fa'; 26 27 import {MENU, DURATION} from '../common'; 28 29 // styles contains the constant styles of the component. 30 const styles = { 31 menu: { 32 default: { 33 transition: `margin-left ${DURATION}ms`, 34 }, 35 transition: { 36 entered: {marginLeft: -200}, 37 }, 38 }, 39 }; 40 41 // themeStyles returns the styles generated from the theme for the component. 42 const themeStyles = theme => ({ 43 list: { 44 background: theme.palette.grey[900], 45 }, 46 listItem: { 47 minWidth: theme.spacing.unit * 7, 48 }, 49 icon: { 50 fontSize: theme.spacing.unit * 3, 51 }, 52 }); 53 54 export type Props = { 55 classes: Object, // injected by withStyles() 56 opened: boolean, 57 changeContent: string => void, 58 }; 59 60 // SideBar renders the sidebar of the dashboard. 61 class SideBar extends Component<Props> { 62 shouldComponentUpdate(nextProps) { 63 return nextProps.opened !== this.props.opened; 64 } 65 66 // clickOn returns a click event handler function for the given menu item. 67 clickOn = menu => (event) => { 68 event.preventDefault(); 69 this.props.changeContent(menu); 70 }; 71 72 // menuItems returns the menu items corresponding to the sidebar state. 73 menuItems = (transitionState) => { 74 const {classes} = this.props; 75 const children = []; 76 MENU.forEach((menu) => { 77 children.push(( 78 <ListItem button key={menu.id} onClick={this.clickOn(menu.id)} className={classes.listItem}> 79 <ListItemIcon> 80 <Icon className={classes.icon}> 81 <FontAwesome name={menu.icon} /> 82 </Icon> 83 </ListItemIcon> 84 <ListItemText 85 primary={menu.title} 86 style={{ 87 ...styles.menu.default, 88 ...styles.menu.transition[transitionState], 89 padding: 0, 90 }} 91 /> 92 </ListItem> 93 )); 94 }); 95 return children; 96 }; 97 98 // menu renders the list of the menu items. 99 menu = (transitionState: Object) => ( 100 <div className={this.props.classes.list}> 101 <List> 102 {this.menuItems(transitionState)} 103 </List> 104 </div> 105 ); 106 107 render() { 108 return ( 109 <Transition mountOnEnter in={this.props.opened} timeout={{enter: DURATION}}> 110 {this.menu} 111 </Transition> 112 ); 113 } 114 } 115 116 export default withStyles(themeStyles)(SideBar);