Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
react-inline-confirm
Advanced tools
A simple react component that allows you to get a confirmation of action from the user before executing an action.
A react component that allows you to get a confirmation of action from the user before executing an action.
npm install react-inline-confirm --save
import React from "react";
import InlineConfirmButton from "react-inline-confirm";
const textValues = ["Delete", "Are you sure?", "Deleting..."];
const confirmIconClass = `fa fa-${isExecuting ? "circle-o-notch fa-spin" : "fa fa-trash"}`;
React.render((
<InlineConfirmButton className="btn btn-default" textValues={textValues} showTimer isExecuting={isExecuting} onClick={handleClick}>
<i className={confirmIconClass}></i>
</InlineConfirmButton>
), document.getElementById("myApp"));
function handleClick() {
console.log("got a confirmation!");
}
This would allow the user to confirm their action before calling the handleClick
function.
IsExecuting
is a required flag prop that can be used to track the execution state of the react-inline-confirm
button's click event handler from the parent component. This can come in handy when the callback method returns a promise or performs asynchronous operations in general, since those can return before the method execution actually produces a result.
yarn
from the root directoryyarn start
localhost:3139
To reload, simply save your work. The app will recompile and your browser will refresh once bundled.
FAQs
A simple react component that allows you to get a confirmation of action from the user before executing an action.
We found that react-inline-confirm demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.