🚨 Active Supply Chain Attack:node-ipc Package Compromised.Learn More
Socket
Book a DemoSign in
Socket

react-toaster

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-toaster

A toast of React

Source
npmnpm
Version
0.0.2
Version published
Weekly downloads
51
-16.39%
Maintainers
1
Weekly downloads
 
Created
Source

React-toast

A toast style message tip of React

Installation

npm install react-toaster --save-dev

Usage

  • Basic:
var Demo = React.createClass({
    displayName: 'ReactToasterDemo',
    onShow: function(){
        this.refs.toast.show('Hei, hei');
    },
    onHide: function(){
        this.refs.toast.hide();
    },
    render: function(){
        return (
            <div className="demo">
                <ReactToaster ref="toast" />
                <input type="button" value="Show" onClick={this.onShow}/>
                <input type="button" value="Hide" onClick={this.onHide}/>
            </div>
        );
    }
});
  • Properties:
{
    auto: true, 			// auto hide or not
    duration: 2000,	
    width: '55%',	
    left: '20%',			
    top: '40%',
    color: '#fff',
    background: 'rgba(0, 0, 0, 0.5)',
    opacity: .8,
    zIndex: 9999,
    fontSize: '20px'
}

// usage
<ReactToaster ref="toast" duration="1000" background="yellow" .../>
  • Maybe it's more suitable for Mobile Web App.

Release History

  • 0.0.1
    • It's the simplest implementation.
  • 0.0.2
    • add fontSize property and update doc.

Keywords

react-component

FAQs

Package last updated on 31 Aug 2015

Did you know?

Socket

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.

Install

Related posts