53 lines
1.0 KiB
JavaScript
53 lines
1.0 KiB
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { getWindowDimension } from '../../../utils/is_mobile'
|
|
|
|
const initialState = getWindowDimension()
|
|
|
|
class Responsive extends React.PureComponent {
|
|
|
|
state = {
|
|
width: initialState.width,
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.handleResize()
|
|
window.addEventListener('resize', this.handleResize, false)
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
window.removeEventListener('resize', this.handleResize, false)
|
|
}
|
|
|
|
handleResize = () => {
|
|
const { width } = getWindowDimension()
|
|
|
|
this.setState({ width })
|
|
}
|
|
|
|
shouldRender = (min, max, width) => {
|
|
return width > min && width < max
|
|
}
|
|
|
|
render() {
|
|
const { children, min, max } = this.props
|
|
const { width } = this.state
|
|
|
|
const shouldRender = this.shouldRender(min, max, width)
|
|
|
|
return shouldRender ? children : null
|
|
}
|
|
|
|
}
|
|
|
|
Responsive.propTypes = {
|
|
min: PropTypes.number,
|
|
max: PropTypes.number,
|
|
}
|
|
|
|
Responsive.defaultProps = {
|
|
min: 0,
|
|
max: Infinity,
|
|
}
|
|
|
|
export default Responsive |