Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@chakra-ui/react-env
Advanced tools
Component and hook for handling window and document object in iframe or ssr environment
React component and hook for handling window and document object in iframe or ssr environment
This is an internal utility, not intended for public usage.
yarn add @chakra-ui/react-env
# or
npm i @chakra-ui/react-env
To get it working, you need to wrap your app in EnvironmentProvider
and call
the useEnvironment
hook anywhere in your app to get access to the correct
window
and document
.
import { EnvironmentProvider } from "@chakra-ui/react-env"
// in your App
const App = ({ children }) => {
return <EnvironmentProvider>{children}</EnvironmentProvider>
}
// read the environment
const WindowSize = () => {
const { window } = useEnvironment()
return (
<pre>
{JSON.stringify({
w: window.innerWidth,
h: window.innerHeight,
})}
</pre>
)
}
If you wrap specific aspects of your app within an iframe
, you'll need to wrap
the content in the iframe in EnvironmentProvider
to provide the correct
window
and document
to its content.
// in your app
const EmbeddedIFrame = () => {
return (
<Frame>
<EnvironmentProvider>
<WindowSize />
</EnvironmentProvider>
</Frame>
)
}
Yes please! See the contributing guidelines for details.
This project is licensed under the terms of the MIT license.
FAQs
Component and hook for handling window and document object in iframe or ssr environment
The npm package @chakra-ui/react-env receives a total of 165,057 weekly downloads. As such, @chakra-ui/react-env popularity was classified as popular.
We found that @chakra-ui/react-env demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.