Skip to content

Commit 0d36b26

Browse files
committed
Merge pull request #5729 from srahim/TIMOB-17021-3_3_X
[TIMOB-17021] 3_3_X iOS: FeatureEvent should accept a jsonString, string and Dictionary
2 parents 898db29 + 393fb1d commit 0d36b26

File tree

1 file changed

+22
-8
lines changed

1 file changed

+22
-8
lines changed

iphone/Classes/AnalyticsModule.m

+22-8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
#import "AnalyticsModule.h"
99
#import "APSAnalytics/APSAnalytics.h"
10+
#import "SBJSON.h"
1011

1112
@implementation AnalyticsModule
1213

@@ -27,10 +28,10 @@ -(void)navEvent:(id)args
2728
[self throwException:@"invalid number of arguments, expected at least 2" subreason:nil location:CODELOCATION];
2829
return;
2930
}
30-
NSString *from = [[args objectAtIndex:0] autorelease];
31-
NSString *to = [[args objectAtIndex:1] autorelease];
32-
NSString *event = [args count] > 2 ? [[args objectAtIndex:2] autorelease] : @"";
33-
id data = [args count] > 3 ? [[args objectAtIndex:3] autorelease] : [NSDictionary dictionary];
31+
NSString *from = [args objectAtIndex:0] ;
32+
NSString *to = [args objectAtIndex:1];
33+
NSString *event = [args count] > 2 ? [args objectAtIndex:2] : @"";
34+
id data = [args count] > 3 ? [args objectAtIndex:3] : [NSDictionary dictionary];
3435
[APSAnalytics sendAppNavEventFrom:from to:to withName:event withPayload:data];
3536
}
3637

@@ -42,10 +43,23 @@ -(void)featureEvent:(id)args
4243
[self throwException:@"invalid number of arguments, expected at least 1" subreason:nil location:CODELOCATION];
4344
return;
4445
}
45-
NSString *event = [[args objectAtIndex:0] autorelease];
46-
id data = [args count] > 1 ? [[args objectAtIndex:1] autorelease] : [NSDictionary dictionary];
47-
48-
[APSAnalytics sendFeatureEvent:event withPayload:data];
46+
NSString *event = [args objectAtIndex:0];
47+
id data = [args count] > 1 ? [args objectAtIndex:1] : [NSDictionary dictionary];
48+
if (data!=nil && ([data isKindOfClass:[NSDictionary class]]== NO))
49+
{
50+
id value = nil;
51+
if ([data isKindOfClass:[NSString class]] == YES) {
52+
value = [TiUtils jsonParse:data];
53+
if (value == nil)
54+
value = [NSDictionary dictionaryWithObject:data forKey:@"data"];
55+
} else {
56+
//if all else fails fall back old behavior
57+
value = [SBJSON stringify:data];
58+
value = [NSDictionary dictionaryWithObject:value forKey:@"data"];
59+
}
60+
data = value;
61+
}
62+
[APSAnalytics sendFeatureEvent:event withPayload:data];
4963
}
5064

5165
@end

0 commit comments

Comments
 (0)