@smooks/use-confirm
v1.0.0
Published
React Hook to ask the user for a confirmation before executing a function.
Downloads
3
Readme
@smooks/use-confirm
React Hook to ask the user for a confirmation before executing a function.
Installation
yarn
yarn add @smooks/use-confirm
npm
npm i @smooks/use-confirm
Usage
import React from "react";
import useConfirm from "@smooks/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>;
}
Argument
| Argument | Type | Description | Required | | ---------- | -------- | ------------------------------------------------------ | -------- | | message | string | Message to show the user on the confirmation prompt | 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 |