gpt4 book ai didi

reactjs - Gatsby - IntersectionObserver 未定义

转载 作者:行者123 更新时间:2023-12-03 18:30:39 25 4
gpt4 key购买 nike

我正在尝试构建我的 gatsby 项目,但由于 IntersectionObserver 未被识别,我无法构建。我在 InView 组件中使用了intersectionObserver:

import React, { useRef, useState, useEffect } from 'react'


const InView = ({ children }) => {
const [boundingClientY, setBoundingClientY] = useState(null)
const [direction, setDirection] = useState(null)
const [element, setElement] = useState(null)
const [inView, setInView] = useState(false)



const observer = useRef(new IntersectionObserver((entries) => {
const first = entries[0]
const { boundingClientRect } = first
first.isIntersecting && setInView(true)
!first.isIntersecting && setInView(false)
boundingClientRect.y > boundingClientY && setDirection('down')
boundingClientRect.y < boundingClientY && setDirection('up')
boundingClientY && setBoundingClientY(first.boundingClientRect.y)

}))


useEffect(() => {
const currentElement = element
const currentObserver = observer.current
currentElement && currentObserver.observe(currentElement)
// console.log(currentObserver)
return () => {
currentElement && currentObserver.unobserve(currentElement)
};
}, [element])

const styles = {
opacity: inView ? 1 : 0,
transform: `
translateY(${!inView ?
direction === 'up' ? '-20px' : '20px'
: 0})
rotateY(${!inView ? '35deg' : 0})
scale(${inView ? 1 : 0.9})
`,
transition: 'all 0.4s ease-out 0.2s'
}

return (
<div ref={setElement} style={styles}>

{children}

</div>
)
}

export default InView

我有一个根元素的包装器来启用全局状态,并尝试在 gatsby-browser.js 中导入 polyfill:
import React from 'react'
import GlobalContextProvider from './src/components/context/globalContextProvider'

export const wrapRootElement = ({ element }) => {
return (
<GlobalContextProvider>
{element}
</GlobalContextProvider>
)
}

export const onClientEntry = async () => {
if (typeof IntersectionObserver === `undefined`) {
await import(`intersection-observer`);
}
}

最佳答案

这是构建错误,对吗($ gatsby build)?如果是这种情况,这与浏览器支持无关。

事实是IntersectionObserver是一个浏览器 API,您不应在服务器端渲染期间使用浏览器 API。相反,您尝试在组件安装后使用它们。要解决此问题,请在 useEffect() 中初始化您的观察者而不是 useRef()就像你现在所做的那样。

...
const observer = useRef();

useEffect(() => {
observer.current = new IntersectionObserver({ ... });
}, []); // do this only once, on mount
...

关于reactjs - Gatsby - IntersectionObserver 未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59424347/

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