react-hash-handler
React component that makes it easy to compose hashchange and hash click handling into your application or site.
Install
Install via npm
npm install --save react-hash-handler
Install via Yarn
yarn add react-hash-handler
How to use
At its core, the HashHandler
is a pretty straight-forward component that doesn’t
do much beyond letting your site or app know when the hash changes, or when a
hash link is clicked. Feel free to use it however you want via the callback props
that are available on the component.
Props
-
onChange:Func
- Called when the browserhashchange
event is fired. -
onClick:Func
- Called when a hash link (ex.<a href="#contact">Contact</a>
) is clicked.
Examples
;;; { superprops; thisstate = scrollTarget: null ; thisonHashChange = thisonHashChange; thisonHashClick = thisonHashClick; } { this; } { this; } { const scrollTarget = thisstate; return <div className="page-wrapper"> <HashHandler onChange=thisonHashChange onClick=thisonHashClick /> <TargetScroller target=scrollTarget /> <nav> <ul> <li><a href="#overview">Overview</a></li> <li><a href="#about">About</a></li> <li><a href="#contact">Contact</a></li> </ul> </nav> ... <section id="overview"> ... </section> <section id="about"> ... </section> <section id="contact"> ... </section> </div> ; }