Security News
RubyGems.org Adds New Maintainer Role
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.
react-native-redux-toast
Advanced tools
Cross platform implementation of Android's toast component. Easy to customize and integrate with redux. 100% written in JS.
Android | iOS |
---|---|
npm install --save react-native-redux-toast
yarn add react-native-redux-toast
1- Add the toast reducer to your store
import { createStore, combineReducers } from 'redux';
import { toastReducer as toast } from 'react-native-redux-toast';
const reducers = combineReducers({
toast
});
export default createStore(reducers);
2- Mount the toast component where you want to use it. (Usually at the root level of the app)
import React from 'react';
import { Provider } from 'react-redux';
import { View } from 'react-native';
import { Toast } from 'react-native-redux-toast';
import store from './store';
import App from './app';
export default function main() {
return (
<Provider store={store}>
<View style={{ flex: 1 }}>
<App />
<Toast messageStyle={{ color: 'white' }} />
</View>
</Provider>
);
}
3- Dispatch actions
class App extends Component {
displayErrorToast = () => {
this.props.dispatch(ToastActionsCreators.displayError('Error toast!'));
};
displayWarningToast = () => {
this.props.dispatch(ToastActionsCreators.displayWarning('Warning toast!', 2000));
};
displayInfoToast = () => {
this.props.dispatch(ToastActionsCreators.displayInfo('Info toast!', 5000));
};
render() {
return (
<View>
<Button title={'Info Toast!'} onPress={this.displayInfoToast} />
<Button title={'Warning Toast!'} onPress={this.displayWarningToast} />
<Button title={'Error Toast!'} onPress={this.displayErrorToast} />
</View>
);
}
}
containerStyle: (View.propTypes.style) Styles to apply to the View that wraps the Toast
messageStyle: (Text.propTypes.style) Styles to apply to the Text component of the Toast
errorStyle: (View.propTypes.style) Same as containerStyle, only applied when the error Toast is being used
warningStyle: (View.propTypes.style) Same as containerStyle, only applied when the warning Toast is being used
getMessageComponent: (React.PropTypes.func) Function that returns a component to be used inside the Toast. Receives two params: message and an object: { error: bool, warning: bool }. Default value:
Toast.defaultProps = {
getMessageComponent(message) {
return (
<Text style={this.messageStyle}>
{message}
</Text>
);
}
};
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)This project is maintained by Sebastian Balay and it was written by Wolox.
react-native-redux-toast is available under the MIT license.
Copyright (c) 2017 Sebastián Balay <sebastian.balay@wolox.com.ar>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
FAQs
Cross platform implementation of Android's toast component. Easy to customize and integrate with redux. 100% written in JS.
The npm package react-native-redux-toast receives a total of 38 weekly downloads. As such, react-native-redux-toast popularity was classified as not popular.
We found that react-native-redux-toast demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
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.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.