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

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

2015-09-02 18:25:10 +03: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.
*/
#import "RCTLocalAssetImageLoader.h"
2015-09-02 18:25:10 +03:00
#import <libkern/OSAtomic.h>
2015-09-02 18:25:10 +03:00
#import "RCTUtils.h"
@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
completionHandler:(RCTImageLoaderCompletionBlock)completionHandler
2015-09-02 18:25:10 +03:00
{
__block volatile uint32_t cancelled = 0;
RCTExecuteOnMainQueue(^{
2015-09-02 18:25:10 +03:00
if (cancelled) {
return;
}
NSString *imageName = RCTBundlePathForURL(imageURL);
2015-09-02 18:25:10 +03:00
UIImage *image = [UIImage imageNamed:imageName];
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 named %@", imageName];
completionHandler(RCTErrorWithMessage(message), nil);
2015-09-02 18:25:10 +03:00
}
});
return ^{
OSAtomicOr32Barrier(1, &cancelled);
2015-09-02 18:25:10 +03:00
};
}
@end