-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfiles.js
37 lines (31 loc) · 919 Bytes
/
files.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
function splitDataURL(str) {
const protocolIndex = str.indexOf(":");
const mimeIndex = str.indexOf(";", protocolIndex);
const startIndex = str.indexOf(",", mimeIndex);
return {
type: str.slice(protocolIndex + 1, mimeIndex),
body: str.slice(startIndex + 1),
};
}
// eslint-disable-next-line import/prefer-default-export
export function readFile(file) {
if (!file) {
return Promise.resolve(null);
}
const reader = new FileReader();
const loaded = new Promise((resolve, reject) => {
reader.addEventListener("load", resolve, false);
reader.addEventListener("error", reject, false);
reader.addEventListener("abort", reject, false);
});
reader.readAsDataURL(file);
return loaded.then((event) => {
// data:text/plain;base64,Zm9vCg
const { type, body } = splitDataURL(event.target.result);
return {
body,
type,
name: file.name,
};
});
}