-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathfile.js
633 lines (585 loc) · 22 KB
/
file.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
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
/**
Copyright 2014 Gordon Williams (gw@pur3.co.uk)
This Source Code is subject to the terms of the Mozilla Public
License, v2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
------------------------------------------------------------------
File Load/Save
------------------------------------------------------------------
FIXME:
* setOpenFileMode should be per file?
* Seatch for Espruino.Core.EditorJavaScript.get/set* and remove/change what we can get away with
**/
"use strict";
(function(){
// how many millisecs between checking a file for modification?
const WATCH_INTERVAL = 1000;
// types of file we accept
const FILETYPES = {
all : { // used when opening a file dialog
name:"code.js",
description:"All supported files",
mimeTypes : {"application/javascript": [".js", ".js"], "text/plain": [".txt"],"text/xml": [".xml"]},
},
js : {
name:"code.js",
icon:"📄",
description:"JavaScript files",
mimeTypes : {"application/javascript": [".js", ".js"], "text/plain": [".txt"]},
},
xml : {
name:"code_blocks.xml",
icon:"🧩",
description:"Blockly XML files",
mimeTypes : {"text/xml": [".xml"]},
}
};
var iconOpenFile;
var iconSaveFile;
var iconViewMode;
// interval used when checking files for modification
var watchInterval;
// What we should do when clicking the 'openFile' button
var openFileMode = "open"; // open, reload, watch, upload
/* Files contains objects of this type:
type :"js"/"xml"
fileName : "Untitled.js"
storageName : "", // file on Espruino device (Espruino.Config.SAVE_STORAGE_FILE)
sendMode : 0, // file on Espruino device (Espruino.Config.SAVE_ON_SEND)
contents : "", // the actual file contents
handle // file handle if loaded using file API
editor // if JS, this is from Espruino.Core.EditorJavaScript.createNewEditor
*/
// List of currently open file tabs
var files = [ ];
var activeFile = 0; // index of active file in `files`
/* options = {
type : "js"/"xml"
fileName : string
isEmpty : bool
contents : string
}
*/
function getDefaultFile(options) {
options = options||{};
if (!options.type) { // guess file type if not provided
options.type="js";
if (options.fileName && options.fileName.toLowerCase().endsWith(".xml"))
options.type = "xml";
}
var file = {
type : options.type, // "js"/"xml"
fileName : "Untitled."+options.type, // file path in filesystem
storageName : "", // file on Espruino device (Espruino.Config.SAVE_STORAGE_FILE)
sendMode : Espruino.Core.Send.SEND_MODE_RAM, // file on Espruino device (Espruino.Config.SAVE_ON_SEND)
contents : "", // the actual file contents
};
if (options.fileName) file.fileName = options.fileName;
if (options.storageName) {
file.storageName = options.storageName;
file.sendMode = Espruino.Core.Send.SEND_MODE_STORAGE;
}
if (options.contents)
file.contents = options.contents;
else if (!options.isEmpty) {
if (options.type=="js")
file.contents = Espruino.Core.EditorJavaScript.DEFAULT_CODE;
else if (options.type=="xml")
file.contents = Espruino.Core.EditorBlockly.DEFAULT_CODE;
else
console.log("Espruino.Core.File unknown file type!");
}
return file;
}
// Sets the file and the editor up with the file's contents
function setFileEditorContents(file, value, options) {
options = options||{};
file.contents = value;
if (file.editor) {
file.editor.setCode(value);
// If `options.clearHistory`, then mark editor as clean with no
// existing undo history. Using this for newly-created editors
// will ensure that the first entry in the Undo history sets the
// contents to `value` and not empty.
if (options.clearHistory) file.editor.codeMirror.clearHistory();
} else if (file.type=="xml") {
Espruino.Core.EditorBlockly.setXML(value);
}
}
function setActiveFile(idx) {
if (idx<0 || idx>=files.length) throw new Error("File index out of range");
// Old state should all be saved automatically...
// Apply new state
activeFile = -1; // so we don't try and update this file when things change
if(typeof window !== 'undefined' && window.localStorage)
window.localStorage.setItem(`FILE_ACTIVE`, idx);
Espruino.Config.set("SAVE_ON_SEND", 0|files[idx].sendMode);
Espruino.Config.set("SAVE_STORAGE_FILE", files[idx].storageName||"");
setCurrentFileName(files[idx].fileName);
Espruino.Core.EditorJavaScript.hideAll();
if (files[idx].type == "js") {
Espruino.Core.EditorBlockly.setVisible(false);
if (files[idx].editor==undefined) {
// if we didn't have an editor, make one
files[idx].editor = Espruino.Core.EditorJavaScript.createNewEditor();
setFileEditorContents(files[idx], files[idx].contents, {clearHistory: true});
} else {
files[idx].editor.setVisible(true);
}
iconViewMode.setIcon("code");
files[idx].editor.codeMirror.focus();
} else { // xml
Espruino.Core.EditorBlockly.setVisible(true);
Espruino.Core.EditorBlockly.setXML(files[idx].contents);
iconViewMode.setIcon("block");
}
activeFile = idx; // now we're ok to set the active file
saveFileConfig();
// we need to change which tab is active
updateFileTabs();
// Change the state of the send icon
Espruino.Core.Send.updateIconInfo();
}
function loadFileConfig() {
if (typeof window == 'undefined' || !window.localStorage) return;
var fileCount = 0|window.localStorage.getItem(`FILES`);
files = [];
for (var idx=0;idx<fileCount;idx++) {
var file = {};
file.contents = window.localStorage.getItem(`FILE${idx}_CODE`);
try {
var info = JSON.parse(window.localStorage.getItem(`FILE${idx}_INFO`));
file.type = info.type;
if (!file.type) file.type="js";
file.fileName = info.fileName;
file.storageName = info.storageName;
file.sendMode = info.sendMode;
files.push(file);
} catch(e) {
}
}
var newActiveFile = 0|window.localStorage.getItem(`FILE_ACTIVE`);
if (files.length==0)
files.push(getDefaultFile()); // add defualt file if no files
if (newActiveFile<0 || newActiveFile>=files.length)
newActiveFile = 0; // reset active file
setActiveFile(newActiveFile)
}
function saveFileConfig() {
if (typeof window == 'undefined' || !window.localStorage) return;
window.localStorage.setItem(`FILES`, files.length);
window.localStorage.setItem(`FILE_ACTIVE`, activeFile);
files.forEach((file,idx) => {
window.localStorage.setItem(`FILE${idx}_CODE`, file.contents);
window.localStorage.setItem(`FILE${idx}_INFO`, JSON.stringify({
type : file.type,
fileName : file.fileName,
storageName : file.storageName,
sendMode : file.sendMode
}));
});
}
function createFileTabs() {
var element = Espruino.Core.HTML.domElement('<div id="file_list"></div>');
// add file tabs after left icons (so in the middle, before --right)
document.querySelector(".toolbar__buttons--left").after(element);
}
function closeFileTab(idx) {
// TODO: Check whether it needs saving?
console.log(`File> Closing tab ${idx}: ${files[idx].fileName}`);
if (activeFile==idx) {
// Change to a new file
if (activeFile>0) setActiveFile(activeFile-1);
else {
if (files.length<2) { // if not enough files, add a new file
files.push(getDefaultFile());
}
setActiveFile(activeFile+1);
}
}
// if we had an editor, remove the editor
var file = files[idx];
if (file.editor) {
file.editor.remove();
file.editor = undefined;
}
// remove the old one from the list
files.splice(idx,1);
if (activeFile>idx) activeFile--;
// update the file list
saveFileConfig();
updateFileTabs();
}
// Create a new tab, see getDefaultFile for options
function createNewTab(options) {
options = options||{};
var file = getDefaultFile(options);
files.push(file);
// Set active tab - this saves and updates the file tab list
setActiveFile(files.length-1);
return file;
}
function showNewFileDialog() {
var popup = Espruino.Core.App.openPopup({
title: "New file...",
contents: Espruino.Core.HTML.domList([
{
icon : "icon-code",
title : "JavaScript",
callback : function() {
popup.close();
createNewTab({type:"js"});
}
},
{
icon : "icon-block",
title : "Blockly",
callback : function() {
popup.close();
createNewTab({type:"xml"});
}
}
]),
position: "center",
});
}
function updateFileTabs() {
var fileList = document.querySelector("#file_list");
fileList.innerHTML = files.map( (f,idx) => {
let active = activeFile==idx;
return `<span class="file_list-tab ${active?'active':'inactive'}" fileIndex="${idx}">${FILETYPES[f.type].icon} ${f.fileName||"Untitled"}${active?' <span class="close">✕</span>':""}</span>`
}).join("") + `<span class="file_list-new">+</span>`;
var node = fileList.firstChild;
while (node) {
node.addEventListener("click", function(e) {
e.preventDefault();
if (e.target.classList.contains("close")) {
closeFileTab(activeFile);
} else if (e.target.classList.contains("file_list-new")) {
showNewFileDialog();
} else if (e.target.classList.contains("file_list-tab")) {
setActiveFile(parseInt(e.target.getAttribute("fileIndex")));
} else
console.log("Unexpected element clicked", e.target);
});
node = node.nextSibling;
}
}
function init() {
// Open file icon
var icon = {
id: "openFile",
icon: "folder-open",
title : "Open File",
order: 100,
area: {
name: "code",
position: "top"
},
click: function() {
loadFile([FILETYPES.all,FILETYPES.js,FILETYPES.xml]);
}
};
// Only add extra options if showOpenFilePicker is available
if ((typeof window.showOpenFilePicker === 'function') && !Espruino.Core.Utils.isCrossOriginSubframe()) {
icon.more = function() {
var popup = Espruino.Core.App.openPopup({
id: "fileopenmodeselector",
title: "Open File should...",
contents: Espruino.Core.HTML.domList([{
icon : "icon-folder-open", title : "Open File",
description : "Load file from disk", callback : function() { setOpenFileMode("open");popup.close(); }
},{
icon : "icon-folder-open", title : "Reload File",
description : "Reload the current file", callback : function() { setOpenFileMode("reload");popup.close(); }
},{
icon : "icon-refresh", title : "Watch File",
description : "Watch for changes", callback : function() { setOpenFileMode("watch");popup.close(); }
},{
icon : "icon-refresh", title : "Watch and Upload",
description : "Watch for changes and upload", callback : function() { setOpenFileMode("upload");popup.close(); }
}
]),
position: "center",
});
};
icon.info = "open";
}
iconOpenFile = Espruino.Core.App.addIcon(icon);
// Save file icon
iconSaveFile = Espruino.Core.App.addIcon({
id: "saveFile",
icon: "save",
title : "Save File",
order: 200,
area: {
name: "code",
position: "top"
},
click: function() {
saveFile(files[activeFile]);
}
});
// Setup code mode (js/blockly) button
iconViewMode = Espruino.Core.App.addIcon({
id: "code",
icon: "code",
title : "Switch between Code and Graphical Designer",
order: 0,
area: {
name: "code",
position: "bottom"
},
click: function() {
var switchToType = (files[activeFile].type == "xml") ? "js" : "xml";
var idx = files.findIndex(f => f.type==switchToType);
if (idx>=0) {
// we found one! switch
setActiveFile(idx);
} else {
// else we didn't find one - make a new tab
createNewTab({type:switchToType});
}
}
});
// Create the tabs showing what files we have
createFileTabs();
// Handle file send mode or JS changed
Espruino.addProcessor("sendModeChanged", function(_, callback) {
if (activeFile>=0 && activeFile<files.length) {
var f = files[activeFile];
f.storageName = Espruino.Config.SAVE_STORAGE_FILE;
f.sendMode = Espruino.Config.SAVE_ON_SEND;
if (f.storageName!="" && f.type=="js" && f.fileName=="Untitled.js") {
f.fileName = f.storageName;
if (!f.fileName.endsWith(".js"))
f.fileName += ".js";
updateFileTabs();
}
saveFileConfig();
}
callback(_);
});
Espruino.addProcessor("jsCodeChanged", function(data, callback) {
var file = files.find(f=>f.editor == data.editor);
if (file) {
file.contents = data.code;
if(typeof window !== 'undefined' && window.localStorage)
window.localStorage.setItem(`FILE${activeFile}_CODE`, data.code);
} else
console.warn("Got jsCodeChanged but can't match it to an editor");
callback(data);
});
Espruino.addProcessor("xmlCodeChanged", function(data, callback) {
if (files[activeFile] && files[activeFile].type=="xml") {
files[activeFile].contents = data.code;
if(typeof window !== 'undefined' && window.localStorage)
window.localStorage.setItem(`FILE${activeFile}_CODE`, data.code);
}
callback(data);
});
// get code from our config area at bootup
Espruino.addProcessor("initialised", function(data,callback) {
loadFileConfig();
updateFileTabs();
callback(data);
});
}
function setOpenFileMode(mode) {
iconOpenFile.setInfo(mode);
openFileMode = mode;
if (watchInterval) clearInterval(watchInterval);
watchInterval = undefined;
// if we're in
if (openFileMode == "watch" || openFileMode == "upload") {
watchInterval = setInterval(function() {
files.forEach((file) => {readFileContents(file)});
}, WATCH_INTERVAL);
}
}
function setCurrentFileName(filename) {
// we need to update the file list
if (activeFile>=0 && activeFile<files.length) {
files[activeFile].fileName = filename;
updateFileTabs();
saveFileConfig();
}
}
/** Handle newline conversions - Windows expects newlines as /r/n when we're saving/loading files */
function convertFromOS(chars) {
if (!Espruino.Core.Utils.isWindows()) return chars;
return chars.replace(/\r\n/g,"\n");
};
/** Handle newline conversions - Windows expects newlines as /r/n when we're saving/loading files */
function convertToOS(chars) {
if (!Espruino.Core.Utils.isWindows()) return chars;
return chars.replace(/\r\n/g,"\n").replace(/\n/g,"\r\n");
};
function getFilePickerTypes(fileTypes) {
return fileTypes.map(fileType => ({description:fileType.description, accept: fileType.mimeTypes}));
}
function loadFile(fileTypes) {
/* if clicking the button should just reload the existing file, do that */
if (openFileMode == "reload" && files[activeFile].handle) {
readFileContents(files[activeFile]);
return;
}
// Otherwise load a new file
if ((typeof window.showOpenFilePicker === 'function') && !Espruino.Core.Utils.isCrossOriginSubframe()) {
window.showOpenFilePicker({types: getFilePickerTypes(fileTypes)}).
then(function(fileHandles) {
fileHandles.forEach(fileHandle => {
if (!fileHandle.name) return;
var file = createNewTab({fileName:fileHandle.name, isEmpty:true});
file.handle = fileHandle;
readFileContents(file, {clearHistory: true});
});
});
} else if (("undefined"!=typeof chrome) && chrome.fileSystem) {
// Chrome Web App / NW.js
chrome.fileSystem.chooseEntry({type: 'openFile'}, function(fileEntry) {
if (!fileEntry) return;
fileEntry.file(function(file) {
var reader = new FileReader();
reader.onload = function(e) {
var file = createNewTab({fileName:fileEntry.name, isEmpty:true});
setFileEditorContents(file, convertFromOS(e.target.result), {clearHistory: true});
};
reader.onerror = function() {
Espruino.Core.Notifications.error("Error Loading", true);
};
reader.readAsText(file);
});
});
} else {
var mimeTypes = { };
fileTypes.forEach( fileType => {
mimeTypes = Object.assign(mimeTypes, fileType.mimeTypes);
});
var mimeTypeList = Object.values(mimeTypes) + "," + Object.keys(mimeTypes);
Espruino.Core.Utils.fileOpenDialog({id:"code",type:"text",mimeType:mimeTypeList}, function(data, mimeType, fileName) {
var file = createNewTab({fileName:fileName, isEmpty:true});
setFileEditorContents(file, convertFromOS(data), {clearHistory: true});
});
}
}
// read a file from window.showOpenFilePicker
function readFileContents(fileToLoad, options) {
options = options||{};
if (options.clearHistory === undefined) options.clearHistory = false;
if (!fileToLoad.handle) {
return;
}
var file;
fileToLoad.handle.getFile().then(function(f) {
file = f;
// if file is newer, proceed to load it
if (!fileToLoad.lastModified ||
file.lastModified > fileToLoad.lastModified)
return file.text();
else
return undefined;
}).then(function(contents) {
if (!contents) return;
// if loaded, update editor
fileToLoad.lastModified = file.lastModified;
setFileEditorContents(fileToLoad, convertFromOS(contents), {clearHistory: options.clearHistory});
if (openFileMode == "upload") {
Espruino.Core.Notifications.info(new Date().toLocaleTimeString() + ": " + fileToLoad.name+" changed, uploading...");
Espruino.Plugins.KeyShortcuts.action("icon-deploy");
}
});
}
function saveFile(fileToSave) {
/* TODO: if fileToSave.handle, we could write direct to this
file without the dialog. But then what do we do for 'save as'? The down-arrow
next to the icon? */
if (window.showSaveFilePicker && !Espruino.Core.Utils.isCrossOriginSubframe()) {
var writable, handle;
window.showSaveFilePicker({
suggestedName:fileToSave.fileName,
types: getFilePickerTypes([FILETYPES[fileToSave.type||"js"]])
}).
then(h => {
handle = h;
return handle.createWritable()
}).
then(w => {
writable = w;
var fileBlob = new Blob([fileToSave.contents], {type: "text/plain"});
return writable.write(fileBlob);
}).
then(() => writable.close()).
then(() => {
if (files[activeFile])
files[activeFile].handle = handle;
if (handle.name) setCurrentFileName(handle.name);
});
return
}
Espruino.Core.Utils.fileSaveDialog(convertToOS(fileToSave.contents), fileToSave.fileName, function(name) {
setCurrentFileName(name);
});
}
// Set the editor's JS code (and if it doesn't exist, make a new tab)
function setJSCode(code, options) {
options = options||{};
if (!options.fileName)
options.fileName = "code.js";
var file = files.find(file => file.fileName==options.fileName);
let newEditorOpened = false;
if (!file) {
file = createNewTab({
type:"js",
fileName:options.fileName,
storageName:options.isStorageFile ? options.fileName : undefined,
isEmpty:true,
contents:code});
newEditorOpened = true;
} else {
if (files[activeFile] != file)
setActiveFile(files.indexOf(file));
setFileEditorContents(file, code, {clearHistory: newEditorOpened});
}
}
function getCurrentCode() {
var file = files[activeFile];
if (!file) return;
if (file.type=="xml") // blockly code needs to be translated to JS first!
return Espruino.Core.EditorBlockly.getCode();
return file.contents;
}
function getEspruinoCode(callback) {
Espruino.callProcessor("transformForEspruino", getCurrentCode(), callback);
}
function isInBlockly() {
return files[activeFile] && files[activeFile].type=="xml";
}
function focus() {
var file = files[activeFile];
if (!file) return;
if (file.type=="xml")
document.querySelector("#divblockly").focus();
else if (file.editor)
file.editor.codeMirror.focus();
}
function switchTo(fileType) {
var file = files.find(file => file.type==fileType);
if (!file)
file = createNewTab({type:fileType});
if (files[activeFile] != file)
setActiveFile(files.indexOf(file));
}
Espruino.Core.File = {
init : init,
getActiveFile : () => files[activeFile], // Get the object representing the currently active file
showFile : file=> setActiveFile(files.indexOf(file)), // Given a file object (from getActiveFile), make sure it's showing
getCurrentCode : getCurrentCode, // Get the code for the currently active tab
getEspruinoCode : getEspruinoCode, // Get the current code in a form that is ready to send to Espruino
setJSCode : setJSCode, // (code, {fileName...,}}) called when the contents of the code window is to be set (eg from a URL)
isInBlockly : isInBlockly, // are we currently showing a Blockly window
focus : focus, // give focus to the current editor
switchToCode: () => switchTo("js"), // switch to show JS code - if it doesn't exist, make a tab
switchToBlockly: () => switchTo("xml") // switch to show XML code - if it doesn't exist, make a tab
};
}());