Gathering detailed insights and metrics for cordova-plugin-x-toast
Gathering detailed insights and metrics for cordova-plugin-x-toast
Gathering detailed insights and metrics for cordova-plugin-x-toast
Gathering detailed insights and metrics for cordova-plugin-x-toast
npm install cordova-plugin-x-toast
Module System
Unable to determine the module system for this package.
Min. Node Version
Typescript Support
Node Version
NPM Version
510 Stars
149 Commits
276 Forks
30 Watching
2 Branches
11 Contributors
Updated on 25 Nov 2024
C++ (79.97%)
Objective-C (9.75%)
Java (4.26%)
JavaScript (3.25%)
C# (2.52%)
C (0.25%)
Cumulative downloads
Total Downloads
Last day
-5.1%
240
Compared to previous day
Last week
6.2%
1,353
Compared to previous week
Last month
-5.9%
6,569
Compared to previous month
Last year
-24.9%
79,025
Compared to previous year
No dependencies detected.
for Android, iOS, WP8, Windows and BlackBerry by Eddy Verbruggen
If you like this plugin and want to say thanks please send a PR or donation. Both are equally appreciated!
For a quick demo app and easy code samples, check out the plugin page at the Verified Plugins Marketplace: http://plugins.telerik.com/plugin/toast |
This plugin allows you to show a native Toast (a little text popup) on iOS, Android and WP8. It's great for showing a non intrusive native notification which is guaranteed always in the viewport of the browser.
Example usages:
iOS
A few styling options
Android
Windows Phone 8
Toast is compatible with Cordova Plugman, compatible with PhoneGap 3.0 CLI, here's how it works with the CLI (backup your project first!):
Using the Cordova CLI and the Cordova Plugin Registry
$ cordova plugin add cordova-plugin-x-toast
$ cordova prepare
Or using the phonegap CLI
$ phonegap local plugin add cordova-plugin-x-toast
Toast.js is brought in automatically. There is no need to change or add anything in your html.
You'd better use the CLI, but here goes:
1. Add the following xml to your config.xml
in the root directory of your www
folder:
1<!-- for iOS --> 2<feature name="Toast"> 3 <param name="ios-package" value="Toast" /> 4</feature>
1<!-- for Android --> 2<feature name="Toast"> 3 <param name="android-package" value="nl.xservices.plugins.Toast" /> 4</feature>
1<!-- for WP8 --> 2<feature name="Toast"> 3 <param name="wp-package" value="Toast"/> 4</feature>
For iOS, you'll need to add the QuartzCore.framework
to your project (it's for automatically removing the Toast after a few seconds).
Click your project, Build Phases, Link Binary With Libraries, search for and add QuartzCore.framework
.
2. Grab a copy of Toast.js, add it to your project and reference it in index.html
:
1<script type="text/javascript" src="js/Toast.js"></script>
3. Download the source files and copy them to your project.
iOS: Copy the two .h
and two .m
files to platforms/ios/<ProjectName>/Plugins
Android: Copy Toast.java
to platforms/android/src/nl/xservices/plugins
(create the folders)
WP8: Copy Toast.cs
to platforms/wp8/Plugins/nl.x-services.plugins.toast
(create the folders)
Toast works with PhoneGap build too, but only with PhoneGap 3.0 and up.
Just add the following xml to your config.xml
to always use the latest version of this plugin:
1<gap:plugin name="cordova-plugin-x-toast" source="npm" />
Toast.js is brought in automatically. There is no need to change or add anything in your html.
You have two choices to make when showing a Toast: where to show it and for how long.
You can also use any of these convenience methods:
You can copy-paste these lines of code for a quick test:
1<button onclick="window.plugins.toast.showShortTop('Hello there!', function(a){console.log('toast success: ' + a)}, function(b){alert('toast error: ' + b)})">Toast showShortTop</button> 2<button onclick="window.plugins.toast.showLongBottom('Hello there!', function(a){console.log('toast success: ' + a)}, function(b){alert('toast error: ' + b)})">Toast showLongBottom</button> 3<button onclick="window.plugins.toast.show('Hello there!', 'long', 'center', function(a){console.log('toast success: ' + a)}, function(b){alert('toast error: ' + b)})">Toast show long center</button>
Since 2.1.0 you can add pixels to move the toast up or down.
Note that showWithOptions
can be used instead of the functions above, but it's not useful unless you want to pass addPixelsY
.
1function showBottom() {
2 window.plugins.toast.showWithOptions(
3 {
4 message: "hey there",
5 duration: "short", // which is 2000 ms. "long" is 4000. Or specify the nr of ms yourself.
6 position: "bottom",
7 addPixelsY: -40 // added a negative value to move it up a bit (default 0)
8 },
9 onSuccess, // optional
10 onError // optional
11 );
12}
In case you want to hide a Toast manually, call this:
1function hide() { 2 // this function takes an optional success callback, but you can do without just as well 3 window.plugins.toast.hide(); 4}
When the toast gets hidden, your success callback will be called (in case you have defined one) with the event
property equals to hide
(more details about the callback in the next section).
1 2 window.plugins.toast.showWithOptions({ 3 message: 'My message', 4 // More config here... 5 }, 6 //Success callback 7 function(args) { 8 console.log(args.event); 9 //This will print 'hide' 10 }, 11 function(error) { 12 console.error('toast error: ', error); 13 } 14 );
On iOS and Android the success handler of your show
function will be notified (again) when the toast was tapped.
So the first time the success handler fires is when the toast is shown, and in case the user taps the toast it will be called again. You can distinguish between those events of course:
1 window.plugins.toast.showWithOptions( 2 { 3 message: "hey there", 4 duration: 1500, // ms 5 position: "bottom", 6 addPixelsY: -40, // (optional) added a negative value to move it up a bit (default 0) 7 data: {'foo':'bar'} // (optional) pass in a JSON object here (it will be sent back in the success callback below) 8 }, 9 // implement the success callback 10 function(result) { 11 if (result && result.event) { 12 console.log("The toast was tapped or got hidden, see the value of result.event"); 13 console.log("Event: " + result.event); // "touch" when the toast was touched by the user or "hide" when the toast geot hidden 14 console.log("Message: " + result.message); // will be equal to the message you passed in 15 console.log("data.foo: " + result.data.foo); // .. retrieve passed in data here 16 17 if (result.event === 'hide') { 18 console.log("The toast has been shown"); 19 } 20 } 21 } 22 );
The success callback is useful when your toast is bound to a notification id in your backend and you have to mark it as read
when the toast is done, or to update the notifications counter for iOS. The usage of this will be defined by your application logic. Use the result.data
object to support your specific logic.
Since version 2.4.0 you can pass an optional styling
object to the plugin.
The defaults make sure the Toast looks the same as when you would not pass in the styling
object at all.
Note that on WP this object is currently ignored.
1 window.plugins.toast.showWithOptions({ 2 message: "hey there", 3 duration: "short", // 2000 ms 4 position: "bottom", 5 styling: { 6 opacity: 0.75, // 0.0 (transparent) to 1.0 (opaque). Default 0.8 7 backgroundColor: '#FF0000', // make sure you use #RRGGBB. Default #333333 8 textColor: '#FFFF00', // Ditto. Default #FFFFFF 9 textSize: 20.5, // Default is approx. 13. 10 cornerRadius: 16, // minimum is 0 (square). iOS default 20, Android default 100 11 horizontalPadding: 20, // iOS default 16, Android default 50 12 verticalPadding: 16 // iOS default 12, Android default 30 13 } 14 });
Tip: if you need to pass different values for iOS and Android you can use fi. the device plugin
to determine the platform and pass opacity: isAndroid() ? 0.7 : 0.9
.
The WP8 implementation needs a little more work, but it's perfectly useable when you keep this in mind:
This plugin was enhanced for Plugman / PhoneGap Build by Eddy Verbruggen. The Android code was entirely created by me. For iOS most credits go to this excellent [Toast for iOS project by Charles Scalesse] (https://github.com/scalessec/Toast).
textSize
used in the font for iOS and Android.short
(2000ms), long
(4000ms), or any nr of milliseconds: 900
.opacity
for iOS.No vulnerabilities found.
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 7/24 approved changesets -- score normalized to 2
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
binaries present in source code
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More