Get the current path in a react component [duplicate]
Asked Answered
I

1

27

To determine the styling of specific menu item, I am trying to get the current path in my Navigation component.

I tried some of the usual suspects already, but cannot get any results. Especially properties that I thought would be injected via React are not there.

this.props.location returns undefined

this.props.context returns undefined

I use react 15, redux 3.5, react-router 2, react-router-redux 4

import React, {Component, PropTypes} from 'react';
import styles from './Navigation.css';
import NavigationItem from './NavigationItem';

class Navigation extends Component {

  constructor(props) {
    super(props);
  }

  getNavigationClasses() {
    let {navigationOpen, showNavigation} = this.props.layout;
    let navigationClasses = navigationOpen ? styles.navigation + ' ' + styles.open : styles.navigation;
    if (showNavigation) {
      navigationClasses = navigationClasses + ' ' + styles.collapsed;
    }
    return navigationClasses;
  }

  render() {
  /*
  TODO:  get pathname for active marker
  */

    let navigationClasses = this.getNavigationClasses();
    return (
      <div
        className={navigationClasses}
        onClick={this.props.onToggleNavigation}
      >

        {/* Timeline */}
        <NavigationItem
          linkTo='/timeline'
          className={styles.navigationItem + ' ' + styles.timeline}
          displayText='Timeline'
          iconType='timeline'
        />

        {/* Contacts */}
        <NavigationItem
          linkTo='/contacts'
          className={styles.navigationItem + ' ' + styles.contact + ' ' + styles.active}
          displayText='Contacts'
          iconType='contacts'
        />

      </div>
    );
  }
}

Navigation.propTypes = {
  layout: PropTypes.object,
  className: PropTypes.string,
  onToggleNavigation: PropTypes.func
};

export default Navigation;
Internecine answered 23/6, 2016 at 11:23 Comment(4)
@QoP It seems like this would only pass the context to a direct child, am I corrent?Internecine
to any component in the subtree, jsfiddle.net/3yLn5qzc/11Sold
@AnnaMelzer can you please share you router code pleaseDareen
This question is a year old. I do not have access to that project anymore.Internecine
L
28

Add your component to router first

<Router path="/" component={Navigation}  />

You can get your path in

this.props.location.pathname

This is a readme for location

https://github.com/ReactTraining/react-router/blob/master/packages/react-router/docs/api/location.md

Leith answered 23/6, 2016 at 11:30 Comment(2)
As I said: this.props.location returns undefined, therefore this.props.location.pathname throws an arror.Internecine
You must add your component to RouterLeith

© 2022 - 2024 — McMap. All rights reserved.