forked from github/Toast-PhoneGap-Plugin
52 lines
1.9 KiB
Objective-C
52 lines
1.9 KiB
Objective-C
#import "Toast.h"
|
|
#import "Toast+UIView.h"
|
|
#import <Cordova/CDV.h>
|
|
|
|
@implementation Toast
|
|
|
|
- (void)show:(CDVInvokedUrlCommand*)command {
|
|
NSDictionary* options = [command argumentAtIndex:0];
|
|
NSString *message = options[@"message"];
|
|
NSString *duration = options[@"duration"];
|
|
NSString *position = options[@"position"];
|
|
NSDictionary *data = options[@"data"];
|
|
NSNumber *addPixelsY = options[@"addPixelsY"];
|
|
NSDictionary *styling = options[@"styling"];
|
|
|
|
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;
|
|
}
|
|
|
|
NSTimeInterval durationMS;
|
|
if ([duration.lowercaseString isEqualToString: @"short"]) {
|
|
durationMS = 2000;
|
|
} else if ([duration.lowercaseString isEqualToString: @"long"]) {
|
|
durationMS = 4000;
|
|
} else {
|
|
durationMS = [duration intValue];
|
|
}
|
|
|
|
[self.webView makeToast:message
|
|
duration:durationMS / 1000
|
|
position:position
|
|
addPixelsY:addPixelsY == nil ? 0 : [addPixelsY intValue]
|
|
data:data
|
|
styling:styling
|
|
commandDelegate:self.commandDelegate
|
|
callbackId:command.callbackId];
|
|
|
|
CDVPluginResult* pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK];
|
|
pluginResult.keepCallback = [NSNumber numberWithBool:YES];
|
|
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
|
|
}
|
|
|
|
- (void)hide:(CDVInvokedUrlCommand*)command {
|
|
[self.webView hideToast];
|
|
|
|
CDVPluginResult* pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK];
|
|
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
|
|
}
|
|
|
|
@end |