import { withRouter } from 'react-router-dom' import { me } from '../initial_state' import { CX } from '../constants' import Button from './button' export default @withRouter class FooterBar extends PureComponent { static contextTypes = { router: PropTypes.object, } render() { if (!me) return false const noRouter = !this.context.router const currentPathname = noRouter ? '' : this.context.router.route.location.pathname const buttons = [ { to: '/home', icon: 'home', title: 'Home', active: currentPathname === '/home', }, { to: '/notifications', icon: 'notifications', title: 'Notifications', active: currentPathname === '/notifications', }, { href: 'https://chat.gab.com', icon: 'chat', title: 'Chat', }, { href: 'https://trends.gab.com', icon: 'trends', title: 'Trends', }, { to: '/groups', icon: 'group', title: 'Groups', active: currentPathname === '/groups', }, ] return (
{ buttons.map((props) => { const classes = CX({ borderTop2PX: 1, borderColorTransparent: !props.active, borderColorBrand: props.active, height100PC: 1, heightMin58PX: 1, px15: 1, flexGrow1: 1, alignItemsCenter: 1, justifyContentCenter: 1, }) const color = props.active ? 'brand' : 'secondary' return (
) } }