mirror of
https://github.com/status-im/react-native.git
synced 2025-01-28 10:14:49 +00:00
4cda0df2e5
Reviewed By: fkgozali Differential Revision: D7230670 fbshipit-source-id: bca7d2859b87931c0d15406782b7d689de1d8c36
58 lines
1.2 KiB
Plaintext
58 lines
1.2 KiB
Plaintext
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import "RCTFabricUIManagerWrapper.h"
|
|
|
|
#include <fabric/uimanager/FabricUIManager.h>
|
|
|
|
#include <folly/dynamic.h>
|
|
#include <folly/json.h>
|
|
|
|
|
|
#import "RCTFabricPlatformUIOperationManager.h"
|
|
|
|
// This file contains experimental placeholders, nothing is finalized.
|
|
@implementation RCTFabricUIManagerWrapper
|
|
{
|
|
std::shared_ptr<FabricUIManager> _manager;
|
|
std::shared_ptr<IFabricPlatformUIOperationManager> _platformUIOperationManager;
|
|
}
|
|
|
|
- (instancetype)init
|
|
{
|
|
self = [super init];
|
|
if (self) {
|
|
_platformUIOperationManager = std::make_shared<RCTFabricPlatformUIOperationManagerConnector>();
|
|
_manager = std::make_shared<FabricUIManager>(_platformUIOperationManager);
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (std::shared_ptr<FabricUIManager>)manager
|
|
{
|
|
return _manager;
|
|
}
|
|
|
|
- (void)invalidate
|
|
{
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation RCTBridge (RCTFabricUIManagerWrapper)
|
|
|
|
- (std::shared_ptr<FabricUIManager>)fabricUIManager
|
|
{
|
|
RCTFabricUIManagerWrapper *wrapper = [self jsBoundExtraModuleForClass:[RCTFabricUIManagerWrapper class]];
|
|
if (wrapper) {
|
|
return [wrapper manager];
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
@end
|