-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathEAEditCodeReleaseViewController.m
More file actions
286 lines (256 loc) · 12.1 KB
/
Copy pathEAEditCodeReleaseViewController.m
File metadata and controls
286 lines (256 loc) · 12.1 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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
//
// EAEditCodeReleaseViewController.m
// Coding_iOS
//
// Created by Easeeeeeeeee on 2018/3/27.
// Copyright © 2018年 Coding. All rights reserved.
//
#import "EAEditCodeReleaseViewController.h"
#import "Coding_NetAPIManager.h"
#import "EaseMarkdownTextView.h"
#import "WebContentManager.h"
#import "WebViewController.h"
#import "UIViewController+BackButtonHandler.h"
@interface EAEditCodeReleaseViewController ()
<UIWebViewDelegate>
@property (strong, nonatomic) UISegmentedControl *segmentedControl;
@property (assign, nonatomic) NSInteger curIndex;
@property (strong, nonatomic) UIWebView *preview;
@property (strong, nonatomic) UIActivityIndicatorView *activityIndicator;
@property (strong, nonatomic) UIView *editView;
@property (strong, nonatomic) UITextField *inputTitleView;
@property (strong, nonatomic) EaseMarkdownTextView *inputContentView;
@property (strong, nonatomic) UIView *lineView;
@end
@implementation EAEditCodeReleaseViewController
- (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.inputContentView) {
NSDictionary* userInfo = [aNotification userInfo];
CGRect keyboardEndFrame = [[userInfo objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue];
self.inputContentView.contentInset = UIEdgeInsetsMake(0, 0, CGRectGetHeight(keyboardEndFrame), 0);
self.inputContentView.scrollIndicatorInsets = self.inputContentView.contentInset;
}
}];
self.curIndex = 0;
}
- (void)refreshUI{
self.inputTitleView.text = self.curR.editTitle;
self.inputContentView.text = self.curR.editBody;
if (_curIndex == 1) {
[self loadPreview];
}
}
- (void)viewDidAppear:(BOOL)animated{
[super viewDidAppear:animated];
if (_curIndex == 0) {
[self loadEditView];
} else {
[self loadPreview];
}
//禁用屏幕左滑返回手势
if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
self.navigationController.interactivePopGestureRecognizer.enabled = NO;
}
}
- (void)viewDidDisappear:(BOOL)animated {
[super viewDidDisappear:animated];
//开启屏幕左滑返回手势
if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
self.navigationController.interactivePopGestureRecognizer.enabled = YES;
}
}
- (BOOL)navigationShouldPopOnBackButton{
self.curR.editTitle = _inputTitleView.text;
self.curR.editBody = _inputContentView.text;
if ([self.curR hasChanged]) {
__weak typeof(self) weakSelf = self;
[[UIAlertController ea_alertViewWithTitle:@"提示" message:@"如果不保存,更改将丢失,是否确认返回?" buttonTitles:@[@"确认返回"] destructiveTitle:nil cancelTitle:@"取消" andDidDismissBlock:^(UIAlertAction *action, NSInteger index) {
if (index == 0) {
[weakSelf.navigationController popViewControllerAnimated:YES];
}
}] show];
return NO;
}else{
return YES;
}
}
#pragma mark UISegmentedControl
- (void)segmentedControlSelected:(id)sender{
UISegmentedControl *segmentedControl = (UISegmentedControl *)sender;
self.curIndex = segmentedControl.selectedSegmentIndex;
}
#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];
}
}
#pragma mark PreView
- (void)loadPreview{
if (!_preview) {
_preview = [[UIWebView alloc] initWithFrame:self.view.bounds];
_preview.delegate = self;
_preview.backgroundColor = [UIColor clearColor];
_preview.opaque = NO;
_preview.scalesPageToFit = YES;
[self.view addSubview:_preview];
//webview加载指示
_activityIndicator = [[UIActivityIndicatorView alloc]
initWithActivityIndicatorStyle:
UIActivityIndicatorViewStyleGray];
_activityIndicator.hidesWhenStopped = YES;
[_activityIndicator setCenter:CGPointMake(CGRectGetWidth(_preview.frame)/2, CGRectGetHeight(_preview.frame)/2)];
[_preview addSubview:_activityIndicator];
[_preview mas_makeConstraints:^(MASConstraintMaker *make) {
make.edges.equalTo(self.view);
}];
}
self.curR.editTitle = _inputTitleView.text;
self.curR.editBody = _inputContentView.text;
_preview.hidden = NO;
_editView.hidden = YES;
[self.view endEditing:YES];
[self previewLoadMDData];
}
- (void)previewLoadMDData{
NSString *mdStr = [NSString stringWithFormat:@"# %@ \n\n%@", self.curR.editTitle, self.curR.editBody];
@weakify(self);
[[Coding_NetAPIManager sharedManager] request_MDHtmlStr_WithMDStr:mdStr inProject:self.curR.project andBlock:^(id data, NSError *error) {
@strongify(self);
NSString *htmlStr = data? data : error.description;
NSString *contentStr = [WebContentManager wikiPatternedWithContent:htmlStr];
[self.preview loadHTMLString:contentStr baseURL:nil];
}];
}
#pragma mark EditView
- (void)loadEditView{
if (!_editView) {
//控件
_editView = [[UIView alloc] initWithFrame:self.view.bounds];
[self.view addSubview:_editView];
_inputTitleView = [UITextField new];
_inputTitleView.textColor = kColor222;
_inputTitleView.font = [UIFont systemFontOfSize:18];
_inputTitleView.placeholder = @"Release 标题";
[_editView addSubview:_inputTitleView];
_lineView = [UIView new];
_lineView.backgroundColor = kColorDDD;
[_editView addSubview:_lineView];
_inputContentView = [[EaseMarkdownTextView alloc] initWithFrame:CGRectZero];
_inputContentView.curProject = self.curR.project;
_inputContentView.textColor = kColor222;
_inputContentView.placeholder = @"Release 的描述内容";
_inputContentView.backgroundColor = [UIColor clearColor];
_inputContentView.font = [UIFont systemFontOfSize:15];
_inputContentView.textContainerInset = UIEdgeInsetsMake(10, kPaddingLeftWidth - 5, 8, kPaddingLeftWidth - 5);
[_editView addSubview:_inputContentView];
[self.view addSubview:_editView];
// 布局
[_editView mas_makeConstraints:^(MASConstraintMaker *make) {
make.edges.equalTo(self.view);
}];
[_inputTitleView mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(_editView.mas_top).offset(10.0);
make.height.mas_equalTo(25);
make.left.equalTo(_editView).offset(kPaddingLeftWidth);
make.right.equalTo(_editView).offset(-kPaddingLeftWidth);
}];
[_lineView mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(_inputTitleView.mas_bottom).offset(10.0);
make.left.equalTo(_editView).offset(kPaddingLeftWidth);
make.height.mas_equalTo(1.0);
make.right.equalTo(_editView);
}];
[_inputContentView mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(_lineView.mas_bottom).offset(5.0);
make.left.right.bottom.equalTo(_editView);
}];
// 内容
@weakify(self);
RAC(self.navigationItem.rightBarButtonItem, enabled) = [RACSignal combineLatest:@[self.inputTitleView.rac_textSignal,
self.inputContentView.rac_textSignal]
reduce:^id (NSString *title, NSString *content) {
@strongify(self);
title = self.inputTitleView.text;
content = self.inputContentView.text;
BOOL enabled = ([title stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]].length > 0
&& (![title isEqualToString:self.curR.editTitle] || ![content isEqualToString:self.curR.editBody]));
return @(enabled);
}];
_inputTitleView.text = _curR.editTitle;
_inputContentView.text = _curR.editBody;
}
_editView.hidden = NO;
_preview.hidden = YES;
}
#pragma mark - click
- (void)saveBtnClicked{
self.curR.editTitle = _inputTitleView.text;
self.curR.editBody = _inputContentView.text;
self.navigationItem.rightBarButtonItem.enabled = NO;
[NSObject showHUDQueryStr:@"正在保存..."];
@weakify(self);
[[Coding_NetAPIManager sharedManager] request_ModifyCodeRelease:_curR andBlock:^(EACodeRelease *data, NSError *error) {
@strongify(self);
self.navigationItem.rightBarButtonItem.enabled = YES;
[NSObject hideHUDQuery];
if (data) {
[NSObject showHudTipStr:@"保存成功"];
[self.navigationController popViewControllerAnimated:YES];
}
}];
}
#pragma mark UIWebViewDelegate
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{
DebugLog(@"strLink=[%@]",request.URL.absoluteString);
UIViewController *vc = [BaseViewController analyseVCFromLinkStr:request.URL.absoluteString];
if (vc) {
[self.navigationController pushViewController:vc animated:YES];
return NO;
}
return YES;
}
- (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);
}
@end