Skip to content
Advertisement

How to pass a function to state in react router v6

I want to share state between two routes when I click on the link for one of the routes (NewUser). The state that I want to share and the logic modifying it are both held in the Users route. I want to pass the logic to change the state to the NewUsers route.

When I pass a string to the state object in router Link, I am able to access it in the NewUsers component. However, I get null when I pass a function.

I know that I can use context/redux, but I would prefer if I can do it this way.

Users route:

JavaScript

NewUsers route:

JavaScript

Routing code:

JavaScript

function that renders the routes:

JavaScript

Advertisement

Answer

The state value sent via the Link component needs to be JSON serializable. Javascript functions are not serializable. Instead of trying to pass a function through to a target component I recommend lifting the state up to a common ancestor so the state and callback function is accessible to both components.

I would suggest using a React context to hold the users state and provide out the state value and an updater function to add a user object. react-router-dom has a “built-in” way to do this via a layout route component that renders an Outlet component that wraps nested routes.

Example:

JavaScript

JavaScript

Users

JavaScript

NewUser

JavaScript

Edit how-to-pass-a-function-to-state-in-react-router-v6

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement