mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-24 14:56:27 +00:00
[Glitch] Change window resize handler to switch to/from mobile layout as soon as needed
Port bd4099d976
to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com>
This commit is contained in:
parent
b90bd31cfd
commit
6ee2501991
|
@ -138,14 +138,24 @@ class SwitchingColumnsArea extends React.PureComponent {
|
||||||
window.removeEventListener('resize', this.handleResize);
|
window.removeEventListener('resize', this.handleResize);
|
||||||
}
|
}
|
||||||
|
|
||||||
handleResize = debounce(() => {
|
handleLayoutChange = debounce(() => {
|
||||||
// The cached heights are no longer accurate, invalidate
|
// The cached heights are no longer accurate, invalidate
|
||||||
this.props.onLayoutChange();
|
this.props.onLayoutChange();
|
||||||
|
|
||||||
this.setState({ mobile: isMobile(window.innerWidth, this.props.layout) });
|
|
||||||
}, 500, {
|
}, 500, {
|
||||||
trailing: true,
|
trailing: true,
|
||||||
});
|
})
|
||||||
|
|
||||||
|
handleResize = () => {
|
||||||
|
const mobile = isMobile(window.innerWidth, this.props.layout);
|
||||||
|
|
||||||
|
if (mobile !== this.state.mobile) {
|
||||||
|
this.handleLayoutChange.cancel();
|
||||||
|
this.props.onLayoutChange();
|
||||||
|
this.setState({ mobile });
|
||||||
|
} else {
|
||||||
|
this.handleLayoutChange();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
setRef = c => {
|
setRef = c => {
|
||||||
this.node = c.getWrappedInstance();
|
this.node = c.getWrappedInstance();
|
||||||
|
|
Loading…
Reference in a new issue