-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path新建脚本.js
249 lines (238 loc) · 5.72 KB
/
新建脚本.js
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
//-- Data --//
var lang = $device.info.language
var categories = $cache.get("categories") || []
var category = 20000 // Default
var addins = []
//-- Strings --//
$app.strings = {
"en": {
"MAIN_TITLE": "Gallery",
"SHARE": "Share",
"GET": "Get",
"SHOW_DETAILS": "Show Details",
"INSTALLED": "Installed",
"FAILED": "Failed",
"AUTHOR": "Author",
"WEBSITE": "Website",
"VERSION": "Version"
},
"zh-Hans": {
"MAIN_TITLE": "扩展列表",
"SHARE": "分享",
"GET": "获取",
"SHOW_DETAILS": "查看详情",
"INSTALLED": "安装成功",
"FAILED": "获取失败",
"AUTHOR": "作者",
"WEBSITE": "网站",
"VERSION": "版本"
}
}
//-- UI --//
$ui.render({
props: {title: $l10n("MAIN_TITLE")},
views: [{
type: "menu",
props: {items: categories.map(function(item) { return item.name })},
layout: function(make) {
make.left.top.right.equalTo(0)
make.height.equalTo(44)
},
events: {
changed: function(sender) {
queryAddins(categories[sender.index].id)
}
}
}, {
type: "list",
props: {
rowHeight: 150,
template: [{
type: "image",
props: {
id: "icon-view",
bgcolor: $color("clear")
},
layout: function(make) {
make.size.equalTo($size(20, 20))
make.left.top.equalTo(16)
}
}, {
type: "label",
props: {
id: "name-label",
font: $font("medium", 20)
},
layout: function(make) {
var view = $("icon-view")
make.left.equalTo(view.right).offset(10)
make.centerY.equalTo(view)
}
}, {
type: "label",
props: {
id: "summary-label",
lines: 0,
textColor: $color("#666666"),
font: $font(15)
},
layout: function(make) {
var view = $("icon-view")
make.left.equalTo(view)
make.right.inset(16)
make.top.equalTo(view.bottom).offset(16)
}
}]
},
layout: function(make) {
make.left.bottom.right.equalTo(0)
make.top.equalTo($("menu").bottom)
},
events: {
didSelect: function(sender, indexPath) {
$ui.menu({
items: [$l10n("GET"), $l10n("SHARE"), $l10n("SHOW_DETAILS")],
handler: function(title, idx) {
var addin = addins[indexPath.row]
if (idx == 0) {
installAddin(addin)
} else if (idx == 1) {
shareAddin(addin)
} else if (idx == 2) {
showDetails(addin)
}
}
})
},
pulled: function() {
queryAddins(category)
}
}
}]
})
//-- Query addins --//
function queryAddins(id) {
category = id
// Cache
var cacheKey = "addins-" + id
var cache = $cache.get(cacheKey) || []
if (cache.length > 0) {
render(cache)
}
// Render
function render(data) {
$("list").data = data.map(function(item) {
return {
"icon-view": {
icon: $icon(item.icon, $color("#b7bec6"))
},
"name-label": {
text: item.name
},
"summary-label": {
text: item.summary
}
}
})
}
$http.get({
url: "https://xteko.com/store/query?id=" + id + "&lang=" + lang,
handler: function(resp) {
addins = resp.data.result || []
render(addins)
$cache.set(cacheKey, addins)
$("list").endRefreshing()
}
})
}
//-- Query categories --//
function queryCategories() {
$http.get({
url: "https://xteko.com/store/categories?lang=" + lang,
handler: function(resp) {
categories = resp.data.result
$("menu").items = categories.map(function(item) { return item.name })
$cache.set("categories", categories)
}
})
}
//-- Install addin --//
function installAddin(addin) {
$ui.loading(true)
$http.download({
url: addin.url,
handler: function(resp) {
$ui.loading(false)
var data = resp.data
if (data) {
$addin.save({name: addin.name, icon: addin.icon, data: data})
}
$ui.toast(data ? $l10n("INSTALLED") : $l10n("FAILED"))
}
})
}
//-- Share addin --//
function shareAddin(addin) {
$share.sheet("https://xteko.com/store/install?id=" + addin.id + "&lang=" + lang)
}
//-- Show aetails --//
function showDetails(addin) {
$ui.push({
props: {title: addin.name},
views: [{
type: "list",
props: {
template: [{
type: "label",
props: {id: "key-label"},
layout: function(make, view) {
make.centerY.equalTo(view.super)
make.left.inset(12)
}
}, {
type: "label",
props: {
id: "value-label",
textColor: $color("#666666")
},
layout: function(make, view) {
make.centerY.equalTo(view.super)
make.right.inset(12)
}
}],
data: [{
"key-label": {
text: $l10n("AUTHOR")
},
"value-label": {
text: addin.author || "JSBox"
}
}, {
"key-label": {
text: $l10n("WEBSITE")
},
"value-label": {
text: addin.website || "https://docs.xteko.com"
}
}, {
"key-label": {
text: $l10n("VERSION")
},
"value-label": {
text: addin.version || "1.0.0"
}
}]
},
layout: $layout.fill,
events: {
didSelect: function(sender, indexPath, data) {
if (data["key-label"].text === $l10n("WEBSITE")) {
$app.openURL(data["value-label"].text)
}
}
}
}]
})
}
//-- Start --//
queryAddins(category)