import React from 'react'; import { Link, withRouter, RouteComponentProps } from 'react-router-dom'; import classnames from 'classnames'; import { NavigationLink } from 'config'; import translate, { translateRaw } from 'translations'; interface Props extends RouteComponentProps<{}> { link: NavigationLink; isHomepage: boolean; className: string; } class NavigationLinkClass extends React.PureComponent { public render() { const { link, location, isHomepage, className } = this.props; let isActive = false; if (!link.external) { // isActive if // 1) Current path is the same as link // 2) the first path is the same for both links (/account and /account/send) // 3) we're at the root path and this is the "homepage" nav item const isSubRoute = location.pathname.split('/')[1] === link.to.split('/')[1]; isActive = location.pathname === link.to || isSubRoute || (isHomepage && location.pathname === '/'); } const linkClasses = classnames({ [`${className}-link`]: true, 'is-disabled': !link.to, 'is-active': isActive }); const linkLabel = `nav item: ${translateRaw(link.name)}`; const linkEl = link.external || !link.to ? ( {translate(link.name)} ) : ( {translate(link.name)} ); return (
  • {linkEl}
  • ); } } // withRouter is a HOC which provides NavigationLink with a react-router location prop export default withRouter(NavigationLinkClass);