forked from coding/Coding-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEditCodeViewController.m
More file actions
232 lines (204 loc) · 8.46 KB
/
EditCodeViewController.m
File metadata and controls
232 lines (204 loc) · 8.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
//
// EditCodeViewController.m
// Coding_iOS
//
// Created by Ease on 16/1/11.
// Copyright © 2016年 Coding. All rights reserved.
//
#import "EditCodeViewController.h"
#import "Coding_NetAPIManager.h"
#import "WebContentManager.h"
#import "EaseMarkdownTextView.h"
#import "WebViewController.h"
@interface EditCodeViewController ()<UIWebViewDelegate>
@property (strong, nonatomic) UISegmentedControl *segmentedControl;
@property (assign, nonatomic) NSInteger curIndex;
@property (strong, nonatomic) UIWebView *preview;
@property (strong, nonatomic) UIActivityIndicatorView *activityIndicator;
@property (strong, nonatomic) EaseMarkdownTextView *editView;
@end
@implementation EditCodeViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
self.view.backgroundColor = kColorTableBG;
if (!_segmentedControl) {
_segmentedControl = ({
UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] initWithItems:@[@"编辑", @"预览"]];
[segmentedControl setWidth:80 forSegmentAtIndex:0];
[segmentedControl setWidth:80 forSegmentAtIndex:1];
[segmentedControl setTitleTextAttributes:@{
NSFontAttributeName: [UIFont systemFontOfSize:16],
NSForegroundColorAttributeName: [UIColor whiteColor]
}
forState:UIControlStateSelected];
[segmentedControl setTitleTextAttributes:@{
NSFontAttributeName: [UIFont systemFontOfSize:16],
NSForegroundColorAttributeName: kColorNavTitle
} forState:UIControlStateNormal];
[segmentedControl addTarget:self action:@selector(segmentedControlSelected:) forControlEvents:UIControlEventValueChanged];
segmentedControl;
});
self.navigationItem.titleView = _segmentedControl;
}
[self.navigationItem setRightBarButtonItem:[UIBarButtonItem itemWithBtnTitle:@"提交" target:self action:@selector(saveBtnClicked)] animated:YES];
self.navigationItem.rightBarButtonItem.enabled = NO;
[[[[NSNotificationCenter defaultCenter] rac_addObserverForName:UIKeyboardWillChangeFrameNotification object:nil] takeUntil:self.rac_willDeallocSignal] subscribeNext:^(NSNotification *aNotification) {
if (self.editView) {
NSDictionary* userInfo = [aNotification userInfo];
CGRect keyboardEndFrame = [[userInfo objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue];
self.editView.contentInset = UIEdgeInsetsMake(0, 0, CGRectGetHeight(keyboardEndFrame), 0);
self.editView.scrollIndicatorInsets = self.editView.contentInset;
}
}];
self.curIndex = 0;
}
- (void)viewDidAppear:(BOOL)animated{
[super viewDidAppear:animated];
// if (self.curIndex == 0 && self.editView) {
// [self.editView becomeFirstResponder];
// }
}
#pragma mark UISegmentedControl
- (void)segmentedControlSelected:(id)sender{
UISegmentedControl *segmentedControl = (UISegmentedControl *)sender;
self.curIndex = segmentedControl.selectedSegmentIndex;
if (self.curIndex == 0) {
// [_editView becomeFirstResponder];
}else{
[_editView resignFirstResponder];
}
}
#pragma mark index_view
- (void)setCurIndex:(NSInteger)curIndex{
_curIndex = curIndex;
if (_segmentedControl.selectedSegmentIndex != curIndex) {
[_segmentedControl setSelectedSegmentIndex:_curIndex];
}
if (_curIndex == 0) {
[self loadEditView];
}else{
[self loadPreview];
}
}
- (void)loadEditView{
if (!_editView) {
_editView = [[EaseMarkdownTextView alloc] initWithFrame:self.view.bounds];
_editView.curProject = self.myProject;
_editView.backgroundColor = [UIColor clearColor];
_editView.textColor = kColor666;
_editView.font = [UIFont systemFontOfSize:16];
_editView.textContainerInset = UIEdgeInsetsMake(15, kPaddingLeftWidth - 5, 8, kPaddingLeftWidth - 5);
_editView.placeholder = @"编辑代码";
_editView.text = _myCodeFile.file.data;
[self.view addSubview:_editView];
[_editView mas_makeConstraints:^(MASConstraintMaker *make) {
make.edges.equalTo(self.view);
}];
@weakify(self);
[_editView.rac_textSignal subscribeNext:^(NSString *value) {
@strongify(self);
self.myCodeFile.editData = value;
self.navigationItem.rightBarButtonItem.enabled = ![value isEqualToString:self.myCodeFile.file.data];
}];
}
_editView.hidden = NO;
_preview.hidden = YES;
}
- (void)loadPreview
{
if (!_preview) {
_preview = [[UIWebView alloc] initWithFrame:self.view.bounds];
_preview.delegate = self;
_preview.backgroundColor = [UIColor clearColor];
_preview.opaque = NO;
_preview.scalesPageToFit = YES;
//webview加载指示
_activityIndicator = [[UIActivityIndicatorView alloc]
initWithActivityIndicatorStyle:
UIActivityIndicatorViewStyleGray];
_activityIndicator.hidesWhenStopped = YES;
[_preview addSubview:_activityIndicator];
[self.view addSubview:_preview];
[_preview mas_makeConstraints:^(MASConstraintMaker *make) {
make.edges.equalTo(self.view);
}];
[_activityIndicator mas_makeConstraints:^(MASConstraintMaker *make) {
make.center.equalTo(_preview);
}];
}
_preview.hidden = NO;
_editView.hidden = YES;
[self previewLoadMDData];
}
- (void)previewLoadMDData{
if ([_myCodeFile.file.lang isEqualToString:@"markdown"]) {
NSString *mdStr = self.editView? self.editView.text : _myCodeFile.file.data;
@weakify(self);
[[Coding_NetAPIManager sharedManager] request_MDHtmlStr_WithMDStr:mdStr inProject:self.myProject andBlock:^(id data, NSError *error) {
@strongify(self);
NSString *htmlStr = data? data : error.description;
NSString *contentStr = [WebContentManager markdownPatternedWithContent:htmlStr];
[self.preview loadHTMLString:contentStr baseURL:nil];
}];
}else{
NSString *contentStr = [WebContentManager codePatternedWithContent:_myCodeFile isEdit:YES];
[self.preview loadHTMLString:contentStr baseURL:nil];
}
}
#pragma mark nav_btn
- (void)saveBtnClicked{
if ([_myCodeFile.editData isEqualToString:_myCodeFile.file.data]) {
[NSObject showHudTipStr:@"文件无改动"];
return;
}
[[Coding_NetAPIManager sharedManager] request_EditCodeFile:_myCodeFile withPro:_myProject andBlock:^(id data, NSError *error) {
if (data) {
if (self.savedSucessBlock) {
self.savedSucessBlock();
}
[self.navigationController popViewControllerAnimated:YES];
}
}];
}
#pragma mark UIWebViewDelegate
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{
DebugLog(@"strLink=[%@]",request.URL.absoluteString);
NSString *strLink = request.URL.absoluteString;
if ([strLink rangeOfString:@"about:blank"].location != NSNotFound) {
return YES;
} else {
[self analyseLinkStr:strLink];
return NO;
}
}
- (void)webViewDidStartLoad:(UIWebView *)webView{
[_activityIndicator startAnimating];
}
- (void)webViewDidFinishLoad:(UIWebView *)webView{
[_activityIndicator stopAnimating];
}
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error{
if([error code] == NSURLErrorCancelled)
return;
else{
DebugLog(@"%@", error.description);
[NSObject showError:error];
}
}
#pragma mark analyseLinkStr
- (void)analyseLinkStr:(NSString *)linkStr
{
if (linkStr.length <= 0) {
return;
}
UIViewController *vc = [BaseViewController analyseVCFromLinkStr:linkStr];
if (vc) {
[self.navigationController pushViewController:vc animated:YES];
}else{
// 跳转去网页
WebViewController *webVc = [WebViewController webVCWithUrlStr:linkStr];
[self.navigationController pushViewController:webVc animated:YES];
}
}
@end