/** * * LeftMenuLink * */ import _ from 'lodash'; import React from 'react'; import { FormattedMessage } from 'react-intl'; import { Link } from 'react-router-dom'; import styles from './styles.scss'; class LeftMenuLink extends React.Component { // eslint-disable-line react/prefer-stateless-function render() { // We need to create our own active url checker, // because of the two levels router. const isLinkActive = _.startsWith(window.location.pathname.replace('/admin', ''), this.props.destination); return (
  • ); } } LeftMenuLink.propTypes = { destination: React.PropTypes.string.isRequired, icon: React.PropTypes.string.isRequired, label: React.PropTypes.string.isRequired, }; export default LeftMenuLink;