7
7
8
8
#import " AnalyticsModule.h"
9
9
#import " APSAnalytics/APSAnalytics.h"
10
+ #import " SBJSON.h"
10
11
11
12
@implementation AnalyticsModule
12
13
@@ -27,10 +28,10 @@ -(void)navEvent:(id)args
27
28
[self throwException: @" invalid number of arguments, expected at least 2" subreason: nil location: CODELOCATION];
28
29
return ;
29
30
}
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 ];
34
35
[APSAnalytics sendAppNavEventFrom: from to: to withName: event withPayload: data];
35
36
}
36
37
@@ -42,10 +43,23 @@ -(void)featureEvent:(id)args
42
43
[self throwException: @" invalid number of arguments, expected at least 1" subreason: nil location: CODELOCATION];
43
44
return ;
44
45
}
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];
49
63
}
50
64
51
65
@end
0 commit comments