2015-03-23 20:28:42 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
#import <QuartzCore/QuartzCore.h>
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2015-03-26 14:22:12 +00:00
|
|
|
#import "../Layout/Layout.h"
|
|
|
|
#import "../Views/RCTAnimationType.h"
|
|
|
|
#import "../Views/RCTPointerEvents.h"
|
|
|
|
|
2015-03-25 23:22:59 +00:00
|
|
|
#import "RCTLog.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This class provides a collection of conversion functions for mapping
|
|
|
|
* JSON objects to native types and classes. These are useful when writing
|
|
|
|
* custom RCTViewManager setter methods.
|
|
|
|
*/
|
|
|
|
@interface RCTConvert : NSObject
|
|
|
|
|
|
|
|
+ (BOOL)BOOL:(id)json;
|
|
|
|
+ (double)double:(id)json;
|
|
|
|
+ (float)float:(id)json;
|
|
|
|
+ (int)int:(id)json;
|
|
|
|
|
2015-03-25 00:37:03 +00:00
|
|
|
+ (int64_t)int64_t:(id)json;
|
|
|
|
+ (uint64_t)uint64_t:(id)json;
|
|
|
|
|
2015-03-11 02:03:59 +00:00
|
|
|
+ (NSInteger)NSInteger:(id)json;
|
|
|
|
+ (NSUInteger)NSUInteger:(id)json;
|
|
|
|
|
2015-03-09 10:04:44 +00:00
|
|
|
+ (NSArray *)NSArray:(id)json;
|
|
|
|
+ (NSDictionary *)NSDictionary:(id)json;
|
2015-02-20 04:10:52 +00:00
|
|
|
+ (NSString *)NSString:(id)json;
|
|
|
|
+ (NSNumber *)NSNumber:(id)json;
|
|
|
|
|
|
|
|
+ (NSURL *)NSURL:(id)json;
|
|
|
|
+ (NSURLRequest *)NSURLRequest:(id)json;
|
|
|
|
|
|
|
|
+ (NSDate *)NSDate:(id)json;
|
|
|
|
+ (NSTimeZone *)NSTimeZone:(id)json;
|
|
|
|
+ (NSTimeInterval)NSTimeInterval:(id)json;
|
|
|
|
|
|
|
|
+ (NSTextAlignment)NSTextAlignment:(id)json;
|
|
|
|
+ (NSWritingDirection)NSWritingDirection:(id)json;
|
2015-03-17 14:04:39 +00:00
|
|
|
+ (UITextAutocapitalizationType)UITextAutocapitalizationType:(id)json;
|
2015-03-26 04:29:28 +00:00
|
|
|
+ (UITextFieldViewMode)UITextFieldViewMode:(id)json;
|
|
|
|
+ (UIScrollViewKeyboardDismissMode)UIScrollViewKeyboardDismissMode:(id)json;
|
2015-02-20 04:10:52 +00:00
|
|
|
+ (UIKeyboardType)UIKeyboardType:(id)json;
|
2015-03-31 01:25:30 +00:00
|
|
|
+ (UIReturnKeyType)UIReturnKeyType:(id)json;
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-03-26 04:29:28 +00:00
|
|
|
+ (UIViewContentMode)UIViewContentMode:(id)json;
|
|
|
|
+ (UIBarStyle)UIBarStyle:(id)json;
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
+ (CGFloat)CGFloat:(id)json;
|
|
|
|
+ (CGPoint)CGPoint:(id)json;
|
|
|
|
+ (CGSize)CGSize:(id)json;
|
|
|
|
+ (CGRect)CGRect:(id)json;
|
|
|
|
+ (UIEdgeInsets)UIEdgeInsets:(id)json;
|
|
|
|
|
2015-03-15 23:08:42 +00:00
|
|
|
+ (CGLineCap)CGLineCap:(id)json;
|
|
|
|
+ (CGLineJoin)CGLineJoin:(id)json;
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
+ (CATransform3D)CATransform3D:(id)json;
|
|
|
|
+ (CGAffineTransform)CGAffineTransform:(id)json;
|
|
|
|
|
|
|
|
+ (UIColor *)UIColor:(id)json;
|
|
|
|
+ (CGColorRef)CGColor:(id)json;
|
|
|
|
|
|
|
|
+ (UIImage *)UIImage:(id)json;
|
|
|
|
+ (CGImageRef)CGImage:(id)json;
|
|
|
|
|
|
|
|
+ (UIFont *)UIFont:(UIFont *)font withSize:(id)json;
|
|
|
|
+ (UIFont *)UIFont:(UIFont *)font withWeight:(id)json;
|
2015-03-25 23:22:59 +00:00
|
|
|
+ (UIFont *)UIFont:(UIFont *)font withStyle:(id)json;
|
2015-02-20 04:10:52 +00:00
|
|
|
+ (UIFont *)UIFont:(UIFont *)font withFamily:(id)json;
|
2015-03-26 04:29:28 +00:00
|
|
|
+ (UIFont *)UIFont:(UIFont *)font withFamily:(id)family
|
|
|
|
size:(id)size weight:(id)weight style:(id)style;
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-03-11 02:03:59 +00:00
|
|
|
+ (NSArray *)NSStringArray:(id)json;
|
2015-03-26 04:29:28 +00:00
|
|
|
+ (NSArray *)NSDictionaryArray:(id)json;
|
2015-03-25 00:37:03 +00:00
|
|
|
+ (NSArray *)NSURLArray:(id)json;
|
2015-03-11 02:03:59 +00:00
|
|
|
+ (NSArray *)NSNumberArray:(id)json;
|
|
|
|
+ (NSArray *)UIColorArray:(id)json;
|
|
|
|
+ (NSArray *)CGColorArray:(id)json;
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
+ (BOOL)css_overflow:(id)json;
|
|
|
|
+ (css_flex_direction_t)css_flex_direction_t:(id)json;
|
|
|
|
+ (css_justify_t)css_justify_t:(id)json;
|
|
|
|
+ (css_align_t)css_align_t:(id)json;
|
|
|
|
+ (css_position_type_t)css_position_type_t:(id)json;
|
|
|
|
+ (css_wrap_type_t)css_wrap_type_t:(id)json;
|
|
|
|
|
|
|
|
+ (RCTPointerEvents)RCTPointerEvents:(id)json;
|
|
|
|
+ (RCTAnimationType)RCTAnimationType:(id)json;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2015-03-06 00:36:41 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
/**
|
|
|
|
* This function will attempt to set a property using a json value by first
|
|
|
|
* inferring the correct type from all available information, and then
|
|
|
|
* applying an appropriate conversion method. If the property does not
|
|
|
|
* exist, or the type cannot be inferred, the function will return NO.
|
|
|
|
*/
|
2015-03-26 04:29:28 +00:00
|
|
|
BOOL RCTSetProperty(id target, NSString *keyPath, SEL type, id json);
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This function attempts to copy a property from the source object to the
|
|
|
|
* destination object using KVC. If the property does not exist, or cannot
|
|
|
|
* be set, it will do nothing and return NO.
|
|
|
|
*/
|
2015-03-26 04:29:28 +00:00
|
|
|
BOOL RCTCopyProperty(id target, id source, NSString *keyPath);
|
2015-03-10 21:23:03 +00:00
|
|
|
|
2015-03-06 00:36:41 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2015-03-15 23:08:42 +00:00
|
|
|
|
2015-03-30 13:07:07 +00:00
|
|
|
/**
|
|
|
|
* This macro is used for creating simple converter functions that just call
|
|
|
|
* the specified getter method on the json value.
|
|
|
|
*/
|
|
|
|
#define RCT_CONVERTER(type, name, getter) \
|
|
|
|
RCT_CUSTOM_CONVERTER(type, name, [json getter])
|
|
|
|
|
2015-03-15 23:08:42 +00:00
|
|
|
/**
|
|
|
|
* This macro is used for creating converter functions with arbitrary logic.
|
|
|
|
*/
|
2015-03-30 13:07:07 +00:00
|
|
|
#define RCT_CUSTOM_CONVERTER(type, name, code) \
|
2015-03-15 23:08:42 +00:00
|
|
|
+ (type)name:(id)json \
|
|
|
|
{ \
|
|
|
|
if (json == [NSNull null]) { \
|
|
|
|
json = nil; \
|
|
|
|
} \
|
|
|
|
@try { \
|
|
|
|
return code; \
|
|
|
|
} \
|
|
|
|
@catch (__unused NSException *e) { \
|
|
|
|
RCTLogError(@"JSON value '%@' of type '%@' cannot be converted to '%s'", \
|
|
|
|
json, [json class], #type); \
|
|
|
|
json = nil; \
|
|
|
|
return code; \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2015-03-25 00:37:03 +00:00
|
|
|
/**
|
|
|
|
* This macro is similar to RCT_CONVERTER, but specifically geared towards
|
|
|
|
* numeric types. It will handle string input correctly, and provides more
|
|
|
|
* detailed error reporting if a wrong value is passed in.
|
|
|
|
*/
|
|
|
|
#define RCT_NUMBER_CONVERTER(type, getter) \
|
2015-03-30 13:07:07 +00:00
|
|
|
RCT_CUSTOM_CONVERTER(type, type, [[self NSNumber:json] getter])
|
2015-03-25 00:37:03 +00:00
|
|
|
|
2015-03-15 23:08:42 +00:00
|
|
|
/**
|
|
|
|
* This macro is used for creating converters for enum types.
|
|
|
|
*/
|
|
|
|
#define RCT_ENUM_CONVERTER(type, values, default, getter) \
|
|
|
|
+ (type)type:(id)json \
|
|
|
|
{ \
|
|
|
|
static NSDictionary *mapping; \
|
|
|
|
static dispatch_once_t onceToken; \
|
|
|
|
dispatch_once(&onceToken, ^{ \
|
|
|
|
mapping = values; \
|
|
|
|
}); \
|
|
|
|
if (!json || json == [NSNull null]) { \
|
|
|
|
return default; \
|
|
|
|
} \
|
|
|
|
if ([json isKindOfClass:[NSNumber class]]) { \
|
|
|
|
if ([[mapping allValues] containsObject:json] || [json getter] == default) { \
|
|
|
|
return [json getter]; \
|
|
|
|
} \
|
|
|
|
RCTLogError(@"Invalid %s '%@'. should be one of: %@", #type, json, [mapping allValues]); \
|
|
|
|
return default; \
|
|
|
|
} \
|
|
|
|
if (![json isKindOfClass:[NSString class]]) { \
|
|
|
|
RCTLogError(@"Expected NSNumber or NSString for %s, received %@: %@", #type, [json class], json); \
|
|
|
|
} \
|
|
|
|
id value = mapping[json]; \
|
|
|
|
if(!value && [json description].length > 0) { \
|
|
|
|
RCTLogError(@"Invalid %s '%@'. should be one of: %@", #type, json, [mapping allKeys]); \
|
|
|
|
} \
|
|
|
|
return value ? [value getter] : default; \
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This macro is used for creating converter functions for typed arrays.
|
|
|
|
*/
|
|
|
|
#define RCT_ARRAY_CONVERTER(type) \
|
|
|
|
+ (NSArray *)type##Array:(id)json \
|
|
|
|
{ \
|
|
|
|
NSMutableArray *values = [[NSMutableArray alloc] init]; \
|
|
|
|
for (id jsonValue in [self NSArray:json]) { \
|
|
|
|
id value = [self type:jsonValue]; \
|
|
|
|
if (value) { \
|
|
|
|
[values addObject:value]; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
return values; \
|
|
|
|
}
|