This repository has been archived by the owner on Dec 26, 2019. It is now read-only.
forked from aldeed/meteor-cfs-autoform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cfs-autoform-hooks.js
318 lines (283 loc) · 10.4 KB
/
cfs-autoform-hooks.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
Hooks = {
beforeInsert: function (doc) {
var self = this, template = this.template;
if (!AutoForm.validateForm(this.formId)) {
return false;
}
// Loop through all hidden file inputs in the form.
var totalFiles = 0;
var arrayFields = {};
template.$('.cfsaf-hidden').each(function () {
var elem = $(this);
// Get schema key that this input is for
var key = elem.attr("data-schema-key");
// no matter what, we want to delete the dummyId value
//delete doc[key];
CfsAutoForm.Util.deepDelete(doc,key);
// Get list of files that were attached for this key
var fileList = elem.data("cfsaf_files");
// If we have some attached files
if (fileList) {
// add all files to total count
totalFiles += fileList.length;
}
// Otherwise it might be a multiple files field
else {
var fileListList = elem.data("cfsaf_files_multi");
if (fileListList) {
// make a note that it's an array field
arrayFields[key] = true;
// add all files to total count
_.each(fileListList, function (fileList) {
totalFiles += fileList.length;
});
// prep the array
doc[key] = [];
}
}
});
// If no files were attached anywhere on the form, we're done.
// We pass back the doc synchronously
if (totalFiles === 0) {
return doc;
}
// Create the callback that will be called either
// upon file insert error or upon each file being uploaded.
var doneFiles = 0;
var failedFiles = 0;
function cb(error, fileObj, key) {
// Increment the done files count
doneFiles++;
// Increment the failed files count if it failed
if (error) {
failedFiles++;
}
// If it didn't fail, set the new ID as the property value in the doc,
// or push it into the array of IDs if it's a multiple files field.
else {
if (arrayFields[key]) {
CfsAutoForm.Util.deepFind(doc,key)[key].push(fileObj._id);
} else {
//doc[key] = fileObj._id;
CfsAutoForm.Util.deepSet(doc,key,fileObj._id);
}
}
// If this is the last file to be processed, pass execution back to autoform
if (doneFiles === totalFiles) {
// If any files failed
if (failedFiles > 0) {
// delete all that succeeded
CfsAutoForm.deleteUploadedFiles(template);
// pass back to autoform code, telling it we failed
self.result(false);
}
// Otherwise if all files succeeded
else {
// pass updated doc back to autoform code, telling it we succeeded
self.result(doc);
}
}
}
// Loop through all hidden file fields, inserting
// and uploading all files that have been attached to them.
template.$('.cfsaf-hidden').each(function () {
var elem = $(this);
// Get schema key that this input is for
var key = elem.attr("data-schema-key");
// Get the FS.Collection instance
var fsCollectionName = elem.attr("data-cfs-collection");
var fsCollection = FS._collections[fsCollectionName];
// Loop through all files that were attached to this field
function loopFileList(fileList) {
_.each(fileList, function (file) {
// Create the FS.File instance
var fileObj = new FS.File(file);
// Listen for the "uploaded" event on this file, so that we
// can call our callback. We want to wait until uploaded rather
// than just inserted. XXX Maybe should wait for stored?
fileObj.once("uploaded", function () {
// track successful uploads so we can delete them if any
// of the other files fail to upload
var uploadedFiles = elem.data("cfsaf_uploaded-files") || [];
uploadedFiles.push(fileObj);
elem.data("cfsaf_uploaded-files", uploadedFiles);
// call callback
cb(null, fileObj, key);
});
// Insert the FS.File instance into the FS.Collection
fsCollection.insert(fileObj, function (error, fileObj) {
// call callback if insert/upload failed
if (error) {
cb(error, fileObj, key);
}
// TODO progress bar during uploads
});
});
}
// single fields first
loopFileList(elem.data("cfsaf_files"));
// then multiple fields
_.each(elem.data("cfsaf_files_multi"), function (fileList) {
loopFileList(fileList);
});
});
},
afterInsert: function (error) {
var template = this.template, elems = template.$('.cfsaf-hidden');
if (error) {
CfsAutoForm.deleteUploadedFiles(template);
if (FS.debug || AutoForm._debug)
console.log("There was an error inserting so all uploaded files were removed.", error);
} else {
// cleanup files data
elems.removeData("cfsaf_files");
elems.removeData("cfsaf_files_multi");
}
// cleanup uploaded files data
elems.removeData("cfsaf_uploaded-files");
},
beforeUpdate: function(doc){
var self = this, template = this.template;
if (!AutoForm.validateForm(this.formId)) {
return false;
}
// Loop through all hidden file inputs in the form.
var totalFiles = 0;
var arrayFields = {};
template.$('.cfsaf-hidden').each(function () {
var elem = $(this);
// Get schema key that this input is for
var key = elem.attr("data-schema-key");
//Maintain current key
doc.$set[key] = self.currentDoc[key];
// Get list of files that were attached for this key
var fileList = elem.data("cfsaf_files");
// If we have some attached files
if (fileList) {
// add all files to total count
totalFiles += fileList.length;
//we delete the id only if we uploaded another file
//delete doc[key];
CfsAutoForm.Util.deepDelete(doc,key);
}
// Otherwise it might be a multiple files field
else {
var fileListList = elem.data("cfsaf_files_multi");
if (fileListList) {
//we delete the id only if we uploaded another file
//delete doc[key];
CfsAutoForm.Util.deepDelete(doc,key);
// make a note that it's an array field
arrayFields[key] = true;
// add all files to total count
_.each(fileListList, function (fileList) {
totalFiles += fileList.length;
});
// prep the array
doc[key] = [];
}
}
});
// If no files were attached anywhere on the form, we're done.
// We pass back the doc synchronously
if (totalFiles === 0) {
return doc;
}
// Create the callback that will be called either
// upon file insert error or upon each file being uploaded.
var doneFiles = 0;
var failedFiles = 0;
function cb(error, fileObj, key) {
// Increment the done files count
doneFiles++;
// Increment the failed files count if it failed
if (error) {
failedFiles++;
}
// If it didn't fail, set the new ID as the property value in the doc,
// or push it into the array of IDs if it's a multiple files field.
else {
if (arrayFields[key]) {
CfsAutoForm.Util.deepFind(doc.$set,key).push(fileObj._id);
} else {
//doc[key] = fileObj._id;
CfsAutoForm.Util.deepSet(doc.$set,key,fileObj._id);
}
}
// If this is the last file to be processed, pass execution back to autoform
if (doneFiles === totalFiles) {
// If any files failed
if (failedFiles > 0) {
// delete all that succeeded
CfsAutoForm.deleteUploadedFiles(template);
// pass back to autoform code, telling it we failed
self.result(false);
}
// Otherwise if all files succeeded
else {
// pass updated doc back to autoform code, telling it we succeeded
console.log(doc);
self.result(doc);
}
}
}
// Loop through all hidden file fields, inserting
// and uploading all files that have been attached to them.
template.$('.cfsaf-hidden').each(function () {
var elem = $(this);
// Get schema key that this input is for
var key = elem.attr("data-schema-key");
// Get the FS.Collection instance
var fsCollectionName = elem.attr("data-cfs-collection");
var fsCollection = FS._collections[fsCollectionName];
// Loop through all files that were attached to this field
function loopFileList(fileList) {
_.each(fileList, function (file) {
// Create the FS.File instance
var fileObj = new FS.File(file);
// Listen for the "uploaded" event on this file, so that we
// can call our callback. We want to wait until uploaded rather
// than just inserted. XXX Maybe should wait for stored?
fileObj.once("uploaded", function () {
// track successful uploads so we can delete them if any
// of the other files fail to upload
var uploadedFiles = elem.data("cfsaf_uploaded-files") || [];
uploadedFiles.push(fileObj);
elem.data("cfsaf_uploaded-files", uploadedFiles);
// call callback
cb(null, fileObj, key);
});
// Insert the FS.File instance into the FS.Collection
fsCollection.insert(fileObj, function (error, fileObj) {
// call callback if insert/upload failed
if (error) {
cb(error, fileObj, key);
}
// TODO progress bar during uploads
});
});
}
// single fields first
loopFileList(elem.data("cfsaf_files"));
// then multiple fields
_.each(elem.data("cfsaf_files_multi"), function (fileList) {
loopFileList(fileList);
});
});
},
afterUpdate: function(error, result){
var template = this.template;
var elems = template.$('.cfsaf-hidden');
if (error) {
CfsAutoForm.deleteUploadedFiles(template);
if (FS.debug || AutoForm._debug)
console.log("There was an error inserting so all uploaded files were removed.", error);
} else {
// cleanup files data
elems.removeData("cfsaf_files");
elems.removeData("cfsaf_files_multi");
}
// cleanup uploaded files data
elems.removeData("cfsaf_uploaded-files");
}
};