2018-02-06 21:32:01 -08: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 "RCTFabricUIManager.h"
|
|
|
|
|
|
|
|
// This file contains experimental placeholders, nothing is finalized.
|
|
|
|
@implementation RCTFabricUIManager
|
|
|
|
|
2018-02-13 22:26:39 -08:00
|
|
|
- (void)dealloc
|
2018-02-06 21:32:01 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-02-13 22:26:39 -08:00
|
|
|
- (void)invalidate
|
2018-02-06 21:32:01 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-02-13 22:26:39 -08:00
|
|
|
- (RCTShadowView *)createNode:(nonnull NSNumber *)reactTag
|
|
|
|
viewName:(NSString *)viewName
|
|
|
|
rootTag:(nonnull NSNumber *)rootTag
|
|
|
|
props:(NSDictionary *)props
|
|
|
|
instanceHandle:(void *)instanceHandle
|
2018-02-06 21:32:01 -08:00
|
|
|
{
|
2018-02-13 22:26:39 -08:00
|
|
|
return nil;
|
2018-02-06 21:32:01 -08:00
|
|
|
}
|
|
|
|
|
2018-02-13 22:26:39 -08:00
|
|
|
- (RCTShadowView *)cloneNode:(RCTShadowView *)node
|
2018-02-06 21:32:01 -08:00
|
|
|
{
|
2018-02-13 22:26:39 -08:00
|
|
|
return nil;
|
2018-02-06 21:32:01 -08:00
|
|
|
}
|
2018-02-13 22:26:39 -08:00
|
|
|
- (RCTShadowView *)cloneNodeWithNewChildren:(RCTShadowView *)node
|
2018-02-06 21:32:01 -08:00
|
|
|
{
|
2018-02-13 22:26:39 -08:00
|
|
|
return nil;
|
2018-02-06 21:32:01 -08:00
|
|
|
}
|
|
|
|
|
2018-02-13 22:26:39 -08:00
|
|
|
- (RCTShadowView *)cloneNodeWithNewProps:(RCTShadowView *)node
|
|
|
|
newProps:(NSDictionary *)props
|
|
|
|
{
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
- (RCTShadowView *)cloneNodeWithNewChildrenAndProps:(RCTShadowView *)node
|
|
|
|
newProps:(NSDictionary *)props
|
|
|
|
{
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
- (void)appendChild:(RCTShadowView *)parentNode
|
|
|
|
childNode:(RCTShadowView *)childNode
|
2018-02-06 21:32:01 -08:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-02-13 22:26:39 -08:00
|
|
|
- (NSMutableArray<RCTShadowView *> *)createChildSet:(nonnull NSNumber *)rootTag
|
2018-02-06 21:32:01 -08:00
|
|
|
{
|
2018-02-13 22:26:39 -08:00
|
|
|
return [NSMutableArray array];
|
2018-02-06 21:32:01 -08:00
|
|
|
}
|
|
|
|
|
2018-02-13 22:26:39 -08:00
|
|
|
- (void)appendChildToSet:(NSMutableArray<RCTShadowView *> *)childSet
|
|
|
|
childNode:(RCTShadowView *)childNode
|
2018-02-06 21:32:01 -08:00
|
|
|
{
|
2018-02-13 22:26:39 -08:00
|
|
|
[childSet addObject:childNode];
|
2018-02-06 21:32:01 -08:00
|
|
|
}
|
|
|
|
|
2018-02-13 22:26:39 -08:00
|
|
|
- (void)completeRoot:(nonnull NSNumber *)rootTag
|
|
|
|
childSet:(NSArray<RCTShadowView *> *)childSet
|
2018-02-06 21:32:01 -08:00
|
|
|
{
|
2018-02-13 22:26:39 -08:00
|
|
|
|
2018-02-06 21:32:01 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|