Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[NextAppProviderPages] Extend Navigate for NextAppProvider to include next/router/TransitionOptions like shallow, locale, scroll. #4748

Open
marcomele opened this issue Mar 10, 2025 · 1 comment
Assignees
Labels
scope: toolpad-core Abbreviated to "core"

Comments

@marcomele
Copy link

marcomele commented Mar 10, 2025

Summary

When using DashboardLayout with NextAppProvider, NavigationPageItem could allow for extra props to be passed to nextjs router TransitionOptions to control shallow navigation and transition scroll behavior.

Examples

No response

Motivation

No response

Search keywords: next app pages router transition options shallow scroll

@marcomele marcomele added the status: waiting for maintainer These issues haven't been looked at yet by a maintainer label Mar 10, 2025
@zannager zannager added the scope: toolpad-core Abbreviated to "core" label Mar 12, 2025
@prakhargupta1 prakhargupta1 removed the status: waiting for maintainer These issues haven't been looked at yet by a maintainer label Mar 24, 2025
@apedroferreira
Copy link
Member

apedroferreira commented Mar 27, 2025

Hi, have you tried using the Link property in the router prop that gets passed to the NextAppProvider, and setting a custom link component there?

You should be able to use a component kind of like:

const Link = React.forwardRef<HTMLAnchorElement, LinkProps>((props, ref) => {
  const { href, history, ...rest } = props;
  return <NextLink ref={ref} href={href} replace={history === 'replace'} scroll shallow {...rest} />;
});

Other than that we're also adding a renderItem prop to navigation page items, so technically anything can be rendered in their place and any logic can be added.

Edit: Nevermind, I guess you would need to pass a whole custom router to NextAppProvider in that case. There should be a more straightforward way to do it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
scope: toolpad-core Abbreviated to "core"
Projects
None yet
Development

No branches or pull requests

4 participants