Created
September 18, 2019 12:41
-
-
Save itsdouges/c295ff9c1cb6c3b47ee1947f83d2ed13 to your computer and use it in GitHub Desktop.
Resize an element when it changes size using CSS only
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 { Component, ReactNode, Ref, createRef } from 'react'; | |
export class ResizingContainer extends Component { | |
childRef = createRef(); | |
getSnapshotBeforeUpdate() { | |
if (!this.childRef.current) { | |
return null; | |
} | |
return { | |
height: this.childRef.current.offsetHeight, | |
width: this.childRef.current.offsetWidth, | |
}; | |
} | |
componentDidUpdate(_, __, prevDimensions) { | |
if (!this.childRef.current) { | |
return; | |
} | |
const nextDimensions = { | |
height: this.childRef.current.offsetHeight, | |
width: this.childRef.current.offsetWidth, | |
}; | |
if ( | |
nextDimensions.height === prevDimensions.height && | |
nextDimensions.width === prevDimensions.width | |
) { | |
return; | |
} | |
this.childRef.current.style.transitionProperty = 'width,height'; | |
this.childRef.current.style.transitionDuration = `${500}ms`; | |
this.childRef.current.style.boxSizing = 'border-box'; | |
this.childRef.current.style.transitionTimingFunction = easeInOut; | |
this.childRef.current.style.height = `${prevDimensions.height}px`; | |
this.childRef.current.style.width = `${prevDimensions.width}px`; | |
window.requestAnimationFrame(() => { | |
window.requestAnimationFrame(() => { | |
if (!this.childRef.current) { | |
return; | |
} | |
this.childRef.current.style.height = `${nextDimensions.height}px`; | |
this.childRef.current.style.width = `${nextDimensions.width}px`; | |
setTimeout(() => { | |
window.requestAnimationFrame(() => { | |
if (!this.childRef.current) { | |
return; | |
} | |
this.childRef.current.setAttribute('style', ''); | |
}); | |
}, 500); | |
}); | |
}); | |
} | |
render() { | |
const { children } = this.props; | |
return children({ | |
ref: this.childRef, | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment