-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirectoryimporter.js
109 lines (87 loc) · 2.9 KB
/
directoryimporter.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
/**
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {
fileOpen,
directoryOpen,
fileSave,
supported
} from 'https://unpkg.com/browser-fs-access';
(async () => {
if (supported) {
console.log('Using the File System Access API.');
} else {
console.log('Using the fallback implementation.');
}
const listDirectory = (blobs) => {
let fileStructure = '';
blobs
.sort((a, b) => a.webkitRelativePath.localeCompare(b))
.forEach((blob) => {
// The File System Access API currently reports the `webkitRelativePath`
// as empty string `''`.
fileStructure += `${blob.webkitRelativePath}\n`;
});
console.log(fileStructure);
};
const openDirectoryButton = document.querySelector('#opendirectorybutton');
openDirectoryButton.addEventListener('click', async () => {
try {
blobs = await directoryOpen();
//console.log(blobs[0].name)
//const blobs2 = blobs[0]
//const url = URL.createObjectURL(blobs2);
//var audiothingy = document.getElementById("audio")
//audiothingy.src = url;
//console.log(url)
for (let i = 0; i < blobs.length; i++) {
CreateBox(i,blobs[i].name)
directoryselector_off()
console.log(i)
}
//listDirectory(blobs);
} catch (err) {
if (err.name !== 'AbortError') {
return console.error(err);
}
console.log('The user aborted a request.');
}
});
openDirectoryButton.disabled = false;
////////////////////////
const saveButton = document.querySelector('#saveprodbutton2');
saveButton.addEventListener('click', async () => {
try {
// Save a file.
//gets to here is save button is pressed
console.log("ABOUT TO ATTEMPT TO SAVE ARRAY TO FILE")
var arraylength = CueArray.length;
const now = new Date()
var jsonpasser = JSON.stringify(CueArray, null, ' ')
//console.log(jsonpasser)
var blob = new Blob([jsonpasser], { type: "application/json" });
await fileSave(blob, {
fileName: 'UntitledProduction.gocue',
extensions: ['.gocue'],
excludeAcceptAllOption: true,
});
} catch (err) {
if (err.name !== 'AbortError') {
return console.error(err);
}
console.log('The user aborted a request.');
}
});
})();