gab-social/app/javascript/gabsocial/features/ui/util/responsive_component.js
mgabdev 152e59a66f Updated all components that implement window resize to use redux dimensions
• Updated:
- all components that implement window resize to use redux dimensions
2021-01-08 00:15:53 -05:00

35 lines
704 B
JavaScript

import React from 'react'
import PropTypes from 'prop-types'
import { connect } from 'react-redux'
class Responsive extends React.PureComponent {
shouldRender = (min, max, width) => {
return width > min && width < max
}
render() {
const { children, min, max, width } = this.props
const shouldRender = this.shouldRender(min, max, width)
return shouldRender ? children : null
}
}
const mapStateToProps = (state) => ({
width: state.getIn(['settings', 'window_dimensions', 'width']),
})
Responsive.propTypes = {
min: PropTypes.number,
max: PropTypes.number,
}
Responsive.defaultProps = {
min: 0,
max: Infinity,
}
export default connect(mapStateToProps)(Responsive)