2020-08-17 21:07:16 +01:00
|
|
|
import React from 'react'
|
2020-08-17 21:59:29 +01:00
|
|
|
import PropTypes from 'prop-types'
|
2021-01-08 05:15:53 +00:00
|
|
|
import { connect } from 'react-redux'
|
2020-03-25 03:08:43 +00:00
|
|
|
|
2020-08-17 23:06:22 +01:00
|
|
|
class Responsive extends React.PureComponent {
|
2020-03-25 03:08:43 +00:00
|
|
|
|
|
|
|
shouldRender = (min, max, width) => {
|
|
|
|
return width > min && width < max
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2021-01-08 05:15:53 +00:00
|
|
|
const { children, min, max, width } = this.props
|
2020-03-25 03:08:43 +00:00
|
|
|
|
|
|
|
const shouldRender = this.shouldRender(min, max, width)
|
|
|
|
|
|
|
|
return shouldRender ? children : null
|
|
|
|
}
|
2020-05-06 05:33:54 +01:00
|
|
|
|
2020-08-17 23:06:22 +01:00
|
|
|
}
|
|
|
|
|
2021-01-08 05:15:53 +00:00
|
|
|
const mapStateToProps = (state) => ({
|
|
|
|
width: state.getIn(['settings', 'window_dimensions', 'width']),
|
|
|
|
})
|
|
|
|
|
2020-08-17 23:06:22 +01:00
|
|
|
Responsive.propTypes = {
|
|
|
|
min: PropTypes.number,
|
|
|
|
max: PropTypes.number,
|
|
|
|
}
|
|
|
|
|
|
|
|
Responsive.defaultProps = {
|
|
|
|
min: 0,
|
|
|
|
max: Infinity,
|
|
|
|
}
|
|
|
|
|
2021-01-08 05:15:53 +00:00
|
|
|
export default connect(mapStateToProps)(Responsive)
|