Call reloadImage less often when setting Image props

Summary: Came across multiple calls to reload while we we're setting properties on the image. During the initial setup they should no-op pretty quickly, but this should avoid us making multiple requests when changing an image that's already visible.

Reviewed By: mmmulani

Differential Revision: D5536014

fbshipit-source-id: 3c2abb83cbb66f9d8928f20fc7f461562f666f43
This commit is contained in:
Pieter De Baets 2017-08-29 04:12:29 -07:00 committed by Facebook Github Bot
parent 6b7f10d43e
commit 7542f3d659
1 changed files with 18 additions and 10 deletions

View File

@ -63,6 +63,7 @@ static NSDictionary *onLoadParamsForSource(RCTImageSource *source)
@implementation RCTImageView
{
// Weak reference back to the bridge, for image loading
__weak RCTBridge *_bridge;
// The image source that's currently displayed
@ -71,15 +72,14 @@ static NSDictionary *onLoadParamsForSource(RCTImageSource *source)
// The image source that's being loaded from the network
RCTImageSource *_pendingImageSource;
// Size of the image loaded / being loaded, so we can determine when to issue
// a reload to accomodate a changing size.
// Size of the image loaded / being loaded, so we can determine when to issue a reload to accomodate a changing size.
CGSize _targetSize;
/**
* A block that can be invoked to cancel the most recent call to -reloadImage,
* if any.
*/
// A block that can be invoked to cancel the most recent call to -reloadImage, if any
RCTImageLoaderCancellationBlock _reloadImageCancellationBlock;
// Whether the latest change of props requires the image to be reloaded
BOOL _needsReload;
}
- (instancetype)initWithBridge:(RCTBridge *)bridge
@ -145,7 +145,7 @@ RCT_NOT_IMPLEMENTED(- (instancetype)init)
{
if (blurRadius != _blurRadius) {
_blurRadius = blurRadius;
[self reloadImage];
_needsReload = YES;
}
}
@ -156,7 +156,7 @@ RCT_NOT_IMPLEMENTED(- (instancetype)init)
UIEdgeInsetsEqualToEdgeInsets(capInsets, UIEdgeInsetsZero)) {
_capInsets = capInsets;
// Need to reload image when enabling or disabling capInsets
[self reloadImage];
_needsReload = YES;
} else {
_capInsets = capInsets;
[self updateWithImage:self.image];
@ -176,7 +176,7 @@ RCT_NOT_IMPLEMENTED(- (instancetype)init)
{
if (![imageSources isEqual:_imageSources]) {
_imageSources = [imageSources copy];
[self reloadImage];
_needsReload = YES;
}
}
@ -194,7 +194,7 @@ RCT_NOT_IMPLEMENTED(- (instancetype)init)
}
if ([self shouldReloadImageSourceAfterResize]) {
[self reloadImage];
_needsReload = YES;
}
}
}
@ -278,6 +278,7 @@ RCT_NOT_IMPLEMENTED(- (instancetype)init)
- (void)reloadImage
{
[self cancelImageLoad];
_needsReload = NO;
RCTImageSource *source = [self imageSourceForSize:self.frame.size];
_pendingImageSource = source;
@ -429,6 +430,13 @@ RCT_NOT_IMPLEMENTED(- (instancetype)init)
}
}
- (void)didSetProps:(NSArray<NSString *> *)changedProps
{
if (_needsReload) {
[self reloadImage];
}
}
- (void)didMoveToWindow
{
[super didMoveToWindow];