npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@github1/react-portal-hoc

v0.4.0

Published

a hoc that portalizes components

Downloads

1

Readme

react-portal-hoc

A HOC that portalizes components

Installation

yarn add react-portal-hoc

What's it do

This is a simple little higher-order component (HOC) for portalizing a component. A portal is used to create a DOM node outside of the standard react render tree. This is useful for things like modals, menus, and anything that's tempting you to use position: 'fixed'.

How's it different from...

  • react-portal: this is a wrapper, and unfortunately a little buggy at the time I wrote this
  • react-modal: this is just for modals, not great for making custom things like dropdown menus
  • react-gateway: the DX for this is not as friendly as the above 2

Usage

Stick it around your component

Example:

// in Modal.js
import portal from 'react-portal-hoc';
// isClosing is automatically provided by the HOC
const Modal = () => <div className={props.isClosing ? 'closing' : ''}>Here i am</div>;
const options = {
  closeAfter: 'animation',
  escToClose: true,
  clickToClose: false
};
export default portal(options)(Modal);

// in Button.js
// closePortal is automatically provided by the HOC
const Button = (props) => <button onClick={() => props.closePortal()}>{props.label}</button>;

// in StatelessComponent.js
// passing in clickToClose here overrides the static option set in Modal.js
const StatelessComponent = () => <Modal toggle={<Button label="Click me hard"/>} clickToClose/>;

API

portal(options)(Component)

Options:

  • closeAfter: If not present, close the portal immediately. If it is a number, close it after that many milliseconds. If it is 'animation', close it after the next css animation completes. If it is a function that returns a promise, return it after it resolves. For convenience, this option is passed down as a prop when isClosing === true so you can use it to time your animation.
  • clickToClose: Default is false. If true, clicking outside of the portal will close it
  • clickToEsc: Default is false. If true, hitting Escape will close the portal
  • toggle: An element that will toggle the portal popping up or going away. If clicked while the portal is open, the portal will close.
  • isOpen: Default is false. If you don't provide a toggle and want to manually manage the portal, use this. While this could be used in conjunction with a setTimeout, be warned that if you do, there is a special place in hell for you.
  • nodeId: Default is 'portal'. An id to assign to the DOM node. Useful if you need to break out of the VDOM and traverse the DOM tree (eg see if a target is a descendant of a portal) The DOM element is also decorated with a react-portal attribute

FAQ

Q: How do I use this without a toggle? A: Use isOpen instead of toggle.

Q: When the portal is open and they click the toggle again, the portal closes. I want it to do nothing. A: Your UX is bad and you should feel bad. Ugh, fine. Use isOpen instead of toggle.

Q: Should I pass things in via props or options? A: Pass default (static) values into options and overrides into props. For example, I have a credit card modal that usually has clickToClose = true in the options. This is good if they go into their account settings and update their billing info. However, if their card gets denied, I'm gonna pop it up immediately and set the prop clickToClose = false because I'm a greedy a-hole.

Q: How do I close the portal by clicking a button on my modal? A: The HOC will add props.closePortal to your toggle. Use it with the onClick handler.

Q: How can I do animations? A: To animate in, just use a keyframe animation or componentDidMount. When the component loads, the animation will execute. Animating out is more difficult because we want to signal the close, animate the close, then unmount after the animation completes. When a close signal is received, the HOC will add props.isClosing and props.closeAfter to your portal. You can use isClosing to add/remove classnames (see example above). If you passed in a number to closeAfter, you can do something like animationDuration: `${props.closeAfter}ms` . If that's too much work for a simple keyframe animation, use closeAfter='animation' to close after the next animation completes. For complex use cases, including escaping the react vdom, variable duration, and multiple animations, I'd suggest just returning a promise. For example: options.closeAfter = (domNode) => new Promise(resolve => setTimeout(() => resolve(), 300))

License

MIT