react-anchor-link-smooth-scroll-ts
TypeScript icon, indicating that this package has built-in type declarations

2.2.1 • Public • Published

React Anchor Link Smooth Scroll Typescript

This is a fork from react-anchor-link-smooth-scroll with horizontal scroll feature and merged bug fixes.

About

React component for anchor links using the smoothscroll polyfill.

Instructions

  1. Install dependency: npm install react-anchor-link-smooth-scroll-ts

  2. Add script

    import React from 'react'
    import ReactDOM from 'react-dom'
    import AnchorLink from 'react-anchor-link-smooth-scroll-ts'
    
    const SmoothScroll = () => (
      <div>
        <AnchorLink href='#things'>Things</AnchorLink>
        <AnchorLink href='#stuff'>Stuff</AnchorLink>
    
        <section id='things'>
        <h2>Things</h2>
        </section>
        <section id='stuff'>
          <h2>Stuff</h2>
        </section>
      </div>
    )
    
    ReactDOM.render(
      <SmoothScroll />,
      document.getElementById('content')
    )
  3. Options; offset the amount of pixels from the top, for if you have a sticky navigation.

    • Regular offset

       <AnchorLink offset='100' href='#things'>Things</AnchorLink>
    • For responsive offset you can provide a function returning the needed integer to scroll from

       <AnchorLink offset={() => 100} href='#things'>Things</AnchorLink>

Changelog

v.2.2.0 (May 18th 2023)

  • Converted component to a functional component.
  • Setup hook calls to utilize newer react functionality.

v.2.1.0 (May 17th 2023)

  • Converted component to TypeScript.

v.1.1.0 (October 28th 2021)

  • @john555 Fix collision with 'hashchange' event handlers
  • @ktsosno Prevent undefined exception on missing ID
  • @Kahoul-ilyes Feature/horizontal scroll

v.1.0.11 (July 24th 2018), @ericmasiello Fixed; offset prop from being spread, to avoid remaining props spread to anchor link element.

v1.0.10 (May 30th 2018), @DanMMX Created an option to receive a function for an offset calculation.

v1.0.9 (April 24th 2018), @gazpachu Fix to have hash change in address bar.

v1.0.7 (April 10th 2018), @zauni Fixed problem with nested HTML inside the anchor.

@roborourke Fixed possibility of a custom onClick handler for secondary side effects.

Licence

Licensed under the MIT Licence.

Package Sidebar

Install

npm i react-anchor-link-smooth-scroll-ts

Weekly Downloads

2

Version

2.2.1

License

MIT

Unpacked Size

31.3 kB

Total Files

11

Last publish

Collaborators

  • tyevco