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.
redux-toastr
Advanced tools
redux-toastr
is a toastr message implemented with Redux, primary consists of three things: a Redux reducer, redux-toastr
toastr emitter and a React component.
The reducer listens to dispatched actions from the component to maintain your state in Redux.
redux-toastr
demo
npm install --save redux-toastr
redux-toastr
styles to your app#####NOTE: This can be changed at anytime
<link href="http://diegoddox.github.io/redux-toastr/0.3.0/css/redux-toastr.min.css" rel="stylesheet" type="text/css">
redux-toastr
reducer to Redux.import {createStore, combineReducers} from 'redux'
import {reducer as toastrReducer} from 'redux-toastr'
const reducers = {
// ... other reducers ...
toastr: toastrReducer // <---- Mounted at toastr.
}
const reducer = combineReducers(reducers)
const store = createStore(reducer)
redux-toastr
is toastr
.redux-toastr
React component to the root of your appimport ReduxToastr from 'redux-toastr'
<Provider store={store}>
<div>
... other things like router ...
<ReduxToastr/>
</div>
</Provider>
toastr
The toastr method use eventemitter3 to dispatch the actions
import React, {Component} from 'react'
import {toastr} from 'redux-toastr'
export class YourComponent extends Component {
render() {
return (
<div>
<button
onClick={() => toastr.success('The title', 'The message')}
type="button">Toastr Success</button>
</div>
)
}
}
Or you can bind the actions
to your component if you prefer.
import {bindActionCreators} from 'redux'
import {actions as toastrActions} from 'redux-toastr'
// In your React component
constructor(props) {
super(props);
// Bind the redux-toastr actions to the component
this.toastr = bindActionCreators(toastrActions, this.props.dispatch)
}
success
info
warning
error
Each method can take up to three arguments.
title
the second message
and the third is the options
string
arguments the first will be the title
and the second the message
message
and the second argument can be the options
Title | message | options |
---|---|---|
string | string | object |
import {toastr} from 'redux-toastr'
const toastrOptions = {
timeOut: number,
onShowComplete: func, // <-- When the animation-show is complete
onHideComplete: func, // <-- When the animation-hide is complete
icon: string // Custom icon
}
toastr.success('Title', 'Message', toastrOptions)
toastr.info('The message', toastrOptions)
toastr.warning('The title', 'The message')
toastr.error('The message'})
By default redux-toastr
provides a icon for success
, info
, warning
and error
but you can override by passing a object {icon: 'icon-name'}
to the toastr
method.
git clone https://github.com/diegoddox/redux-toastr.git
cd redux-toastr/demo/
npm install
npm start
open your browser at http://localhost:3000
create test.
FAQs
Unknown package
The npm package redux-toastr receives a total of 2 weekly downloads. As such, redux-toastr popularity was classified as not popular.
We found that redux-toastr demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.