Added fix for elements that pre-exist on fade

This commit is contained in:
2018-06-11 18:35:52 +10:00
parent ce926e09a9
commit 2052dd39ee

View File

@ -29,31 +29,46 @@ class ElementScrollFader extends React.Component {
this.state = { visible: false };
this.onScrollBound = this.onScroll.bind(this);
this.checkEffectBound = this.checkEffect.bind(this);
}
componentDidMount() {
document.addEventListener('scroll', this.onScrollBound, true);
}
onScroll(e) {
//Get bounds
var rect = this.refs.fader.getBoundingClientRect();
//If our top is at least half way UP the page, show
if(rect.top > window.innerHeight / 2) return;
this.setState({visible: true});
this.detachListener();//stop Listening
if(this.props.onVisible) {
this.props.onVisible(this.refs.fader);
if(!this.initialCheckFunction) {
this.initialCheckFunction = setTimeout(this.checkEffectBound, 300);
}
document.addEventListener('scroll', this.onScrollBound, true);
document.addEventListener("DOMContentLoaded", this.onScrollBound);
}
componentWillUnmount() {
this.detachListener();
}
onScroll(e) {
this.checkEffect();
}
//Common functions
detachListener() {
document.removeEventListener('scroll', this.onScrollBound);
document.removeEventListener("DOMContentLoaded", this.onScrollBound);
if(this.initialCheckFunction) clearTimeout(this.initialCheckFunction);
}
checkEffect() {
if(!this.refs || !this.refs.fader) return;
//Get bounds
var rect = this.refs.fader.getBoundingClientRect();
//If our top is at least half way UP the page, show
if(rect.top > window.innerHeight / 2) return;
this.setState({visible: true});
this.detachListener();//stop Listening
if(this.props.onVisible) {
this.props.onVisible(this.refs.fader);
}
return true;
}
render() {