forked from twilson63/ngUpload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathng-upload.js
212 lines (185 loc) · 8.68 KB
/
ng-upload.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
// Version (see package.json)
// AngularJS simple file upload directive
// this directive uses an iframe as a target
// to enable the uploading of files without
// losing focus in the ng-app.
//
// <div ng-app="app">
// <div ng-controller="mainCtrl">
// <form action="/uploads" ng-upload>
// <input type="file" name="avatar"></input>
// <input type="submit" value="Upload"
// upload-submit="submited(content, completed)"></input>
// </form>
// </div>
// </div>
//
// angular.module('app', ['ngUpload'])
// .controller('mainCtrl', function($scope) {
// $scope.submited = function(content, completed) {
// if (completed) {
// console.log(content);
// }
// }
// });
//
angular.module('ngUpload', [])
.directive('uploadSubmit', ['$parse', function($parse) {
// Utility function to get the closest parent element with a given tag
function getParentNodeByTagName(element, tagName) {
element = angular.element(element);
var parent = element.parent();
tagName = tagName.toLowerCase();
if ( parent && parent[0].tagName.toLowerCase() === tagName ) {
return parent;
} else {
return !parent ? null : getParentNodeByTagName(parent, tagName);
}
}
return {
restrict: 'AC',
link: function(scope, element, attrs) {
// Options (just 1 for now)
// Each option should be prefixed with 'upload-options-' or 'uploadOptions'
// {
// // specify whether to enable the submit button when uploading forms
// enableControls: bool
//
// // sets the value of hidden input to their ng-model when the form is submitted
// convertHidden
// }
var options = {};
options.enableControls = attrs.uploadOptionsEnableControls;
if ( attrs.hasOwnProperty( "uploadOptionsConvertHidden" ) ) {
// Allow blank or true
options.convertHidden = attrs.uploadOptionsConvertHidden != "false";
}
// submit the form
var form = getParentNodeByTagName(element, 'form');
// Retrieve the callback function
var fn = $parse(attrs.uploadSubmit);
if (!angular.isFunction(fn)) {
var message = "The expression on the ngUpload directive does not point to a valid function.";
throw message + "\n";
}
element.bind('click', function($event) {
// prevent default behavior of click
if ($event) {
$event.preventDefault = true;
}
if (element.attr('disabled')) {
return;
}
// create a new iframe
var iframe = angular.element("<iframe id='upload_iframe' name='upload_iframe' border='0' width='0' height='0' style='width: 0px; height: 0px; border: none; display: none' />");
// add the new iframe to application
form.parent().append(iframe);
// attach function to load event of the iframe
iframe.bind('load', function () {
// get content using native DOM. use of jQuery to retrieve content triggers IE bug
// http://bugs.jquery.com/ticket/13936
var nativeIframe = iframe[0];
var iFrameDoc = nativeIframe.contentDocument || nativeIframe.contentWindow.document;
var content = iFrameDoc.body.innerHTML;
try {
content = JSON.parse(content);
} catch (e) {
if (console) { console.log('WARN: XHR response is not valid json'); }
}
// if outside a digest cycle, execute the upload response function in the active scope
// else execute the upload response function in the current digest
if (!scope.$$phase) {
scope.$apply(function () {
fn(scope, { content: content, completed: true });
});
} else {
fn(scope, { content: content, completed: true });
}
// remove iframe
if (content !== "") { // Fixes a bug in Google Chrome that dispose the iframe before content is ready.
setTimeout(function () { iframe.remove(); }, 250);
}
element.attr('disabled', null);
element.attr('title', 'Click to start upload.');
});
if (!scope.$$phase) {
scope.$apply(function () {
fn(scope, {content: "Please wait...", completed: false });
});
} else {
fn(scope, {content: "Please wait...", completed: false });
}
var enabled = true;
if (!options.enableControls) {
// disable the submit control on click
element.attr('disabled', 'disabled');
enabled = false;
}
// why do we need this???
element.attr('title', (enabled ? '[ENABLED]: ' : '[DISABLED]: ') + 'Uploading, please wait...');
// If convertHidden option is enabled, set the value of hidden fields to the eval of the ng-model
if (options.convertHidden) {
angular.forEach(form.find('input'), function(element) {
element = angular.element(element);
if (element.attr('ng-model') &&
element.attr('type') &&
element.attr('type') == 'hidden') {
element.attr('value', scope.$eval(element.attr('ng-model')));
}
});
}
form[0].submit();
}).attr('title', 'Click to start upload.');
}
};
}])
.directive('ngUpload', ['$parse', '$document', '$browser', function ($parse, $document, $browser) {
// Utility function to get meta tag with a given name attribute
function getMetaTagWithName(name) {
var head = $document.find('head');
var match;
angular.forEach(head.find('meta'), function(element) {
if ( element.getAttribute('name') === name ) {
match = element;
}
});
return angular.element(match);
}
return {
restrict: 'AC',
link: function (scope, element, attrs) {
// Options (just 1 for now)
// Each option should be prefixed with 'upload-options-' or 'uploadOptions'
// {
// // add the Rails CSRF hidden input to form
// enableRailsCsrf: bool
// }
var options = {};
if ( attrs.hasOwnProperty( "uploadOptionsEnableRailsCsrf" ) ) {
// allow for blank or true
options.enableRailsCsrf = attrs.uploadOptionsEnableRailsCsrf != "false";
}
element.attr("target", "upload_iframe");
element.attr("method", "post");
var separator = element.attr("action").indexOf('?')==-1 ? '?' : '&';
var action = element.attr("action") + separator + "_t=" + new Date().getTime()
var csrfToken = $browser.cookies()['XSRF-TOKEN'];
if (csrfToken) {
action = action + '&_csrf=' + encodeURIComponent(csrfToken);
}
// Append a timestamp field to the url to prevent browser caching results
element.attr("action", action);
element.attr("enctype", "multipart/form-data");
element.attr("encoding", "multipart/form-data");
// If enabled, add csrf hidden input to form
if ( options.enableRailsCsrf ) {
var input = angular.element("<input />");
input.attr("class", "upload-csrf-token");
input.attr("type", "hidden");
input.attr("name", getMetaTagWithName('csrf-param').attr('content'));
input.val(getMetaTagWithName('csrf-token').attr('content'));
element.append(input);
}
}
};
}]);