Created
November 10, 2015 07:36
-
-
Save tamebadger/affc9385df788ddfae5b to your computer and use it in GitHub Desktop.
easy ref
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
'use strict'; | |
import _ from "lodash"; | |
/** | |
* Mixin to update the `width` state based on the DOM element's width whenever | |
* the window is resized. | |
*/ | |
export default { | |
getInitialState() { | |
return { | |
width: 960 | |
}; | |
}, | |
componentDidMount() { | |
/** | |
* Create a unique resize handler for each component; otherwise the | |
* debounce prevents this from working with multiple components. | |
*/ | |
this._onResize = _.debounce((e => this.recomputeWidth()), 50); | |
$(window).on('resize', this._onResize); | |
/** | |
* Wait a few ms to make sure this happens in time. | |
*/ | |
_.defer((() => this.recomputeWidth()), 10); | |
}, | |
componentWillUnmount() { | |
$(window).off('resize', this._onResize); | |
}, | |
recomputeWidth() { | |
let width = $(this.getDOMNode()).innerWidth(); | |
this.setState({ | |
width | |
}); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment