-
-
Save mimiflynn/749afd1fe0204ea8b7e8 to your computer and use it in GitHub Desktop.
A simple affix React component.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @author Juliano Castilho <[email protected]> | |
* ES6 conversion by [email protected] | |
*/ | |
import React from 'react'; | |
import ClassNames from 'classnames'; | |
class AffixWrapper extends React.Component { | |
constructor() { | |
super(); | |
this.state = { | |
affix: false | |
}; | |
this.handleScroll = this.handleScroll.bind(this); | |
} | |
/** | |
* @return {void} | |
*/ | |
handleScroll() { | |
var affix = this.state.affix; | |
var offset = this.props.offset; | |
var scrollTop = document.documentElement.scrollTop || document.body.scrollTop; | |
if (!affix && scrollTop >= offset) { | |
this.setState({ | |
affix: true | |
}); | |
} | |
if (affix && scrollTop < offset) { | |
this.setState({ | |
affix: false | |
}); | |
} | |
} | |
/** | |
* @return {void} | |
*/ | |
componentDidMount() { | |
window.addEventListener('scroll', this.handleScroll); | |
this.handleScroll(); | |
} | |
/** | |
* @return {void} | |
*/ | |
componentWillUnmount() { | |
window.removeEventListener('scroll', this.handleScroll); | |
} | |
render() { | |
var affix = this.state.affix ? 'affix' : ''; | |
var {className, offset } = this.props; | |
return ( | |
<div className={ClassNames(className, affix)}> | |
{this.props.children} | |
</div> | |
); | |
} | |
} | |
AffixWrapper.propTypes = { | |
offset: React.PropTypes.number | |
}; | |
export default AffixWrapper; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<AffixWrapper className="some-cool-element" id="lalala" offset={200}> | |
<div>Put whatever you want here</div> | |
</AffixWrapper> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment