fix(pdf): add proper default width value
All checks were successful
Open PR on Staging / audit_and_check (pull_request) Successful in 34s

This commit is contained in:
enes 2024-08-27 17:28:18 +02:00
parent 923a47b4d0
commit a442e71087

View File

@ -6,10 +6,26 @@ const noScaleInit = {
from: (_: number, v: number) => v from: (_: number, v: number) => v
} }
const getInnerContentWidth = () => {
// Fetch the first container element we find
const element = document.querySelector('#content-preview')
if (element) {
const style = getComputedStyle(element)
// Calculate width without padding
const widthWithoutPadding =
element.clientWidth - parseFloat(style.padding) * 2
return widthWithoutPadding
}
// Default value
return 620
}
const useScaleImpl = () => { const useScaleImpl = () => {
const [width, setWidth] = useState( const [width, setWidth] = useState(getInnerContentWidth())
document.querySelector('#content-preview > *')?.clientWidth || 1
)
// Get the scale based on the original width // Get the scale based on the original width
const scale = (originalWidth: number) => { const scale = (originalWidth: number) => {
@ -26,16 +42,11 @@ const useScaleImpl = () => {
return value * scale(originalWidth) return value * scale(originalWidth)
} }
useEffect(() => {
const resize = () => { const resize = () => {
// Fetch the first container element we find setWidth(getInnerContentWidth())
const element = document.querySelector('#content-preview > *') }
// Set the width state useEffect(() => {
if (element) {
setWidth(element.clientWidth)
}
}
resize() resize()
window.addEventListener('resize', resize) window.addEventListener('resize', resize)