forked from github/Toast-PhoneGap-Plugin
38 lines
1.4 KiB
Objective-C
38 lines
1.4 KiB
Objective-C
#import "Toast.h"
|
|
#import "Toast+UIView.h"
|
|
#import <Cordova/CDV.h>
|
|
|
|
@implementation Toast
|
|
|
|
- (void)show:(CDVInvokedUrlCommand*)command {
|
|
|
|
NSDictionary* options = [command.arguments objectAtIndex:0];
|
|
|
|
NSString *message = [options objectForKey:@"message"];
|
|
NSString *duration = [options objectForKey:@"duration"];
|
|
NSString *position = [options objectForKey:@"position"];
|
|
|
|
if (![position isEqual: @"top"] && ![position isEqual: @"center"] && ![position isEqual: @"bottom"]) {
|
|
CDVPluginResult * pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsString:@"invalid position. valid options are 'top', 'center' and 'bottom'"];
|
|
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
|
|
return;
|
|
}
|
|
|
|
NSInteger durationInt;
|
|
if ([duration isEqual: @"short"]) {
|
|
durationInt = 2;
|
|
} else if ([duration isEqual: @"long"]) {
|
|
durationInt = 5;
|
|
} else {
|
|
CDVPluginResult * pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsString:@"invalid duration. valid options are 'short' and 'long'"];
|
|
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
|
|
return;
|
|
}
|
|
|
|
[self.webView makeToast:message duration:durationInt position:position];
|
|
|
|
CDVPluginResult* pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK];
|
|
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
|
|
}
|
|
|
|
@end |