jquery.ocupload-1.1.4_wev8.js
5.1 KB
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
/*
* One Click Upload - jQuery Plugin
* Copyright (c) 2008 Michael Mitchell - http://www.michaelmitchell.co.nz
* Patched/fixed by Andrey Gayvoronsky - http://www.gayvoronsky.com
*/
(function($){
$.fn.upload = function(options) {
// Merge the users options with our defaults
options = $.extend({
name: 'file',
enctype: 'multipart/form-data',
action: '',
autoSubmit: true,
onSubmit: function() {},
onComplete: function() {},
onSelect: function() {},
params: {}
}, options);
return new $.ocupload(this, options);
},
$.ocupload = function(element, options) {
// Fix scope problems
var self = this;
// A unique id so we can find our elements later
var id = new Date().getTime().toString().substr(8);
// Upload Iframe
var iframe = $(
'<iframe '+
'id="iframe'+id+'" '+
'name="iframe'+id+'"'+
'src="#"'+
'></iframe>'
).css({
display: 'none'
});
// Form
var form = $(
'<form '+
'method="post" '+
'enctype="'+options.enctype+'" '+
'action="'+options.action+'" '+
'target="iframe'+id+'"'+
'></form>'
).css({
margin: 0,
padding: 0
});
// File Input
var input = $(
'<input '+
'name="'+options.name+'" '+
'type="file" '+
'/>'
).css({
'width': 'auto',
'position': 'absolute',
'right': 0,
'top': 0,
'opacity': 0,
'zoom': 1,
'filter': 'alpha(opacity=0)',
'border': 0,
'font-size': '10em'
});
// Put everything together
element.wrap('<div></div>'); //container
element.wrap(form);
element.wrap('<span></span>');
// Find the container and make it nice and snug
element.parent().css({
'float': 'left',
'white-space': 'nowrap',
'position': 'relative',
'z-index': 1,
'left': 0,
'top': 0,
'overflow': 'hidden',
'display': 'inline',
'border': 0
});
element.after(input);
element.parent().parent().after(iframe);
form = input.parent().parent(); //FIX for correct submiting
// Watch for file selection
input.change(function() {
// Do something when a file is selected.
self.onSelect();
// Submit the form automaticly after selecting the file
if(self.autoSubmit) {
self.submit();
}
});
// Methods
$.extend(this, {
autoSubmit: options.autoSubmit,
onSubmit: options.onSubmit,
onComplete: options.onComplete,
onSelect: options.onSelect,
// get filename
filename: function() {
return input.attr('value');
},
// get/set params
params: function(params) {
var params = params ? params : false;
if(params) {
options.params = $.extend(options.params, params);
}
else {
return options.params;
}
},
// get/set name
name: function(name) {
var name = name ? name : false;
if(name) {
input.attr('name', value);
}
else {
return input.attr('name');
}
},
// get/set action
action: function(action) {
var action = action ? action : false;
if(action) {
form.attr('action', action);
}
else {
return form.attr('action');
}
},
// get/set enctype
enctype: function(enctype) {
var enctype = enctype ? enctype : false;
if(enctype) {
form.attr('enctype', enctype);
}
else {
return form.attr('enctype');
}
},
// set options
set: function(obj, value) {
var value = value ? value : false;
function option(action, value) {
switch(action) {
default:
throw new Error('[jQuery.ocupload.set] \''+action+'\' is an invalid option.');
break;
case 'name':
self.name(value);
break;
case 'action':
self.action(value);
break;
case 'enctype':
self.enctype(value);
break;
case 'params':
self.params(value);
break;
case 'autoSubmit':
self.autoSubmit = value;
break;
case 'onSubmit':
self.onSubmit = value;
break;
case 'onComplete':
self.onComplete = value;
break;
case 'onSelect':
self.onSelect = value;
break;
}
}
if(value) {
option(obj, value);
}
else {
$.each(obj, function(key, value) {
option(key, value);
});
}
},
// Submit the form
submit: function() {
// Do something before we upload
this.onSubmit();
// add additional paramters before sending
$.each(options.params, function(key, value) {
form.append($(
'<input '+
'type="hidden" '+
'name="'+key+'" '+
'value="'+value+'" '+
'/>'
));
});
// Submit the actual form.
// In that way, because we don't want jquery events (it fires submit event for other parent form)
form.get(0).submit();
// Do something after we are finished uploading
iframe.unbind().load(function() {
// Get a response from the server in plain text
var myFrame = document.getElementById(iframe.attr('name'));
var response = $(myFrame.contentWindow.document.body).text();
// Do something on complete
self.onComplete(response); //done :D
});
}
});
}
})(jQuery);