2019-11-25 14:20:18 +08:00
|
|
|
/*
|
|
|
|
* Copyright [2019] [Doric.Pub]
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
//
|
|
|
|
// Created by pengfei.zhou on 2019/11/25.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "DoricNavBarPlugin.h"
|
|
|
|
#import "DoricUtil.h"
|
2020-01-10 17:40:43 +08:00
|
|
|
#import "DoricViewNode.h"
|
|
|
|
#import "DoricExtensions.h"
|
2019-11-25 14:20:18 +08:00
|
|
|
|
|
|
|
@implementation DoricNavBarPlugin
|
2020-01-10 17:40:43 +08:00
|
|
|
|
|
|
|
static NSString *TYPE_LEFT = @"navbar_left";
|
|
|
|
static NSString *TYPE_RIGHT = @"navbar_right";
|
2020-04-30 16:37:06 +08:00
|
|
|
static NSString *TYPE_CENTER = @"navbar_center";
|
2020-01-10 17:40:43 +08:00
|
|
|
|
2019-11-25 14:20:18 +08:00
|
|
|
- (void)isHidden:(NSDictionary *)param withPromise:(DoricPromise *)promise {
|
|
|
|
if (self.doricContext.navBar) {
|
2021-02-01 15:31:24 +08:00
|
|
|
__weak typeof(self) _self = self;
|
|
|
|
[self.doricContext dispatchToMainQueue:^{
|
|
|
|
__strong typeof(_self) self = _self;
|
2019-11-25 14:27:14 +08:00
|
|
|
[promise resolve:@([self.doricContext.navBar doric_navBar_isHidden])];
|
2021-02-01 15:31:24 +08:00
|
|
|
}];
|
2019-11-25 14:20:18 +08:00
|
|
|
} else {
|
|
|
|
[promise reject:@"Not implement NavBar"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setHidden:(NSDictionary *)param withPromise:(DoricPromise *)promise {
|
|
|
|
if (self.doricContext.navBar) {
|
2021-02-01 15:31:24 +08:00
|
|
|
__weak typeof(self) _self = self;
|
|
|
|
[self.doricContext dispatchToMainQueue:^{
|
|
|
|
__strong typeof(_self) self = _self;
|
2021-02-01 18:10:11 +08:00
|
|
|
[self.doricContext.navBar doric_navBar_setHidden:[param optBool:@"hidden"]];
|
2019-11-25 14:20:18 +08:00
|
|
|
[promise resolve:nil];
|
2021-02-01 15:31:24 +08:00
|
|
|
}];
|
2019-11-25 14:20:18 +08:00
|
|
|
} else {
|
|
|
|
[promise reject:@"Not implement NavBar"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setTitle:(NSDictionary *)param withPromise:(DoricPromise *)promise {
|
|
|
|
if (self.doricContext.navBar) {
|
2021-02-01 15:31:24 +08:00
|
|
|
__weak typeof(self) _self = self;
|
|
|
|
[self.doricContext dispatchToMainQueue:^{
|
|
|
|
__strong typeof(_self) self = _self;
|
2021-02-01 18:10:11 +08:00
|
|
|
[self.doricContext.navBar doric_navBar_setTitle:[param optString:@"title"]];
|
2019-11-25 14:20:18 +08:00
|
|
|
[promise resolve:nil];
|
2021-02-01 15:31:24 +08:00
|
|
|
}];
|
2019-11-25 14:20:18 +08:00
|
|
|
} else {
|
|
|
|
[promise reject:@"Not implement NavBar"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setBgColor:(NSDictionary *)param withPromise:(DoricPromise *)promise {
|
|
|
|
if (self.doricContext.navBar) {
|
2021-02-01 15:31:24 +08:00
|
|
|
__weak typeof(self) _self = self;
|
|
|
|
[self.doricContext dispatchToMainQueue:^{
|
|
|
|
__strong typeof(_self) self = _self;
|
2021-02-01 18:10:11 +08:00
|
|
|
UIColor *color = DoricColor([param optNumber:@"color"]);
|
2019-11-25 14:27:14 +08:00
|
|
|
[self.doricContext.navBar doric_navBar_setBackgroundColor:color];
|
2019-11-25 14:20:18 +08:00
|
|
|
[promise resolve:nil];
|
2021-02-01 15:31:24 +08:00
|
|
|
}];
|
2019-11-25 14:20:18 +08:00
|
|
|
} else {
|
|
|
|
[promise reject:@"Not implement NavBar"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-10 17:40:43 +08:00
|
|
|
- (void)setLeft:(NSDictionary *)params withPromise:(DoricPromise *)promise {
|
|
|
|
if (self.doricContext.navBar) {
|
2021-02-01 15:31:24 +08:00
|
|
|
__weak typeof(self) _self = self;
|
|
|
|
[self.doricContext dispatchToMainQueue:^{
|
|
|
|
__strong typeof(_self) self = _self;
|
2021-02-01 18:10:11 +08:00
|
|
|
NSString *viewId = [params optString:@"id"];
|
|
|
|
NSString *type = [params optString:@"type"];
|
2020-01-10 17:40:43 +08:00
|
|
|
DoricViewNode *viewNode = [self.doricContext targetViewNode:viewId];
|
|
|
|
if (!viewNode) {
|
|
|
|
viewNode = [[DoricViewNode create:self.doricContext withType:type] also:^(DoricViewNode *it) {
|
|
|
|
it.viewId = viewId;
|
|
|
|
[it initWithSuperNode:nil];
|
2021-02-01 15:31:24 +08:00
|
|
|
|
2020-01-10 17:40:43 +08:00
|
|
|
NSMutableDictionary <NSString *, DoricViewNode *> *map = self.doricContext.headNodes[TYPE_LEFT];
|
|
|
|
if (map != nil) {
|
|
|
|
self.doricContext.headNodes[TYPE_LEFT][viewId] = it;
|
|
|
|
} else {
|
|
|
|
map = [[NSMutableDictionary alloc] init];
|
|
|
|
map[viewId] = it;
|
|
|
|
self.doricContext.headNodes[TYPE_LEFT] = map;
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
}
|
2021-02-01 18:10:11 +08:00
|
|
|
[viewNode blend:[params optObject:@"props"]];
|
2020-04-30 18:48:30 +08:00
|
|
|
[self.doricContext.navBar doric_navBar_setLeft:viewNode.view];
|
2020-01-10 17:40:43 +08:00
|
|
|
[promise resolve:nil];
|
2021-02-01 15:31:24 +08:00
|
|
|
}];
|
2020-01-10 17:40:43 +08:00
|
|
|
} else {
|
|
|
|
[promise reject:@"Not implement NavBar"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setRight:(NSDictionary *)params withPromise:(DoricPromise *)promise {
|
|
|
|
if (self.doricContext.navBar) {
|
2021-02-01 15:31:24 +08:00
|
|
|
__weak typeof(self) _self = self;
|
|
|
|
[self.doricContext dispatchToMainQueue:^{
|
|
|
|
__strong typeof(_self) self = _self;
|
2021-02-01 18:10:11 +08:00
|
|
|
NSString *viewId = [params optString:@"id"];
|
|
|
|
NSString *type = [params optString:@"type"];
|
2020-01-10 17:40:43 +08:00
|
|
|
DoricViewNode *viewNode = [self.doricContext targetViewNode:viewId];
|
|
|
|
if (!viewNode) {
|
|
|
|
viewNode = [[DoricViewNode create:self.doricContext withType:type] also:^(DoricViewNode *it) {
|
|
|
|
it.viewId = viewId;
|
|
|
|
[it initWithSuperNode:nil];
|
2021-02-01 15:31:24 +08:00
|
|
|
|
2020-01-10 17:40:43 +08:00
|
|
|
NSMutableDictionary <NSString *, DoricViewNode *> *map = self.doricContext.headNodes[TYPE_RIGHT];
|
|
|
|
if (map != nil) {
|
|
|
|
self.doricContext.headNodes[TYPE_RIGHT][viewId] = it;
|
|
|
|
} else {
|
|
|
|
map = [[NSMutableDictionary alloc] init];
|
|
|
|
map[viewId] = it;
|
|
|
|
self.doricContext.headNodes[TYPE_RIGHT] = map;
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
}
|
2021-02-01 18:10:11 +08:00
|
|
|
[viewNode blend:[params optObject:@"props"]];
|
2020-04-30 18:48:30 +08:00
|
|
|
[self.doricContext.navBar doric_navBar_setRight:viewNode.view];
|
2020-01-10 17:40:43 +08:00
|
|
|
[promise resolve:nil];
|
2021-02-01 15:31:24 +08:00
|
|
|
}];
|
2020-01-10 17:40:43 +08:00
|
|
|
} else {
|
|
|
|
[promise reject:@"Not implement NavBar"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-30 16:37:06 +08:00
|
|
|
- (void)setCenter:(NSDictionary *)params withPromise:(DoricPromise *)promise {
|
|
|
|
if (self.doricContext.navBar) {
|
2021-02-01 15:31:24 +08:00
|
|
|
__weak typeof(self) _self = self;
|
|
|
|
[self.doricContext dispatchToMainQueue:^{
|
|
|
|
__strong typeof(_self) self = _self;
|
2021-02-01 18:10:11 +08:00
|
|
|
NSString *viewId = [params optString:@"id"];
|
|
|
|
NSString *type = [params optString:@"type"];
|
2020-04-30 16:37:06 +08:00
|
|
|
DoricViewNode *viewNode = [self.doricContext targetViewNode:viewId];
|
|
|
|
if (!viewNode) {
|
|
|
|
viewNode = [[DoricViewNode create:self.doricContext withType:type] also:^(DoricViewNode *it) {
|
|
|
|
it.viewId = viewId;
|
|
|
|
[it initWithSuperNode:nil];
|
2021-02-01 15:31:24 +08:00
|
|
|
|
2020-04-30 16:37:06 +08:00
|
|
|
NSMutableDictionary <NSString *, DoricViewNode *> *map = self.doricContext.headNodes[TYPE_CENTER];
|
|
|
|
if (map != nil) {
|
|
|
|
self.doricContext.headNodes[TYPE_CENTER][viewId] = it;
|
|
|
|
} else {
|
|
|
|
map = [[NSMutableDictionary alloc] init];
|
|
|
|
map[viewId] = it;
|
|
|
|
self.doricContext.headNodes[TYPE_CENTER] = map;
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
}
|
2021-02-01 18:10:11 +08:00
|
|
|
[viewNode blend:[params optObject:@"props"]];
|
2020-04-30 18:48:30 +08:00
|
|
|
[self.doricContext.navBar doric_navBar_setCenter:viewNode.view];
|
2020-04-30 16:37:06 +08:00
|
|
|
[promise resolve:nil];
|
2021-02-01 15:31:24 +08:00
|
|
|
}];
|
2020-04-30 16:37:06 +08:00
|
|
|
} else {
|
|
|
|
[promise reject:@"Not implement NavBar"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-25 14:20:18 +08:00
|
|
|
@end
|