![Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility](https://cdn.sanity.io/images/cgdhsj6q/production/97774ea8c88cc8f4bed2766c31994ebc38116948-1664x1366.png?w=400&fit=max&auto=format)
Security News
Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
confirm-modal-context-hook
Advanced tools
yarn add confirm-modal-context-hook
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>
);
}
MIT
FAQs
## Install
The npm package confirm-modal-context-hook receives a total of 2 weekly downloads. As such, confirm-modal-context-hook popularity was classified as not popular.
We found that confirm-modal-context-hook demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
Security News
React's CRA deprecation announcement sparked community criticism over framework recommendations, leading to quick updates acknowledging build tools like Vite as valid alternatives.
Security News
Ransomware payment rates hit an all-time low in 2024 as law enforcement crackdowns, stronger defenses, and shifting policies make attacks riskier and less profitable.