Giter Site home page Giter Site logo

Comments (5)

icd2k3 avatar icd2k3 commented on May 30, 2024 2

Hey @pmd30011991 this should be done within custom breadcrumb component (let's assume you're using redux with a userReducer)

const PureUserBreadcrumb = ({ firstName }) => <span>{firstName}</span>;

const mapStateToProps = (nextState, nextOwnProps) => ({
  firstName: nextState.userReducer.usersById[nextOwnProps.match.params.id].firstName,
});

export default connect(mapStateToProps)(PureUserBreadcrumb);

^ Each breadcrumb component is passed match as a prop. match comes directly from react-router api here. You can then use match.params.[id_name] to get the actual value.

Once you have that value you can use it to pull/render data however you need.

Putting it all together...

import React from 'react';
import { NavLink } from 'react-router-dom';
import { withBreadcrumbs } from 'react-router-breadcrumbs-hoc';
import UserBreadcrumb from './UserBreadcrumb';

const routes = [
  { path: 'users', breadcrumb: 'Users' },
  { path: 'users/:userId', breadcrumb: UserBreadcrumb},
];

const Breadcrumbs = ({ breadcrumbs }) => (
  <div>
    {breadcrumbs.map(({ breadcrumb, path, match }) => (
      <span key={path}>
        <NavLink to={match.url}>
          {breadcrumb}
        </NavLink>
        <span>/</span>
      </span>
    ))}
  </div>
);

For the above example, if my redux store has...
userReducer: { usersById: { 1: { firstName: 'John' } } }
and pathname is /users/1 the final display would be users / John.

from react-router-breadcrumbs-hoc.

icd2k3 avatar icd2k3 commented on May 30, 2024

Also, if you need to pass additional props (outside of match) into your breadcrumb components you could use this method:

{
  path: 'Something',
  breadcrumb: props => <SomeComponent additional="prop" {...props} />,
}

If neither of these suggestions solve your use case, please let me know and I can think about how to make it more flexible!

from react-router-breadcrumbs-hoc.

pmd30011991 avatar pmd30011991 commented on May 30, 2024

thanks.
what is compose module you are using ?

from react-router-breadcrumbs-hoc.

pmd30011991 avatar pmd30011991 commented on May 30, 2024

Never mind I can use connect instead of compose. can you help me understand what is difference between compose & connect ?

const ProjectOverviewBreadcrumb = (props) => <span>{props.project.name}</span>
const mapStateToProps = state => ({
    project: state.project.currentProject || {}
})

export default connect(
    mapStateToProps
  )(ProjectOverviewBreadcrumb)

from react-router-breadcrumbs-hoc.

icd2k3 avatar icd2k3 commented on May 30, 2024

@pmd30011991 oops, that was a typo - you're right, it should be connect not compose. I edited my answer above

from react-router-breadcrumbs-hoc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.