-
Notifications
You must be signed in to change notification settings - Fork 469
/
Copy pathacode.js
341 lines (299 loc) · 9.37 KB
/
acode.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
import Url from "utils/Url";
import fonts from 'lib/fonts';
import box from 'dialogs/box';
import Color from 'utils/color';
import themes from 'theme/list';
import files from 'lib/fileList';
import alert from 'dialogs/alert';
import Page from 'components/page';
import commands from "lib/commands";
import helpers from "utils/helpers";
import projects from "lib/projects";
import prompt from 'dialogs/prompt';
import select from 'dialogs/select';
import loader from 'dialogs/loader';
import fsOperation from "fileSystem";
import toast from 'components/toast';
import sidebarApps from 'sidebarApps';
import confirm from 'dialogs/confirm';
import appSettings from "lib/settings";
import colorPicker from 'dialogs/color';
import EditorFile from "lib/editorFile";
import openFolder from 'lib/openFolder';
import encodings from 'utils/encodings';
import palette from 'components/palette';
import actionStack from 'lib/actionStack';
import tutorial from 'components/tutorial';
import FileBrowser from "pages/fileBrowser";
import ThemeBuilder from 'theme/builder';
import selectionMenu from "lib/selectionMenu";
import multiPrompt from 'dialogs/multiPrompt';
import inputhints from 'components/inputhints';
import KeyboardEvent from 'utils/keyboardEvent';
import keyboardHandler from 'handlers/keyboard';
import windowResize from 'handlers/windowResize';
import Contextmenu from 'components/contextmenu';
import formatterSettings from "settings/formatterSettings";
import settingsPage from 'components/settingsPage';
import SideButton from 'components/sideButton';
import ptyModule, { setup } from "lib/pty";
import { addedFolder } from 'lib/openFolder';
import { decode, encode } from 'utils/encodings';
import { addMode, removeMode } from 'ace/modelist';
import { addIntentHandler, removeIntentHandler } from 'handlers/intent';
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("pty", ptyModule);
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);
}
async initialize() { setup() }
/**
* 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);
} else {
return false;
}
}
get exitAppMessage() {
const numFiles = editorManager.hasUnsavedFiles();
if (numFiles) {
return strings['unsaved files close app'];
}
}
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;
Object.keys(formatter).forEach((mode) => {
if (formatter[mode] === id) {
delete formatter[mode];
}
});
appSettings.update(false);
}
async format(selectIfNull = true) {
const file = editorManager.activeFile;
const { getModeForPath } = ace.require('ace/ext/modelist');
const { name } = getModeForPath(file.filename);
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;
} else 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]];
this.formatters.forEach(({ id, name, exts }) => {
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) {
url = await helpers.toInternalUri(url);
return url;
}
}