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

@inner-desktop/react-st-modal

v1.1.4

Published

React St Modal is a simple and flexible library for implementing modal dialogs

Downloads

11

Readme

GitHub license npm npm


react-st-modal


React St Modal is a simple and flexible library for implementing modal dialogs.

Features

  • Simple and easy to use api
  • Compatible with mobile devices
  • Implemented standard interaction functions: alert, confirm, prompt
  • Async/await syntax
  • Customization via css variables
  • Accessibility and focus control
  • Dynamic call of modal dialogs, which does not require definition in code
  • No third party libraries

DEMO AND DOCS: https://nodlik.github.io/react-st-modal/


Getting started

Installation

You can install the latest version using npm:

  npm install react-st-modal

Overview

To implement the functionality of modal dialogs this library has four functions and one react component.

Functions Alert, Confirm, Prompt implement the behavior of existing browser functions.

Function CustomDialog shows any JSX element in a modal window.

React component StaticDialog is used to define modals in your JSX element.

Interaction: (Alert, Prompt, Confirm)

All interaction functions are async. | Method name | Parameters | Return type | Description| | ----------- | ---------- | ----------- | ---------- | | Alert | body: JSX.Element (string), title?: string, buttonText?: string | void | Shows a message (body) and waits for the user to press button | | Confirm | body: JSX.Element (string), title?: string, okButtonText?: string, cancelButtonText?: string | boolean | Shows a modal window with a text (body) and two buttons: OK and Cancel. The result is true if OK is pressed and false otherwise| | Prompt |title?: string, options?: PromptConfig | string | Shows a modal window with a text message, an input field for the visitor, and the buttons OK/Cancel|

PromptConfig allows you to specify the following optional parameters:

  • defaultValue: string | number
  • isRequired: boolean
  • errorText: string
  • okButtonText: string
  • cancelButtonText: string

Example

import { Confirm } from 'react-st-modal';

function ConfirmExample() {
  return (
    <div>
      <button
        onClick={async () => {
          const result = await Confirm('Сonfirmation text', 
            'Сonfirmation title');
          
          if (result) {
            // Сonfirmation confirmed
          } else {
            // Сonfirmation not confirmed
          }
        }}
      >
          Show confirm
      </button>
    </div>
  );
}

CustomDialog

CustomDialog is an async function that shows any element in a modal window.

Parameters

  • body: JSX.Element - the element shown in the modal dialog
  • options?: CustomConfig - specified options

CustomConfig allows you to specify the following optional parameters:

  • title?: string - modal dialog title
  • className?: string - css className
  • defaultBodyOverflow?: string (default: visible) - default value to body css property overflow
  • showCloseIcon?: boolean (default: false) - show close button in the top corner of the window
  • isCanClose?: boolean (default: true) - is it possible to close the dialog by clicking on the overlay or ESC button
  • isFocusLock?: boolean (default: true) - lock focus on modal
  • isBodyScrollLocked?: boolean (default: true) - content scrolling lock
  • replaceScrollBar?: boolean (default: true) - whether to replace the body scrollbar with a placeholder
  • scrollBarPlaceholderColor?: string (default: #eeeeee) - default color for the scrollbar placeholder
  • onAfterOpen?: () => void - event called after the dialog was opened

To control a dialog from an inner element, use useDialog<T> hook

useDialog<T> returns an object containing:

  • isOpen: boolean - the current state of the modal
  • close: (result?: T) => void - function that closes the dialog and returns the result

Example

import { CustomDialog, useDialog } from 'react-st-modal';

// The element to be shown in the modal window
function CustomDialogContent() {
  // use this hook to control the dialog
  const dialog = useDialog();

  const [value, setValue] = useState();

  return (
    <div>
      <input
        type="text"
        onChange={(e) => {
          setValue(e.target.value);
        }}
      />
      <button
        onClick={() => {
          // Сlose the dialog and return the value
          dialog.close(value);
        }}
      >
        Custom button
      </button>
    </div>
  );
}

function CustomExample() {
  return (
    <div>
      <button
        onClick={async () => {
          const result = await CustomDialog(
            <CustomDialogContent />,
            {
              title: 'Custom Dialog',
              showCloseIcon: true,
            }
          );
        }}
      >
        Custom
      </button>
    </div>
  );
}

StaticDialog

StaticDialog it is a React component that used to define modals in your JSX element

Props

  • isOpen: boolean - describing if the modal should be shown or not
  • children: React.ReactNode - the element shown in the modal dialog
  • title?: string - modal dialog title
  • className?: string - css className
  • defaultBodyOverflow?: string (default: visible) - default value to body css property overflow
  • showCloseIcon?: boolean (default: false) - show close button in the top corner of the window
  • isCanClose?: boolean (default: true) - is it possible to close the dialog by clicking on the overlay or ESC button
  • isFocusLock?: boolean (default: true) - lock focus on modal
  • isBodyScrollLocked?: boolean (default: true) - content scrolling lock
  • replaceScrollBar?: boolean (default: true) - whether to replace the body scrollbar with a placeholder
  • scrollBarPlaceholderColor?: string (default: #eeeeee) - default color for the scrollbar placeholder
  • onAfterClose?: (result?: T) => void - event called after the dialog was closed
  • onAfterOpen?: () => void - event called after the dialog was opened

Example

import { StaticDialog, useDialog } from 'react-st-modal';

function CustomStaticExample() {
  const [isOpen, setOpen] = useState(false);

  return (
    <div>
      <StaticDialog
        isOpen={isOpen}
        title="Custom static dialog"
        onAfterClose={(result) => {
          setOpen(false);
          // do something with dialog result
        }}
    >
        {/* see previous demo */}
          <CustomDialogContent />
      </StaticDialog>

      <div>
        <button
          onClick={() => {
              setOpen(true);
          }}
        >
          Custom static
        </button>
      <div>
    </div>
    );
}

UI Elements

To decorate your dialogs, you can use the following components: ModalButton, ModalContent, ModalFooter

Example

import { ModalContent, ModalFooter, ModalButton, useDialog } from 'react-st-modal';

function CustomDialogContent() {
  const dialog = useDialog();

  const [value, setValue] = useState<string>();

  return (
      <div>
        <ModalContent>
          <div>Custom dialog content</div>
          <label>
            Input value:
            <input
              type="text"
              onChange={(e) => {
                setValue(e.target.value);
              }}
            />
          </label>
        </ModalContent>
        <ModalFooter>
          <ModalButton
            onClick={() => {
              dialog.close(value);
            }}
          >
            Custom button
          </ModalButton>
        </ModalFooter>
      </div>
  );
}

Contacts

Oleg,

[email protected]

Buy me a coffee