Created
December 12, 2017 05:43
-
-
Save codejets/43943e1abc5807550ecaec934cebaad7 to your computer and use it in GitHub Desktop.
Simple Throttle in React
This file contains hidden or 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
import React from 'react'; | |
import { findDOMNode } from 'react-dom'; | |
import { connect } from 'react-redux'; | |
import { createSelector } from 'reselect'; | |
import throttle from 'lodash/throttle'; | |
import { isHidden } from 'lib/dom'; | |
import * as adActions from 'app/actions/ads'; | |
import { TOP_NAV_HEIGHT } from 'app/constants'; | |
import Post from 'app/components/Post'; | |
const T = React.PropTypes; | |
class Ad extends React.Component { | |
static propTypes = { | |
// ownProps | |
adId: T.string.isRequired, | |
placementIndex: T.number.isRequired, | |
postProps: T.object.isRequired, | |
// props from connect | |
adTracked: T.bool.isRequired, | |
onAdMadeImpression: T.func.isRequired, | |
onAdblockDetected: T.func.isRequired, | |
}; | |
constructor(props) { | |
super(props); | |
this.scrollListener = throttle(() => this.checkImpression(), 100); | |
} | |
componentDidMount() { | |
if (!this.props.adTracked) { | |
window.addEventListener('scroll', this.scrollListener); | |
this.checkImpression(); // check manually in case the ad is visible on the first render | |
this.checkAdblock(); | |
} | |
} | |
componentWillUnmount() { | |
window.removeEventListener('scroll', this.scrollListener); | |
} | |
checkImpression() { | |
const node = findDOMNode(this); | |
const winHeight = window.innerHeight; | |
const rect = node.getBoundingClientRect(); | |
const top = rect.top; | |
const height = rect.height; | |
const bottom = top + rect.height; | |
const middle = (top + bottom) / 2; | |
const middleIsAboveBottom = middle < winHeight; | |
const middleIsBelowTop = bottom > TOP_NAV_HEIGHT + height / 2; | |
if (middleIsAboveBottom && middleIsBelowTop) { | |
window.removeEventListener('scroll', this.scrollListener); | |
this.props.onAdMadeImpression(); | |
} | |
} | |
checkAdblock() { | |
if (isHidden(findDOMNode(this))) { | |
this.props.onAdblockDetected(); | |
} | |
} | |
render() { | |
return <Post { ...this.props.postProps } />; | |
} | |
} | |
const selector = createSelector( | |
(state, props) => state.adRequests[props.adId], | |
adRequest => ({ adTracked: adRequest.impressionTracked }), | |
); | |
const mapDispatchToProps = (dispatch, { adId, placementIndex }) => ({ | |
onAdMadeImpression() { dispatch(adActions.track(adId)); }, | |
onAdblockDetected() { dispatch(adActions.trackAdHidden(placementIndex)); }, | |
}); | |
export default connect(selector, mapDispatchToProps)(Ad); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment