2019-12-04 13:29:26 +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/23.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "DoricViewController.h"
|
|
|
|
#import "DoricJSLoaderManager.h"
|
|
|
|
#import "UIView+Doric.h"
|
|
|
|
#import "DoricExtensions.h"
|
|
|
|
#import "DoricUtil.h"
|
|
|
|
|
2020-01-19 18:25:04 +08:00
|
|
|
NSString *const DORIC_MASK_RETRY = @"doric_mask_retry";
|
|
|
|
|
2019-12-04 13:29:26 +08:00
|
|
|
@interface DoricViewController ()
|
|
|
|
@property(nonatomic) BOOL navBarHidden;
|
|
|
|
@property(nonatomic, strong) UIImage *navBarImage;
|
2020-01-19 18:25:04 +08:00
|
|
|
@property(nonatomic, strong) UIView *maskView;
|
2020-02-17 21:23:02 +08:00
|
|
|
@property(nonatomic, copy) NSString *source;
|
2020-01-19 18:25:04 +08:00
|
|
|
@property(nonatomic, copy) NSString *alias;
|
|
|
|
@property(nonatomic, copy) NSString *extra;
|
2019-12-04 13:29:26 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation DoricViewController
|
2020-02-17 21:23:02 +08:00
|
|
|
- (instancetype)initWithSource:(NSString *)source alias:(NSString *)alias extra:(NSString *)extra {
|
2019-12-04 13:29:26 +08:00
|
|
|
if (self = [super init]) {
|
|
|
|
self.edgesForExtendedLayout = UIRectEdgeNone;
|
2020-02-17 21:23:02 +08:00
|
|
|
_source = source;
|
2020-01-19 18:25:04 +08:00
|
|
|
_alias = alias;
|
|
|
|
_extra = extra;
|
|
|
|
_doricPanel = [DoricPanel new];
|
2019-12-04 13:29:26 +08:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2020-01-19 18:25:04 +08:00
|
|
|
- (void)viewDidLoad {
|
|
|
|
[super viewDidLoad];
|
2020-03-28 12:03:35 +08:00
|
|
|
self.view.backgroundColor = [UIColor whiteColor];
|
2020-01-19 18:25:04 +08:00
|
|
|
self.doricPanel = [[DoricPanel new] also:^(DoricPanel *it) {
|
|
|
|
[it.view also:^(UIView *it) {
|
|
|
|
it.width = self.view.width;
|
|
|
|
it.height = self.view.height;
|
|
|
|
}];
|
|
|
|
[self.view addSubview:it.view];
|
|
|
|
[self addChildViewController:it];
|
|
|
|
}];
|
|
|
|
self.maskView = [[UIView new] also:^(UIView *it) {
|
|
|
|
it.backgroundColor = [UIColor whiteColor];
|
|
|
|
it.width = self.view.width;
|
|
|
|
it.height = self.view.height;
|
|
|
|
[self.view addSubview:it];
|
|
|
|
if (self.loadingView) {
|
|
|
|
[it addSubview:self.loadingView];
|
|
|
|
}
|
|
|
|
if (self.errorView) {
|
|
|
|
[it addSubview:self.errorView];
|
|
|
|
}
|
|
|
|
UIView *retryView = [it viewWithTagString:DORIC_MASK_RETRY];
|
|
|
|
if (retryView) {
|
|
|
|
UITapGestureRecognizer *recognizer = [[UITapGestureRecognizer alloc]
|
|
|
|
initWithTarget:self
|
|
|
|
action:@selector(retry:)];
|
|
|
|
[retryView addGestureRecognizer:recognizer];
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
[self loadJSBundle];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)retry:(UIView *)view {
|
|
|
|
[self loadJSBundle];
|
|
|
|
}
|
|
|
|
|
2019-12-04 13:29:26 +08:00
|
|
|
- (void)viewWillAppear:(BOOL)animated {
|
|
|
|
[super viewWillAppear:animated];
|
|
|
|
self.navBarHidden = self.navigationController.navigationBarHidden;
|
|
|
|
self.navBarImage = [self.navigationController.navigationBar backgroundImageForBarMetrics:UIBarMetricsDefault];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)viewWillDisappear:(BOOL)animated {
|
|
|
|
[super viewWillDisappear:animated];
|
|
|
|
if (self.navigationController.navigationBarHidden != self.navBarHidden) {
|
|
|
|
[self.navigationController setNavigationBarHidden:self.navBarHidden];
|
|
|
|
}
|
|
|
|
if (self.navBarImage != [self.navigationController.navigationBar backgroundImageForBarMetrics:UIBarMetricsDefault]) {
|
|
|
|
[self.navigationController.navigationBar setBackgroundImage:self.navBarImage forBarMetrics:UIBarMetricsDefault];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-17 21:23:02 +08:00
|
|
|
- (void)doric_navigator_push:(NSString *)source alias:(NSString *)alias animated:(BOOL)animated extra:(NSString *)extra {
|
|
|
|
DoricViewController *viewController = [[DoricViewController alloc] initWithSource:source alias:alias extra:extra];
|
2019-12-04 13:29:26 +08:00
|
|
|
[self.navigationController pushViewController:viewController animated:animated];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)doric_navigator_pop:(BOOL)animated {
|
|
|
|
[self.navigationController popViewControllerAnimated:animated];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)doric_navBar_isHidden {
|
|
|
|
return self.navigationController.navigationBarHidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)doric_navBar_setHidden:(BOOL)hidden {
|
|
|
|
[self.navigationController setNavigationBarHidden:hidden];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)doric_navBar_setTitle:(NSString *)title {
|
|
|
|
self.title = title;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)doric_navBar_setBackgroundColor:(UIColor *)color {
|
|
|
|
[self.navigationController.navigationBar setBackgroundImage:UIImageWithColor(color) forBarMetrics:UIBarMetricsDefault];
|
|
|
|
}
|
|
|
|
|
2020-01-10 17:40:43 +08:00
|
|
|
- (void)doric_navBar_setLeft:(UIView *)view {
|
|
|
|
UIBarButtonItem *custom = [[UIBarButtonItem alloc] initWithCustomView:view];
|
|
|
|
self.navigationItem.leftBarButtonItem = custom;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)doric_navBar_setRight:(UIView *)view {
|
|
|
|
UIBarButtonItem *custom = [[UIBarButtonItem alloc] initWithCustomView:view];
|
|
|
|
self.navigationItem.rightBarButtonItem = custom;
|
|
|
|
}
|
|
|
|
|
2020-01-14 11:00:22 +08:00
|
|
|
- (BOOL)statusBarHidden {
|
|
|
|
return _statusBarHidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (UIStatusBarStyle)preferredStatusBarStyle {
|
|
|
|
if (self.statusBarMode == 0) {
|
|
|
|
return UIStatusBarStyleLightContent;
|
|
|
|
} else {
|
|
|
|
return UIStatusBarStyleDefault;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)prefersStatusBarHidden {
|
|
|
|
return self.statusBarHidden;
|
|
|
|
}
|
2019-12-04 13:29:26 +08:00
|
|
|
|
2020-01-19 18:25:04 +08:00
|
|
|
- (void)showLoading {
|
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
|
|
self.maskView.hidden = NO;
|
|
|
|
self.loadingView.hidden = NO;
|
|
|
|
self.errorView.hidden = YES;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)showError {
|
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
|
|
self.maskView.hidden = NO;
|
|
|
|
self.loadingView.hidden = YES;
|
|
|
|
self.errorView.hidden = NO;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)hideMask {
|
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
|
|
self.maskView.hidden = YES;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)loadJSBundle {
|
|
|
|
[self showLoading];
|
2020-02-17 21:23:02 +08:00
|
|
|
DoricAsyncResult <NSString *> *result = [DoricJSLoaderManager.instance request:self.source];
|
2020-01-19 18:25:04 +08:00
|
|
|
result.resultCallback = ^(NSString *result) {
|
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
|
|
[self hideMask];
|
|
|
|
[self.doricPanel config:result alias:self.alias extra:self.extra];
|
|
|
|
self.doricPanel.doricContext.navigator = self;
|
|
|
|
self.doricPanel.doricContext.navBar = self;
|
2020-04-21 18:52:54 +08:00
|
|
|
self.doricPanel.doricContext.vc = self;
|
2020-01-19 18:25:04 +08:00
|
|
|
});
|
|
|
|
};
|
|
|
|
result.exceptionCallback = ^(NSException *e) {
|
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
|
|
[self showError];
|
|
|
|
});
|
|
|
|
};
|
|
|
|
}
|
2019-12-04 13:29:26 +08:00
|
|
|
@end
|