@bro95-hooks/use-confirm
v1.0.0
Published
React Hook to ask the user for a confirmation before executing a function.
Downloads
1
Readme
@bro95-hooks/use-confirm
📌React Hook to ask the user for a confirmation before executing a function.
Installation
npm
npm i @bro95-hooks/use-confirm
Usage
import React from "react";
import useConfirm from "@bro95-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 |