Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
react-new-window
Advanced tools
Pop new windows in React, using window.open
.
Inspired by David Gilbertson's article (must read, must follow).
window.open
api.ReactDOM.createPortal
).onBlock
prop).npm install react-new-window --save
or
yarn add react-new-window
import React from 'react'
import NewWindow from 'react-new-window'
const Demo = () => (
<NewWindow>
<h1>Hi 👋</h1>
</NewWindow>
)
When <NewWindow />
is mounted a popup window will be opened. When unmounted then the popup will be closed.
The children
contents is what will be rendered into the new popup window. In that case Hi 👋
will be the content. The content can include any react-stateful code.
Properties | Type | Default | Description |
---|---|---|---|
url | String | | The URL to open, if specified any children will be overriden (more details on url ). |
name | String | | The name of the window (more details on windowName ). |
title | String | | The title of the new window document. |
features | Object | {} | The set of window features (more details on windowFeatures ). |
onUnload | Function | undefined | A function to be triggered before the new window unload. |
onBlock | Function | undefined | A function to be triggered when the new window could not be opened. |
center | String | parent | Indicate how to center the new window. Valid values are: parent or screen . parent will center the new window according to its parent window. screen will center the new window according to the screen. |
copyStyles | Boolean | true | If specified, copy styles from parent window's document. |
Tests are manually done using Storybook. It can be run locally with: yarn storybook
.
To start contributing to this project, please do:
To release this project the following tasks should be done:
yarn build
.yarn build-storybook
.npm version #.#.# -m 'Version %s.'
.git push origin --tags
.npm publish
.Made with :heart: by Rubens Mariuzzo.
FAQs
Pop a new window in React, using window.open API
The npm package react-new-window receives a total of 37,264 weekly downloads. As such, react-new-window popularity was classified as popular.
We found that react-new-window demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.