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

hooks-modal

v1.2.5

Published

A super light and easy-to-use library to implement modals using Portals.

Downloads

31

Readme

useModal

A super light and easy-to-use react custom hook to implement modals using Portals.   

See Demo  

Basic Usage

Install:

$ npm i hooks-modal

Use:

import useModal from 'hooks-modal'

function App() {
    const [Modal, toggleModal] = useModal()

    return (
        <div>
            <button onClick={toggleModal}>Open Modal</button>
            <Modal>
                This is modal content, you can put anything here

                You can also put a button to close the modal

                <button onClick={toggleModal}>Close Modal</button>
            </Modal>
        </div>
    )
}

 

Multiple Modals

You can have as many modals as you want.

const [ModalA, toggleModalA] = useModal()
const [ModalB, toggleModalB] = useModal()

return (
    <div>
        // Openers
        <button onClick={toggleModalA}>Open Modal A</button>
        <button onClick={toggleModalB}>Open Modal B</button>

        // Modal A
        <ModalA>
            <button onClick={toggleModalA}>Close Modal A</button>
        </ModalA>

        // Modal B
        <ModalB>
            <button onClick={toggleModalB}>Close Modal B</button>
        </ModalB>
    </div>
)

 

Support Context

Modal is not blocking its children from receiving any context (Other implementations I've seen could loose the context):

import { AppContext } from './AppContext'
import ModalContent from './ModalContent'

function App() {
    const [Modal, toggleModal] = useModal()

    return (
        <AppContext.Provider>
            <button onClick={toggleModal}>Open Modal</button>

            <Modal>
                <ModalContent />
            </Modal>
        </AppContext.Provider>
    )
}

Then in ModalContent component you can use context:

import { useContext } from 'react'
import { AppContext } from './AppContext'

function ModalContent () {
    const { language } = useContext(AppContext)

    return (
        // Render something using context...
    )
}

 

Props

Modal inherits any props from HTMLDivElement, on top of that, it also provides several very useful props, these are all optional: | Name | Type | Description | Default | | -------------- | ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------ | | mask | boolean | When this is set to true, modal will fill the entire screen by setting both bottom and right css properties to 0, and this will block the user interacting with the elements that is behind the modal. | true | | maskClosable | boolean | When this is set to true, user can close the modal by clicking the modal background (All of the empty space that is not its children). | true | | blockScroll | boolean | When this is set to true, HTML body cannot be scrolled when modal is opened, NOTE: scroll bar for the body can still be seen, so the page layout will not twitch on Windows devices | false | | className | string | Every modal element has this className by default, it's useful if you want to simply adjust the style globally. Still, you can pass a className to overwrite the default value. | useModal_wrapper | | rootId | string | The id of the HTML element that Portal will render the modal into. | modal-root | | onShow | ()=>void | Do something when the modal is opened. | undefined | | onHide | ()=>void | Do something when the modal is closed. | undefined |

 

Set Prop Values Globally

If you want to use certain prop values globally in your project, you can wrap this hook with your own custom hook, and set the values there:

import React, { FC, ComponentProps } from "react"
import useModal from "hooks-modal"

export default function usePopover() {
    const [Modal, togglePopover] = useModal()

    type PopoverProps = ComponentProps<typeof Modal>

    const Popover: FC<PopoverProps> = ({
        children,
        mask,
        blockScroll,
        ...rest 
    }) => (
        <Modal
            // Showing popover will not prevent user
            // interaction with background element
            mask={false}
            // User can still scroll the body element
            blockScroll={false}
            // Hide the popover when it loses focus
            onBlur={togglePopover}
            {...rest}
        >
            {children}
        </Modal>
    )

    return [Popover, togglePopover] as [FC<PopoverProps>, () => void]
}

 

Enjoy ;)