Last active
February 2, 2021 01:40
-
-
Save Toolo/44a21f378fd7e52acc504bc6f23a6f49 to your computer and use it in GitHub Desktop.
React component with proper fixed bottom support for Safari mobile
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
import React, {Component} from 'react'; | |
import PropTypes from 'prop-types'; | |
import throttle from 'lodash.throttle'; | |
const SAFARI_MOBILE_BOTTOM_MENU_HEIGHT = 44; | |
export default class FixedBottom extends Component { | |
static propTypes = { | |
children: PropTypes.element.isRequired, | |
offset: PropTypes.number, | |
}; | |
static defaultProps = { | |
offset: 0, | |
}; | |
state = { | |
bottom: this.props.offset, | |
}; | |
// Embrace React | |
anchorRef = React.createRef(); | |
constructor(props) { | |
super(props); | |
// We don't want the framerate to crash, do we? | |
this.handleScroll = throttle(this.computeOffsetBottom, 200); | |
} | |
componentDidMount() { | |
window.addEventListener('scroll', this.handleScroll); | |
} | |
componentWillUnmount() { | |
// Throttled calls may be scheduled before the component unmounts | |
this.handleScroll.cancel(); | |
window.removeEventListener('scroll', this.handleScroll); | |
} | |
computeOffsetBottom = () => { | |
if (!this.anchorRef.current) { | |
return; | |
} | |
const {bottom} = this.anchorRef.current.getBoundingClientRect(); | |
const {offset} = this.props; | |
if (Math.floor(bottom) > window.innerHeight) { | |
this.setState({bottom: offset + SAFARI_MOBILE_BOTTOM_MENU_HEIGHT}); | |
} else { | |
this.setState({bottom: offset}); | |
} | |
}; | |
render() { | |
const {bottom} = this.state; | |
const {children, offset} = this.props; | |
const node = React.cloneElement(React.Children.only(children), { | |
style: { | |
...children.props.style, | |
bottom, | |
position: 'fixed' | |
}, | |
}); | |
return ( | |
<> | |
{node} | |
{/* This div is used to run compute the offset without adding a ref */} | |
{/* on the rendered children */} | |
<div | |
ref={this.anchorRef} | |
style={{ | |
position: 'fixed', | |
bottom: offset, | |
}} | |
/> | |
</> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment