@web-react-hooks/use-confirm
v1.0.5
Published
React Hook to ask the user for a confirmation before executing a function.
Downloads
6
Readme
Installation
yarn
yarn add @web-react-hooks/use-confirm
npm
npm i @web-react-hooks/use-confirm
Usage
import React from "react";
import useConfirm from "@web-react-hooks/use-confirm";
function App() {
const deleteWorld = () => console.log("Deleting world...");
const confirmDelete = useConfirm("Are you sure?", deleteWorld);
return <button onClick={confirmDelete}>Delete the world</button>;
}
Arguments
| Argument | Type | Description | Required | | --------- | -------- | --------------------------------------------------- | -------- | | message | string | Message to show the user on the confirmation propmt | yes | | onConfirm | function | Function to be executed when the user confirms | yes | | onCancel | function | Function to be executed when the user cancels | no |
Return
| Return value | Type | Description Default value | | ------------ | ------------------------------------------------------- | ------------------------- | | function | function Function wrapped around the confirmation logic | null |