shawnCaza / next-restore-scroll-position

Restore scroll position using NextJS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Restore scroll position in NextJS

Restores scroll position when navigating back and forth in NextJS.

Installation

yarn add next-restore-scroll-position
npm i next-restore-scroll-position

Usage

import { useScrollRestoration } from 'next-restore-scroll-position';

function App() { // This needs to be NextJS App Component
    const router = useRouter();
    useScrollRestoration(router);
}

If your app limits content scrolling to a particular DOM element.

When only a portion of the page scrolls, rather than normal full window scrolling, you can pass the scrollAreaId property

scrollAreaId is the id of the element that scrolls. If you have a div with id="divThatScrolls", you would pass scrollAreaId="divThatScrolls" as in the following example.

import { useScrollRestoration } from 'next-restore-scroll-position';

function App() { // This needs to be NextJS App Component
    const router = useRouter();
    useScrollRestoration(router, {scrollAreaId: "divThatScrolls"});
}

You can also disable the scroll restoration by passing enabled property

import { useScrollRestoration } from 'next-restore-scroll-position';

function App() { // This needs to be NextJS App Component
    const router = useRouter();
    useScrollRestoration(router, {enabled: false});
}

Peer dependencies

  • React 16 or up
  • Next 13

About

Restore scroll position using NextJS


Languages

Language:TypeScript 100.0%