forked from Meteor-Community-Packages/meteor-autoform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utility.js
611 lines (586 loc) · 20.3 KB
/
utility.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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
/* global Utility:true, MongoObject, AutoForm, moment, SimpleSchema */
Utility = {
componentTypeList: ['afArrayField', 'afEachArrayItem', 'afFieldInput', 'afFormGroup', 'afObjectField', 'afQuickField', 'afQuickFields', 'autoForm', 'quickForm'],
/**
* @method Utility.cleanNulls
* @private
* @param {Object} doc - Source object
* @returns {Object}
*
* Returns an object in which all properties with null, undefined, or empty
* string values have been removed, recursively.
*/
cleanNulls: function cleanNulls(doc, isArray, keepEmptyStrings) {
var newDoc = isArray ? [] : {};
_.each(doc, function(val, key) {
if (!_.isArray(val) && isBasicObject(val)) {
val = cleanNulls(val, false, keepEmptyStrings); //recurse into plain objects
if (!_.isEmpty(val)) {
newDoc[key] = val;
}
} else if (_.isArray(val)) {
val = cleanNulls(val, true, keepEmptyStrings); //recurse into non-typed arrays
if (!_.isEmpty(val)) {
newDoc[key] = val;
}
} else if (!Utility.isNullUndefinedOrEmptyString(val)) {
newDoc[key] = val;
} else if (keepEmptyStrings && typeof val === "string" && val.length === 0) {
newDoc[key] = val;
}
});
return newDoc;
},
/**
* @method Utility.reportNulls
* @private
* @param {Object} flatDoc - An object with no properties that are also objects.
* @returns {Object} An object in which the keys represent the keys in the
* original object that were null, undefined, or empty strings, and the value
* of each key is "".
*/
reportNulls: function reportNulls(flatDoc, keepEmptyStrings) {
var nulls = {};
// Loop through the flat doc
_.each(flatDoc, function(val, key) {
// If value is undefined, null, or an empty string, report this as null so it will be unset
if (val === null) {
nulls[key] = "";
} else if (val === void 0) {
nulls[key] = "";
} else if (!keepEmptyStrings && typeof val === "string" && val.length === 0) {
nulls[key] = "";
}
// If value is an array in which all the values recursively are undefined, null, or an empty string, report this as null so it will be unset
else if (_.isArray(val) && Utility.cleanNulls(val, true, keepEmptyStrings).length === 0) {
nulls[key] = "";
}
});
return nulls;
},
/**
* @method Utility.docToModifier
* @private
* @param {Object} doc - An object to be converted into a MongoDB modifier
* @param {Object} [options] - Options
* @param {Boolean} [options.keepEmptyStrings] - Pass `true` to keep empty strings in the $set. Otherwise $unset them.
* @param {Boolean} [options.keepArrays] - Pass `true` to $set entire arrays. Otherwise the modifier will $set individual array items.
* @returns {Object} A MongoDB modifier.
*
* Converts an object into a modifier by flattening it, putting keys with
* null, undefined, and empty string values into `modifier.$unset`, and
* putting the rest of the keys into `modifier.$set`.
*/
docToModifier: function docToModifier(doc, options) {
var modifier = {}, mDoc, flatDoc, nulls;
options = options || {};
// Flatten doc
mDoc = new MongoObject(doc);
flatDoc = mDoc.getFlatObject({keepArrays: !!options.keepArrays});
// Get a list of null, undefined, and empty string values so we can unset them instead
nulls = Utility.reportNulls(flatDoc, !!options.keepEmptyStrings);
flatDoc = Utility.cleanNulls(flatDoc, false, !!options.keepEmptyStrings);
if (!_.isEmpty(flatDoc)) {
modifier.$set = flatDoc;
}
if (!_.isEmpty(nulls)) {
modifier.$unset = nulls;
}
return modifier;
},
/**
* @method Utility.getSelectValues
* @private
* @param {Element} select - DOM Element from which to get current values
* @returns {string[]}
*
* Gets a string array of all the selected values in a given `select` DOM element.
*/
getSelectValues: function getSelectValues(select) {
var result = [];
var options = select && select.options || [];
var opt;
for (var i = 0, ln = options.length; i < ln; i++) {
opt = options[i];
if (opt.selected) {
result.push(opt.value || opt.text);
}
}
return result;
},
/*
* Get select options
*/
getSelectOptions: function getSelectOptions(defs, hash) {
var schemaType = defs.type;
var selectOptions = hash.options;
// Handle options="allowed"
if (selectOptions === "allowed") {
selectOptions = _.map(defs.allowedValues, function(v) {
var label = v;
if (hash.capitalize && v.length > 0 && schemaType === String) {
label = v.charAt(0).toUpperCase() + v.slice(1).toLowerCase();
}
return {label: label, value: v};
});
}
// Hashtable
else if (_.isObject(selectOptions) && !_.isArray(selectOptions)) {
selectOptions = _.map(selectOptions, function(v, k) {
return {label: v, value: schemaType(k)};
});
}
return selectOptions;
},
/**
* @method Utility.lookup
* @private
* @param {Any} obj
* @returns {Any}
*
* If `obj` is a string, returns the value of the property with that
* name on the `window` object. Otherwise returns `obj`.
*/
lookup: function lookup(obj) {
var ref = window, arr;
if (typeof obj === "string") {
arr = obj.split(".");
while(arr.length && (ref = ref[arr.shift()]));
if (!ref) {
throw new Error(obj + " is not in the window scope");
}
return ref;
}
return obj;
},
/**
* @method Utility.getDefs
* @private
* @param {SimpleSchema} ss
* @param {String} name
* @return {Object} Schema definitions object
*
* Returns the schema definitions object from a SimpleSchema instance. Equivalent to calling
* `ss.schema(name)` but handles throwing errors if `name` is not a string or is not a valid
* field name for this SimpleSchema instance.
*/
getDefs: function getDefs(ss, name) {
if (typeof name !== "string") {
throw new Error("Invalid field name: (not a string)");
}
var defs = ss.schema(name);
if (!defs) {
throw new Error("Invalid field name: " + name);
}
return defs;
},
/**
* @method Utility.objAffectsKey
* @private
* @param {Object} obj
* @param {String} key
* @return {Boolean}
* @todo should make this a static method in MongoObject
*/
objAffectsKey: function objAffectsKey(obj, key) {
var mDoc = new MongoObject(obj);
return mDoc.affectsKey(key);
},
/**
* @method Utility.expandObj
* @private
* @param {Object} doc
* @return {Object}
*
* Takes a flat object and returns an expanded version of it.
*/
expandObj: function expandObj(doc) {
var newDoc = {}, subkeys, subkey, subkeylen, nextPiece, current;
_.each(doc, function(val, key) {
subkeys = key.split(".");
subkeylen = subkeys.length;
current = newDoc;
for (var i = 0; i < subkeylen; i++) {
subkey = subkeys[i];
if (typeof current[subkey] !== "undefined" && !_.isObject(current[subkey])) {
break; //already set for some reason; leave it alone
}
if (i === subkeylen - 1) {
//last iteration; time to set the value
current[subkey] = val;
} else {
//see if the next piece is a number
nextPiece = subkeys[i + 1];
nextPiece = parseInt(nextPiece, 10);
if (isNaN(nextPiece) && !_.isObject(current[subkey])) {
current[subkey] = {};
} else if (!isNaN(nextPiece) && !_.isArray(current[subkey])) {
current[subkey] = [];
}
}
current = current[subkey];
}
});
return newDoc;
},
/**
* @method Utility.compactArrays
* @private
* @param {Object} obj
* @return {undefined}
*
* Edits the object by reference, compacting any arrays at any level recursively.
*/
compactArrays: function compactArrays(obj) {
if (_.isObject(obj)) {
_.each(obj, function (val, key) {
if (_.isArray(val)) {
obj[key] = _.without(val, void 0, null);
_.each(obj[key], function (arrayItem) {
compactArrays(arrayItem);
});
} else if (!(val instanceof Date) && _.isObject(val)) {
//recurse into objects
compactArrays(val);
}
});
}
},
/**
* @method Utility.bubbleEmpty
* @private
* @param {Object} obj
* @return {undefined}
*
* Edits the object by reference.
*/
bubbleEmpty: function bubbleEmpty(obj, keepEmptyStrings) {
if (_.isObject(obj)) {
_.each(obj, function (val, key) {
if (_.isArray(val)) {
_.each(val, function (arrayItem) {
bubbleEmpty(arrayItem);
});
} else if (isBasicObject(val)) {
var allEmpty = _.all(val, function (prop) {
return (prop === void 0 || prop === null || (!keepEmptyStrings && typeof prop === "string" && prop.length === 0));
});
if (_.isEmpty(val) || allEmpty) {
obj[key] = null;
} else {
//recurse into objects
bubbleEmpty(val);
}
}
});
}
},
/**
* @method Utility.isNullUndefinedOrEmptyString
* @private
* @param {Any} val
* @return {Boolean}
*
* Returns `true` if the value is null, undefined, or an empty string
*/
isNullUndefinedOrEmptyString: function isNullUndefinedOrEmptyString(val) {
return (val === void 0 || val === null || (typeof val === "string" && val.length === 0));
},
/**
* @method Utility.isValidDateString
* @private
* @param {String} dateString
* @return {Boolean}
*
* Returns `true` if dateString is a "valid date string"
*/
isValidDateString: function isValidDateString(dateString) {
var m = moment(dateString, 'YYYY-MM-DD', true);
return m && m.isValid();
},
/**
* @method Utility.isValidTimeString
* @private
* @param {String} timeString
* @return {Boolean}
*
* Returns `true` if timeString is a "valid time string"
*/
isValidTimeString: function isValidTimeString(timeString) {
if (typeof timeString !== "string") {
return false;
}
//this reg ex actually allows a few invalid hours/minutes/seconds, but
//we can catch that when parsing
var regEx = /^[0-2][0-9]:[0-5][0-9](:[0-5][0-9](\.[0-9]{1,3})?)?$/;
return regEx.test(timeString);
},
/**
* @method Utility.dateToDateString
* @private
* @param {Date} date
* @return {String}
*
* Returns a "valid date string" representing the local date.
*/
dateToDateString: function dateToDateString(date) {
return moment(date).format("YYYY-MM-DD");
},
/**
* @method Utility.dateToDateStringUTC
* @private
* @param {Date} date
* @return {String}
*
* Returns a "valid date string" representing the date converted to the UTC time zone.
*/
dateToDateStringUTC: function dateToDateStringUTC(date) {
return moment.utc(date).format("YYYY-MM-DD");
},
/**
* @method Utility.dateToNormalizedForcedUtcGlobalDateAndTimeString
* @private
* @param {Date} date
* @return {String}
*
* Returns a "valid normalized forced-UTC global date and time string" representing the time
* converted to the UTC time zone and expressed as the shortest possible string for the given
* time (e.g. omitting the seconds component entirely if the given time is zero seconds past the minute).
*
* http://www.whatwg.org/specs/web-apps/current-work/multipage/states-of-the-type-attribute.html#date-and-time-state-(type=datetime)
* http://www.whatwg.org/specs/web-apps/current-work/multipage/common-microsyntaxes.html#valid-normalized-forced-utc-global-date-and-time-string
*/
dateToNormalizedForcedUtcGlobalDateAndTimeString: function dateToNormalizedForcedUtcGlobalDateAndTimeString(date) {
return moment(date).utc().format("YYYY-MM-DD[T]HH:mm:ss.SSS[Z]");
},
/**
* @method Utility.isValidNormalizedForcedUtcGlobalDateAndTimeString
* @private
* @param {String} dateString
* @return {Boolean}
*
* Returns true if dateString is a "valid normalized forced-UTC global date and time string"
*/
isValidNormalizedForcedUtcGlobalDateAndTimeString: function isValidNormalizedForcedUtcGlobalDateAndTimeString(dateString) {
if (typeof dateString !== "string") {
return false;
}
var datePart = dateString.substring(0, 10);
var tPart = dateString.substring(10, 11);
var timePart = dateString.substring(11, dateString.length - 1);
var zPart = dateString.substring(dateString.length - 1);
return Utility.isValidDateString(datePart) && tPart === "T" && Utility.isValidTimeString(timePart) && zPart === "Z";
},
/**
* @method Utility.dateToNormalizedLocalDateAndTimeString
* @private
* @param {Date} date The Date object
* @param {String} [timezoneId] A valid timezoneId that moment-timezone understands, e.g., "America/Los_Angeles"
* @return {String}
*
* Returns a "valid normalized local date and time string".
*/
dateToNormalizedLocalDateAndTimeString: function dateToNormalizedLocalDateAndTimeString(date, timezoneId) {
var m = moment(date);
// by default, we assume local timezone; add moment-timezone to app and pass timezoneId
// to use a different timezone
if (typeof timezoneId === "string") {
if (typeof m.tz !== "function") {
throw new Error("If you specify a timezoneId, make sure that you've added a moment-timezone package to your app");
}
m.tz(timezoneId);
}
return m.format("YYYY-MM-DD[T]HH:mm:ss.SSS");
},
/**
* @method Utility.isValidNormalizedLocalDateAndTimeString
* @private
* @param {String} dtString
* @return {Boolean}
*
* Returns true if dtString is a "valid normalized local date and time string"
*/
isValidNormalizedLocalDateAndTimeString: function isValidNormalizedLocalDateAndTimeString(dtString) {
if (typeof dtString !== "string") {
return false;
}
var datePart = dtString.substring(0, 10);
var tPart = dtString.substring(10, 11);
var timePart = dtString.substring(11, dtString.length);
return Utility.isValidDateString(datePart) && tPart === "T" && Utility.isValidTimeString(timePart);
},
/**
* @method Utility.getComponentContext
* @private
* @param {Object} context A context (`this`) object
* @param {String} name The name of the helper or component we're calling from.
* @return {Object} Normalized context object
*
* Returns an object with `atts` and `defs` properties, normalized from whatever object is passed in.
* This helps deal with the fact that we have to pass the ancestor autoform's context to different
* helpers and components in different ways, but in all cases we want to get access to it and throw
* an error if we can't find an autoform context.
*/
getComponentContext: function autoFormGetComponentContext(context, name) {
var atts, defs, formComponentAttributes, fieldAttributes, fieldAttributesForComponentType, ss;
atts = _.clone(context || {});
ss = AutoForm.getFormSchema();
defs = Utility.getDefs(ss, atts.name); //defs will not be undefined
// Look up the tree if we're in a helper, checking to see if any ancestor components
// had a <componentType>-attribute specified.
formComponentAttributes = AutoForm.findAttributesWithPrefix(name + "-");
// Get any field-specific attributes defined in the schema.
// They can be in autoform.attrName or autoform.componentType.attrName, with
// the latter overriding the former.
fieldAttributes = _.clone(defs.autoform) || {};
fieldAttributesForComponentType = fieldAttributes[name] || {};
fieldAttributes = _.omit(fieldAttributes, Utility.componentTypeList);
fieldAttributes = _.extend({}, fieldAttributes, fieldAttributesForComponentType);
// "autoform" option in the schema provides default atts
atts = _.extend({}, formComponentAttributes, fieldAttributes, atts);
// eval any attribute that is provided as a function
var evaluatedAtts = {};
_.each(atts, function (v, k) {
if (typeof v === 'function') {
evaluatedAtts[k] = v.call({
name: atts.name
});
} else {
evaluatedAtts[k] = v;
}
});
return {
atts: evaluatedAtts,
defs: defs
};
},
/**
* @method Utility.stringToArray
* @private
* @param {String|Array} s A variable that might be a string or an array.
* @param {String} errorMessage Error message to use if it's not a string or an array.
* @return {Array} The array, building it from a comma-delimited string if necessary.
*/
stringToArray: function stringToArray(s, errorMessage) {
if (typeof s === "string") {
return s.replace(/ /g, '').split(',');
} else if (!_.isArray(s)) {
throw new Error(errorMessage);
} else {
return s;
}
},
/**
* @method Utility.stringToBool
* @private
* @param {String} val A string or null or undefined.
* @return {Boolean|String} The string converted to a Boolean.
*
* If the string is "true" or "1", returns `true`. If the string is "false" or "0", returns `false`. Otherwise returns the original string.
*/
stringToBool: function stringToBool(val) {
if (typeof val === "string" && val.length > 0) {
var lval = val.toLowerCase();
if (lval === "true" || lval === "1") {
return true;
} else if (lval === "false" || lval === "0") {
return false;
}
}
return val;
},
/**
* @method Utility.stringToNumber
* @private
* @param {String} val A string or null or undefined.
* @return {Number|String} The string converted to a Number or the original value.
*
* Returns Number(val) unless the result is NaN.
*/
stringToNumber: function stringToNumber(val) {
if (typeof val === "string" && val.length > 0) {
var numVal = Number(val);
if (!isNaN(numVal)) {
return numVal;
}
}
return val;
},
/**
* @method Utility.stringToDate
* @private
* @param {String} val A string or null or undefined.
* @return {Date|String} The string converted to a Date instance.
*
* Returns new Date(val) as long as val is a string with at least one character. Otherwise returns the original string.
*/
stringToDate: function stringToDate(val) {
if (typeof val === "string" && val.length > 0) {
return new Date(val);
}
return val;
},
/**
* @method Utility.addClass
* @private
* @param {Object} atts An object that might have a "class" property
* @param {String} klass The class string to add
* @return {Object} The object with klass added to the "class" property, creating the property if necessary
*/
addClass: function addClass(atts, klass) {
if (typeof atts["class"] === "string") {
atts["class"] += " " + klass;
} else {
atts["class"] = klass;
}
return atts;
},
/**
* @method Utility.getFormTypeDef
* @private
* @param {String} formType The form type
* @return {Object} The definition. Throws an error if type hasn't been defined.
*/
getFormTypeDef: function getFormTypeDef(formType) {
var ftd = AutoForm._formTypeDefinitions[formType];
if (!ftd) {
throw new Error('AutoForm: Form type "' + formType + '" has not been defined');
}
return ftd;
}
};
// getPrototypeOf polyfill
if (typeof Object.getPrototypeOf !== "function") {
if (typeof "".__proto__ === "object") {
Object.getPrototypeOf = function(object) {
return object.__proto__;
};
} else {
Object.getPrototypeOf = function(object) {
// May break if the constructor has been tampered with
return object.constructor.prototype;
};
}
}
/* Tests whether "obj" is an Object as opposed to
* something that inherits from Object
*
* @param {any} obj
* @returns {Boolean}
*/
var isBasicObject = function(obj) {
return _.isObject(obj) && Object.getPrototypeOf(obj) === Object.prototype;
};
/*
* Extend SS for now; TODO put this in SS package
*/
if (typeof SimpleSchema.prototype.getAllowedValuesForKey !== 'function') {
SimpleSchema.prototype.getAllowedValuesForKey = function (key) {
var defs = this.getDefinition(key, ['type', 'allowedValues']);
// For array fields, `allowedValues` is on the array item definition
if (defs.type === Array) {
defs = this.getDefinition(key+".$", ['allowedValues']);
}
return defs.allowedValues;
};
}