FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Coding-iOS/Coding_iOS/Controllers/AddMDCommentViewController.m at master · EkkoG/Coding-iOS · GitHub
EkkoG
/
Coding-iOS
Public
forked from
coding/Coding-iOS
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
Coding-iOS
/
Coding_iOS
/
Controllers
/
AddMDCommentViewController.m
Copy path
More file actions
More file actions
Latest commit
History
History
History
231 lines (198 loc) · 8.24 KB
Breadcrumbs
Coding-iOS
/
Coding_iOS
/
Controllers
/
AddMDCommentViewController.m
Copy path
File metadata and controls
231 lines (198 loc) · 8.24 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
//
//
AddMDCommentViewController.m
//
Coding_iOS
//
//
Created by Ease on 15/6/1.
//
Copyright (c) 2015年 Coding. All rights reserved.
//
#
import
"
AddMDCommentViewController.h
"
#
import
"
Coding_NetAPIManager.h
"
#
import
"
WebContentManager.h
"
#
import
"
EaseMarkdownTextView.h
"
#
import
"
WebViewController.h
"
@interface
AddMDCommentViewController
()
<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
AddMDCommentViewController
- (
void
)
viewDidLoad
{
[
super
viewDidLoad
];
//
Do any additional setup after loading the view.
if
(!_segmentedControl) {
_segmentedControl = ({
UISegmentedControl *segmentedControl = [[UISegmentedControl
alloc
]
initWithItems:
@[
@"
编辑
"
,
@"
预览
"
]];
[segmentedControl
setWidth:
80
forSegmentAtIndex:
0
];
[segmentedControl
setWidth:
80
forSegmentAtIndex:
1
];
[segmentedControl
setTitleTextAttributes:
@{
NSFontAttributeName
: [UIFont
boldSystemFontOfSize:
16
],
NSForegroundColorAttributeName
: [UIColor
colorWithHexString:
@"
0x28303b
"
]
}
forState:
UIControlStateSelected];
[segmentedControl
setTitleTextAttributes:
@{
NSFontAttributeName
: [UIFont
boldSystemFontOfSize:
16
],
NSForegroundColorAttributeName
: [UIColor
whiteColor
]
}
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.
curProject
;
_editView.
backgroundColor
= [UIColor
clearColor
];
_editView.
textColor
= [UIColor
colorWithHexString:
@"
0x666666
"
];
_editView.
font
= [UIFont
systemFontOfSize:
16
];
_editView.
textContainerInset
=
UIEdgeInsetsMake
(
15
,
kPaddingLeftWidth
-
5
,
8
,
kPaddingLeftWidth
-
5
);
_editView.
placeholder
=
@"
添加评论
"
;
_editView.
text
= _contentStr;
[
self
.view
addSubview:
_editView];
[_editView
mas_makeConstraints:
^(MASConstraintMaker *make) {
make.
edges
.
equalTo
(self.
view
);
}];
@
weakify
(self);
[_editView.rac_textSignal
subscribeNext:
^(
NSString
*mdStr) {
@
strongify
(self);
self.
contentStr
= mdStr;
self.
navigationItem
.
rightBarButtonItem
.
enabled
= (self.
contentStr
.
length
>
0
&& ![
self
.contentStr
isEmptyOrListening
]);
}];
}
_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
{
NSString
*mdStr = self.
editView
? self.
editView
.
text
: _contentStr;
[_activityIndicator
startAnimating
];
@
weakify
(self);
[[Coding_NetAPIManager
sharedManager
]
request_MDHtmlStr_WithMDStr:
mdStr
inProject:
self
.curProject
andBlock:
^(
id
data,
NSError
*error) {
@
strongify
(self);
NSString
*htmlStr = data? data : error.
description
;
NSString
*contentStr = [WebContentManager
markdownPatternedWithContent:
htmlStr];
[
self
.preview
loadHTMLString:
contentStr
baseURL:
nil
];
}];
}
#
pragma mark
nav_btn
- (
void
)
saveBtnClicked
{
_contentStr = [_contentStr
aliasedString
];
[_requestParams
setObject:
_contentStr
forKey:
@"
content
"
];
[[Coding_NetAPIManager
sharedManager
]
request_PostCommentWithPath:
_requestPath
params:
_requestParams
andBlock:
^(
id
data,
NSError
*error) {
if
(data) {
if
(self.
completeBlock
) {
self.
completeBlock
(data);
}
[
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
Back
|
FazBrowse Home
|
New Git URL