Back to Next Js

`Router.onAppUpdated` has been removed

errors/no-on-app-updated-hook.mdx

16.2.51.2 KB
Original Source

Why This Error Occurred

Due to this bug fix, we had to remove the Router.onAppUpdated hook. But the default functionality of this feature is still in effect.

We use this hook to detect a new app deployment when switching pages and act accordingly.

Although there are many things you can do in this hook, it's often used to navigate the page via the server as shown below:

js
Router.onAppUpdated = function (nextRoute) {
  location.href = nextRoute
}

In this hook, you can't wait for a network request or a promise to get resolved. And you can't block the page navigation. So, the things you can do is limited.

Possible Ways to Fix It

One real use of this hook is to persist your application state to local-storage before the page navigation. For that, you can use the window.onbeforeunload hook instead.

This is code for that:

js
window.onbeforeunload = function (e) {
  // Get the application state (usually from a store like Redux)
  const appState = {}
  localStorage.setItem('app-state', JSON.stringify(appState))
}