Giter Site home page Giter Site logo

Comments (5)

icd2k3 avatar icd2k3 commented on May 30, 2024 1

Hey @luke-unifymonitor this key warning is fixed in 2.1.4. Here is the updated code sandbox: https://codesandbox.io/s/13j7vr75yl

from react-router-breadcrumbs-hoc.

icd2k3 avatar icd2k3 commented on May 30, 2024

πŸ‘‹ hey @luke-unifymonitor!

note: I removed my previous comment because I just had a chance to try out this approach below and it seems like it might work well for this use case.

Instead of a string, I recommend using a component breadcrumb that checks if the param is included or not:

const RegisterSensorBreadcrumb = ({ match }) => {
  // if the route includes `hubId` then return nothing for that breadcrumb
  // (alternatively you could also render a different breadcrumb IF the hubId is provided)
  if (match.params.hubId) { return null; }

  // if the route does NOT include `hubId` then return normal Register Sensor breadcrumb
  return <span>Register Sensor</span>;
};

const routesConfig = [
  {
    path: '/sensor/register/:hubId?',
    exact: true,
    component: RegisterSensorContainer,
    breadcrumb: RegisterSensorBreadcrumb,
  }
];

// /sensor/register == 'Register Sensor'
// /sensor/register/123 == 'Register Sensor'

In this case both /sensor/register and /sensor/register/123 paths will result in / Register Sensor.

Let me know if this works for you!

from react-router-breadcrumbs-hoc.

icd2k3 avatar icd2k3 commented on May 30, 2024

Gonna close this as the suggestion above should solve for this use case. If it doesn't, just let me know and I'll reopen this. Thanks!

from react-router-breadcrumbs-hoc.

luke-unifymonitor avatar luke-unifymonitor commented on May 30, 2024

Hi @icd2k3,

Apologies for not replying before. We had a re-think for the application and no longer needed the paths that caused the problem.

However, I did create this https://codesandbox.io/s/kok304yz1v and the console reads:

Warning: Encountered two children with the same key, /sensor/register/:hubId?. Keys should be unique so that components maintain their identity across updates. Non-unique keys may cause children to be duplicated and/or omitted β€” the behavior is unsupported and could change in a future version.

Many thanks for your help.

from react-router-breadcrumbs-hoc.

icd2k3 avatar icd2k3 commented on May 30, 2024

πŸ€” I should fix that warning. I'll look into this case in the near future.

Thanks for the reply and the code sandbox @luke-unifymonitor !

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.