72 lines
1.9 KiB
Objective-C
72 lines
1.9 KiB
Objective-C
//
|
|
// DoricRegistry.m
|
|
// Doric
|
|
//
|
|
// Created by pengfei.zhou on 2019/7/27.
|
|
//
|
|
|
|
#import "DoricRegistry.h"
|
|
#import "DoricModalPlugin.h"
|
|
#import "DoricShaderPlugin.h"
|
|
#import "DoricStackNode.h"
|
|
#import "DoricVLayoutNode.h"
|
|
#import "DoricHLayoutNode.h"
|
|
#import "DoricTextNode.h"
|
|
|
|
@interface DoricRegistry ()
|
|
|
|
@property (nonatomic,strong) NSMutableDictionary *bundles;
|
|
@property (nonatomic,strong) NSMutableDictionary *plugins;
|
|
@property (nonatomic,strong) NSMutableDictionary *nodes;
|
|
|
|
@end
|
|
|
|
@implementation DoricRegistry
|
|
|
|
- (instancetype)init {
|
|
if(self = [super init]){
|
|
_bundles = [[NSMutableDictionary alloc] init];
|
|
_plugins = [[NSMutableDictionary alloc] init];
|
|
_nodes = [[NSMutableDictionary alloc] init];
|
|
[self innerRegister];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)innerRegister {
|
|
[self registerNativePlugin:DoricModalPlugin.class withName:@"modal"];
|
|
[self registerNativePlugin:DoricShaderPlugin.class withName:@"shader"];
|
|
|
|
[self registerViewNode:DoricStackNode.class withName:@"Stack"];
|
|
[self registerViewNode:DoricVLayoutNode.class withName:@"VLayout"];
|
|
[self registerViewNode:DoricHLayoutNode.class withName:@"HLayout"];
|
|
[self registerViewNode:DoricTextNode.class withName:@"Text"];
|
|
|
|
}
|
|
|
|
- (void)registerJSBundle:(NSString *)bundle withName:(NSString *)name {
|
|
[self.bundles setObject:bundle forKey:name];
|
|
}
|
|
|
|
- (NSString *)acquireJSBundle:(NSString *)name {
|
|
return [self.bundles objectForKey:name];
|
|
}
|
|
|
|
- (void)registerNativePlugin:(Class)pluginClass withName:(NSString *)name {
|
|
[self.plugins setObject:pluginClass forKey:name];
|
|
}
|
|
|
|
- (Class)acquireNativePlugin:(NSString *)name {
|
|
return [self.plugins objectForKey:name];
|
|
}
|
|
|
|
- (void)registerViewNode:(Class)nodeClass withName:(NSString *)name {
|
|
[self.nodes setObject:nodeClass forKey:name];
|
|
}
|
|
|
|
- (Class)acquireViewNode:(NSString *)name {
|
|
return [self.nodes objectForKey:name];
|
|
}
|
|
|
|
@end
|