rails-jquery-fileupload 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.md +67 -0
- data/Rakefile +15 -0
- data/lib/jquery/fileupload/rails/engine.rb +8 -0
- data/lib/jquery/fileupload/rails/middleware.rb +59 -0
- data/lib/jquery/fileupload/rails/upload.rb +3 -0
- data/lib/jquery/fileupload/rails/version.rb +7 -0
- data/lib/rails-jquery-fileupload.rb +8 -0
- data/vendor/assets/images/loading.gif +0 -0
- data/vendor/assets/javascripts/jquery-fileupload/all.js +13 -0
- data/vendor/assets/javascripts/jquery-fileupload/basic.js +4 -0
- data/vendor/assets/javascripts/jquery-fileupload/cors/jquery.postmessage-transport.js +117 -0
- data/vendor/assets/javascripts/jquery-fileupload/cors/jquery.xdr-transport.js +87 -0
- data/vendor/assets/javascripts/jquery-fileupload/jquery.fileupload-audio.js +106 -0
- data/vendor/assets/javascripts/jquery-fileupload/jquery.fileupload-image.js +309 -0
- data/vendor/assets/javascripts/jquery-fileupload/jquery.fileupload-process.js +172 -0
- data/vendor/assets/javascripts/jquery-fileupload/jquery.fileupload-ui.js +699 -0
- data/vendor/assets/javascripts/jquery-fileupload/jquery.fileupload-validate.js +119 -0
- data/vendor/assets/javascripts/jquery-fileupload/jquery.fileupload-video.js +106 -0
- data/vendor/assets/javascripts/jquery-fileupload/jquery.fileupload.js +1420 -0
- data/vendor/assets/javascripts/jquery-fileupload/jquery.iframe-transport.js +214 -0
- data/vendor/assets/javascripts/jquery-fileupload/locale.js +29 -0
- data/vendor/assets/javascripts/jquery-fileupload/vendor/canvas-to-blob.js +95 -0
- data/vendor/assets/javascripts/jquery-fileupload/vendor/jquery.ui.widget.js +530 -0
- data/vendor/assets/javascripts/jquery-fileupload/vendor/load-image.js +1446 -0
- data/vendor/assets/javascripts/jquery-fileupload/vendor/tmpl.js +87 -0
- metadata +111 -0
@@ -0,0 +1,214 @@
|
|
1
|
+
/*
|
2
|
+
* jQuery Iframe Transport Plugin 1.8.2
|
3
|
+
* https://github.com/blueimp/jQuery-File-Upload
|
4
|
+
*
|
5
|
+
* Copyright 2011, Sebastian Tschan
|
6
|
+
* https://blueimp.net
|
7
|
+
*
|
8
|
+
* Licensed under the MIT license:
|
9
|
+
* http://www.opensource.org/licenses/MIT
|
10
|
+
*/
|
11
|
+
|
12
|
+
/* global define, window, document */
|
13
|
+
|
14
|
+
(function (factory) {
|
15
|
+
'use strict';
|
16
|
+
if (typeof define === 'function' && define.amd) {
|
17
|
+
// Register as an anonymous AMD module:
|
18
|
+
define(['jquery'], factory);
|
19
|
+
} else {
|
20
|
+
// Browser globals:
|
21
|
+
factory(window.jQuery);
|
22
|
+
}
|
23
|
+
}(function ($) {
|
24
|
+
'use strict';
|
25
|
+
|
26
|
+
// Helper variable to create unique names for the transport iframes:
|
27
|
+
var counter = 0;
|
28
|
+
|
29
|
+
// The iframe transport accepts four additional options:
|
30
|
+
// options.fileInput: a jQuery collection of file input fields
|
31
|
+
// options.paramName: the parameter name for the file form data,
|
32
|
+
// overrides the name property of the file input field(s),
|
33
|
+
// can be a string or an array of strings.
|
34
|
+
// options.formData: an array of objects with name and value properties,
|
35
|
+
// equivalent to the return data of .serializeArray(), e.g.:
|
36
|
+
// [{name: 'a', value: 1}, {name: 'b', value: 2}]
|
37
|
+
// options.initialIframeSrc: the URL of the initial iframe src,
|
38
|
+
// by default set to "javascript:false;"
|
39
|
+
$.ajaxTransport('iframe', function (options) {
|
40
|
+
if (options.async) {
|
41
|
+
// javascript:false as initial iframe src
|
42
|
+
// prevents warning popups on HTTPS in IE6:
|
43
|
+
/*jshint scripturl: true */
|
44
|
+
var initialIframeSrc = options.initialIframeSrc || 'javascript:false;',
|
45
|
+
/*jshint scripturl: false */
|
46
|
+
form,
|
47
|
+
iframe,
|
48
|
+
addParamChar;
|
49
|
+
return {
|
50
|
+
send: function (_, completeCallback) {
|
51
|
+
form = $('<form style="display:none;"></form>');
|
52
|
+
form.attr('accept-charset', options.formAcceptCharset);
|
53
|
+
addParamChar = /\?/.test(options.url) ? '&' : '?';
|
54
|
+
// XDomainRequest only supports GET and POST:
|
55
|
+
if (options.type === 'DELETE') {
|
56
|
+
options.url = options.url + addParamChar + '_method=DELETE';
|
57
|
+
options.type = 'POST';
|
58
|
+
} else if (options.type === 'PUT') {
|
59
|
+
options.url = options.url + addParamChar + '_method=PUT';
|
60
|
+
options.type = 'POST';
|
61
|
+
} else if (options.type === 'PATCH') {
|
62
|
+
options.url = options.url + addParamChar + '_method=PATCH';
|
63
|
+
options.type = 'POST';
|
64
|
+
}
|
65
|
+
// IE versions below IE8 cannot set the name property of
|
66
|
+
// elements that have already been added to the DOM,
|
67
|
+
// so we set the name along with the iframe HTML markup:
|
68
|
+
counter += 1;
|
69
|
+
iframe = $(
|
70
|
+
'<iframe src="' + initialIframeSrc +
|
71
|
+
'" name="iframe-transport-' + counter + '"></iframe>'
|
72
|
+
).bind('load', function () {
|
73
|
+
var fileInputClones,
|
74
|
+
paramNames = $.isArray(options.paramName) ?
|
75
|
+
options.paramName : [options.paramName];
|
76
|
+
iframe
|
77
|
+
.unbind('load')
|
78
|
+
.bind('load', function () {
|
79
|
+
var response;
|
80
|
+
// Wrap in a try/catch block to catch exceptions thrown
|
81
|
+
// when trying to access cross-domain iframe contents:
|
82
|
+
try {
|
83
|
+
response = iframe.contents();
|
84
|
+
// Google Chrome and Firefox do not throw an
|
85
|
+
// exception when calling iframe.contents() on
|
86
|
+
// cross-domain requests, so we unify the response:
|
87
|
+
if (!response.length || !response[0].firstChild) {
|
88
|
+
throw new Error();
|
89
|
+
}
|
90
|
+
} catch (e) {
|
91
|
+
response = undefined;
|
92
|
+
}
|
93
|
+
// The complete callback returns the
|
94
|
+
// iframe content document as response object:
|
95
|
+
completeCallback(
|
96
|
+
200,
|
97
|
+
'success',
|
98
|
+
{'iframe': response}
|
99
|
+
);
|
100
|
+
// Fix for IE endless progress bar activity bug
|
101
|
+
// (happens on form submits to iframe targets):
|
102
|
+
$('<iframe src="' + initialIframeSrc + '"></iframe>')
|
103
|
+
.appendTo(form);
|
104
|
+
window.setTimeout(function () {
|
105
|
+
// Removing the form in a setTimeout call
|
106
|
+
// allows Chrome's developer tools to display
|
107
|
+
// the response result
|
108
|
+
form.remove();
|
109
|
+
}, 0);
|
110
|
+
});
|
111
|
+
form
|
112
|
+
.prop('target', iframe.prop('name'))
|
113
|
+
.prop('action', options.url)
|
114
|
+
.prop('method', options.type);
|
115
|
+
if (options.formData) {
|
116
|
+
$.each(options.formData, function (index, field) {
|
117
|
+
$('<input type="hidden"/>')
|
118
|
+
.prop('name', field.name)
|
119
|
+
.val(field.value)
|
120
|
+
.appendTo(form);
|
121
|
+
});
|
122
|
+
}
|
123
|
+
if (options.fileInput && options.fileInput.length &&
|
124
|
+
options.type === 'POST') {
|
125
|
+
fileInputClones = options.fileInput.clone();
|
126
|
+
// Insert a clone for each file input field:
|
127
|
+
options.fileInput.after(function (index) {
|
128
|
+
return fileInputClones[index];
|
129
|
+
});
|
130
|
+
if (options.paramName) {
|
131
|
+
options.fileInput.each(function (index) {
|
132
|
+
$(this).prop(
|
133
|
+
'name',
|
134
|
+
paramNames[index] || options.paramName
|
135
|
+
);
|
136
|
+
});
|
137
|
+
}
|
138
|
+
// Appending the file input fields to the hidden form
|
139
|
+
// removes them from their original location:
|
140
|
+
form
|
141
|
+
.append(options.fileInput)
|
142
|
+
.prop('enctype', 'multipart/form-data')
|
143
|
+
// enctype must be set as encoding for IE:
|
144
|
+
.prop('encoding', 'multipart/form-data');
|
145
|
+
// Remove the HTML5 form attribute from the input(s):
|
146
|
+
options.fileInput.removeAttr('form');
|
147
|
+
}
|
148
|
+
form.submit();
|
149
|
+
// Insert the file input fields at their original location
|
150
|
+
// by replacing the clones with the originals:
|
151
|
+
if (fileInputClones && fileInputClones.length) {
|
152
|
+
options.fileInput.each(function (index, input) {
|
153
|
+
var clone = $(fileInputClones[index]);
|
154
|
+
// Restore the original name and form properties:
|
155
|
+
$(input)
|
156
|
+
.prop('name', clone.prop('name'))
|
157
|
+
.attr('form', clone.attr('form'));
|
158
|
+
clone.replaceWith(input);
|
159
|
+
});
|
160
|
+
}
|
161
|
+
});
|
162
|
+
form.append(iframe).appendTo(document.body);
|
163
|
+
},
|
164
|
+
abort: function () {
|
165
|
+
if (iframe) {
|
166
|
+
// javascript:false as iframe src aborts the request
|
167
|
+
// and prevents warning popups on HTTPS in IE6.
|
168
|
+
// concat is used to avoid the "Script URL" JSLint error:
|
169
|
+
iframe
|
170
|
+
.unbind('load')
|
171
|
+
.prop('src', initialIframeSrc);
|
172
|
+
}
|
173
|
+
if (form) {
|
174
|
+
form.remove();
|
175
|
+
}
|
176
|
+
}
|
177
|
+
};
|
178
|
+
}
|
179
|
+
});
|
180
|
+
|
181
|
+
// The iframe transport returns the iframe content document as response.
|
182
|
+
// The following adds converters from iframe to text, json, html, xml
|
183
|
+
// and script.
|
184
|
+
// Please note that the Content-Type for JSON responses has to be text/plain
|
185
|
+
// or text/html, if the browser doesn't include application/json in the
|
186
|
+
// Accept header, else IE will show a download dialog.
|
187
|
+
// The Content-Type for XML responses on the other hand has to be always
|
188
|
+
// application/xml or text/xml, so IE properly parses the XML response.
|
189
|
+
// See also
|
190
|
+
// https://github.com/blueimp/jQuery-File-Upload/wiki/Setup#content-type-negotiation
|
191
|
+
$.ajaxSetup({
|
192
|
+
converters: {
|
193
|
+
'iframe text': function (iframe) {
|
194
|
+
return iframe && $(iframe[0].body).text();
|
195
|
+
},
|
196
|
+
'iframe json': function (iframe) {
|
197
|
+
return iframe && $.parseJSON($(iframe[0].body).text());
|
198
|
+
},
|
199
|
+
'iframe html': function (iframe) {
|
200
|
+
return iframe && $(iframe[0].body).html();
|
201
|
+
},
|
202
|
+
'iframe xml': function (iframe) {
|
203
|
+
var xmlDoc = iframe && iframe[0];
|
204
|
+
return xmlDoc && $.isXMLDoc(xmlDoc) ? xmlDoc :
|
205
|
+
$.parseXML((xmlDoc.XMLDocument && xmlDoc.XMLDocument.xml) ||
|
206
|
+
$(xmlDoc.body).html());
|
207
|
+
},
|
208
|
+
'iframe script': function (iframe) {
|
209
|
+
return iframe && $.globalEval($(iframe[0].body).text());
|
210
|
+
}
|
211
|
+
}
|
212
|
+
});
|
213
|
+
|
214
|
+
}));
|
@@ -0,0 +1,29 @@
|
|
1
|
+
/*
|
2
|
+
* jQuery File Upload Plugin Localization Example 6.5.1
|
3
|
+
* https://github.com/blueimp/jQuery-File-Upload
|
4
|
+
*
|
5
|
+
* Copyright 2012, Sebastian Tschan
|
6
|
+
* https://blueimp.net
|
7
|
+
*
|
8
|
+
* Licensed under the MIT license:
|
9
|
+
* http://www.opensource.org/licenses/MIT
|
10
|
+
*/
|
11
|
+
|
12
|
+
/*global window */
|
13
|
+
|
14
|
+
window.locale = {
|
15
|
+
"fileupload": {
|
16
|
+
"errors": {
|
17
|
+
"maxFileSize": "File is too big",
|
18
|
+
"minFileSize": "File is too small",
|
19
|
+
"acceptFileTypes": "Filetype not allowed",
|
20
|
+
"maxNumberOfFiles": "Max number of files exceeded",
|
21
|
+
"uploadedBytes": "Uploaded bytes exceed file size",
|
22
|
+
"emptyResult": "Empty file upload result"
|
23
|
+
},
|
24
|
+
"error": "Error",
|
25
|
+
"start": "Start",
|
26
|
+
"cancel": "Cancel",
|
27
|
+
"destroy": "Delete"
|
28
|
+
}
|
29
|
+
};
|
@@ -0,0 +1,95 @@
|
|
1
|
+
/*
|
2
|
+
* JavaScript Canvas to Blob 2.0.5
|
3
|
+
* https://github.com/blueimp/JavaScript-Canvas-to-Blob
|
4
|
+
*
|
5
|
+
* Copyright 2012, Sebastian Tschan
|
6
|
+
* https://blueimp.net
|
7
|
+
*
|
8
|
+
* Licensed under the MIT license:
|
9
|
+
* http://www.opensource.org/licenses/MIT
|
10
|
+
*
|
11
|
+
* Based on stackoverflow user Stoive's code snippet:
|
12
|
+
* http://stackoverflow.com/q/4998908
|
13
|
+
*/
|
14
|
+
|
15
|
+
/*jslint nomen: true, regexp: true */
|
16
|
+
/*global window, atob, Blob, ArrayBuffer, Uint8Array, define */
|
17
|
+
|
18
|
+
(function (window) {
|
19
|
+
'use strict';
|
20
|
+
var CanvasPrototype = window.HTMLCanvasElement &&
|
21
|
+
window.HTMLCanvasElement.prototype,
|
22
|
+
hasBlobConstructor = window.Blob && (function () {
|
23
|
+
try {
|
24
|
+
return Boolean(new Blob());
|
25
|
+
} catch (e) {
|
26
|
+
return false;
|
27
|
+
}
|
28
|
+
}()),
|
29
|
+
hasArrayBufferViewSupport = hasBlobConstructor && window.Uint8Array &&
|
30
|
+
(function () {
|
31
|
+
try {
|
32
|
+
return new Blob([new Uint8Array(100)]).size === 100;
|
33
|
+
} catch (e) {
|
34
|
+
return false;
|
35
|
+
}
|
36
|
+
}()),
|
37
|
+
BlobBuilder = window.BlobBuilder || window.WebKitBlobBuilder ||
|
38
|
+
window.MozBlobBuilder || window.MSBlobBuilder,
|
39
|
+
dataURLtoBlob = (hasBlobConstructor || BlobBuilder) && window.atob &&
|
40
|
+
window.ArrayBuffer && window.Uint8Array && function (dataURI) {
|
41
|
+
var byteString,
|
42
|
+
arrayBuffer,
|
43
|
+
intArray,
|
44
|
+
i,
|
45
|
+
mimeString,
|
46
|
+
bb;
|
47
|
+
if (dataURI.split(',')[0].indexOf('base64') >= 0) {
|
48
|
+
// Convert base64 to raw binary data held in a string:
|
49
|
+
byteString = atob(dataURI.split(',')[1]);
|
50
|
+
} else {
|
51
|
+
// Convert base64/URLEncoded data component to raw binary data:
|
52
|
+
byteString = decodeURIComponent(dataURI.split(',')[1]);
|
53
|
+
}
|
54
|
+
// Write the bytes of the string to an ArrayBuffer:
|
55
|
+
arrayBuffer = new ArrayBuffer(byteString.length);
|
56
|
+
intArray = new Uint8Array(arrayBuffer);
|
57
|
+
for (i = 0; i < byteString.length; i += 1) {
|
58
|
+
intArray[i] = byteString.charCodeAt(i);
|
59
|
+
}
|
60
|
+
// Separate out the mime component:
|
61
|
+
mimeString = dataURI.split(',')[0].split(':')[1].split(';')[0];
|
62
|
+
// Write the ArrayBuffer (or ArrayBufferView) to a blob:
|
63
|
+
if (hasBlobConstructor) {
|
64
|
+
return new Blob(
|
65
|
+
[hasArrayBufferViewSupport ? intArray : arrayBuffer],
|
66
|
+
{type: mimeString}
|
67
|
+
);
|
68
|
+
}
|
69
|
+
bb = new BlobBuilder();
|
70
|
+
bb.append(arrayBuffer);
|
71
|
+
return bb.getBlob(mimeString);
|
72
|
+
};
|
73
|
+
if (window.HTMLCanvasElement && !CanvasPrototype.toBlob) {
|
74
|
+
if (CanvasPrototype.mozGetAsFile) {
|
75
|
+
CanvasPrototype.toBlob = function (callback, type, quality) {
|
76
|
+
if (quality && CanvasPrototype.toDataURL && dataURLtoBlob) {
|
77
|
+
callback(dataURLtoBlob(this.toDataURL(type, quality)));
|
78
|
+
} else {
|
79
|
+
callback(this.mozGetAsFile('blob', type));
|
80
|
+
}
|
81
|
+
};
|
82
|
+
} else if (CanvasPrototype.toDataURL && dataURLtoBlob) {
|
83
|
+
CanvasPrototype.toBlob = function (callback, type, quality) {
|
84
|
+
callback(dataURLtoBlob(this.toDataURL(type, quality)));
|
85
|
+
};
|
86
|
+
}
|
87
|
+
}
|
88
|
+
if (typeof define === 'function' && define.amd) {
|
89
|
+
define(function () {
|
90
|
+
return dataURLtoBlob;
|
91
|
+
});
|
92
|
+
} else {
|
93
|
+
window.dataURLtoBlob = dataURLtoBlob;
|
94
|
+
}
|
95
|
+
}(this));
|
@@ -0,0 +1,530 @@
|
|
1
|
+
/*
|
2
|
+
* jQuery UI Widget 1.10.3+amd
|
3
|
+
* https://github.com/blueimp/jQuery-File-Upload
|
4
|
+
*
|
5
|
+
* Copyright 2013 jQuery Foundation and other contributors
|
6
|
+
* Released under the MIT license.
|
7
|
+
* http://jquery.org/license
|
8
|
+
*
|
9
|
+
* http://api.jqueryui.com/jQuery.widget/
|
10
|
+
*/
|
11
|
+
|
12
|
+
(function (factory) {
|
13
|
+
if (typeof define === "function" && define.amd) {
|
14
|
+
// Register as an anonymous AMD module:
|
15
|
+
define(["jquery"], factory);
|
16
|
+
} else {
|
17
|
+
// Browser globals:
|
18
|
+
factory(jQuery);
|
19
|
+
}
|
20
|
+
}(function( $, undefined ) {
|
21
|
+
|
22
|
+
var uuid = 0,
|
23
|
+
slice = Array.prototype.slice,
|
24
|
+
_cleanData = $.cleanData;
|
25
|
+
$.cleanData = function( elems ) {
|
26
|
+
for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) {
|
27
|
+
try {
|
28
|
+
$( elem ).triggerHandler( "remove" );
|
29
|
+
// http://bugs.jquery.com/ticket/8235
|
30
|
+
} catch( e ) {}
|
31
|
+
}
|
32
|
+
_cleanData( elems );
|
33
|
+
};
|
34
|
+
|
35
|
+
$.widget = function( name, base, prototype ) {
|
36
|
+
var fullName, existingConstructor, constructor, basePrototype,
|
37
|
+
// proxiedPrototype allows the provided prototype to remain unmodified
|
38
|
+
// so that it can be used as a mixin for multiple widgets (#8876)
|
39
|
+
proxiedPrototype = {},
|
40
|
+
namespace = name.split( "." )[ 0 ];
|
41
|
+
|
42
|
+
name = name.split( "." )[ 1 ];
|
43
|
+
fullName = namespace + "-" + name;
|
44
|
+
|
45
|
+
if ( !prototype ) {
|
46
|
+
prototype = base;
|
47
|
+
base = $.Widget;
|
48
|
+
}
|
49
|
+
|
50
|
+
// create selector for plugin
|
51
|
+
$.expr[ ":" ][ fullName.toLowerCase() ] = function( elem ) {
|
52
|
+
return !!$.data( elem, fullName );
|
53
|
+
};
|
54
|
+
|
55
|
+
$[ namespace ] = $[ namespace ] || {};
|
56
|
+
existingConstructor = $[ namespace ][ name ];
|
57
|
+
constructor = $[ namespace ][ name ] = function( options, element ) {
|
58
|
+
// allow instantiation without "new" keyword
|
59
|
+
if ( !this._createWidget ) {
|
60
|
+
return new constructor( options, element );
|
61
|
+
}
|
62
|
+
|
63
|
+
// allow instantiation without initializing for simple inheritance
|
64
|
+
// must use "new" keyword (the code above always passes args)
|
65
|
+
if ( arguments.length ) {
|
66
|
+
this._createWidget( options, element );
|
67
|
+
}
|
68
|
+
};
|
69
|
+
// extend with the existing constructor to carry over any static properties
|
70
|
+
$.extend( constructor, existingConstructor, {
|
71
|
+
version: prototype.version,
|
72
|
+
// copy the object used to create the prototype in case we need to
|
73
|
+
// redefine the widget later
|
74
|
+
_proto: $.extend( {}, prototype ),
|
75
|
+
// track widgets that inherit from this widget in case this widget is
|
76
|
+
// redefined after a widget inherits from it
|
77
|
+
_childConstructors: []
|
78
|
+
});
|
79
|
+
|
80
|
+
basePrototype = new base();
|
81
|
+
// we need to make the options hash a property directly on the new instance
|
82
|
+
// otherwise we'll modify the options hash on the prototype that we're
|
83
|
+
// inheriting from
|
84
|
+
basePrototype.options = $.widget.extend( {}, basePrototype.options );
|
85
|
+
$.each( prototype, function( prop, value ) {
|
86
|
+
if ( !$.isFunction( value ) ) {
|
87
|
+
proxiedPrototype[ prop ] = value;
|
88
|
+
return;
|
89
|
+
}
|
90
|
+
proxiedPrototype[ prop ] = (function() {
|
91
|
+
var _super = function() {
|
92
|
+
return base.prototype[ prop ].apply( this, arguments );
|
93
|
+
},
|
94
|
+
_superApply = function( args ) {
|
95
|
+
return base.prototype[ prop ].apply( this, args );
|
96
|
+
};
|
97
|
+
return function() {
|
98
|
+
var __super = this._super,
|
99
|
+
__superApply = this._superApply,
|
100
|
+
returnValue;
|
101
|
+
|
102
|
+
this._super = _super;
|
103
|
+
this._superApply = _superApply;
|
104
|
+
|
105
|
+
returnValue = value.apply( this, arguments );
|
106
|
+
|
107
|
+
this._super = __super;
|
108
|
+
this._superApply = __superApply;
|
109
|
+
|
110
|
+
return returnValue;
|
111
|
+
};
|
112
|
+
})();
|
113
|
+
});
|
114
|
+
constructor.prototype = $.widget.extend( basePrototype, {
|
115
|
+
// TODO: remove support for widgetEventPrefix
|
116
|
+
// always use the name + a colon as the prefix, e.g., draggable:start
|
117
|
+
// don't prefix for widgets that aren't DOM-based
|
118
|
+
widgetEventPrefix: existingConstructor ? basePrototype.widgetEventPrefix : name
|
119
|
+
}, proxiedPrototype, {
|
120
|
+
constructor: constructor,
|
121
|
+
namespace: namespace,
|
122
|
+
widgetName: name,
|
123
|
+
widgetFullName: fullName
|
124
|
+
});
|
125
|
+
|
126
|
+
// If this widget is being redefined then we need to find all widgets that
|
127
|
+
// are inheriting from it and redefine all of them so that they inherit from
|
128
|
+
// the new version of this widget. We're essentially trying to replace one
|
129
|
+
// level in the prototype chain.
|
130
|
+
if ( existingConstructor ) {
|
131
|
+
$.each( existingConstructor._childConstructors, function( i, child ) {
|
132
|
+
var childPrototype = child.prototype;
|
133
|
+
|
134
|
+
// redefine the child widget using the same prototype that was
|
135
|
+
// originally used, but inherit from the new version of the base
|
136
|
+
$.widget( childPrototype.namespace + "." + childPrototype.widgetName, constructor, child._proto );
|
137
|
+
});
|
138
|
+
// remove the list of existing child constructors from the old constructor
|
139
|
+
// so the old child constructors can be garbage collected
|
140
|
+
delete existingConstructor._childConstructors;
|
141
|
+
} else {
|
142
|
+
base._childConstructors.push( constructor );
|
143
|
+
}
|
144
|
+
|
145
|
+
$.widget.bridge( name, constructor );
|
146
|
+
};
|
147
|
+
|
148
|
+
$.widget.extend = function( target ) {
|
149
|
+
var input = slice.call( arguments, 1 ),
|
150
|
+
inputIndex = 0,
|
151
|
+
inputLength = input.length,
|
152
|
+
key,
|
153
|
+
value;
|
154
|
+
for ( ; inputIndex < inputLength; inputIndex++ ) {
|
155
|
+
for ( key in input[ inputIndex ] ) {
|
156
|
+
value = input[ inputIndex ][ key ];
|
157
|
+
if ( input[ inputIndex ].hasOwnProperty( key ) && value !== undefined ) {
|
158
|
+
// Clone objects
|
159
|
+
if ( $.isPlainObject( value ) ) {
|
160
|
+
target[ key ] = $.isPlainObject( target[ key ] ) ?
|
161
|
+
$.widget.extend( {}, target[ key ], value ) :
|
162
|
+
// Don't extend strings, arrays, etc. with objects
|
163
|
+
$.widget.extend( {}, value );
|
164
|
+
// Copy everything else by reference
|
165
|
+
} else {
|
166
|
+
target[ key ] = value;
|
167
|
+
}
|
168
|
+
}
|
169
|
+
}
|
170
|
+
}
|
171
|
+
return target;
|
172
|
+
};
|
173
|
+
|
174
|
+
$.widget.bridge = function( name, object ) {
|
175
|
+
var fullName = object.prototype.widgetFullName || name;
|
176
|
+
$.fn[ name ] = function( options ) {
|
177
|
+
var isMethodCall = typeof options === "string",
|
178
|
+
args = slice.call( arguments, 1 ),
|
179
|
+
returnValue = this;
|
180
|
+
|
181
|
+
// allow multiple hashes to be passed on init
|
182
|
+
options = !isMethodCall && args.length ?
|
183
|
+
$.widget.extend.apply( null, [ options ].concat(args) ) :
|
184
|
+
options;
|
185
|
+
|
186
|
+
if ( isMethodCall ) {
|
187
|
+
this.each(function() {
|
188
|
+
var methodValue,
|
189
|
+
instance = $.data( this, fullName );
|
190
|
+
if ( !instance ) {
|
191
|
+
return $.error( "cannot call methods on " + name + " prior to initialization; " +
|
192
|
+
"attempted to call method '" + options + "'" );
|
193
|
+
}
|
194
|
+
if ( !$.isFunction( instance[options] ) || options.charAt( 0 ) === "_" ) {
|
195
|
+
return $.error( "no such method '" + options + "' for " + name + " widget instance" );
|
196
|
+
}
|
197
|
+
methodValue = instance[ options ].apply( instance, args );
|
198
|
+
if ( methodValue !== instance && methodValue !== undefined ) {
|
199
|
+
returnValue = methodValue && methodValue.jquery ?
|
200
|
+
returnValue.pushStack( methodValue.get() ) :
|
201
|
+
methodValue;
|
202
|
+
return false;
|
203
|
+
}
|
204
|
+
});
|
205
|
+
} else {
|
206
|
+
this.each(function() {
|
207
|
+
var instance = $.data( this, fullName );
|
208
|
+
if ( instance ) {
|
209
|
+
instance.option( options || {} )._init();
|
210
|
+
} else {
|
211
|
+
$.data( this, fullName, new object( options, this ) );
|
212
|
+
}
|
213
|
+
});
|
214
|
+
}
|
215
|
+
|
216
|
+
return returnValue;
|
217
|
+
};
|
218
|
+
};
|
219
|
+
|
220
|
+
$.Widget = function( /* options, element */ ) {};
|
221
|
+
$.Widget._childConstructors = [];
|
222
|
+
|
223
|
+
$.Widget.prototype = {
|
224
|
+
widgetName: "widget",
|
225
|
+
widgetEventPrefix: "",
|
226
|
+
defaultElement: "<div>",
|
227
|
+
options: {
|
228
|
+
disabled: false,
|
229
|
+
|
230
|
+
// callbacks
|
231
|
+
create: null
|
232
|
+
},
|
233
|
+
_createWidget: function( options, element ) {
|
234
|
+
element = $( element || this.defaultElement || this )[ 0 ];
|
235
|
+
this.element = $( element );
|
236
|
+
this.uuid = uuid++;
|
237
|
+
this.eventNamespace = "." + this.widgetName + this.uuid;
|
238
|
+
this.options = $.widget.extend( {},
|
239
|
+
this.options,
|
240
|
+
this._getCreateOptions(),
|
241
|
+
options );
|
242
|
+
|
243
|
+
this.bindings = $();
|
244
|
+
this.hoverable = $();
|
245
|
+
this.focusable = $();
|
246
|
+
|
247
|
+
if ( element !== this ) {
|
248
|
+
$.data( element, this.widgetFullName, this );
|
249
|
+
this._on( true, this.element, {
|
250
|
+
remove: function( event ) {
|
251
|
+
if ( event.target === element ) {
|
252
|
+
this.destroy();
|
253
|
+
}
|
254
|
+
}
|
255
|
+
});
|
256
|
+
this.document = $( element.style ?
|
257
|
+
// element within the document
|
258
|
+
element.ownerDocument :
|
259
|
+
// element is window or document
|
260
|
+
element.document || element );
|
261
|
+
this.window = $( this.document[0].defaultView || this.document[0].parentWindow );
|
262
|
+
}
|
263
|
+
|
264
|
+
this._create();
|
265
|
+
this._trigger( "create", null, this._getCreateEventData() );
|
266
|
+
this._init();
|
267
|
+
},
|
268
|
+
_getCreateOptions: $.noop,
|
269
|
+
_getCreateEventData: $.noop,
|
270
|
+
_create: $.noop,
|
271
|
+
_init: $.noop,
|
272
|
+
|
273
|
+
destroy: function() {
|
274
|
+
this._destroy();
|
275
|
+
// we can probably remove the unbind calls in 2.0
|
276
|
+
// all event bindings should go through this._on()
|
277
|
+
this.element
|
278
|
+
.unbind( this.eventNamespace )
|
279
|
+
// 1.9 BC for #7810
|
280
|
+
// TODO remove dual storage
|
281
|
+
.removeData( this.widgetName )
|
282
|
+
.removeData( this.widgetFullName )
|
283
|
+
// support: jquery <1.6.3
|
284
|
+
// http://bugs.jquery.com/ticket/9413
|
285
|
+
.removeData( $.camelCase( this.widgetFullName ) );
|
286
|
+
this.widget()
|
287
|
+
.unbind( this.eventNamespace )
|
288
|
+
.removeAttr( "aria-disabled" )
|
289
|
+
.removeClass(
|
290
|
+
this.widgetFullName + "-disabled " +
|
291
|
+
"ui-state-disabled" );
|
292
|
+
|
293
|
+
// clean up events and states
|
294
|
+
this.bindings.unbind( this.eventNamespace );
|
295
|
+
this.hoverable.removeClass( "ui-state-hover" );
|
296
|
+
this.focusable.removeClass( "ui-state-focus" );
|
297
|
+
},
|
298
|
+
_destroy: $.noop,
|
299
|
+
|
300
|
+
widget: function() {
|
301
|
+
return this.element;
|
302
|
+
},
|
303
|
+
|
304
|
+
option: function( key, value ) {
|
305
|
+
var options = key,
|
306
|
+
parts,
|
307
|
+
curOption,
|
308
|
+
i;
|
309
|
+
|
310
|
+
if ( arguments.length === 0 ) {
|
311
|
+
// don't return a reference to the internal hash
|
312
|
+
return $.widget.extend( {}, this.options );
|
313
|
+
}
|
314
|
+
|
315
|
+
if ( typeof key === "string" ) {
|
316
|
+
// handle nested keys, e.g., "foo.bar" => { foo: { bar: ___ } }
|
317
|
+
options = {};
|
318
|
+
parts = key.split( "." );
|
319
|
+
key = parts.shift();
|
320
|
+
if ( parts.length ) {
|
321
|
+
curOption = options[ key ] = $.widget.extend( {}, this.options[ key ] );
|
322
|
+
for ( i = 0; i < parts.length - 1; i++ ) {
|
323
|
+
curOption[ parts[ i ] ] = curOption[ parts[ i ] ] || {};
|
324
|
+
curOption = curOption[ parts[ i ] ];
|
325
|
+
}
|
326
|
+
key = parts.pop();
|
327
|
+
if ( value === undefined ) {
|
328
|
+
return curOption[ key ] === undefined ? null : curOption[ key ];
|
329
|
+
}
|
330
|
+
curOption[ key ] = value;
|
331
|
+
} else {
|
332
|
+
if ( value === undefined ) {
|
333
|
+
return this.options[ key ] === undefined ? null : this.options[ key ];
|
334
|
+
}
|
335
|
+
options[ key ] = value;
|
336
|
+
}
|
337
|
+
}
|
338
|
+
|
339
|
+
this._setOptions( options );
|
340
|
+
|
341
|
+
return this;
|
342
|
+
},
|
343
|
+
_setOptions: function( options ) {
|
344
|
+
var key;
|
345
|
+
|
346
|
+
for ( key in options ) {
|
347
|
+
this._setOption( key, options[ key ] );
|
348
|
+
}
|
349
|
+
|
350
|
+
return this;
|
351
|
+
},
|
352
|
+
_setOption: function( key, value ) {
|
353
|
+
this.options[ key ] = value;
|
354
|
+
|
355
|
+
if ( key === "disabled" ) {
|
356
|
+
this.widget()
|
357
|
+
.toggleClass( this.widgetFullName + "-disabled ui-state-disabled", !!value )
|
358
|
+
.attr( "aria-disabled", value );
|
359
|
+
this.hoverable.removeClass( "ui-state-hover" );
|
360
|
+
this.focusable.removeClass( "ui-state-focus" );
|
361
|
+
}
|
362
|
+
|
363
|
+
return this;
|
364
|
+
},
|
365
|
+
|
366
|
+
enable: function() {
|
367
|
+
return this._setOption( "disabled", false );
|
368
|
+
},
|
369
|
+
disable: function() {
|
370
|
+
return this._setOption( "disabled", true );
|
371
|
+
},
|
372
|
+
|
373
|
+
_on: function( suppressDisabledCheck, element, handlers ) {
|
374
|
+
var delegateElement,
|
375
|
+
instance = this;
|
376
|
+
|
377
|
+
// no suppressDisabledCheck flag, shuffle arguments
|
378
|
+
if ( typeof suppressDisabledCheck !== "boolean" ) {
|
379
|
+
handlers = element;
|
380
|
+
element = suppressDisabledCheck;
|
381
|
+
suppressDisabledCheck = false;
|
382
|
+
}
|
383
|
+
|
384
|
+
// no element argument, shuffle and use this.element
|
385
|
+
if ( !handlers ) {
|
386
|
+
handlers = element;
|
387
|
+
element = this.element;
|
388
|
+
delegateElement = this.widget();
|
389
|
+
} else {
|
390
|
+
// accept selectors, DOM elements
|
391
|
+
element = delegateElement = $( element );
|
392
|
+
this.bindings = this.bindings.add( element );
|
393
|
+
}
|
394
|
+
|
395
|
+
$.each( handlers, function( event, handler ) {
|
396
|
+
function handlerProxy() {
|
397
|
+
// allow widgets to customize the disabled handling
|
398
|
+
// - disabled as an array instead of boolean
|
399
|
+
// - disabled class as method for disabling individual parts
|
400
|
+
if ( !suppressDisabledCheck &&
|
401
|
+
( instance.options.disabled === true ||
|
402
|
+
$( this ).hasClass( "ui-state-disabled" ) ) ) {
|
403
|
+
return;
|
404
|
+
}
|
405
|
+
return ( typeof handler === "string" ? instance[ handler ] : handler )
|
406
|
+
.apply( instance, arguments );
|
407
|
+
}
|
408
|
+
|
409
|
+
// copy the guid so direct unbinding works
|
410
|
+
if ( typeof handler !== "string" ) {
|
411
|
+
handlerProxy.guid = handler.guid =
|
412
|
+
handler.guid || handlerProxy.guid || $.guid++;
|
413
|
+
}
|
414
|
+
|
415
|
+
var match = event.match( /^(\w+)\s*(.*)$/ ),
|
416
|
+
eventName = match[1] + instance.eventNamespace,
|
417
|
+
selector = match[2];
|
418
|
+
if ( selector ) {
|
419
|
+
delegateElement.delegate( selector, eventName, handlerProxy );
|
420
|
+
} else {
|
421
|
+
element.bind( eventName, handlerProxy );
|
422
|
+
}
|
423
|
+
});
|
424
|
+
},
|
425
|
+
|
426
|
+
_off: function( element, eventName ) {
|
427
|
+
eventName = (eventName || "").split( " " ).join( this.eventNamespace + " " ) + this.eventNamespace;
|
428
|
+
element.unbind( eventName ).undelegate( eventName );
|
429
|
+
},
|
430
|
+
|
431
|
+
_delay: function( handler, delay ) {
|
432
|
+
function handlerProxy() {
|
433
|
+
return ( typeof handler === "string" ? instance[ handler ] : handler )
|
434
|
+
.apply( instance, arguments );
|
435
|
+
}
|
436
|
+
var instance = this;
|
437
|
+
return setTimeout( handlerProxy, delay || 0 );
|
438
|
+
},
|
439
|
+
|
440
|
+
_hoverable: function( element ) {
|
441
|
+
this.hoverable = this.hoverable.add( element );
|
442
|
+
this._on( element, {
|
443
|
+
mouseenter: function( event ) {
|
444
|
+
$( event.currentTarget ).addClass( "ui-state-hover" );
|
445
|
+
},
|
446
|
+
mouseleave: function( event ) {
|
447
|
+
$( event.currentTarget ).removeClass( "ui-state-hover" );
|
448
|
+
}
|
449
|
+
});
|
450
|
+
},
|
451
|
+
|
452
|
+
_focusable: function( element ) {
|
453
|
+
this.focusable = this.focusable.add( element );
|
454
|
+
this._on( element, {
|
455
|
+
focusin: function( event ) {
|
456
|
+
$( event.currentTarget ).addClass( "ui-state-focus" );
|
457
|
+
},
|
458
|
+
focusout: function( event ) {
|
459
|
+
$( event.currentTarget ).removeClass( "ui-state-focus" );
|
460
|
+
}
|
461
|
+
});
|
462
|
+
},
|
463
|
+
|
464
|
+
_trigger: function( type, event, data ) {
|
465
|
+
var prop, orig,
|
466
|
+
callback = this.options[ type ];
|
467
|
+
|
468
|
+
data = data || {};
|
469
|
+
event = $.Event( event );
|
470
|
+
event.type = ( type === this.widgetEventPrefix ?
|
471
|
+
type :
|
472
|
+
this.widgetEventPrefix + type ).toLowerCase();
|
473
|
+
// the original event may come from any element
|
474
|
+
// so we need to reset the target on the new event
|
475
|
+
event.target = this.element[ 0 ];
|
476
|
+
|
477
|
+
// copy original event properties over to the new event
|
478
|
+
orig = event.originalEvent;
|
479
|
+
if ( orig ) {
|
480
|
+
for ( prop in orig ) {
|
481
|
+
if ( !( prop in event ) ) {
|
482
|
+
event[ prop ] = orig[ prop ];
|
483
|
+
}
|
484
|
+
}
|
485
|
+
}
|
486
|
+
|
487
|
+
this.element.trigger( event, data );
|
488
|
+
return !( $.isFunction( callback ) &&
|
489
|
+
callback.apply( this.element[0], [ event ].concat( data ) ) === false ||
|
490
|
+
event.isDefaultPrevented() );
|
491
|
+
}
|
492
|
+
};
|
493
|
+
|
494
|
+
$.each( { show: "fadeIn", hide: "fadeOut" }, function( method, defaultEffect ) {
|
495
|
+
$.Widget.prototype[ "_" + method ] = function( element, options, callback ) {
|
496
|
+
if ( typeof options === "string" ) {
|
497
|
+
options = { effect: options };
|
498
|
+
}
|
499
|
+
var hasOptions,
|
500
|
+
effectName = !options ?
|
501
|
+
method :
|
502
|
+
options === true || typeof options === "number" ?
|
503
|
+
defaultEffect :
|
504
|
+
options.effect || defaultEffect;
|
505
|
+
options = options || {};
|
506
|
+
if ( typeof options === "number" ) {
|
507
|
+
options = { duration: options };
|
508
|
+
}
|
509
|
+
hasOptions = !$.isEmptyObject( options );
|
510
|
+
options.complete = callback;
|
511
|
+
if ( options.delay ) {
|
512
|
+
element.delay( options.delay );
|
513
|
+
}
|
514
|
+
if ( hasOptions && $.effects && $.effects.effect[ effectName ] ) {
|
515
|
+
element[ method ]( options );
|
516
|
+
} else if ( effectName !== method && element[ effectName ] ) {
|
517
|
+
element[ effectName ]( options.duration, options.easing, callback );
|
518
|
+
} else {
|
519
|
+
element.queue(function( next ) {
|
520
|
+
$( this )[ method ]();
|
521
|
+
if ( callback ) {
|
522
|
+
callback.call( element[ 0 ] );
|
523
|
+
}
|
524
|
+
next();
|
525
|
+
});
|
526
|
+
}
|
527
|
+
};
|
528
|
+
});
|
529
|
+
|
530
|
+
}));
|