如何使用反应钩子检测 Next.js SSR 中的 window 大小?
How to detect window size in Next.js SSR using react hook?
我正在使用 Next.js 和 react-dates 构建应用程序。
我有两个组件 DateRangePicker 组件和 DayPickerRangeController 组件。
我想渲染 DateRangePicker 当 window 的宽度大于 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)
}
}}
/>
}
我通常使用带有 window 对象的反应钩子来检测 window 屏幕宽度,例如 this
但是我发现ssr时这种方式不可用,因为ssr渲染没有window对象
有没有其他方法可以安全地获得 window 大小而不管 ssr?
您可以通过添加以下代码来避免在 ssr 中调用您的检测函数:
// make sure your function is being called in client side only
if (typeof window !== 'undefined') {
// detect window screen width function
}
来自您 link 的完整示例:
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;
}
虽然Darryl RN提供了绝对正确的答案。我想说一句:你真的不需要检查 useEffect
中的 window
对象是否存在,因为 useEffect
只运行 client-side 而永远不会server-side,并且 window
对象在 client-side 上始终可用。
useEffect(()=> {
window.addEventListener('resize', ()=> {
console.log(window.innerHeight, window.innerWidth)
})
}, [])
我正在使用 Next.js 和 react-dates 构建应用程序。
我有两个组件 DateRangePicker 组件和 DayPickerRangeController 组件。
我想渲染 DateRangePicker 当 window 的宽度大于 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)
}
}}
/>
}
我通常使用带有 window 对象的反应钩子来检测 window 屏幕宽度,例如 this
但是我发现ssr时这种方式不可用,因为ssr渲染没有window对象
有没有其他方法可以安全地获得 window 大小而不管 ssr?
您可以通过添加以下代码来避免在 ssr 中调用您的检测函数:
// make sure your function is being called in client side only
if (typeof window !== 'undefined') {
// detect window screen width function
}
来自您 link 的完整示例:
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;
}
虽然Darryl RN提供了绝对正确的答案。我想说一句:你真的不需要检查 useEffect
中的 window
对象是否存在,因为 useEffect
只运行 client-side 而永远不会server-side,并且 window
对象在 client-side 上始终可用。
useEffect(()=> {
window.addEventListener('resize', ()=> {
console.log(window.innerHeight, window.innerWidth)
})
}, [])