This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-iOS/Pod/Classes/DoricViewController.m
2020-04-30 18:52:28 +08:00

201 lines
6.6 KiB
Objective-C

/*
* 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"
NSString *const DORIC_MASK_RETRY = @"doric_mask_retry";
@interface DoricViewController ()
@property(nonatomic) BOOL navBarHidden;
@property(nonatomic, strong) UIImage *navBarImage;
@property(nonatomic, strong) UIView *maskView;
@property(nonatomic, copy) NSString *source;
@property(nonatomic, copy) NSString *alias;
@property(nonatomic, copy) NSString *extra;
@end
@implementation DoricViewController
- (instancetype)initWithSource:(NSString *)source alias:(NSString *)alias extra:(NSString *)extra {
if (self = [super init]) {
self.edgesForExtendedLayout = UIRectEdgeNone;
_source = source;
_alias = alias;
_extra = extra;
_doricPanel = [DoricPanel new];
}
return self;
}
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = [UIColor whiteColor];
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];
}
- (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];
}
}
- (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];
[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];
}
- (void)doric_navBar_setLeft:(UIView *)view {
[view.doricLayout apply:CGSizeMake(self.navigationController.navigationBar.width, self.navigationController.navigationBar.height)];
UIBarButtonItem *custom = [[UIBarButtonItem alloc] initWithCustomView:view];
self.navigationItem.leftBarButtonItem = custom;
}
- (void)doric_navBar_setRight:(UIView *)view {
[view.doricLayout apply:CGSizeMake(self.navigationController.navigationBar.width, self.navigationController.navigationBar.height)];
UIBarButtonItem *custom = [[UIBarButtonItem alloc] initWithCustomView:view];
self.navigationItem.rightBarButtonItem = custom;
}
- (void)doric_navBar_setCenter:(UIView *)view {
[view.doricLayout apply:CGSizeMake(self.navigationController.navigationBar.width, self.navigationController.navigationBar.height)];
self.navigationItem.titleView = view;
}
- (BOOL)statusBarHidden {
return _statusBarHidden;
}
- (UIStatusBarStyle)preferredStatusBarStyle {
if (self.statusBarMode == 0) {
return UIStatusBarStyleLightContent;
} else {
return UIStatusBarStyleDefault;
}
}
- (BOOL)prefersStatusBarHidden {
return self.statusBarHidden;
}
- (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];
DoricAsyncResult <NSString *> *result = [DoricJSLoaderManager.instance request:self.source];
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;
self.doricPanel.doricContext.vc = self;
});
};
result.exceptionCallback = ^(NSException *e) {
dispatch_async(dispatch_get_main_queue(), ^{
[self showError];
});
};
}
@end