card-mod-script 0.11.0

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.
Files changed (126) hide show
  1. checksums.yaml +7 -0
  2. data/lib/javascript/decko/autosave.js.coffee +30 -0
  3. data/lib/javascript/decko/bridge.js.coffee +31 -0
  4. data/lib/javascript/decko/card_menu.js.coffee +26 -0
  5. data/lib/javascript/decko/components.js.coffee +51 -0
  6. data/lib/javascript/decko/decko.js.coffee +100 -0
  7. data/lib/javascript/decko/doubleclick.js.coffee +30 -0
  8. data/lib/javascript/decko/editor.js.coffee +55 -0
  9. data/lib/javascript/decko/filter.js.coffee +176 -0
  10. data/lib/javascript/decko/filter_items.js.coffee +128 -0
  11. data/lib/javascript/decko/filter_links.js.coffee +81 -0
  12. data/lib/javascript/decko/follow.js.coffee +22 -0
  13. data/lib/javascript/decko/layout.js.coffee +76 -0
  14. data/lib/javascript/decko/link_editor.js.coffee +61 -0
  15. data/lib/javascript/decko/mod.js.coffee +85 -0
  16. data/lib/javascript/decko/modal.js.coffee +110 -0
  17. data/lib/javascript/decko/name_editor.js.coffee +51 -0
  18. data/lib/javascript/decko/navbox.js.coffee +74 -0
  19. data/lib/javascript/decko/nest_editor.js.coffee +166 -0
  20. data/lib/javascript/decko/nest_editor_name.js.coffee +102 -0
  21. data/lib/javascript/decko/nest_editor_options.js.coffee +93 -0
  22. data/lib/javascript/decko/nest_editor_rules.js.coffee +3 -0
  23. data/lib/javascript/decko/overlay.js.coffee +57 -0
  24. data/lib/javascript/decko/recaptcha.js.coffee +19 -0
  25. data/lib/javascript/decko/selectable_filtered_content.js.coffee +12 -0
  26. data/lib/javascript/decko/slot.js.coffee +172 -0
  27. data/lib/javascript/decko/slot_ready.js.coffee +11 -0
  28. data/lib/javascript/decko/slotter.js.coffee +269 -0
  29. data/lib/javascript/decko/upload.js.coffee +57 -0
  30. data/lib/javascript/jquery-ui.js +10 -0
  31. data/lib/javascript/jquery.autosize.js +274 -0
  32. data/lib/javascript/jquery.iframe-transport.js +185 -0
  33. data/lib/javascript/script_html5shiv_printshiv.js +1 -0
  34. data/lib/javascript/script_pointer_config.js.coffee +80 -0
  35. data/lib/javascript/script_pointer_list_editor.js.coffee +67 -0
  36. data/lib/javascript/theme-textmate.js +130 -0
  37. data/set/abstract/script.rb +85 -0
  38. data/set/right/script.rb +19 -0
  39. data/set/self/01_script_libraries.rb +1 -0
  40. data/set/self/script.rb +1 -0
  41. data/set/self/script_decko.rb +12 -0
  42. data/set/self/script_editors.rb +1 -0
  43. data/set/self/script_html5shiv_printshiv.rb +11 -0
  44. data/set/self/script_jquery.rb +10 -0
  45. data/set/self/script_jquery_helper.rb +14 -0
  46. data/set/self/script_mods.rb +1 -0
  47. data/set/self/script_pointer_config.rb +9 -0
  48. data/set/type/coffee_script.rb +25 -0
  49. data/set/type/java_script.rb +9 -0
  50. data/vendor/jquery_file_upload/CONTRIBUTING.md +15 -0
  51. data/vendor/jquery_file_upload/LICENSE.txt +21 -0
  52. data/vendor/jquery_file_upload/README.md +107 -0
  53. data/vendor/jquery_file_upload/angularjs.html +211 -0
  54. data/vendor/jquery_file_upload/basic-plus.html +226 -0
  55. data/vendor/jquery_file_upload/basic.html +136 -0
  56. data/vendor/jquery_file_upload/bower-version-update.js +16 -0
  57. data/vendor/jquery_file_upload/bower.json +64 -0
  58. data/vendor/jquery_file_upload/cors/postmessage.html +75 -0
  59. data/vendor/jquery_file_upload/cors/result.html +24 -0
  60. data/vendor/jquery_file_upload/css/jquery-ui-demo-ie8.css +21 -0
  61. data/vendor/jquery_file_upload/css/jquery-ui-demo.css +67 -0
  62. data/vendor/jquery_file_upload/css/jquery.fileupload-noscript.css +22 -0
  63. data/vendor/jquery_file_upload/css/jquery.fileupload-ui-noscript.css +17 -0
  64. data/vendor/jquery_file_upload/css/jquery.fileupload-ui.css +57 -0
  65. data/vendor/jquery_file_upload/css/jquery.fileupload.css +37 -0
  66. data/vendor/jquery_file_upload/css/style.css +15 -0
  67. data/vendor/jquery_file_upload/img/loading.gif +0 -0
  68. data/vendor/jquery_file_upload/img/progressbar.gif +0 -0
  69. data/vendor/jquery_file_upload/index.html +255 -0
  70. data/vendor/jquery_file_upload/jquery-ui.html +252 -0
  71. data/vendor/jquery_file_upload/js/app.js +101 -0
  72. data/vendor/jquery_file_upload/js/cors/jquery.postmessage-transport.js +126 -0
  73. data/vendor/jquery_file_upload/js/cors/jquery.xdr-transport.js +89 -0
  74. data/vendor/jquery_file_upload/js/jquery.fileupload-angular.js +437 -0
  75. data/vendor/jquery_file_upload/js/jquery.fileupload-audio.js +113 -0
  76. data/vendor/jquery_file_upload/js/jquery.fileupload-image.js +326 -0
  77. data/vendor/jquery_file_upload/js/jquery.fileupload-jquery-ui.js +161 -0
  78. data/vendor/jquery_file_upload/js/jquery.fileupload-process.js +178 -0
  79. data/vendor/jquery_file_upload/js/jquery.fileupload-ui.js +714 -0
  80. data/vendor/jquery_file_upload/js/jquery.fileupload-validate.js +125 -0
  81. data/vendor/jquery_file_upload/js/jquery.fileupload-video.js +113 -0
  82. data/vendor/jquery_file_upload/js/jquery.fileupload.js +1486 -0
  83. data/vendor/jquery_file_upload/js/jquery.iframe-transport.js +224 -0
  84. data/vendor/jquery_file_upload/js/main.js +75 -0
  85. data/vendor/jquery_file_upload/js/vendor/jquery.ui.widget.js +748 -0
  86. data/vendor/jquery_file_upload/package.json +55 -0
  87. data/vendor/jquery_file_upload/server/gae-go/app.yaml +12 -0
  88. data/vendor/jquery_file_upload/server/gae-go/app/main.go +361 -0
  89. data/vendor/jquery_file_upload/server/gae-go/static/favicon.ico +0 -0
  90. data/vendor/jquery_file_upload/server/gae-go/static/robots.txt +2 -0
  91. data/vendor/jquery_file_upload/server/gae-python/app.yaml +17 -0
  92. data/vendor/jquery_file_upload/server/gae-python/main.py +204 -0
  93. data/vendor/jquery_file_upload/server/gae-python/static/favicon.ico +0 -0
  94. data/vendor/jquery_file_upload/server/gae-python/static/robots.txt +2 -0
  95. data/vendor/jquery_file_upload/server/php/Dockerfile +38 -0
  96. data/vendor/jquery_file_upload/server/php/UploadHandler.php +1411 -0
  97. data/vendor/jquery_file_upload/server/php/docker-compose.yml +9 -0
  98. data/vendor/jquery_file_upload/server/php/index.php +15 -0
  99. data/vendor/jquery_file_upload/test/index.html +172 -0
  100. data/vendor/jquery_file_upload/test/test.js +1292 -0
  101. data/vendor/jquery_rails/CHANGELOG.md +359 -0
  102. data/vendor/jquery_rails/CONTRIBUTING.md +132 -0
  103. data/vendor/jquery_rails/Gemfile +22 -0
  104. data/vendor/jquery_rails/MIT-LICENSE +21 -0
  105. data/vendor/jquery_rails/README.md +75 -0
  106. data/vendor/jquery_rails/Rakefile +59 -0
  107. data/vendor/jquery_rails/VERSIONS.md +62 -0
  108. data/vendor/jquery_rails/jquery-rails.gemspec +26 -0
  109. data/vendor/jquery_rails/lib/jquery-rails.rb +1 -0
  110. data/vendor/jquery_rails/lib/jquery/assert_select.rb +149 -0
  111. data/vendor/jquery_rails/lib/jquery/rails.rb +8 -0
  112. data/vendor/jquery_rails/lib/jquery/rails/engine.rb +6 -0
  113. data/vendor/jquery_rails/lib/jquery/rails/version.rb +9 -0
  114. data/vendor/jquery_rails/test/assert_select_jquery_test.rb +85 -0
  115. data/vendor/jquery_rails/test/test_helper.rb +6 -0
  116. data/vendor/jquery_rails/vendor/assets/javascripts/jquery.js +11008 -0
  117. data/vendor/jquery_rails/vendor/assets/javascripts/jquery.min.js +5 -0
  118. data/vendor/jquery_rails/vendor/assets/javascripts/jquery.min.map +1 -0
  119. data/vendor/jquery_rails/vendor/assets/javascripts/jquery2.js +9814 -0
  120. data/vendor/jquery_rails/vendor/assets/javascripts/jquery2.min.js +4 -0
  121. data/vendor/jquery_rails/vendor/assets/javascripts/jquery2.min.map +1 -0
  122. data/vendor/jquery_rails/vendor/assets/javascripts/jquery3.js +10364 -0
  123. data/vendor/jquery_rails/vendor/assets/javascripts/jquery3.min.js +2 -0
  124. data/vendor/jquery_rails/vendor/assets/javascripts/jquery3.min.map +1 -0
  125. data/vendor/jquery_rails/vendor/assets/javascripts/jquery_ujs.js +555 -0
  126. metadata +212 -0
