forked from bang590/JSPatchConvertor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
119 lines (115 loc) · 4.84 KB
/
index.html
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
<html>
<head>
<title>JSPatch Convertor</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="./css/main.css">
<link rel="icon" type="image/png" href="./img/favicon.png">
</head>
<body>
<div class="main" id="main">
<h1>JSPatch Convertor</h1>
<div id="loading">Loading ... </div>
<div id="convertor">
<div class="textarea-ctn">
<div class="item" id="objcItem">
<h2 class="title-oc">OC</h2>
<textarea id="objcTextarea" wrap="off"></textarea>
</div>
<div class="item" id="jsItem">
<h2 class="title-js">JS</h2>
<textarea id="jsTextarea" wrap="off"></textarea>
<div class="error-tips" id="errorTips">Syntax Error</div>
</div>
</div>
<div class="action">
<a href="javascript:void(0)" id="convertBtn">Convert</a>
</div>
</div>
</div>
<div class="intro">
<div class="wrapper">
<div class="whats-jspatch">
<h3>What's JSPatch Convertor</h3>
<p><a href="https://github.com/bang590/JSPatch">JSPatch</a> bridges Objective-C and JavaScript using the Objective-C runtime. You can call any Objective-C class and method in JavaScript by just including a small engine. That makes the APP obtaining the power of script language: add modules or replacing Objective-C code to fix bugs dynamically.</p>
<p>JSPatch Convertor is a tool that converts Objective-C code to JSPatch script automatically.</p>
</div>
<div class="supported">
<div class="icon">✓</div>
<h3>SUPPORTED</h3>
<ul>
<li>Method declaration</li>
<li>Method calling</li>
<li>Block syntax</li>
<li>Variable declaration</li>
<li>Getting/Setting Property</li>
<li>NSString / NSArray / nil ...</li>
</ul>
</div>
<div class="unsupported">
<div class="icon">✕</div>
<h3>UNSUPPORTED</h3>
<ul>
<li>Macro / constant variable / Enum</li>
<li>C function calling</li>
<li>GCD functions</li>
<li>Pointer / Struct</li>
<li>Getting / Setting private variable</li>
</ul>
</div>
</div>
<div class="clear"></div>
</div>
<div class="footer">
Code licensed under MIT. <a href="https://github.com/bang590/JSPatchConvertor">Fork JSPatch-Convertor on github</a>
</div>
<script>
function $(id) {
return document.getElementById(id)
}
var minHeight = 570;
if (document.body.clientHeight > minHeight) {
$('main').style.height = document.body.clientHeight + 'px';
$('objcItem').style.height = document.body.clientHeight - 240 + 'px';
$('jsItem').style.height = document.body.clientHeight - 240 + 'px';
$('jsTextarea').style.height = document.body.clientHeight - 270 + 'px';
$('objcTextarea').style.height = document.body.clientHeight - 270 + 'px';
}
</script>
<script src="./js/lib/require.js"></script>
<script>
window.onload = function() {
var sampleScript = [
'@implementation SampleClass',
'- (void)requestUrl:(NSString *)url param:(NSDictionary *)dict callback:(JPCallback)callback {',
' JPRequest *obj = [[JPRequest alloc] initWithUrl:url param:dict];',
' obj.successBlock = ^(id data, NSError *err) {',
' NSString *content = [JPParser parseData:data];',
' if (callback) callback(@{',
' @"content": content',
' }, err);',
' [self.dataSource refresh];',
' self.handleRequestSuccess(data);',
' };',
'}',
'@end',
].join('\n');
$('objcTextarea').value = sampleScript;
var convertor = require('./js/JPConvertor').convertor
$('convertBtn').onclick = function() {
var script = $('objcTextarea').value.replace('\n', '')
$('errorTips').style.display = "none";
convertor(script, function(result, error) {
if (error) {
$('errorTips').style.display = "block";
console.error(error)
}
$('jsTextarea').value = result;
});
}
$('objcTextarea').focus();
$('loading').style.display = "none";
$('convertor').style.display = "block";
}
</script>
</body>
</html>