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

reactive-popups

v0.5.1

Published

Easy popup management with React

Downloads

115

Readme

reactive-popups

Installation

npm i reactive-popups

What is this

This is a state delivery library for react to manage popups - content over the app. It can be anything - dialogs, modals, snackbars, etc.

The problem

Nearly every component library suggests to create popups in a such way:

Example with @mui/material

const SomeComponent = () => {
    // Popup state must be defined in a component where it is created.
    const [open, setOpen] = useState(false);

    const handleOpen = () => {
        setOpen(true);
    };

    const handleClose = () => {
        setOpen(false);
    };

    return (
        <div>
            <button onClick={handleOpen}>open dialog</button>
            <Dialog open={open} onClose={handleClose}>
                Your dialog content...
            </Dialog>
        </div>
    );
};

The problem with this approach is that sometimes it is not convenient or even impossible to store popup state outside. For example, if you need to render multiple popups using one button, you should create global state for all popups. In addition, implementing dialog in a component requires to write a lot of boilerplate code: functions handleOpen and handleCLose, passing state in a Dialog.

The solution - new convenient API

This library provides some useful hooks to create popups: usePopupsFactory and useResponsePopup. First is used to create multiple popups - it mounts a popup after trigger was called. And second hook is used to get any data (response) from popup. You only need to wrap your application with PopupsContextProvider and create at least one popup group to use these hooks.

Basic usage

// Popups can be rendered in different groups
const PopupGroup = createPopupGroup();

const PopupComponent = (props) => {
    // Unmount popup from inside
    const unmount = useCloseHandler();
    return (
        <div>
            {props.message}
            <button onClick={unmount}>unmount</button>
        </div>
    );
};

const TriggerComponent = () => {
    const create = usePopupsFactory(
        // component
        PopupComponent,
        // props
        { message: 'hello world' },
        // group
        PopupGroup
    );

    return (
        <button
            onClick={() => {
                const close = create();
                // Unmount popup from outside
            }}
        >
            open my popup
        </button>
    );
};

const App = () => {
    return (
        <PopupsContextProvider>
            {/* Groups can be rendered anywhere. It is up to you. */}
            <PopupGroup />
            <TriggerComponent />
        </PopupsContextProvider>
    );
};