Skip to content

Latest commit

 

History

History
98 lines (81 loc) · 2.51 KB

index.md

File metadata and controls

98 lines (81 loc) · 2.51 KB

Scroll to anchor links with client-side routes e.g. with history's listen, React Router's onUpdate, or Gatsby's onRouteChange. Register a listener to call this and when window.location.hash isn't empty, it'll scrollIntoView first matching element by id or name per spec.

Originally based on: remix-run/react-router#394 (comment).

Used By

Install

npm install --save anchorate

Use

import { anchorate } from 'anchorate'
import { createHistory } from 'history'
 
const history = createHistory()

history.listen(() => {
  anchorate()
})
import { anchorate } from 'anchorate'
import { render } from 'react-dom'
import { Router, browserHistory } from 'react-router'

function onUpdate () {
  anchorate()
}

// ...

render((
  <Router
    onUpdate={onUpdate}
    history={browserHistory}
  />
), document.getElementById('app'))

In gatsby-browser.js:

const { anchorate } = require('anchorate')

exports.onRouteUpdate = () => {
  anchorate()
}

Customize the scrolling behavior

You can provide your own scrolling behavior by passing in a scroller function in an options object. It is expected that you return true if the scroll was successful.

anchorate({ 
  scroller: function (element) {
    if (!element) return false
    element.scrollIntoView({ behavior: 'smooth' })
    return true
  }
})

Getting results

You can provide a completion callback function in the options object to be informed when the operation has complete and if there were any errors. An error will be returned if the element referred to in the hash was not found.

anchorate({ 
  callback: function (error) {
    if (error) {
      // Do something
    }
  }
})