🚨 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

latest
Source
npmnpm
Version
0.0.3
Version published
Maintainers
1
Created
Source

React-toaster

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('<span>Hei, hei</span>');
    },
    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>
        );
    }
});
  • Configuration:
// css
{
    width: '55%',	
    left: '20%',			
    top: '40%',
    color: '#fff',
    background: 'rgba(0, 0, 0, 0.5)',
    opacity: .8,
    zIndex: 9999,
    fontSize: '20px'
}

// props
{
	auto: true,		// auto hide or not,
	duration: 2000, 	// hide timeout
	modal: false,		// modal or not
}

// usage
<ReactToaster ref="toast" duration="1000" modal={false} auto={true} css={{background: 'red'}} />
  • Methods
show: 
	Show the toast with content;
hide: 
	Hide the toast manually.
  • 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.
  • 0.0.3
    • support modal;
    • extract style custom with css props.

Keywords

react-component

FAQs

Package last updated on 07 Sep 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