Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

confirm-modal-context-hook

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

confirm-modal-context-hook

## Install

  • 0.0.3
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

confirm-modal-context-hook

Install

yarn add confirm-modal-context-hook

Usage

Decrale your modal component. It receive props, message, exec and cancel.

  • message is a type of strings will be shown in modal.
  • exec is a type of functions will execute a process which you want to confirm.
  • cancel is a type of functions will close your modal.
function Modal({ message, exec, cancel }) {
  return (
    <div
      style={{
        width: "700px",
        height: "400px",
        margin: "0 auto",
        backgroundColor: "white"
      }}
    >
      <h1>{message}</h1>
      <button onClick={exec}>Yes</button>
      <button onClick={cancel}>No</button>
    </div>
  );
}

Wrap your application component with ConfirmModalProvider, And pass your modal component as Component props. (And you can pass custom overlay component as Overlay props.)

import { ConfirmModalProvider } from "confirm-modal-context-hook";

function App() {
  return (
    <ConfirmModalProvider Component={Modal} Overlay={Overlay}>
      <Content />
    </ConfirmModalProvider>
  );
}

Get configureModal func with useConfirmModal passed exec function and modal message string. Use configureModal as trigger a danger process.

import { useConfirmModal } from "confirm-modal-context-hook";

function Content() {
  const configureModal = useConfirmModal({
    exec: () => console.log("hoge"),
    message: 'May I output "hoge" to console?'
  });
  return (
    <div>
      <button onClick={configureModal}>output "hoge" to console.</button>
    </div>
  );
}

License

MIT

FAQs

Package last updated on 20 Mar 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc