Dark Mode

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Scroll to ankers on your page. Scroll to Provider for React (^16.3.0) .. or better (^16.6.0).

License

Notifications You must be signed in to change notification settings

zauberware/react-scroll-to

Repository files navigation

react-scroll-to

Scroll to named ankers on your page. Scroll to Provider for React (^16.3.0) .. or better (^16.6.0)..

Installation

npm install @zauberware/react-scroll-to

ScrollToProvider

Include the ScrollToProvider in your App by wrapping it around your App Component.

"># src/index.js
import ScrollToProvider from '@zauberware/react-scroll-to'


# wrap scroll to Provider




NEW with v 0.2.1

ScrollToActionElement

You can use the included ScrollToAction element with a scrollTo action already attached.

">
# Renders a passed Component and adds 'active' property


The rendered element has the property active='active', so you can use it with styled-components

Usage

addScrollRef()

Add a ref to a component where you want to scroll to:

">const { addScrollRef } = this.context
addScrollRef('mysection', node)}>

scrollTo()

Scroll to a specified section:

My Section ">
handleClick = (target) => {
const { scrollTo } = this.context
if (scrollTo) scrollTo(target)
}

this.handleClick('mysection')}>My Section

Add Context

LEGACY IMPLEMENTATION BEFORE v0.2.1!

Define your contextTypes:


MyComponent.contextTypes = {
scrollTo: PropTypes.func.isRequired,
addScrollRef: PropTypes.func.isRequired,
}

Note: You only need to define the types or functions you want to use. You may only need addScrollRef on your scroll target and e.g. scrollTo within your MenuComponent.

IMPLEMENTATION v0.2.1!

import ScrollToContext from '@zauberware/react-scroll-to'

[...]

MyComponent.contextType = ScrollToContext

About

Scroll to ankers on your page. Scroll to Provider for React (^16.3.0) .. or better (^16.6.0).

Topics

Resources

Readme

License

MIT license

Stars

Watchers

Forks

Packages

No packages published

Contributors 2