123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
-
- #import "RNNStore.h"
-
- @interface RNNStore ()
-
- @end
-
- @implementation RNNStore {
- NSMapTable* _componentStore;
- NSMutableDictionary* _externalComponentCreators;
- BOOL _isReadyToReceiveCommands;
- }
-
- -(instancetype)init {
- self = [super init];
- _isReadyToReceiveCommands = false;
- _componentStore = [NSMapTable strongToWeakObjectsMapTable];
- _externalComponentCreators = [NSMutableDictionary new];
- return self;
- }
-
- -(UIViewController *)findComponentForId:(NSString *)componentId {
- return [_componentStore objectForKey:componentId];
- }
-
- - (void)setComponent:(UIViewController*)viewController componentId:(NSString*)componentId {
- UIViewController *existingVewController = [self findComponentForId:componentId];
- if (existingVewController) {
- @throw [NSException exceptionWithName:@"MultipleComponentId" reason:[@"Component id already exists " stringByAppendingString:componentId] userInfo:nil];
- }
-
- [_componentStore setObject:viewController forKey:componentId];
- }
-
- - (void)removeComponent:(NSString*)componentId {
- [_componentStore removeObjectForKey:componentId];
- }
-
- - (void)removeComponentByViewControllerInstance:(UIViewController*)componentInstance {
- NSString *foundKey = [self componentKeyForInstance:componentInstance];
- if (foundKey) {
- [self removeComponent:foundKey];
- }
- }
-
- - (void)removeAllComponents {
- [_componentStore removeAllObjects];
- }
-
-
- -(void)setReadyToReceiveCommands:(BOOL)isReady {
- _isReadyToReceiveCommands = isReady;
- }
-
- -(BOOL)isReadyToReceiveCommands {
- return _isReadyToReceiveCommands;
- }
-
- -(void)clean {
- _isReadyToReceiveCommands = false;
- [self removeAllComponents];
- }
-
- -(NSString*)componentKeyForInstance:(UIViewController*)instance {
- for (NSString *key in _componentStore) {
- UIViewController *value = [_componentStore objectForKey:key];
- if (value == instance) {
- return key;
- }
- }
- return nil;
- }
-
- - (void)registerExternalComponent:(NSString *)name callback:(RNNExternalViewCreator)callback {
- [_externalComponentCreators setObject:[callback copy] forKey:name];
- }
-
- - (UIViewController *)getExternalComponent:(RNNLayoutInfo *)layoutInfo bridge:(RCTBridge *)bridge {
- RNNExternalViewCreator creator = [_externalComponentCreators objectForKey:layoutInfo.name];
- return creator(layoutInfo.props, bridge);
- }
-
- @end
|