Next.js Discord

Discord Forum

How to get indication of loading page when action move to another page is occured

Unanswered
Bigheaded ant posted this in #help-forum
Open in Discord
Bigheaded antOP
I have a problem where when I want to move pages, it takes a few seconds until I moved to the page. I want there's some sign when it still loading, like loading spinner or loading indicator, or maybe disable the button when it's still process loading.

2 Replies

Wrap your page in <Suspense> (by adding a loading.tsx at the same level) to show the fallback UI while the page you’re moving to is getting ready.
If you triggered a Server Action through a form you could use useActionState hook to get the isLoading state while the action is executing and disable the button when IsLoading is true