@@ -0,0 +1,178 @@
1
+ /*
2
+ * jQuery File Upload Processing Plugin
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
+ * https://opensource.org/licenses/MIT
10
+ */
11
+
12
+ /* jshint nomen:false */
13
+ /* global define, require, window */
14
+
15
+ ;(function (factory) {
16
+ 'use strict';
17
+ if (typeof define === 'function' && define.amd) {
18
+ // Register as an anonymous AMD module:
19
+ define([
20
+ 'jquery',
21
+ './jquery.fileupload'
22
+ ], factory);
23
+ } else if (typeof exports === 'object') {
24
+ // Node/CommonJS:
25
+ factory(
26
+ require('jquery'),
27
+ require('./jquery.fileupload')
28
+ );
29
+ } else {
30
+ // Browser globals:
31
+ factory(
32
+ window.jQuery
33
+ );
34
+ }
35
+ }(function ($) {
36
+ 'use strict';
37
+
38
+ var originalAdd = $.blueimp.fileupload.prototype.options.add;
39
+
40
+ // The File Upload Processing plugin extends the fileupload widget
41
+ // with file processing functionality:
42
+ $.widget('blueimp.fileupload', $.blueimp.fileupload, {
43
+
44
+ options: {
45
+ // The list of processing actions:
46
+ processQueue: [
47
+ /*
48
+ {
49
+ action: 'log',
50
+ type: 'debug'
51
+ }
52
+ */
53
+ ],
54
+ add: function (e, data) {
55
+ var $this = $(this);
56
+ data.process(function () {
57
+ return $this.fileupload('process', data);
58
+ });
59
+ originalAdd.call(this, e, data);
60
+ }
61
+ },
62
+
63
+ processActions: {
64
+ /*
65
+ log: function (data, options) {
66
+ console[options.type](
67
+ 'Processing "' + data.files[data.index].name + '"'
68
+ );
69
+ }
70
+ */
71
+ },
72
+
73
+ _processFile: function (data, originalData) {
74
+ var that = this,
75
+ dfd = $.Deferred().resolveWith(that, [data]),
76
+ chain = dfd.promise();
77
+ this._trigger('process', null, data);
78
+ $.each(data.processQueue, function (i, settings) {
79
+ var func = function (data) {
80
+ if (originalData.errorThrown) {
81
+ return $.Deferred()
82
+ .rejectWith(that, [originalData]).promise();
83
+ }
84
+ return that.processActions[settings.action].call(
85
+ that,
86
+ data,
87
+ settings
88
+ );
89
+ };
90
+ chain = chain.then(func, settings.always && func);
91
+ });
92
+ chain
93
+ .done(function () {
94
+ that._trigger('processdone', null, data);
95
+ that._trigger('processalways', null, data);
96
+ })
97
+ .fail(function () {
98
+ that._trigger('processfail', null, data);
99
+ that._trigger('processalways', null, data);
100
+ });
101
+ return chain;
102
+ },
103
+
104
+ // Replaces the settings of each processQueue item that
105
+ // are strings starting with an "@", using the remaining
106
+ // substring as key for the option map,
107
+ // e.g. "@autoUpload" is replaced with options.autoUpload:
108
+ _transformProcessQueue: function (options) {
109
+ var processQueue = [];
110
+ $.each(options.processQueue, function () {
111
+ var settings = {},
112
+ action = this.action,
113
+ prefix = this.prefix === true ? action : this.prefix;
114
+ $.each(this, function (key, value) {
115
+ if ($.type(value) === 'string' &&
116
+ value.charAt(0) === '@') {
117
+ settings[key] = options[
118
+ value.slice(1) || (prefix ? prefix +
119
+ key.charAt(0).toUpperCase() + key.slice(1) : key)
120
+ ];
121
+ } else {
122
+ settings[key] = value;
123
+ }
124
+
125
+ });
126
+ processQueue.push(settings);
127
+ });
128
+ options.processQueue = processQueue;
129
+ },
130
+
131
+ // Returns the number of files currently in the processsing queue:
132
+ processing: function () {
133
+ return this._processing;
134
+ },
135
+
136
+ // Processes the files given as files property of the data parameter,
137
+ // returns a Promise object that allows to bind callbacks:
138
+ process: function (data) {
139
+ var that = this,
140
+ options = $.extend({}, this.options, data);
141
+ if (options.processQueue && options.processQueue.length) {
142
+ this._transformProcessQueue(options);
143
+ if (this._processing === 0) {
144
+ this._trigger('processstart');
145
+ }
146
+ $.each(data.files, function (index) {
147
+ var opts = index ? $.extend({}, options) : options,
148
+ func = function () {
149
+ if (data.errorThrown) {
150
+ return $.Deferred()
151
+ .rejectWith(that, [data]).promise();
152
+ }
153
+ return that._processFile(opts, data);
154
+ };
155
+ opts.index = index;
156
+ that._processing += 1;
157
+ that._processingQueue = that._processingQueue.then(func, func)
158
+ .always(function () {
159
+ that._processing -= 1;
160
+ if (that._processing === 0) {
161
+ that._trigger('processstop');
162
+ }
163
+ });
164
+ });
165
+ }
166
+ return this._processingQueue;
167
+ },
168
+
169
+ _create: function () {
170
+ this._super();
171
+ this._processing = 0;
172
+ this._processingQueue = $.Deferred().resolveWith(this)
173
+ .promise();
174
+ }
175
+
176
+ });
177
+
178
+ }));
@@ -0,0 +1,714 @@
1
+ /*
2
+ * jQuery File Upload User Interface Plugin
3
+ * https://github.com/blueimp/jQuery-File-Upload
4
+ *
5
+ * Copyright 2010, Sebastian Tschan
6
+ * https://blueimp.net
7
+ *
8
+ * Licensed under the MIT license:
9
+ * https://opensource.org/licenses/MIT
10
+ */
11
+
12
+ /* jshint nomen:false */
13
+ /* global define, require, window */
14
+
15
+ ;(function (factory) {
16
+ 'use strict';
17
+ if (typeof define === 'function' && define.amd) {
18
+ // Register as an anonymous AMD module:
19
+ define([
20
+ 'jquery',
21
+ 'blueimp-tmpl',
22
+ './jquery.fileupload-image',
23
+ './jquery.fileupload-audio',
24
+ './jquery.fileupload-video',
25
+ './jquery.fileupload-validate'
26
+ ], factory);
27
+ } else if (typeof exports === 'object') {
28
+ // Node/CommonJS:
29
+ factory(
30
+ require('jquery'),
31
+ require('blueimp-tmpl'),
32
+ require('./jquery.fileupload-image'),
33
+ require('./jquery.fileupload-audio'),
34
+ require('./jquery.fileupload-video'),
35
+ require('./jquery.fileupload-validate')
36
+ );
37
+ } else {
38
+ // Browser globals:
39
+ factory(
40
+ window.jQuery,
41
+ window.tmpl
42
+ );
43
+ }
44
+ }(function ($, tmpl) {
45
+ 'use strict';
46
+
47
+ $.blueimp.fileupload.prototype._specialOptions.push(
48
+ 'filesContainer',
49
+ 'uploadTemplateId',
50
+ 'downloadTemplateId'
51
+ );
52
+
53
+ // The UI version extends the file upload widget
54
+ // and adds complete user interface interaction:
55
+ $.widget('blueimp.fileupload', $.blueimp.fileupload, {
56
+
57
+ options: {
58
+ // By default, files added to the widget are uploaded as soon
59
+ // as the user clicks on the start buttons. To enable automatic
60
+ // uploads, set the following option to true:
61
+ autoUpload: false,
62
+ // The ID of the upload template:
63
+ uploadTemplateId: 'template-upload',
64
+ // The ID of the download template:
65
+ downloadTemplateId: 'template-download',
66
+ // The container for the list of files. If undefined, it is set to
67
+ // an element with class "files" inside of the widget element:
68
+ filesContainer: undefined,
69
+ // By default, files are appended to the files container.
70
+ // Set the following option to true, to prepend files instead:
71
+ prependFiles: false,
72
+ // The expected data type of the upload response, sets the dataType
73
+ // option of the $.ajax upload requests:
74
+ dataType: 'json',
75
+
76
+ // Error and info messages:
77
+ messages: {
78
+ unknownError: 'Unknown error'
79
+ },
80
+
81
+ // Function returning the current number of files,
82
+ // used by the maxNumberOfFiles validation:
83
+ getNumberOfFiles: function () {
84
+ return this.filesContainer.children()
85
+ .not('.processing').length;
86
+ },
87
+
88
+ // Callback to retrieve the list of files from the server response:
89
+ getFilesFromResponse: function (data) {
90
+ if (data.result && $.isArray(data.result.files)) {
91
+ return data.result.files;
92
+ }
93
+ return [];
94
+ },
95
+
96
+ // The add callback is invoked as soon as files are added to the fileupload
97
+ // widget (via file input selection, drag & drop or add API call).
98
+ // See the basic file upload widget for more information:
99
+ add: function (e, data) {
100
+ if (e.isDefaultPrevented()) {
101
+ return false;
102
+ }
103
+ var $this = $(this),
104
+ that = $this.data('blueimp-fileupload') ||
105
+ $this.data('fileupload'),
106
+ options = that.options;
107
+ data.context = that._renderUpload(data.files)
108
+ .data('data', data)
109
+ .addClass('processing');
110
+ options.filesContainer[
111
+ options.prependFiles ? 'prepend' : 'append'
112
+ ](data.context);
113
+ that._forceReflow(data.context);
114
+ that._transition(data.context);
115
+ data.process(function () {
116
+ return $this.fileupload('process', data);
117
+ }).always(function () {
118
+ data.context.each(function (index) {
119
+ $(this).find('.size').text(
120
+ that._formatFileSize(data.files[index].size)
121
+ );
122
+ }).removeClass('processing');
123
+ that._renderPreviews(data);
124
+ }).done(function () {
125
+ data.context.find('.start').prop('disabled', false);
126
+ if ((that._trigger('added', e, data) !== false) &&
127
+ (options.autoUpload || data.autoUpload) &&
128
+ data.autoUpload !== false) {
129
+ data.submit();
130
+ }
131
+ }).fail(function () {
132
+ if (data.files.error) {
133
+ data.context.each(function (index) {
134
+ var error = data.files[index].error;
135
+ if (error) {
136
+ $(this).find('.error').text(error);
137
+ }
138
+ });
139
+ }
140
+ });
141
+ },
142
+ // Callback for the start of each file upload request:
143
+ send: function (e, data) {
144
+ if (e.isDefaultPrevented()) {
145
+ return false;
146
+ }
147
+ var that = $(this).data('blueimp-fileupload') ||
148
+ $(this).data('fileupload');
149
+ if (data.context && data.dataType &&
150
+ data.dataType.substr(0, 6) === 'iframe') {
151
+ // Iframe Transport does not support progress events.
152
+ // In lack of an indeterminate progress bar, we set
153
+ // the progress to 100%, showing the full animated bar:
154
+ data.context
155
+ .find('.progress').addClass(
156
+ !$.support.transition && 'progress-animated'
157
+ )
158
+ .attr('aria-valuenow', 100)
159
+ .children().first().css(
160
+ 'width',
161
+ '100%'
162
+ );
163
+ }
164
+ return that._trigger('sent', e, data);
165
+ },
166
+ // Callback for successful uploads:
167
+ done: function (e, data) {
168
+ if (e.isDefaultPrevented()) {
169
+ return false;
170
+ }
171
+ var that = $(this).data('blueimp-fileupload') ||
172
+ $(this).data('fileupload'),
173
+ getFilesFromResponse = data.getFilesFromResponse ||
174
+ that.options.getFilesFromResponse,
175
+ files = getFilesFromResponse(data),
176
+ template,
177
+ deferred;
178
+ if (data.context) {
179
+ data.context.each(function (index) {
180
+ var file = files[index] ||
181
+ {error: 'Empty file upload result'};
182
+ deferred = that._addFinishedDeferreds();
183
+ that._transition($(this)).done(
184
+ function () {
185
+ var node = $(this);
186
+ template = that._renderDownload([file])
187
+ .replaceAll(node);
188
+ that._forceReflow(template);
189
+ that._transition(template).done(
190
+ function () {
191
+ data.context = $(this);
192
+ that._trigger('completed', e, data);
193
+ that._trigger('finished', e, data);
194
+ deferred.resolve();
195
+ }
196
+ );
197
+ }
198
+ );
199
+ });
200
+ } else {
201
+ template = that._renderDownload(files)[
202
+ that.options.prependFiles ? 'prependTo' : 'appendTo'
203
+ ](that.options.filesContainer);
204
+ that._forceReflow(template);
205
+ deferred = that._addFinishedDeferreds();
206
+ that._transition(template).done(
207
+ function () {
208
+ data.context = $(this);
209
+ that._trigger('completed', e, data);
210
+ that._trigger('finished', e, data);
211
+ deferred.resolve();
212
+ }
213
+ );
214
+ }
215
+ },
216
+ // Callback for failed (abort or error) uploads:
217
+ fail: function (e, data) {
218
+ if (e.isDefaultPrevented()) {
219
+ return false;
220
+ }
221
+ var that = $(this).data('blueimp-fileupload') ||
222
+ $(this).data('fileupload'),
223
+ template,
224
+ deferred;
225
+ if (data.context) {
226
+ data.context.each(function (index) {
227
+ if (data.errorThrown !== 'abort') {
228
+ var file = data.files[index];
229
+ file.error = file.error || data.errorThrown ||
230
+ data.i18n('unknownError');
231
+ deferred = that._addFinishedDeferreds();
232
+ that._transition($(this)).done(
233
+ function () {
234
+ var node = $(this);
235
+ template = that._renderDownload([file])
236
+ .replaceAll(node);
237
+ that._forceReflow(template);
238
+ that._transition(template).done(
239
+ function () {
240
+ data.context = $(this);
241
+ that._trigger('failed', e, data);
242
+ that._trigger('finished', e, data);
243
+ deferred.resolve();
244
+ }
245
+ );
246
+ }
247
+ );
248
+ } else {
249
+ deferred = that._addFinishedDeferreds();
250
+ that._transition($(this)).done(
251
+ function () {
252
+ $(this).remove();
253
+ that._trigger('failed', e, data);
254
+ that._trigger('finished', e, data);
255
+ deferred.resolve();
256
+ }
257
+ );
258
+ }
259
+ });
260
+ } else if (data.errorThrown !== 'abort') {
261
+ data.context = that._renderUpload(data.files)[
262
+ that.options.prependFiles ? 'prependTo' : 'appendTo'
263
+ ](that.options.filesContainer)
264
+ .data('data', data);
265
+ that._forceReflow(data.context);
266
+ deferred = that._addFinishedDeferreds();
267
+ that._transition(data.context).done(
268
+ function () {
269
+ data.context = $(this);
270
+ that._trigger('failed', e, data);
271
+ that._trigger('finished', e, data);
272
+ deferred.resolve();
273
+ }
274
+ );
275
+ } else {
276
+ that._trigger('failed', e, data);
277
+ that._trigger('finished', e, data);
278
+ that._addFinishedDeferreds().resolve();
279
+ }
280
+ },
281
+ // Callback for upload progress events:
282
+ progress: function (e, data) {
283
+ if (e.isDefaultPrevented()) {
284
+ return false;
285
+ }
286
+ var progress = Math.floor(data.loaded / data.total * 100);
287
+ if (data.context) {
288
+ data.context.each(function () {
289
+ $(this).find('.progress')
290
+ .attr('aria-valuenow', progress)
291
+ .children().first().css(
292
+ 'width',
293
+ progress + '%'
294
+ );
295
+ });
296
+ }
297
+ },
298
+ // Callback for global upload progress events:
299
+ progressall: function (e, data) {
300
+ if (e.isDefaultPrevented()) {
301
+ return false;
302
+ }
303
+ var $this = $(this),
304
+ progress = Math.floor(data.loaded / data.total * 100),
305
+ globalProgressNode = $this.find('.fileupload-progress'),
306
+ extendedProgressNode = globalProgressNode
307
+ .find('.progress-extended');
308
+ if (extendedProgressNode.length) {
309
+ extendedProgressNode.html(
310
+ ($this.data('blueimp-fileupload') || $this.data('fileupload'))
311
+ ._renderExtendedProgress(data)
312
+ );
313
+ }
314
+ globalProgressNode
315
+ .find('.progress')
316
+ .attr('aria-valuenow', progress)
317
+ .children().first().css(
318
+ 'width',
319
+ progress + '%'
320
+ );
321
+ },
322
+ // Callback for uploads start, equivalent to the global ajaxStart event:
323
+ start: function (e) {
324
+ if (e.isDefaultPrevented()) {
325
+ return false;
326
+ }
327
+ var that = $(this).data('blueimp-fileupload') ||
328
+ $(this).data('fileupload');
329
+ that._resetFinishedDeferreds();
330
+ that._transition($(this).find('.fileupload-progress')).done(
331
+ function () {
332
+ that._trigger('started', e);
333
+ }
334
+ );
335
+ },
336
+ // Callback for uploads stop, equivalent to the global ajaxStop event:
337
+ stop: function (e) {
338
+ if (e.isDefaultPrevented()) {
339
+ return false;
340
+ }
341
+ var that = $(this).data('blueimp-fileupload') ||
342
+ $(this).data('fileupload'),
343
+ deferred = that._addFinishedDeferreds();
344
+ $.when.apply($, that._getFinishedDeferreds())
345
+ .done(function () {
346
+ that._trigger('stopped', e);
347
+ });
348
+ that._transition($(this).find('.fileupload-progress')).done(
349
+ function () {
350
+ $(this).find('.progress')
351
+ .attr('aria-valuenow', '0')
352
+ .children().first().css('width', '0%');
353
+ $(this).find('.progress-extended').html(' ');
354
+ deferred.resolve();
355
+ }
356
+ );
357
+ },
358
+ processstart: function (e) {
359
+ if (e.isDefaultPrevented()) {
360
+ return false;
361
+ }
362
+ $(this).addClass('fileupload-processing');
363
+ },
364
+ processstop: function (e) {
365
+ if (e.isDefaultPrevented()) {
366
+ return false;
367
+ }
368
+ $(this).removeClass('fileupload-processing');
369
+ },
370
+ // Callback for file deletion:
371
+ destroy: function (e, data) {
372
+ if (e.isDefaultPrevented()) {
373
+ return false;
374
+ }
375
+ var that = $(this).data('blueimp-fileupload') ||
376
+ $(this).data('fileupload'),
377
+ removeNode = function () {
378
+ that._transition(data.context).done(
379
+ function () {
380
+ $(this).remove();
381
+ that._trigger('destroyed', e, data);
382
+ }
383
+ );
384
+ };
385
+ if (data.url) {
386
+ data.dataType = data.dataType || that.options.dataType;
387
+ $.ajax(data).done(removeNode).fail(function () {
388
+ that._trigger('destroyfailed', e, data);
389
+ });
390
+ } else {
391
+ removeNode();
392
+ }
393
+ }
394
+ },
395
+
396
+ _resetFinishedDeferreds: function () {
397
+ this._finishedUploads = [];
398
+ },
399
+
400
+ _addFinishedDeferreds: function (deferred) {
401
+ if (!deferred) {
402
+ deferred = $.Deferred();
403
+ }
404
+ this._finishedUploads.push(deferred);
405
+ return deferred;
406
+ },
407
+
408
+ _getFinishedDeferreds: function () {
409
+ return this._finishedUploads;
410
+ },
411
+
412
+ // Link handler, that allows to download files
413
+ // by drag & drop of the links to the desktop:
414
+ _enableDragToDesktop: function () {
415
+ var link = $(this),
416
+ url = link.prop('href'),
417
+ name = link.prop('download'),
418
+ type = 'application/octet-stream';
419
+ link.bind('dragstart', function (e) {
420
+ try {
421
+ e.originalEvent.dataTransfer.setData(
422
+ 'DownloadURL',
423
+ [type, name, url].join(':')
424
+ );
425
+ } catch (ignore) {}
426
+ });
427
+ },
428
+
429
+ _formatFileSize: function (bytes) {
430
+ if (typeof bytes !== 'number') {
431
+ return '';
432
+ }
433
+ if (bytes >= 1000000000) {
434
+ return (bytes / 1000000000).toFixed(2) + ' GB';
435
+ }
436
+ if (bytes >= 1000000) {
437
+ return (bytes / 1000000).toFixed(2) + ' MB';
438
+ }
439
+ return (bytes / 1000).toFixed(2) + ' KB';
440
+ },
441
+
442
+ _formatBitrate: function (bits) {
443
+ if (typeof bits !== 'number') {
444
+ return '';
445
+ }
446
+ if (bits >= 1000000000) {
447
+ return (bits / 1000000000).toFixed(2) + ' Gbit/s';
448
+ }
449
+ if (bits >= 1000000) {
450
+ return (bits / 1000000).toFixed(2) + ' Mbit/s';
451
+ }
452
+ if (bits >= 1000) {
453
+ return (bits / 1000).toFixed(2) + ' kbit/s';
454
+ }
455
+ return bits.toFixed(2) + ' bit/s';
456
+ },
457
+
458
+ _formatTime: function (seconds) {
459
+ var date = new Date(seconds * 1000),
460
+ days = Math.floor(seconds / 86400);
461
+ days = days ? days + 'd ' : '';
462
+ return days +
463
+ ('0' + date.getUTCHours()).slice(-2) + ':' +
464
+ ('0' + date.getUTCMinutes()).slice(-2) + ':' +
465
+ ('0' + date.getUTCSeconds()).slice(-2);
466
+ },
467
+
468
+ _formatPercentage: function (floatValue) {
469
+ return (floatValue * 100).toFixed(2) + ' %';
470
+ },
471
+
472
+ _renderExtendedProgress: function (data) {
473
+ return this._formatBitrate(data.bitrate) + ' | ' +
474
+ this._formatTime(
475
+ (data.total - data.loaded) * 8 / data.bitrate
476
+ ) + ' | ' +
477
+ this._formatPercentage(
478
+ data.loaded / data.total
479
+ ) + ' | ' +
480
+ this._formatFileSize(data.loaded) + ' / ' +
481
+ this._formatFileSize(data.total);
482
+ },
483
+
484
+ _renderTemplate: function (func, files) {
485
+ if (!func) {
486
+ return $();
487
+ }
488
+ var result = func({
489
+ files: files,
490
+ formatFileSize: this._formatFileSize,
491
+ options: this.options
492
+ });
493
+ if (result instanceof $) {
494
+ return result;
495
+ }
496
+ return $(this.options.templatesContainer).html(result).children();
497
+ },
498
+
499
+ _renderPreviews: function (data) {
500
+ data.context.find('.preview').each(function (index, elm) {
501
+ $(elm).append(data.files[index].preview);
502
+ });
503
+ },
504
+
505
+ _renderUpload: function (files) {
506
+ return this._renderTemplate(
507
+ this.options.uploadTemplate,
508
+ files
509
+ );
510
+ },
511
+
512
+ _renderDownload: function (files) {
513
+ return this._renderTemplate(
514
+ this.options.downloadTemplate,
515
+ files
516
+ ).find('a[download]').each(this._enableDragToDesktop).end();
517
+ },
518
+
519
+ _startHandler: function (e) {
520
+ e.preventDefault();
521
+ var button = $(e.currentTarget),
522
+ template = button.closest('.template-upload'),
523
+ data = template.data('data');
524
+ button.prop('disabled', true);
525
+ if (data && data.submit) {
526
+ data.submit();
527
+ }
528
+ },
529
+
530
+ _cancelHandler: function (e) {
531
+ e.preventDefault();
532
+ var template = $(e.currentTarget)
533
+ .closest('.template-upload,.template-download'),
534
+ data = template.data('data') || {};
535
+ data.context = data.context || template;
536
+ if (data.abort) {
537
+ data.abort();
538
+ } else {
539
+ data.errorThrown = 'abort';
540
+ this._trigger('fail', e, data);
541
+ }
542
+ },
543
+
544
+ _deleteHandler: function (e) {
545
+ e.preventDefault();
546
+ var button = $(e.currentTarget);
547
+ this._trigger('destroy', e, $.extend({
548
+ context: button.closest('.template-download'),
549
+ type: 'DELETE'
550
+ }, button.data()));
551
+ },
552
+
553
+ _forceReflow: function (node) {
554
+ return $.support.transition && node.length &&
555
+ node[0].offsetWidth;
556
+ },
557
+
558
+ _transition: function (node) {
559
+ var dfd = $.Deferred();
560
+ if ($.support.transition && node.hasClass('fade') && node.is(':visible')) {
561
+ node.bind(
562
+ $.support.transition.end,
563
+ function (e) {
564
+ // Make sure we don't respond to other transitions events
565
+ // in the container element, e.g. from button elements:
566
+ if (e.target === node[0]) {
567
+ node.unbind($.support.transition.end);
568
+ dfd.resolveWith(node);
569
+ }
570
+ }
571
+ ).toggleClass('in');
572
+ } else {
573
+ node.toggleClass('in');
574
+ dfd.resolveWith(node);
575
+ }
576
+ return dfd;
577
+ },
578
+
579
+ _initButtonBarEventHandlers: function () {
580
+ var fileUploadButtonBar = this.element.find('.fileupload-buttonbar'),
581
+ filesList = this.options.filesContainer;
582
+ this._on(fileUploadButtonBar.find('.start'), {
583
+ click: function (e) {
584
+ e.preventDefault();
585
+ filesList.find('.start').click();
586
+ }
587
+ });
588
+ this._on(fileUploadButtonBar.find('.cancel'), {
589
+ click: function (e) {
590
+ e.preventDefault();
591
+ filesList.find('.cancel').click();
592
+ }
593
+ });
594
+ this._on(fileUploadButtonBar.find('.delete'), {
595
+ click: function (e) {
596
+ e.preventDefault();
597
+ filesList.find('.toggle:checked')
598
+ .closest('.template-download')
599
+ .find('.delete').click();
600
+ fileUploadButtonBar.find('.toggle')
601
+ .prop('checked', false);
602
+ }
603
+ });
604
+ this._on(fileUploadButtonBar.find('.toggle'), {
605
+ change: function (e) {
606
+ filesList.find('.toggle').prop(
607
+ 'checked',
608
+ $(e.currentTarget).is(':checked')
609
+ );
610
+ }
611
+ });
612
+ },
613
+
614
+ _destroyButtonBarEventHandlers: function () {
615
+ this._off(
616
+ this.element.find('.fileupload-buttonbar')
617
+ .find('.start, .cancel, .delete'),
618
+ 'click'
619
+ );
620
+ this._off(
621
+ this.element.find('.fileupload-buttonbar .toggle'),
622
+ 'change.'
623
+ );
624
+ },
625
+
626
+ _initEventHandlers: function () {
627
+ this._super();
628
+ this._on(this.options.filesContainer, {
629
+ 'click .start': this._startHandler,
630
+ 'click .cancel': this._cancelHandler,
631
+ 'click .delete': this._deleteHandler
632
+ });
633
+ this._initButtonBarEventHandlers();
634
+ },
635
+
636
+ _destroyEventHandlers: function () {
637
+ this._destroyButtonBarEventHandlers();
638
+ this._off(this.options.filesContainer, 'click');
639
+ this._super();
640
+ },
641
+
642
+ _enableFileInputButton: function () {
643
+ this.element.find('.fileinput-button input')
644
+ .prop('disabled', false)
645
+ .parent().removeClass('disabled');
646
+ },
647
+
648
+ _disableFileInputButton: function () {
649
+ this.element.find('.fileinput-button input')
650
+ .prop('disabled', true)
651
+ .parent().addClass('disabled');
652
+ },
653
+
654
+ _initTemplates: function () {
655
+ var options = this.options;
656
+ options.templatesContainer = this.document[0].createElement(
657
+ options.filesContainer.prop('nodeName')
658
+ );
659
+ if (tmpl) {
660
+ if (options.uploadTemplateId) {
661
+ options.uploadTemplate = tmpl(options.uploadTemplateId);
662
+ }
663
+ if (options.downloadTemplateId) {
664
+ options.downloadTemplate = tmpl(options.downloadTemplateId);
665
+ }
666
+ }
667
+ },
668
+
669
+ _initFilesContainer: function () {
670
+ var options = this.options;
671
+ if (options.filesContainer === undefined) {
672
+ options.filesContainer = this.element.find('.files');
673
+ } else if (!(options.filesContainer instanceof $)) {
674
+ options.filesContainer = $(options.filesContainer);
675
+ }
676
+ },
677
+
678
+ _initSpecialOptions: function () {
679
+ this._super();
680
+ this._initFilesContainer();
681
+ this._initTemplates();
682
+ },
683
+
684
+ _create: function () {
685
+ this._super();
686
+ this._resetFinishedDeferreds();
687
+ if (!$.support.fileInput) {
688
+ this._disableFileInputButton();
689
+ }
690
+ },
691
+
692
+ enable: function () {
693
+ var wasDisabled = false;
694
+ if (this.options.disabled) {
695
+ wasDisabled = true;
696
+ }
697
+ this._super();
698
+ if (wasDisabled) {
699
+ this.element.find('input, button').prop('disabled', false);
700
+ this._enableFileInputButton();
701
+ }
702
+ },
703
+
704
+ disable: function () {
705
+ if (!this.options.disabled) {
706
+ this.element.find('input, button').prop('disabled', true);
707
+ this._disableFileInputButton();
708
+ }
709
+ this._super();
710
+ }
711
+
712
+ });
713
+
714
+ }));