This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
reValuate/node_modules/react-native/React/Fabric/RCTImageResponseObserverProxy.mm

53 lines
1.4 KiB
Plaintext
Raw Normal View History

2021-04-02 02:24:13 +03:00
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#import "RCTImageResponseObserverProxy.h"
#import <React/RCTUtils.h>
#import <react/imagemanager/ImageResponse.h>
#import <react/imagemanager/ImageResponseObserver.h>
#import <react/utils/ManagedObjectWrapper.h>
namespace facebook {
namespace react {
RCTImageResponseObserverProxy::RCTImageResponseObserverProxy(id<RCTImageResponseDelegate> delegate)
: delegate_(delegate)
{
}
void RCTImageResponseObserverProxy::didReceiveImage(ImageResponse const &imageResponse) const
{
UIImage *image = (UIImage *)unwrapManagedObject(imageResponse.getImage());
id<RCTImageResponseDelegate> delegate = delegate_;
auto this_ = this;
RCTExecuteOnMainQueue(^{
[delegate didReceiveImage:image fromObserver:this_];
});
}
void RCTImageResponseObserverProxy::didReceiveProgress(float progress) const
{
auto this_ = this;
id<RCTImageResponseDelegate> delegate = delegate_;
RCTExecuteOnMainQueue(^{
[delegate didReceiveProgress:progress fromObserver:this_];
});
}
void RCTImageResponseObserverProxy::didReceiveFailure() const
{
auto this_ = this;
id<RCTImageResponseDelegate> delegate = delegate_;
RCTExecuteOnMainQueue(^{
[delegate didReceiveFailureFromObserver:this_];
});
}
} // namespace react
} // namespace facebook