mirror of
https://github.com/status-im/react-native.git
synced 2025-01-17 21:11:45 +00:00
7060141247
- [ReactNative] Move merge & mergeInto from downstream to vendor | Christopher Chedeau - [ReactNative] Replace all the call sites of mergeInto by Object.assign | Christopher Chedeau - [WIP] Migrated View Managers over to new architecture | Nick Lockwood - [ReactNative] Replace all the call sites of copyProperties by Object.assign | Christopher Chedeau - [ReactNative] Migrate navigator.geolocation to open source | Christopher Chedeau - [ReactNative] Remove README.md, LICENSE and .travis.yml from fbobjc | Christopher Chedeau - [react-packager] Better transform errors | Amjad Masad - [React Native][react-packager] Fix test runner and fialing tests | Amjad Masad
44 lines
1005 B
Objective-C
44 lines
1005 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import "RCTStaticImageManager.h"
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "RCTStaticImage.h"
|
|
#import "RCTConvert.h"
|
|
|
|
@implementation RCTStaticImageManager
|
|
|
|
- (UIView *)view
|
|
{
|
|
return [[RCTStaticImage alloc] init];
|
|
}
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(capInsets)
|
|
RCT_REMAP_VIEW_PROPERTY(resizeMode, contentMode)
|
|
RCT_CUSTOM_VIEW_PROPERTY(src, RCTStaticImage *)
|
|
{
|
|
if (json) {
|
|
if ([[[json description] pathExtension] caseInsensitiveCompare:@"gif"] == NSOrderedSame) {
|
|
[view.layer addAnimation:[RCTConvert GIF:json] forKey:@"contents"];
|
|
} else {
|
|
view.image = [RCTConvert UIImage:json];
|
|
}
|
|
} else {
|
|
view.image = defaultView.image;
|
|
}
|
|
}
|
|
RCT_CUSTOM_VIEW_PROPERTY(tintColor, RCTStaticImage *)
|
|
{
|
|
if (json) {
|
|
view.renderingMode = UIImageRenderingModeAlwaysTemplate;
|
|
view.tintColor = [RCTConvert UIColor:json];
|
|
} else {
|
|
view.renderingMode = defaultView.renderingMode;
|
|
view.tintColor = defaultView.tintColor;
|
|
}
|
|
}
|
|
|
|
@end
|
|
|