forked from AVapps/FileReader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.FileReader.js
372 lines (336 loc) · 9.43 KB
/
jquery.FileReader.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
(function( $ ){
var readyCallbacks = $.Callbacks('once unique memory'),
inputsCount = 0,
currentTarget = null;
// if native FileReader support, then dont add the polyfill and make the plugin do nothing
if (window.FileReader) {
$.fn.fileReader = function() { return this; };
return ;
}
/**
* JQuery Plugin
*/
$.fn.fileReader = function( options ) {
options = $.extend({}, $.fn.fileReader.defaults, options);
var self = this;
readyCallbacks.add(function() {
return main(self, options);
});
if ($.isFunction(options.callback)) readyCallbacks.add(options.callback);
if (!FileAPIProxy.ready && !FileAPIProxy.hasInitialized) {
FileAPIProxy.init(options);
}
return this;
};
/**
* Default options
* allows user set default options
*/
$.fn.fileReader.defaults = {
id : 'fileReaderSWFObject', // ID for the created swf object container,
multiple : null,
accept : null,
label : null,
extensions : null,
filereader : 'files/filereader.swf', // The path to the filereader swf file
expressInstall : null, // The path to the express install swf file
debugMode : false,
callback : false, // Callback function when Filereader is ready
position : 'fixed',
appendTo : 'body',
offsetCss : function (trigger) {
return trigger.offset();
}
};
/**
* Plugin callback
* adds an input to registry
*/
var main = function(el, options) {
return el.each(function(i, input) {
var trigger = $(options.trigger || input);
input = $(input);
var id = input.attr('id');
if (!id) {
id = 'flashFileInput' + inputsCount;
input.attr('id', id);
inputsCount++;
}
options.multiple = !!(options.multiple === null ? input.attr('multiple') : options.multiple);
options.accept = options.accept === null ? input.attr('accept') : options.accept;
FileAPIProxy.inputs[id] = input;
FileAPIProxy.swfObject.add(id, options.multiple, options.accept, options.label, options.extensions);
trigger.add(input)
.css('z-index', 0)
.mouseover(function (e) {
if (id !== currentTarget) {
e = e || window.event;
currentTarget = id;
FileAPIProxy.swfObject.mouseover(id);
}
FileAPIProxy.container
.height(trigger.outerHeight())
.width(trigger.outerWidth())
.css(options.offsetCss(trigger));
})
.click(function(e) {
e.preventDefault();
e.stopPropagation();
e.stopImmediatePropagation();
return false;
});
});
};
/**
* Flash FileReader Proxy
*/
window.FileAPIProxy = {
ready: false,
hasInitialized: false,
init: function(o) {
var self = this;
this.hasInitialized = true;
this.debugMode = o.debugMode;
this.container = $('<div>').attr('id', o.id)
.wrap('<div>')
.parent()
.css({
position: o.position,
// top:'0px',
width:'1px',
height:'1px',
display:'inline-block',
background:'transparent',
'z-index':99999
})
// Hands over mouse events to original input for css styles
.on('mouseover mouseout mousedown mouseup', function(evt) {
if(currentTarget) $('#' + currentTarget).trigger(evt.type);
})
.appendTo(o.appendTo);
function swfLoadEvent(e, fn) {
var initialTimeout = setTimeout(function () {
//Ensure Flash Player's PercentLoaded method is available and returns a value
if (typeof e.ref.PercentLoaded !== 'undefined') {
//Set up a timer to periodically check value of PercentLoaded
var loadCheckInterval = setInterval(function () {
if (self.debugMode) console.info('SWF Load Percentage: ', e.ref.PercentLoaded());
//Once value == 100 (fully loaded) we can do whatever we want
if (e.ref.PercentLoaded() === 100) {
fn();
clearInterval(loadCheckInterval);
}
}, 500);
}
}, 200);
}
swfobject.embedSWF(o.filereader, o.id, '100%', '100%', '10', o.expressInstall, {debugMode: o.debugMode ? true : ''}, {'wmode':'transparent','allowScriptAccess':'sameDomain'}, {}, function(e) {
self.swfObject = e.ref;
$(self.swfObject)
.css({
display: 'block',
outline: 0
})
.attr('tabindex', 0);
if (e.success) {
swfLoadEvent(e, function () {
if (self.ready) {
readyCallbacks.fire();
}
self.ready = $.isFunction(e.ref.add);
});
} else {
self.hasInitialized = false;
}
});
},
swfObject: null,
container: null,
// Inputs Registry
inputs: {},
// Readers Registry
readers: {},
// Receives FileInput events
onFileInputEvent: function(evt) {
if (this.debugMode) console.info('FileInput Event ', evt.type, evt);
if (evt.target in this.inputs) {
var el = this.inputs[evt.target];
evt.target = el[0];
if( evt.type === 'change') {
evt.files = new FileList(evt.files);
evt.target = {files: evt.files};
}
el.trigger(evt);
}
window.focus();
},
// Receives FileReader ProgressEvents
onFileReaderEvent: function(evt) {
if (this.debugMode) console.info('FileReader Event ', evt.type, evt, evt.target in this.readers);
if (evt.target in this.readers) {
var reader = this.readers[evt.target];
evt.target = reader;
reader._handleFlashEvent.call(reader, evt);
}
},
// Receives flash FileReader Error Events
onFileReaderError: function(error) {
if (this.debugMode) console.log(error);
},
onSWFReady: function () {
this.container.css({position: 'absolute'});
this.ready = $.isFunction(this.swfObject.add);
if (this.ready) {
readyCallbacks.fire();
}
return true;
}
};
/**
* Add FileReader to the window object
*/
window.FileReader = function () {
// states
this.EMPTY = 0;
this.LOADING = 1;
this.DONE = 2;
this.readyState = 0;
// File or Blob data
this.result = null;
this.error = null;
// event handler attributes
this.onloadstart = null;
this.onprogress = null;
this.onload = null;
this.onabort = null;
this.onerror = null;
this.onloadend = null;
// Event Listeners handling using JQuery Callbacks
this._callbacks = {
loadstart : $.Callbacks( "unique" ),
progress : $.Callbacks( "unique" ),
abort : $.Callbacks( "unique" ),
error : $.Callbacks( "unique" ),
load : $.Callbacks( "unique" ),
loadend : $.Callbacks( "unique" )
};
// Custom properties
this._id = null;
};
window.FileReader.prototype = {
// async read methods
readAsBinaryString: function (file) {
this._start(file);
FileAPIProxy.swfObject.read(file.input, file.name, 'readAsBinaryString');
},
readAsText: function (file, encoding) {
this._start(file);
FileAPIProxy.swfObject.read(file.input, file.name, 'readAsText');
},
readAsDataURL: function (file) {
this._start(file);
FileAPIProxy.swfObject.read(file.input, file.name, 'readAsDataURL');
},
readAsArrayBuffer: function(file){
throw("Whoops FileReader.readAsArrayBuffer is unimplemented");
},
abort: function () {
this.result = null;
if (this.readyState === this.EMPTY || this.readyState === this.DONE) return;
FileAPIProxy.swfObject.abort(this._id);
},
// Event Target interface
addEventListener: function (type, listener) {
if (type in this._callbacks) this._callbacks[type].add(listener);
},
removeEventListener: function (type, listener) {
if (type in this._callbacks) this._callbacks[type].remove(listener);
},
dispatchEvent: function (event) {
event.target = this;
if (event.type in this._callbacks) {
var fn = this['on' + event.type];
if ($.isFunction(fn)) fn(event);
this._callbacks[event.type].fire(event);
}
return true;
},
// Custom private methods
// Registers FileReader instance for flash callbacks
_register: function(file) {
this._id = file.input + '.' + file.name;
FileAPIProxy.readers[this._id] = this;
},
_start: function(file) {
this._register(file);
if (this.readyState === this.LOADING) throw {type: 'InvalidStateError', code: 11, message: 'The object is in an invalid state.'};
},
_handleFlashEvent: function(evt) {
switch (evt.type) {
case 'loadstart':
this.readyState = this.LOADING;
break;
case 'loadend':
this.readyState = this.DONE;
break;
case 'load':
this.readyState = this.DONE;
this.result = FileAPIProxy.swfObject.result(this._id);
break;
case 'error':
this.result = null;
this.error = {
name: 'NotReadableError',
message: 'The File cannot be read!'
};
}
this.dispatchEvent(new FileReaderEvent(evt));
}
};
/**
* FileReader ProgressEvent implenting Event interface
*/
FileReaderEvent = function (e) {
this.initEvent(e);
};
FileReaderEvent.prototype = {
initEvent: function (event) {
$.extend(this, {
type: null,
target: null,
currentTarget: null,
eventPhase: 2,
bubbles: false,
cancelable: false,
defaultPrevented: false,
isTrusted: false,
timeStamp: new Date().getTime()
}, event);
},
stopPropagation: function (){
},
stopImmediatePropagation: function (){
},
preventDefault: function (){
}
};
/**
* FileList interface (Object with item function)
*/
FileList = function(array) {
if (array) {
for (var i = 0; i < array.length; i++) {
this[i] = array[i];
}
this.length = array.length;
} else {
this.length = 0;
}
};
FileList.prototype = {
item: function(index) {
if (index in this) return this[index];
return null;
}
};
})( jQuery );