Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@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 188,972 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.