This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community.
Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it.
https://www.freifunk-altdorf.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.2 KiB
53 lines
1.2 KiB
/** |
|
* 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/FabricUIManager.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
|
|
|