forked from Acode-Foundation/Acode
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathacode.js
More file actions
498 lines (450 loc) · 13.2 KB
/
acode.js
File metadata and controls
498 lines (450 loc) · 13.2 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
import ajax from "@deadlyjack/ajax";
import Contextmenu from "components/contextmenu";
import inputhints from "components/inputhints";
import Page from "components/page";
import palette from "components/palette";
import settingsPage from "components/settingsPage";
import SideButton from "components/sideButton";
import toast from "components/toast";
import tutorial from "components/tutorial";
import alert from "dialogs/alert";
import box from "dialogs/box";
import colorPicker from "dialogs/color";
import confirm from "dialogs/confirm";
import loader from "dialogs/loader";
import multiPrompt from "dialogs/multiPrompt";
import prompt from "dialogs/prompt";
import select from "dialogs/select";
import fsOperation from "fileSystem";
import keyboardHandler from "handlers/keyboard";
import purchaseListener from "handlers/purchase";
import windowResize from "handlers/windowResize";
import actionStack from "lib/actionStack";
import commands from "lib/commands";
import EditorFile from "lib/editorFile";
import files from "lib/fileList";
import fonts from "lib/fonts";
import NotificationManager from "lib/notificationManager";
import openFolder from "lib/openFolder";
import projects from "lib/projects";
import selectionMenu from "lib/selectionMenu";
import appSettings from "lib/settings";
import FileBrowser from "pages/fileBrowser";
import formatterSettings from "settings/formatterSettings";
import sidebarApps from "sidebarApps";
import ThemeBuilder from "theme/builder";
import themes from "theme/list";
import Url from "utils/Url";
import Color from "utils/color";
import encodings from "utils/encodings";
import helpers from "utils/helpers";
import KeyboardEvent from "utils/keyboardEvent";
import constants from "./constants";
import { addMode, removeMode } from "ace/modelist";
import { addIntentHandler, removeIntentHandler } from "handlers/intent";
import { addedFolder } from "lib/openFolder";
import { decode, encode } from "utils/encodings";
export default class Acode {
#modules = {};
#pluginsInit = {};
#pluginUnmount = {};
#formatter = [
{
id: "default",
name: "Default",
exts: ["*"],
format: async () => {
const { beautify } = ace.require("ace/ext/beautify");
const cursorPos = editorManager.editor.getCursorPosition();
beautify(editorManager.editor.session);
editorManager.editor.gotoLine(cursorPos.row + 1, cursorPos.column);
},
},
];
constructor() {
const encodingsModule = {
get encodings() {
return encodings;
},
encode,
decode,
};
const themesModule = {
add: themes.add,
get: themes.get,
list: themes.list,
update: themes.update,
// Deprecated, not supported anymore
apply: () => {},
};
const sidebarAppsModule = {
add: sidebarApps.add,
get: sidebarApps.get,
remove: sidebarApps.remove,
};
const aceModes = {
addMode,
removeMode,
};
const intent = {
addHandler: addIntentHandler,
removeHandler: removeIntentHandler,
};
this.define("Url", Url);
this.define("page", Page);
this.define("Color", Color);
this.define("fonts", fonts);
this.define("toast", toast);
this.define("alert", alert);
this.define("select", select);
this.define("loader", loader);
this.define("dialogBox", box);
this.define("prompt", prompt);
this.define("intent", intent);
this.define("fileList", files);
this.define("fs", fsOperation);
this.define("confirm", confirm);
this.define("helpers", helpers);
this.define("palette", palette);
this.define("projects", projects);
this.define("tutorial", tutorial);
this.define("aceModes", aceModes);
this.define("themes", themesModule);
this.define("settings", appSettings);
this.define("sideButton", SideButton);
this.define("EditorFile", EditorFile);
this.define("inputhints", inputhints);
this.define("openfolder", openFolder);
this.define("colorPicker", colorPicker);
this.define("actionStack", actionStack);
this.define("multiPrompt", multiPrompt);
this.define("addedfolder", addedFolder);
this.define("contextMenu", Contextmenu);
this.define("fileBrowser", FileBrowser);
this.define("fsOperation", fsOperation);
this.define("keyboard", keyboardHandler);
this.define("windowResize", windowResize);
this.define("encodings", encodingsModule);
this.define("themeBuilder", ThemeBuilder);
this.define("selectionMenu", selectionMenu);
this.define("sidebarApps", sidebarAppsModule);
this.define("createKeyboardEvent", KeyboardEvent);
this.define("toInternalUrl", helpers.toInternalUri);
}
/**
* Define a module
* @param {string} name
* @param {Object|function} module
*/
define(name, module) {
this.#modules[name.toLowerCase()] = module;
}
require(module) {
return this.#modules[module.toLowerCase()];
}
exec(key, val) {
if (key in commands) {
return commands[key](val);
}
return false;
}
/**
* Installs an Acode plugin from registry
* @param {string} pluginId id of the plugin to install
* @param {string} installerPluginName Name of plugin attempting to install
* @returns {Promise<void>}
*/
installPlugin(pluginId, installerPluginName) {
return new Promise((resolve, reject) => {
confirm(
strings.install,
`Do you want to install plugin '${pluginId}'${installerPluginName ? ` requested by ${installerPluginName}` : ""}?`,
)
.then((confirmation) => {
if (!confirmation) {
reject(new Error("User cancelled installation"));
return;
}
fsOperation(Url.join(PLUGIN_DIR, pluginId))
.exists()
.then((isPluginExists) => {
if (isPluginExists) {
reject(new Error("Plugin already installed"));
return;
}
let purchaseToken;
let product;
const pluginUrl = Url.join(
constants.API_BASE,
`plugin/${pluginId}`,
);
fsOperation(pluginUrl)
.readFile("json")
.catch(() => {
reject(new Error("Failed to fetch plugin details"));
return null;
})
.then((remotePlugin) => {
if (remotePlugin) {
const isPaid = remotePlugin.price > 0;
helpers
.promisify(iap.getProducts, [remotePlugin.sku])
.then((products) => {
[product] = products;
if (product) {
return getPurchase(product.productId);
}
return null;
})
.then((purchase) => {
purchaseToken = purchase?.purchaseToken;
if (isPaid && !purchaseToken) {
if (!product) throw new Error("Product not found");
return helpers.checkAPIStatus().then((apiStatus) => {
if (!apiStatus) {
alert(strings.error, strings.api_error);
return;
}
iap.setPurchaseUpdatedListener(
...purchaseListener(onpurchase, onerror),
);
return helpers.promisify(
iap.purchase,
product.json,
);
});
}
})
.then(() => {
import("lib/installPlugin").then(
({ default: installPlugin }) => {
installPlugin(
pluginId,
remotePlugin.name,
purchaseToken,
).then(() => {
resolve();
});
},
);
});
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;
}
}
});
async function getPurchase(sku) {
const purchases = await helpers.promisify(iap.getPurchases);
const purchase = purchases.find((p) =>
p.productIds.includes(sku),
);
return purchase;
}
});
})
.catch((error) => {
reject(error);
});
});
}
get exitAppMessage() {
const numFiles = editorManager.hasUnsavedFiles();
if (numFiles) {
return strings["unsaved files close app"];
}
return null;
}
setLoadingMessage(message) {
document.body.setAttribute("data-small-msg", message);
}
/**
* Sets plugin init function
* @param {string} id
* @param {() => void} initFunction
* @param {{list: import('components/settingsPage').ListItem[], cb: (key: string, value: string)=>void}} settings
*/
setPluginInit(id, initFunction, settings) {
this.#pluginsInit[id] = initFunction;
if (!settings) return;
appSettings.uiSettings[`plugin-${id}`] = settingsPage(
id,
settings.list,
settings.cb,
);
}
setPluginUnmount(id, unmountFunction) {
this.#pluginUnmount[id] = unmountFunction;
}
/**
*
* @param {string} id plugin id
* @param {string} baseUrl local plugin url
* @param {HTMLElement} $page
*/
async initPlugin(id, baseUrl, $page, options) {
if (id in this.#pluginsInit) {
await this.#pluginsInit[id](baseUrl, $page, options);
}
}
unmountPlugin(id) {
if (id in this.#pluginUnmount) {
this.#pluginUnmount[id]();
fsOperation(Url.join(CACHE_STORAGE, id)).delete();
}
delete appSettings.uiSettings[`plugin-${id}`];
}
registerFormatter(id, extensions, format) {
this.#formatter.unshift({
id,
exts: extensions,
format,
});
}
unregisterFormatter(id) {
this.#formatter = this.#formatter.filter(
(formatter) => formatter.id !== id,
);
const { formatter } = appSettings.value;
for (const mode of Object.keys(formatter)) {
if (formatter[mode] === id) {
delete formatter[mode];
}
}
appSettings.update(false);
}
async format(selectIfNull = true) {
const file = editorManager.activeFile;
const name = (file.session.getMode().$id || "").split("/").pop();
const formatterId = appSettings.value.formatter[name];
const formatter = this.#formatter.find(({ id }) => id === formatterId);
await formatter?.format();
if (!formatter && selectIfNull) {
formatterSettings(name);
this.#afterSelectFormatter(name);
return;
}
if (!formatter && !selectIfNull) {
toast(strings["please select a formatter"]);
}
}
#afterSelectFormatter(name) {
appSettings.on("update:formatter", format);
function format() {
appSettings.off("update:formatter", format);
const id = appSettings.value.formatter[name];
const formatter = this.#formatter.find(({ id: _id }) => _id === id);
formatter?.format();
}
}
fsOperation(file) {
return fsOperation(file);
}
newEditorFile(filename, options) {
new EditorFile(filename, options);
}
get formatters() {
return this.#formatter.map(({ id, name, exts }) => ({
id,
name: name || id,
exts,
}));
}
/**
*
* @param {string[]} extensions
* @returns {Array<[id: String, name: String]>} options
*/
getFormatterFor(extensions) {
const options = [[null, strings.none]];
for (const { id, name, exts } of this.formatters) {
const supports = exts.some((ext) => extensions.includes(ext));
if (supports || exts.includes("*")) {
options.push([id, name]);
}
}
return options;
}
alert(title, message, onhide) {
alert(title, message, onhide);
}
loader(title, message, cancel) {
return loader.create(title, message, cancel);
}
joinUrl(...args) {
return Url.join(...args);
}
addIcon(className, src) {
let style = document.head.get(`style[icon="${className}"]`);
if (!style) {
style = (
<style
icon={className}
>{`.icon.${className}{background-image: url(${src})}`}</style>
);
document.head.appendChild(style);
}
}
async prompt(message, defaultValue, type, options) {
const response = await prompt(message, defaultValue, type, options);
return response;
}
async confirm(title, message) {
const confirmation = await confirm(title, message);
return confirmation;
}
async select(title, options, config) {
const response = await select(title, options, config);
return response;
}
async multiPrompt(title, inputs, help) {
const values = await multiPrompt(title, inputs, help);
return values;
}
async fileBrowser(mode, info, openLast) {
const res = await FileBrowser(mode, info, openLast);
return res;
}
async toInternalUrl(url) {
const internalUrl = await helpers.toInternalUri(url);
return internalUrl;
}
/**
* Push a notification
* @param {string} title Title of the notification
* @param {string} message Message body of the notification
* @param {Object} options Notification options
* @param {string} [options.icon] Icon for the notification, can be a URL or a base64 encoded image or icon class or svg string
* @param {boolean} [options.autoClose=true] Whether notification should auto close
* @param {Function} [options.action=null] Action callback when notification is clicked
* @param {('info'|'warning'|'error'|'success')} [options.type='info'] Type of notification
*/
pushNotification(
title,
message,
{ icon, autoClose = true, action = null, type = "info" } = {},
) {
const nm = new NotificationManager();
nm.pushNotification({
title,
message,
icon,
autoClose,
action,
type,
});
}
}