gpt4 book ai didi

reactjs - 如何使用 react 钩子(Hook)检测 Next.js SSR 中的窗口大小?

转载 作者:行者123 更新时间:2023-12-03 13:43:13 28 4
gpt4 key购买 nike

我正在使用 Next.js 和 react-dates 构建应用程序.
我有两个组件 日期范围选择器 组件和 DayPickerRangeController 零件。
我要渲染 日期范围选择器 当窗口的宽度大于大小 1180px 时,如果大小小于这个我想渲染 DayPickerRangeController 反而。
这是代码:

      windowSize > 1180 ?
<DateRangePicker
startDatePlaceholderText="Start"
startDate={startDate}
startDateId="startDate"
onDatesChange={handleOnDateChange}
endDate={endDate}
endDateId="endDate"
focusedInput={focus}
transitionDuration={0}
onFocusChange={(focusedInput) => {
if (!focusedInput) {
setFocus("startDate")
} else {
setFocus(focusedInput)
}
}}
/> :
<DayPickerRangeController
isOutsideRange={day => isInclusivelyBeforeDay(day, moment().add(-1, 'days'))}
startDate={startDate}
onDatesChange={handleOnDateChange}
endDate={endDate}
focusedInput={focus}
onFocusChange={(focusedInput) => {
if (!focusedInput) {
setFocus("startDate")
} else {
setFocus(focusedInput)
}
}}
/>
}
我通常使用带有窗口对象的 react 钩子(Hook)来检测窗口屏幕宽度,如 this
但是我发现这种方式在ssr的时候不可用,因为ssr渲染没有window对象。
无论ssr如何,有没有另一种方法可以安全地获取窗口大小?

最佳答案

您可以通过添加以下代码来避免在 ssr 中调用您的检测功能:

// make sure your function is being called in client side only
if (typeof window !== 'undefined') {
// detect window screen width function
}
您的链接中的完整示例:
import { useState, useEffect } from 'react';

// Usage
function App() {
const size = useWindowSize();

return (
<div>
{size.width}px / {size.height}px
</div>
);
}

// Hook
function useWindowSize() {
// Initialize state with undefined width/height so server and client renders match
// Learn more here: https://joshwcomeau.com/react/the-perils-of-rehydration/
const [windowSize, setWindowSize] = useState({
width: undefined,
height: undefined,
});

useEffect(() => {
// only execute all the code below in client side
if (typeof window !== 'undefined') {
// Handler to call on window resize
function handleResize() {
// Set window width/height to state
setWindowSize({
width: window.innerWidth,
height: window.innerHeight,
});
}

// Add event listener
window.addEventListener("resize", handleResize);

// Call handler right away so state gets updated with initial window size
handleResize();

// Remove event listener on cleanup
return () => window.removeEventListener("resize", handleResize);
}
}, []); // Empty array ensures that effect is only run on mount
return windowSize;
}

关于reactjs - 如何使用 react 钩子(Hook)检测 Next.js SSR 中的窗口大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63406435/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com