inertiajs / inertia

Inertia.js lets you quickly build modern single-page React, Vue and Svelte apps using classic server-side routing and controllers.
https://inertiajs.com
MIT License
6.55k stars 435 forks source link

[2.x] Take over scroll restoration from browser #2051

Open joetannenbaum opened 1 month ago

joetannenbaum commented 1 month ago

This PR switches the browser's scroll restoration into manual mode, taking the process over from the browser.

We're doing this primarily because of history encryption, as the process is async and we don't know how long it will take, we can then manually restore the document's scroll position whenever decryption has finished.

joetannenbaum commented 1 month ago

This PR also separates out scroll data in the history state, preventing it from being encrypted with the rest of the payload as it is not sensitive data.