forked from Acode-Foundation/Acode
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.js
More file actions
772 lines (684 loc) · 18.8 KB
/
index.js
File metadata and controls
772 lines (684 loc) · 18.8 KB
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
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
import "./style.scss";
import fsOperation from "fileSystem";
import ajax from "@deadlyjack/ajax";
import collapsableList from "components/collapsableList";
import Sidebar from "components/sidebar";
import alert from "dialogs/alert";
import prompt from "dialogs/prompt";
import select from "dialogs/select";
import purchaseListener from "handlers/purchase";
import constants from "lib/constants";
import InstallState from "lib/installState";
import loadPlugin from "lib/loadPlugin";
import settings from "lib/settings";
import FileBrowser from "pages/fileBrowser";
import plugin from "pages/plugin";
import helpers from "utils/helpers";
import Url from "utils/Url";
/** @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;
let currentFilter = null;
let filterCurrentPage = 1;
let filterHasMore = true;
let isFilterLoading = false;
const $header = (
<div className="header">
<div className="title">
<span>{strings.plugins}</span>
<button type="button" className="icon-button" onclick={filterPlugins}>
<span className="icon tune" />
</button>
<button type="button" className="icon-button" onclick={addSource}>
<span className="icon more_vert" />
</button>
</div>
<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]");
for (const $el of $scrollableLists) {
$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" />;
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 handleFilterScroll(e) {
if (isFilterLoading || !filterHasMore || !currentFilter) return;
const { scrollTop, scrollHeight, clientHeight } = e.target;
if (scrollTop + clientHeight >= scrollHeight - 50) {
await loadFilteredPlugins(currentFilter, false);
}
}
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 loadFilteredPlugins(filterName, isInitial = false) {
if (isFilterLoading || !filterHasMore) return;
try {
isFilterLoading = true;
const plugins = await getFilteredPlugins(filterName, filterCurrentPage);
if (plugins.length < LIMIT) {
filterHasMore = false;
}
installedPlugins = await listInstalledPlugins();
const pluginElements = plugins.map(ListItem);
if (isInitial) {
$searchResult.append(...pluginElements);
} else {
$searchResult.append(...pluginElements);
}
filterCurrentPage++;
updateHeight($searchResult);
} catch (error) {
window.log("error", "Error loading filtered plugins:");
window.log("error", error);
} finally {
isFilterLoading = false;
}
}
async function searchPlugin() {
clearTimeout(searchTimeout);
searchTimeout = setTimeout(async () => {
// Clear filter when searching
currentFilter = null;
filterCurrentPage = 1;
filterHasMore = true;
isFilterLoading = false;
$searchResult.onscroll = null;
$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];
currentFilter = filterParam;
filterCurrentPage = 1;
filterHasMore = true;
isFilterLoading = false;
try {
$searchResult.classList.add("loading");
const filterMessage = (
<div className="filter-message">
<span>
Filtered by <strong>{filterName}</strong>
</span>
<span
className="icon clearclose close-button"
data-action="clear-filter"
onclick={() => clearFilter()}
/>
</div>
);
$searchResult.content = [filterMessage];
$searchResult.onscroll = handleFilterScroll;
await loadFilteredPlugins(filterParam, true);
updateHeight($searchResult);
function clearFilter() {
currentFilter = null;
filterCurrentPage = 1;
filterHasMore = true;
isFilterLoading = false;
$searchResult.content = "";
$searchResult.onscroll = null;
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() {
currentFilter = null;
filterCurrentPage = 1;
filterHasMore = true;
isFilterLoading = false;
$searchResult.content = "";
$searchResult.onscroll = null;
}
async function addSource() {
const sourceOption = [
["remote", strings.remote],
["local", strings.local],
];
const sourceType = await select("Select Source", sourceOption);
if (!sourceType) return;
let source;
if (sourceType === "remote") {
source = await prompt("Enter plugin source", "https://", "url");
} else {
source = (await FileBrowser("file", "Select plugin source")).url;
}
if (!source) return;
try {
const { default: installPlugin } = await import("lib/installPlugin");
await installPlugin(source);
if (!$explore.collapsed) {
$explore.ontoggle();
}
if (!$installed.collapsed) {
$installed.ontoggle();
}
} catch (error) {
console.error(error);
window.toast(helpers.errorMessage(error));
addSource(sourceType, source);
}
}
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, page = 1) {
try {
let response;
if (filterName === "top_rated") {
response = await fetch(
`${constants.API_BASE}/plugins?explore=random&page=${page}&limit=${LIMIT}`,
);
} else {
response = await fetch(
`${constants.API_BASE}/plugin?orderBy=${filterName}&page=${page}&limit=${LIMIT}`,
);
}
return await response.json();
} catch (error) {
window.log("error", error);
return [];
}
}
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, source }) {
if (installed === undefined) {
installed = !!installedPlugins.find(({ id: _id }) => _id === id);
}
const disabledMap = settings.value.pluginsDisabled || {};
const enabled = disabledMap[id] !== true;
const $el = (
<div
data-plugin-id={id}
data-plugin-enabled={enabled !== false}
className="tile"
style={enabled === false ? { opacity: 0.6 } : {}}
>
<span className="icon" style={{ backgroundImage: `url(${icon})` }} />
<span
className="text sub-text"
data-subtext={`v${version} • ${installed ? `${strings.installed}` : helpers.formatDownloadCount(downloads)}`}
>
{name}
</span>
{installed
? <>
{source
? <span className="icon replay" data-action="rebuild-plugin" />
: null}
<span className="icon more_vert" data-action="more-plugin-action" />
</>
: <button
type="button"
className="install-btn"
data-action="install-plugin"
>
<span className="icon file_downloadget_app" />
</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"]',
);
const rebuildPluginBtn = event.target.closest(
'[data-action="rebuild-plugin"]',
);
if (morePluginActionButton) {
more_plugin_action(id, name);
return;
}
if (installPluginBtn) {
try {
let purchaseToken;
let product;
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");
});
const isPaid = remotePlugin.price > 0;
if (isPaid) {
[product] = await helpers.promisify(iap.getProducts, [
remotePlugin.sku,
]);
if (product) {
const purchase = await getPurchase(product.productId);
purchaseToken = purchase?.purchaseToken;
}
}
if (isPaid && !purchaseToken) {
if (!product) throw new Error("Product not found");
const apiStatus = await helpers.checkAPIStatus();
if (!apiStatus) {
alert(strings.error, strings.api_error);
return;
}
iap.setPurchaseUpdatedListener(
...purchaseListener(onpurchase, onerror),
);
await helpers.promisify(iap.purchase, product.json);
async function onpurchase(e) {
const purchase = await getPurchase(product.productId);
await ajax.post(Url.join(constants.API_BASE, "plugin/order"), {
data: {
id: remotePlugin.id,
token: purchase?.purchaseToken,
package: BuildInfo.packageName,
},
});
purchaseToken = purchase?.purchaseToken;
}
async function onerror(error) {
throw error;
}
}
const { default: installPlugin } = await import("lib/installPlugin");
await installPlugin(
id,
remotePlugin.name,
purchaseToken ? purchaseToken : undefined,
);
const searchInput = container.querySelector('input[name="search-ext"]');
if (searchInput) {
searchInput.value = "";
$searchResult.content = "";
// Reset filter state when clearing search results
currentFilter = null;
filterCurrentPage = 1;
filterHasMore = true;
isFilterLoading = false;
$searchResult.onscroll = null;
updateHeight($searchResult);
$installed.expand();
}
window.toast(strings.success, 3000);
if (!$explore.collapsed) {
$explore.ontoggle();
}
if (!$installed.collapsed) {
$installed.ontoggle();
}
async function getPurchase(sku) {
const purchases = await helpers.promisify(iap.getPurchases);
const purchase = purchases.find((p) => p.productIds.includes(sku));
return purchase;
}
} catch (err) {
console.error(err);
window.toast(helpers.errorMessage(err), 3000);
}
return;
}
if (rebuildPluginBtn) {
try {
const { default: installPlugin } = await import("lib/installPlugin");
await installPlugin(source);
window.toast(strings.success, 3000);
} 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);
const searchInput = container.querySelector('input[name="search-ext"]');
if (searchInput) {
searchInput.value = "";
$searchResult.content = "";
// Reset filter state when clearing search results
currentFilter = null;
filterCurrentPage = 1;
filterHasMore = true;
isFilterLoading = false;
$searchResult.onscroll = null;
updateHeight($searchResult);
if ($installed.collapsed) {
$installed.expand();
}
}
// 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) {
const disabledMap = settings.value.pluginsDisabled || {};
const enabled = disabledMap[id] !== true;
let actions = [];
const pluginSettings = settings.uiSettings[`plugin-${id}`];
if (pluginSettings) {
actions.push(strings.settings);
}
actions.push(
enabled ? strings.disable || "Disable" : strings.enable || "Enable",
);
actions.push(strings.uninstall);
const 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;
case strings.disable || "Disable":
// fallthrough
case strings.enable || "Enable":
if (enabled) {
disabledMap[id] = true; // Disabling
} else {
delete disabledMap[id]; // Enabling
}
settings.update({ pluginsDisabled: disabledMap }, false);
// INFO: I don't know how to get all loaded plugins(not installed).
const choice = await select(
strings.info,
[
// { value: "reload_plugins", text: strings["reload_plugins"] || "Reload Plugins" },
{
value: "restart_app",
text: strings["restart_app"] || "Restart App",
},
{
value: "single",
text: enabled
? strings["disable_plugin"] || "Disable this Plugin"
: strings["enable_plugin"] || "Enable this Plugin",
},
],
{
default: "single",
},
);
// if (choice === "reload_plugins") {
// // Unmount all currently loaded plugins before reloading
// if (window.acode && typeof window.acode.getLoadedPluginIds === "function") {
// for (const pluginId of window.acode.getLoadedPluginIds()) {
// window.acode.unmountPlugin(pluginId);
// }
// }
// await window.loadPlugins?.();
// window.toast(strings.success);
// }
if (choice === "restart_app") {
location.reload();
} else if (choice === "single") {
if (enabled) {
window.acode.unmountPlugin(id);
window.toast(strings["plugin_disabled"] || "Plugin Disabled");
} else {
await loadPlugin(id);
window.toast(strings["plugin_enabled"] || "Plugin enabled");
}
if (!$explore.collapsed) {
$explore.ontoggle();
}
if (!$installed.collapsed) {
$installed.ontoggle();
}
}
break;
}
}