react-native-macos/Libraries/Image/RCTLocalAssetImageLoader.m

70 строки
1.9 KiB
Mathematica
Исходник Обычный вид История

2015-09-02 18:25:10 +03:00
/**
* Copyright (c) Facebook, Inc. and its affiliates.
2015-09-02 18:25:10 +03:00
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
2015-09-02 18:25:10 +03:00
*/
#import "RCTLocalAssetImageLoader.h"
2015-09-02 18:25:10 +03:00
#import <stdatomic.h>
#import <React/RCTUtils.h>
2015-09-02 18:25:10 +03:00
@implementation RCTLocalAssetImageLoader
2015-09-02 18:25:10 +03:00
RCT_EXPORT_MODULE()
- (BOOL)canLoadImageURL:(NSURL *)requestURL
2015-09-02 18:25:10 +03:00
{
return RCTIsLocalAssetURL(requestURL);
}
- (BOOL)requiresScheduling
{
// Don't schedule this loader on the URL queue so we can load the
// local assets synchronously to avoid flickers.
return NO;
}
- (BOOL)shouldCacheLoadedImages
{
// UIImage imageNamed handles the caching automatically so we don't want
// to add it to the image cache.
return NO;
2015-09-02 18:25:10 +03:00
}
- (RCTImageLoaderCancellationBlock)loadImageForURL:(NSURL *)imageURL
size:(CGSize)size
scale:(CGFloat)scale
resizeMode:(RCTResizeMode)resizeMode
progressHandler:(RCTImageLoaderProgressBlock)progressHandler
partialLoadHandler:(RCTImageLoaderPartialLoadBlock)partialLoadHandler
completionHandler:(RCTImageLoaderCompletionBlock)completionHandler
2015-09-02 18:25:10 +03:00
{
__block atomic_bool cancelled = ATOMIC_VAR_INIT(NO);
RCTExecuteOnMainQueue(^{
if (atomic_load(&cancelled)) {
2015-09-02 18:25:10 +03:00
return;
}
UIImage *image = RCTImageFromLocalAssetURL(imageURL);
2015-09-02 18:25:10 +03:00
if (image) {
if (progressHandler) {
progressHandler(1, 1);
}
completionHandler(nil, image);
2015-09-02 18:25:10 +03:00
} else {
NSString *message = [NSString stringWithFormat:@"Could not find image %@", imageURL];
RCTLogWarn(@"%@", message);
completionHandler(RCTErrorWithMessage(message), nil);
2015-09-02 18:25:10 +03:00
}
});
return ^{
atomic_store(&cancelled, YES);
2015-09-02 18:25:10 +03:00
};
}
@end