react-alert
A simple react alert (toaster style) component. Cloned and Added new functionality for support for ES6
Demo
You can see a live demo here.
Installation
$ npm install react-alert
It expects external react
, react-dom
and react-addons-css-transition-group
.
Usage
To use it, you have to import the AlertContainer
component, like this:
;; Component { superprops; thisalertOptions = offset: 14 position: 'bottom left' theme: 'dark' time: 5000 transition: 'scale' ; } { thismsg; } { return <div> <AlertContainer ref= thismsg = a ...thisalertOptions /> <button onClick=thisshowAlert>Show Alert</button> </div> ; }
Options
The AlertContainer
component accepts the following options:
//defaults offset: 14 //the offset of the alert from the page border, can be any number position: 'bottom left' //the position of the alert, can be [bottom left, bottom right, top left, top right] theme: 'dark' //the color theme of the alert, can be [dark, light] time: 5000 //the time in miliseconds to the alert close itself, use 0 to prevent auto close (apply to all alerts) transition: 'scale' //the transition animation, can be [scale, fade]
When you call the show
method, you can include the following options as a second parameter:
time: 0 //the time in miliseconds to the alert close itself, use 0 to prevent auto close (apply to this alert only), default is 5000 type: 'info' //the alert type, can be [info, success, error], default is info icon: <img src="path/to/some/img/32x32.png" /> //the icon to show in the alert, if none is given the default of each type will be showed
Api
Once you have the reference of the AlertContainer
you can call the following methods:
//show an alertthismsg;//show an info alertthismsg;//show a success alertthismsg;//show an error alertthismsg;//removes all alerts from the pagethismsg;
Using React Components as alert content
You can also use a React Component to show a alert message, like this:
//show an alert with a React Component as contentthismsg;