Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-new-window

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-new-window

🔲 Pop a new window React using window.open

  • 0.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
45K
decreased by-3.78%
Maintainers
1
Weekly downloads
 
Created
Source

React New Window

Pop new windows in React, using window.open.

Inspired by David Gilbertson's article (must read, must follow).

Features

  • Only 3.3KB (that's 1.4 gzipped!).
  • Support the full window.open api.
  • Built for React 16 (uses ReactDOM.createPortal).
  • Handler for blocked popups (via onBlock prop).
  • Center popups according to the parent window or screen.

Installation

  • npm install react-new-window --save

    or

  • yarn add react-new-window

Usage

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.

Documentation

PropertiesTypeDefaultDescription
urlString The URL to open, if specified any children will be overriden (more details on url).
nameString The name of the window (more details on windowName).
titleString The title of the new window document.
featuresObject{}The set of window features (more details on windowFeatures).
onUnloadFunctionundefinedA function to be triggered before the new window unload.
onBlockFunctionundefinedA function to be triggered when the new window could not be opened.
centerStringparentIndicate 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.

Tests

Tests are manually done using Storybook. It can be run locally with: yarn storybook.

Development

To start contributing to this project, please do:

  1. Fork and clone this repo.
  2. Do your work.
  3. Create a PR.

Releases

To release this project the following tasks should be done:

  1. Build distribution files: yarn build.
  2. Build Storybook demo files: yarn build-storybook.
  3. Bump version and create tag: npm version #.#.# -m 'Version %s.'.
  4. Push new created tag: git push origin --tags.

Prior work


Made with :heart: by Rubens Mariuzzo.

MIT License

FAQs

Package last updated on 09 Nov 2017

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc