-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfile_read.js
56 lines (55 loc) · 1.42 KB
/
file_read.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
/**
* This file iplements functinalities to read text from local files.
* Usage:
* var text = '';
* loadLocalFile(function(allText){
* text = allText;
* });
*
*/
(function (d) {
'use strict';
var $input = {
input: null,
get: function () {
var localReference = this;
if (this.input === null) {
this.input = d.createElement("input");
this.input.style = "display: none";
this.input.multiple = "true";
this.input.type = "file";
this.input.onchange = function () {
localReference.loadText();
};
d.body.appendChild(this.input);
}
return this.input;
},
click: function () {
this.get().click();
},
loadText: function (callback) {
var reader = new FileReader();
var localReference = this;
var text = "";
var loadCount = 0;
var callb = callback || this.callback;
reader.onload = function () {
text += reader.result;
if (++loadCount >= localReference.get().files.length)
callb.call(this, text);
else {
reader.readAsText(localReference.get().files[loadCount]);
}
};
if (localReference.get().files[0].size) {
reader.readAsText(localReference.get().files[0]);
}
}
};
var loadText = function (callback) {
$input.callback = callback;
$input.click();
}
window.loadLocalFile = loadText;
})(document);