
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-fancy-button
Advanced tools
React component button with spinner.

NOTE: v1.0.x has upgrade React to v16. If using older version React, please use latest previous version 0.2.21.
npm install react-fancy-button --save
import FancyButton from 'react-fancy-button';
React.createClass({
save() {
this.setState({isSavingNote: true});
console.log('saving!')
},
isFormValid() {
return someValidations();
},
render() {
<FancyButton classes='btn btn--small btn-primary btn--full'
onClick={this.save}
disabled={isFormValid()}
trigger={this.state.isSavingNote}
onDisabledClick={ () => this.setState({ showErrors: true }) }
label='Save'/>
}
classes {String} string of classes on button element
type {String} type of button
label {Any} content in button
onDisabledClick {Function} action on click of disabled button
trigger {Boolean hides/shows spinner and disabled more subsequent clicks from happening unless allowMultiClick is true
disabled {Boolean} disables button
onClick {String} action on click
role {String} aria role for button - defaults to 'button'
ariaLabel {String} aria-label for button - defaults to what prop.label is set to
allowMultiClick {Boolean} defaults to false. If true, it will allow onClick handler to be triggered even if the prop trigger is true
To run the tests you can either run:
npm test
OR
npm test -- --debug=true // for debug mode in chrome
FAQs
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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.