Jesse MacFadyen
http://purplecabbage.github.io/slides/pgd16Plugins/index.html
cordova plugin add cordova-plugin-device
cordova plugin ls
> cordova-plugin-device 1.1.1 "Device"
cordova plugin rm cordova-plugin-device
cordova plugin add http://github.com/apache/cordova-plugin-device
cordova plugin ls
> cordova-plugin-device 1.1.1 "Device"
cordova plugin rm cordova-plugin-device
cordova plugin add Repos/cordova/cordova-plugin-device
cordova plugin ls
> cordova-plugin-device 1.1.1 "Device"
cordova plugin rm cordova-plugin-device
This is the recommended way for developing. With `--link`
1272 plugins total according to the search
http://cordova.apache.org/plugins/1599 Plugins according to PlugReg
http://www.plugreg.com/70 Verified plugins listed by Telerik
http://plugins.telerik.com/cordova
// npm install -g plugman
plugman install --plugin org.apache.cordova.device --platform wp8
--project .
// try me!
plugman create --name PluginName --plugin_id jesse-plugin-id --plugin_version 0.0.1 --path .
Also accepts a --variable name=value pair string to define additional data like author, etc.
//In plugin.xml
<dependency id="cordova-plugin-device"></dependency>
<dependency id="cordova-plugin-console"></dependency>
exec(null, null, "StatusBar", "styleDefault", []); // JS
// in the app's (ios) config.xml
<feature name="StatusBar">
<param name="ios-package" value="CDVStatusBar">
<param name="onload" value="true">
</feature>
// in CDVStatusBar.m
- (void) styleDefault:(CDVInvokedUrlCommand*)command
{
[self setStyleForStatusBar:UIStatusBarStyleDefault];
}
// in CDVStatusBar.m
(void)fireTappedEvent
{
if (_eventsCallbackId == nil) { return; }
NSDictionary* payload = @{@"type": @"tap"};
CDVPluginResult* result = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsDictionary:payload];
[result setKeepCallbackAsBool:YES];
[self.commandDelegate sendPluginResult:result callbackId:_eventsCallbackId];
}
plugman createpackagejson path/to/my/plugin/
// show me!
npm publish
This plugin includes a demo!
the --link
in the demo instructions was important
cordova-medic is a test tool which is designed to run ALL the plugin tests
Many of the pieces of cordova-medic are reusable, so I spun them into another purpose based tool
provides advanced levels of care at the point of illness or injury, including out of hospital treatment, and diagnostic services
cordova-paramedic --platform ios --plugin .
// this will not work currently!
cordova-paramedic --platform /Repos/cordova/cordova-ios --plugin .
( note to self: start your vm! )
npm publish
Great guide here:
https://cordova.apache.org/docs/en/latest/guide/appdev/hooks/
A cool hook example here:
https://github.com/stevengill/es6-phonegap
Extend a plugin, remix it, remux it ex. The globalization plugin is async, which is really irritating.
https://github.com/apache/cordova-plugin-globalization -- All formatting/globalization info could be fetched up front, and then processing could happen NSYNC
twitter.com/purplecabbage