-
Notifications
You must be signed in to change notification settings - Fork 454
/
Copy pathindex.js
502 lines (444 loc) · 11.9 KB
/
index.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
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
import "./style.scss";
import collapsableList from "components/collapsableList";
import Sidebar from "components/sidebar";
import select from "dialogs/select";
import fsOperation from "fileSystem";
import constants from "lib/constants";
import InstallState from "lib/installState";
import settings from "lib/settings";
import plugin from "pages/plugin";
import Url from "utils/Url";
import helpers from "utils/helpers";
/** @type {HTMLElement} */
let $installed = null;
/** @type {HTMLElement} */
let $explore = null;
/** @type {HTMLElement} */
let container = null;
/** @type {HTMLElement} */
let $searchResult = null;
const LIMIT = 50;
let currentPage = 1;
let hasMore = true;
let isLoading = false;
const $header = (
<div className="header">
<span className="title">
{strings["plugins"]}
<button className="icon-button" onclick={filterPlugins}>
<span className="icon tune"></span>
</button>
</span>
<input
oninput={searchPlugin}
type="search"
name="search-ext"
placeholder="Search"
/>
</div>
);
let searchTimeout = null;
let installedPlugins = [];
export default [
"extension", // icon
"extensions", // id
strings["plugins"], // title
initApp, // init function
false, // prepend
onSelected, // onSelected function
];
/**
* On selected handler for files app
* @param {HTMLElement} el
*/
function onSelected(el) {
const $scrollableLists = container.getAll(":scope .scroll[data-scroll-top]");
$scrollableLists.forEach(($el) => {
$el.scrollTop = $el.dataset.scrollTop;
});
}
/**
* Initialize extension app
* @param {HTMLElement} el
*/
function initApp(el) {
container = el;
container.classList.add("extensions");
container.content = $header;
if (!$searchResult) {
$searchResult = <ul className="list search-result scroll"></ul>;
container.append($searchResult);
}
if (!$explore) {
$explore = collapsableList(strings["explore"]);
$explore.ontoggle = loadExplore;
$explore.$ul.onscroll = handleScroll;
container.append($explore);
}
if (!$installed) {
$installed = collapsableList(strings["installed"]);
$installed.ontoggle = loadInstalled;
$installed.expand();
container.append($installed);
}
Sidebar.on("show", onSelected);
}
async function handleScroll(e) {
if (isLoading || !hasMore) return;
const { scrollTop, scrollHeight, clientHeight } = e.target;
if (scrollTop + clientHeight >= scrollHeight - 50) {
await loadMorePlugins();
}
}
async function loadMorePlugins() {
try {
isLoading = true;
startLoading($explore);
const response = await fetch(
`${constants.API_BASE}/plugins?page=${currentPage}&limit=${LIMIT}`,
);
const newPlugins = await response.json();
if (newPlugins.length < LIMIT) {
hasMore = false;
}
installedPlugins = await listInstalledPlugins();
const pluginElements = newPlugins.map(ListItem);
$explore.$ul.append(...pluginElements);
currentPage++;
updateHeight($explore);
} catch (error) {
window.log("error", error);
} finally {
isLoading = false;
stopLoading($explore);
}
}
async function searchPlugin() {
clearTimeout(searchTimeout);
searchTimeout = setTimeout(async () => {
$searchResult.content = "";
const status = helpers.checkAPIStatus();
if (!status) {
$searchResult.content = (
<span className="error">{strings["api_error"]}</span>
);
return;
}
const query = this.value;
if (!query) return;
try {
$searchResult.classList.add("loading");
const plugins = await fsOperation(
Url.join(constants.API_BASE, `plugins?name=${query}`),
).readFile("json");
installedPlugins = await listInstalledPlugins();
$searchResult.content = plugins.map(ListItem);
updateHeight($searchResult);
} catch (error) {
window.log("error", error);
$searchResult.content = <span className="error">{strings["error"]}</span>;
} finally {
$searchResult.classList.remove("loading");
}
}, 500);
}
async function filterPlugins() {
const filterOptions = {
[strings.top_rated]: "top_rated",
[strings.newly_added]: "newest",
[strings.most_downloaded]: "downloads",
};
const filterName = await select("Filter", Object.keys(filterOptions));
if (!filterName) return;
$searchResult.content = "";
const filterParam = filterOptions[filterName];
try {
$searchResult.classList.add("loading");
const plugins = await getFilteredPlugins(filterParam);
const filterMessage = (
<div className="filter-message">
<span>
Filter for <strong>{filterName}</strong>
</span>
<span
className="icon clearclose close-button"
data-action="clear-filter"
onclick={() => clearFilter()}
></span>
</div>
);
$searchResult.content = [filterMessage, ...plugins.map(ListItem)];
updateHeight($searchResult);
function clearFilter() {
$searchResult.content = "";
updateHeight($searchResult);
}
} catch (error) {
window.log("error", "Error filtering plugins:");
window.log("error", error);
$searchResult.content = <span className="error">{strings["error"]}</span>;
} finally {
$searchResult.classList.remove("loading");
}
}
async function clearFilter() {
$searchResult.content = "";
}
async function loadInstalled() {
if (this.collapsed) return;
const plugins = await listInstalledPlugins();
if (!plugins.length) {
$installed.collapse();
}
$installed.$ul.content = plugins.map(ListItem);
updateHeight($installed);
}
async function loadExplore() {
if (this.collapsed) return;
const status = helpers.checkAPIStatus();
if (!status) {
$explore.$ul.content = (
<span className="error">{strings["api_error"]}</span>
);
return;
}
try {
startLoading($explore);
currentPage = 1;
hasMore = true;
const response = await fetch(
`${constants.API_BASE}/plugins?page=${currentPage}&limit=${LIMIT}`,
);
const plugins = await response.json();
if (plugins.length < LIMIT) {
hasMore = false;
}
installedPlugins = await listInstalledPlugins();
$explore.$ul.content = plugins.map(ListItem);
currentPage++;
updateHeight($explore);
} catch (error) {
$explore.$ul.content = <span className="error">{strings["error"]}</span>;
} finally {
stopLoading($explore);
}
}
async function listInstalledPlugins() {
const plugins = await Promise.all(
(await fsOperation(PLUGIN_DIR).lsDir()).map(async (item) => {
const id = Url.basename(item.url);
const url = Url.join(item.url, "plugin.json");
const plugin = await fsOperation(url).readFile("json");
const iconUrl = getLocalRes(id, plugin.icon);
plugin.icon = await helpers.toInternalUri(iconUrl);
plugin.installed = true;
return plugin;
}),
);
return plugins;
}
async function getFilteredPlugins(filterName) {
try {
let response;
if (filterName === "top_rated") {
response = await fetch(`${constants.API_BASE}/plugins?explore=random`);
} else {
response = await fetch(
`${constants.API_BASE}/plugin?orderBy=${filterName}`,
);
}
return await response.json();
} catch (error) {
window.log("error", error);
}
}
function startLoading($list) {
$list.$title.classList.add("loading");
}
function stopLoading($list) {
$list.$title.classList.remove("loading");
}
/**
* Update the height of the element
* @param {HTMLElement} $el
*/
function updateHeight($el) {
removeHeight($installed, $el !== $installed);
removeHeight($explore, $el !== $explore);
let height = $header.getBoundingClientRect().height;
if ($el === $searchResult) {
height += 60;
} else {
height += $searchResult.getBoundingClientRect().height + 30;
}
setHeight($el, height);
}
function removeHeight($el, collapse = false) {
if (collapse) $el.collapse?.();
$el.style.removeProperty("max-height");
$el.style.removeProperty("height");
}
function setHeight($el, height) {
const calcHeight = height ? `calc(100% - ${height}px)` : "100%";
$el.style.maxHeight = calcHeight;
if ($el === $searchResult) {
$el.style.height = "fit-content";
return;
}
$el.style.height = calcHeight;
}
function getLocalRes(id, name) {
return Url.join(PLUGIN_DIR, id, name);
}
function ListItem({ icon, name, id, version, downloads, installed }) {
if (installed === undefined) {
installed = !!installedPlugins.find(({ id: _id }) => _id === id);
}
const $el = (
<div className="tile" data-plugin-id={id}>
<span className="icon" style={{ backgroundImage: `url(${icon})` }}></span>
<span
className="text sub-text"
data-subtext={`v${version} • ${installed ? `${strings["installed"]}` : helpers.formatDownloadCount(downloads)}`}
>
{name}
</span>
{installed ? (
<span
className="icon more_vert"
data-action="more-plugin-action"
></span>
) : (
<button className="install-btn" data-action="install-plugin">
<span className="icon file_downloadget_app"></span>
</button>
)}
</div>
);
$el.onclick = async (event) => {
const morePluginActionButton = event.target.closest(
'[data-action="more-plugin-action"]',
);
const installPluginBtn = event.target.closest(
'[data-action="install-plugin"]',
);
if (morePluginActionButton) {
more_plugin_action(id, name);
return;
} else if (installPluginBtn) {
try {
let purchaseToken = null;
const pluginUrl = Url.join(constants.API_BASE, `plugin/${id}`);
const remotePlugin = await fsOperation(pluginUrl)
.readFile("json")
.catch(() => {
throw new Error("Failed to fetch plugin details");
});
if (remotePlugin && Number.parseFloat(remotePlugin.price) > 0) {
try {
const [product] = await helpers.promisify(iap.getProducts, [
remotePlugin.sku,
]);
if (product) {
async function getPurchase(sku) {
const purchases = await helpers.promisify(iap.getPurchases);
const purchase = purchases.find((p) =>
p.productIds.includes(sku),
);
return purchase;
}
const purchase = await getPurchase(product.productId);
purchaseToken = purchase?.purchaseToken;
}
} catch (error) {
helpers.error(error);
throw new Error("Failed to validate purchase");
}
}
const { default: installPlugin } = await import("lib/installPlugin");
await installPlugin(id, remotePlugin.name, purchaseToken);
window.toast(strings["success"], 3000);
$explore.ontoggle();
} catch (err) {
console.error(err);
window.toast(helpers.errorMessage(err), 3000);
}
return;
}
plugin(
{ id, installed },
() => {
if (!$explore.collapsed) {
$explore.ontoggle();
}
if (!$installed.collapsed) {
$installed.ontoggle();
}
},
() => {
if (!$explore.collapsed) {
$explore.ontoggle();
}
if (!$installed.collapsed) {
$installed.ontoggle();
}
},
);
};
return $el;
}
async function loadAd(el) {
if (!IS_FREE_VERSION) return;
try {
if (!(await window.iad?.isLoaded())) {
const oldText = el.textContent;
el.textContent = strings["loading..."];
await window.iad.load();
el.textContent = oldText;
}
} catch (error) {}
}
async function uninstall(id) {
try {
const pluginDir = Url.join(PLUGIN_DIR, id);
const state = await InstallState.new(id);
await Promise.all([
loadAd(this),
fsOperation(pluginDir).delete(),
state.delete(state.storeUrl),
]);
acode.unmountPlugin(id);
// Show Ad If Its Free Version, interstitial Ad(iad) is loaded.
if (IS_FREE_VERSION && (await window.iad?.isLoaded())) {
window.iad.show();
}
} catch (err) {
helpers.error(err);
}
}
async function more_plugin_action(id, pluginName) {
let actions;
let pluginSettings = settings.uiSettings[`plugin-${id}`];
if (pluginSettings) {
actions = [strings.settings, strings.uninstall];
} else {
actions = [strings.uninstall];
}
let action = await select("Action", actions);
if (!action) return;
switch (action) {
case strings.settings:
pluginSettings.setTitle(pluginName);
pluginSettings.show();
break;
case strings.uninstall:
await uninstall(id);
if (!$explore.collapsed) {
$explore.ontoggle();
}
if (!$installed.collapsed) {
$installed.ontoggle();
}
break;
}
}