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

@noxy/react-dialog

v1.2.2

Published

A dialog component and hook to use with react functional components.

Downloads

16

Readme

react-dialog

Introduction

react-dialog is a React functional component hook which creates a dialog renderer element and a dialog creation function. The dialog is only a container element and wrapper and does not come with any dialog templates. Child elements added to the dialog component will have access to the DialogInstance object through the DialogContext.

Installation

To install run the following command:

npm install @noxy/react-dialog@latest

Typescript types are already available in the library so no need to get external types.

Usage

The following is an example of how to use the component:

import {useDialog, DialogContext} from "@noxy/react-dialog";
import React, {HTMLProps, useContext} from "react";

function TestComponent(props: HTMLProps<HTMLDivElement>) {
  const [dialog, createDialog] = useDialog();
  
  return (
    <>
      <div>
        <button onClick={onButtonClick}>Hello</button>
      </div>
      {dialog}
    </>
  );
  
  function onButtonClick() {
    createDialog({
      children: <DialogComponent onClose={onDialogClose}/>
    });
  }
  
  function onDialogClose(value: string) {
  
  }
}

function DialogComponent(props: {onClose: (value: string) => void}) {
  const dialog = useContext(DialogContext)
  
  return (
    <div className={"dialog"}>
      World!
      <button onClick={onButtonClick}>Ok</button>
    </div>
  )
  
  function onButtonClick() {
    dialog.close("a value");
  }
}

The useDialog hook takes a namespace as argument. This is the namespace which the dialogs created by the createDialog function will be stored. The dialog renderer supplied by the hook will display only dialogs from that namespace. The default namespace is "global".

Properties

The DialogInstance component inherits all HTMLDivElement properties and applies them directly to the outermost element. This includes the className property for those using CSS modules.

overlay: boolean

Determines if an overlay should be shown behind the dialog, disabling clicking on anything behind the dialog.

Default value: true

dismissible: boolean

Only relevant if overlay is set to true. Determines if the dialog should be able to be dismissed by clicking on the overlay behind the dialog. Dismissing a dialog in this way will trigger the onClose handler.

Default value: true

closeable: boolean

Determines if a close button should be shown inside the dialog that can be clicked to close the dialog.

Default value: true

onClose: callback(dialog: DialogEvent): void

A callback function which is called when the dialog is dismissed or closed, either through the close button, the overlay, or the DialogInstance close method.

interface DialogEvent<V> {
    value: V
    dialog: DialogInstance
}

Default value: undefined