2020-01-14 11:00:22 +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 jingpeng.wang on 2020/01/11.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "DoricStatusBarPlugin.h"
|
|
|
|
#import "DoricUtil.h"
|
|
|
|
#import "DoricExtensions.h"
|
|
|
|
#import "DoricViewController.h"
|
|
|
|
|
|
|
|
@implementation DoricStatusBarPlugin
|
|
|
|
|
|
|
|
- (void)setHidden:(NSDictionary *)param withPromise:(DoricPromise *)promise {
|
2021-02-01 15:31:24 +08:00
|
|
|
__weak typeof(self) _self = self;
|
|
|
|
[self.doricContext dispatchToMainQueue:^{
|
|
|
|
__strong typeof(_self) self = _self;
|
2021-07-27 11:50:57 +08:00
|
|
|
if (self.doricContext.statusBar) {
|
|
|
|
[self.doricContext.statusBar doric_statusBar_setHidden:[param optBool:@"hidden"]];
|
2020-01-14 11:00:22 +08:00
|
|
|
}
|
2021-02-01 15:31:24 +08:00
|
|
|
}];
|
2020-01-14 11:00:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setMode:(NSDictionary *)param withPromise:(DoricPromise *)promise {
|
2021-02-01 15:31:24 +08:00
|
|
|
__weak typeof(self) _self = self;
|
|
|
|
[self.doricContext dispatchToMainQueue:^{
|
|
|
|
__strong typeof(_self) self = _self;
|
2021-07-27 11:50:57 +08:00
|
|
|
if (self.doricContext.statusBar) {
|
|
|
|
[self.doricContext.statusBar doric_statusBar_setMode:[[param optNumber:@"mode"] intValue]];
|
2020-01-14 11:00:22 +08:00
|
|
|
}
|
2021-02-01 15:31:24 +08:00
|
|
|
}];
|
2020-01-14 11:00:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setColor:(NSDictionary *)param withPromise:(DoricPromise *)promise {
|
2021-02-01 15:31:24 +08:00
|
|
|
__weak typeof(self) _self = self;
|
|
|
|
[self.doricContext dispatchToMainQueue:^{
|
|
|
|
__strong typeof(_self) self = _self;
|
2020-01-14 11:00:22 +08:00
|
|
|
if (self.doricContext.navBar) {
|
2021-02-01 18:10:11 +08:00
|
|
|
UIColor *color = DoricColor([param optNumber:@"color"]);
|
2020-01-14 11:00:22 +08:00
|
|
|
[self.doricContext.navBar doric_navBar_setBackgroundColor:color];
|
|
|
|
}
|
2021-02-01 15:31:24 +08:00
|
|
|
}];
|
2020-01-14 11:00:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|