FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Coding-iOS/Coding_iOS/Controllers/CodeViewController.m at master · feihuohua/Coding-iOS · GitHub
feihuohua
/
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
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Coding-iOS
/
Coding_iOS
/
Controllers
/
CodeViewController.m
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
237 lines (212 loc) · 9.32 KB
Breadcrumbs
Coding-iOS
/
Coding_iOS
/
Controllers
/
CodeViewController.m
Copy path
File metadata and controls
executable file
·
237 lines (212 loc) · 9.32 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
232
233
234
235
236
237
//
//
CodeViewController.m
//
Coding_iOS
//
//
Created by 王 原闯 on 14/10/30.
//
Copyright (c) 2014年 Coding. All rights reserved.
//
#
import
"
CodeViewController.h
"
#
import
"
Coding_NetAPIManager.h
"
#
import
"
WebContentManager.h
"
#
import
"
ProjectCommitsViewController.h
"
#
import
"
ProjectViewController.h
"
#
import
"
CodeListViewController.h
"
#
import
"
EditCodeViewController.h
"
@interface
CodeViewController
()
@property
(
strong
,
nonatomic
) UIWebView *webContentView;
@property
(
strong
,
nonatomic
) UIActivityIndicatorView *activityIndicator;
@end
@implementation
CodeViewController
+ (CodeViewController *)
codeVCWithProject
:
(Project *)
project
andCodeFile
:
(CodeFile *)
codeFile
{
CodeViewController *vc = [[CodeViewController
alloc
]
init
];
vc.
myProject
= project;
vc.
myCodeFile
= codeFile;
return
vc;
}
- (
void
)
viewDidLoad
{
[
super
viewDidLoad
];
//
Do any additional setup after loading the view.
self.
view
.
backgroundColor
=
kColorTableBG
;
self.
title
= self.
isReadMe
?
@"
README
"
: [[_myCodeFile.path
componentsSeparatedByString:
@"
/
"
]
lastObject
];
{
//
用webView显示内容
_webContentView = [[UIWebView
alloc
]
initWithFrame:
self
.view.bounds];
_webContentView.
delegate
= self;
_webContentView.
backgroundColor
= [UIColor
clearColor
];
_webContentView.
opaque
=
NO
;
_webContentView.
scalesPageToFit
=
YES
;
[
self
.view
addSubview:
_webContentView];
//
webview加载指示
_activityIndicator = [[UIActivityIndicatorView
alloc
]
initWithActivityIndicatorStyle:
UIActivityIndicatorViewStyleGray];
_activityIndicator.
hidesWhenStopped
=
YES
;
[_activityIndicator
setCenter:
CGPointMake
(
CGRectGetWidth
(_webContentView.frame)/
2
,
CGRectGetHeight
(_webContentView.frame)/
2
)];
[_webContentView
addSubview:
_activityIndicator];
[_webContentView
mas_makeConstraints:
^(MASConstraintMaker *make) {
make.
edges
.
equalTo
(self.
view
);
}];
}
[
self
sendRequest
];
}
- (
void
)
didReceiveMemoryWarning
{
[
super
didReceiveMemoryWarning
];
//
Dispose of any resources that can be recreated.
}
#
pragma mark
- Orientations
- (
BOOL
)
shouldAutorotate
{
return
YES
;
}
- (UIInterfaceOrientationMask)
supportedInterfaceOrientations
{
return
UIInterfaceOrientationMaskAllButUpsideDown;
}
#
pragma mark
Request
- (
void
)
sendRequest
{
[
self
.view
beginLoading
];
__weak
typeof
(self) weakSelf = self;
if
(_isReadMe) {
[[Coding_NetAPIManager
sharedManager
]
request_ReadMeOFProject:
_myProject
andBlock:
^(
id
data,
NSError
*error) {
[weakSelf
doSomethingWithResponse:
data
andError:
error];
}];
}
else
{
[[Coding_NetAPIManager
sharedManager
]
request_CodeFile:
_myCodeFile
withPro:
_myProject
andBlock:
^(
id
data,
NSError
*error) {
[weakSelf
doSomethingWithResponse:
data
andError:
error];
}];
}
}
- (
void
)
doSomethingWithResponse
:
(
id
)
data
andError
:
(
NSError
*)
error
{
[
self
.view
endLoading
];
if
([data
isKindOfClass:
[CodeFile
class
]]) {
self.
myCodeFile
= data;
[
self
refreshCodeViewData
];
}
else
{
self.
myCodeFile
= [CodeFile
codeFileWithMDStr:
data];
[
self
refreshCodeViewData
];
}
BOOL
hasError = (error !=
nil
&& error.
code
!=
1204
);
//
depot_has_no_commit
[
self
.view
configBlankPage:
EaseBlankPageTypeCode
hasData:
(data !=
nil
)
hasError:
hasError
reloadButtonBlock:
^(
id
sender) {
[
self
sendRequest
];
}];
self.
webContentView
.
hidden
= hasError;
[
self
configRightNavBtn
];
}
- (
void
)
refreshCodeViewData
{
if
([_myCodeFile.file.mode
isEqualToString:
@"
image
"
]) {
//
NSURL *imageUrl = [NSURL URLWithString:[NSString stringWithFormat:@"%@u/%@/p/%@/git/raw/%@", [NSObject baseURLStr], _myProject.owner_user_name, _myProject.name, [NSString handelRef:_myCodeFile.ref path:_myCodeFile.file.path]]];
NSURL
*imageUrl = [
NSURL
URLWithString:
[
NSString
stringWithFormat:
@"
%@
u/
%@
/p/
%@
/git/raw/
%@
/
%@
"
, [
NSObject
baseURLStr
], _myProject.owner_user_name, _myProject.name, _myCodeFile.ref, _myCodeFile.file.path]];
DebugLog
(
@"
imageUrl:
%@
"
, imageUrl);
[
self
.webContentView
loadRequest:
[
NSURLRequest
requestWithURL:
imageUrl]];
}
else
if
([@[
@"
file
"
,
@"
sym_link
"
,
@"
executable
"
]
containsObject:
_myCodeFile.file.mode]){
NSString
*contentStr = [WebContentManager
codePatternedWithContent:
_myCodeFile
isEdit:
NO
];
[
self
.webContentView
loadHTMLString:
contentStr
baseURL:
nil
];
}
}
#
pragma mark
UIWebViewDelegate
- (
BOOL
)
webView
:
(UIWebView *)
webView
shouldStartLoadWithRequest
:
(
NSURLRequest
*)
request
navigationType
:
(UIWebViewNavigationType)
navigationType
{
DebugLog
(
@"
strLink=[
%@
]
"
,request.
URL
.
absoluteString
);
if
([_myCodeFile.file.mode
isEqualToString:
@"
image
"
]) {
NSString
*imageStr = [
NSString
stringWithFormat:
@"
%@
u/
%@
/p/
%@
/git/raw/
%@
/
%@
"
, [
NSObject
baseURLStr
], _myProject.owner_user_name, _myProject.name, _myCodeFile.ref, _myCodeFile.file.path];
if
([imageStr
isEqualToString:
request.
URL
.absoluteString]) {
return
YES
;
}
}
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
);
}
#
pragma mark
Nav
- (
void
)
configRightNavBtn
{
if
(!self.
navigationItem
.
rightBarButtonItem
) {
if
(_isReadMe) {
[
self
.navigationItem
setRightBarButtonItem:
[[UIBarButtonItem
alloc
]
initWithImage:
[UIImage
imageNamed:
@"
tweetBtn_Nav
"
]
style:
UIBarButtonItemStylePlain
target:
self
action:
@selector
(
goToEditVC
)]
animated:
NO
];
}
else
{
[
self
.navigationItem
setRightBarButtonItem:
[[UIBarButtonItem
alloc
]
initWithImage:
[UIImage
imageNamed:
@"
moreBtn_Nav
"
]
style:
UIBarButtonItemStylePlain
target:
self
action:
@selector
(
rightNavBtnClicked
)]
animated:
NO
];
}
}
}
- (
void
)
rightNavBtnClicked
{
NSMutableArray
*actionTitles = @[
@"
编辑代码
"
,
@"
查看提交记录
"
,
@"
退出代码查看
"
].
mutableCopy
;
if
(!self.
myCodeFile
.
can_edit
|| [
self
.myCodeFile.file.mode
isEqualToString:
@"
image
"
]) {
[actionTitles
removeObjectAtIndex:
0
];
}
__weak
typeof
(self) weakSelf = self;
[[UIActionSheet
bk_actionSheetCustomWithTitle:
nil
buttonTitles:
actionTitles
destructiveTitle:
@"
删除文件
"
cancelTitle:
@"
取消
"
andDidDismissBlock:
^(UIActionSheet *sheet,
NSInteger
index) {
[weakSelf
actionSheetClicked:
sheet
index:
index];
}]
showInView:
self
.view];
}
- (
void
)
actionSheetClicked
:
(UIActionSheet *)
sheet
index
:
(
NSInteger
)
index
{
if
(!self.
myCodeFile
.
can_edit
|| [
self
.myCodeFile.file.mode
isEqualToString:
@"
image
"
]) {
index++;
}
if
(index ==
0
) {
[
self
goToEditVC
];
}
else
if
(index ==
1
){
[
self
goToCommitsVC
];
}
else
if
(index ==
2
){
[
self
popOut
];
}
else
if
(index ==
3
){
[
self
deleteBtnClicked
];
}
}
- (
void
)
deleteBtnClicked
{
__weak
typeof
(self) weakSelf = self;
[[UIActionSheet
bk_actionSheetCustomWithTitle:
[
NSString
stringWithFormat:
@"
确定要删除文件
%@
吗?
"
, _myCodeFile.file.name]
buttonTitles:
nil
destructiveTitle:
@"
确认删除
"
cancelTitle:
@"
取消
"
andDidDismissBlock:
^(UIActionSheet *sheet,
NSInteger
index) {
if
(index ==
0
) {
[weakSelf
sendDeleteRequst
];
}
}]
showInView:
self
.view];
}
- (
void
)
sendDeleteRequst
{
[
NSObject
showHUDQueryStr:
@"
正在删除...
"
];
[[Coding_NetAPIManager
sharedManager
]
request_DeleteCodeFile:
_myCodeFile
withPro:
_myProject
andBlock:
^(
id
data,
NSError
*error) {
[
NSObject
hideHUDQuery
];
if
(data) {
//
if (self.savedSucessBlock) {
//
self.savedSucessBlock();
//
}
[
self
.navigationController
popViewControllerAnimated:
YES
];
}
}];
}
- (
void
)
goToEditVC
{
__weak
typeof
(self) weakSelf = self;
EditCodeViewController *vc = [EditCodeViewController
new
];
vc.
myProject
= _myProject;
vc.
myCodeFile
= _myCodeFile;
vc.
savedSucessBlock
= ^{
[weakSelf
sendRequest
];
};
[
self
.navigationController
pushViewController:
vc
animated:
YES
];
}
- (
void
)
goToCommitsVC
{
ProjectCommitsViewController *vc = [ProjectCommitsViewController
new
];
vc.
curProject
= self.
myProject
;
vc.
curCommits
= [Commits
commitsWithRef:
self
.myCodeFile.ref
Path:
self
.myCodeFile.path];
[
self
.navigationController
pushViewController:
vc
animated:
YES
];
}
- (
void
)
popOut
{
__weak
typeof
(self) weakSelf = self;
[
self
.navigationController.viewControllers
enumerateObjectsWithOptions:
NSEnumerationReverse
usingBlock:
^(UIViewController *obj,
NSUInteger
idx,
BOOL
*stop) {
if
(![obj
isKindOfClass:
[CodeViewController
class
]] &&
![obj
isKindOfClass:
[CodeListViewController
class
]] &&
!([obj
isKindOfClass:
[ProjectViewController
class
]] && [(ProjectViewController *)obj
curType
] == ProjectViewTypeCodes)) {
*stop =
YES
;
[weakSelf.navigationController
popToViewController:
obj
animated:
YES
];
}
}];
}
@end
Back
|
FazBrowse Home
|
New Git URL