forked from Meteor-Community-Packages/meteor-autoform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autoform-inputs.js
219 lines (189 loc) · 7.04 KB
/
autoform-inputs.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
/* global AutoForm, getInputValue:true, getAllFieldsInForm:true, getInputData:true, updateTrackedFieldValue:true, updateAllTrackedFieldValues:true, getFlatDocOfFieldValues:true */
getFlatDocOfFieldValues = function getFlatDocOfFieldValues(fields, ss) {
var doc = {};
fields.each(function () {
var fieldName, val = AutoForm.getInputValue(this, ss);
if (val !== void 0) {
// Get the field/schema key name
fieldName = $(this).attr("data-schema-key");
doc[fieldName] = val;
}
});
return doc;
};
/*
* package scope functions
*/
/*
* Gets the value that should be shown/selected in the input. Returns
* a string, a boolean, or an array of strings. The value used,
* in order of preference, is one of:
* * The `value` attribute provided
* * The value that is set in the `doc` provided on the containing autoForm
* * The `defaultValue` from the schema
*/
getInputValue = function getInputValue(atts, value, mDoc, schemaDefaultValue, fieldDefaultValue, typeDefs) {
if (typeof value === "undefined") {
// Get the value for this key in the current document
if (mDoc) {
var valueInfo = mDoc.getInfoForKey(atts.name);
if (valueInfo) {
value = valueInfo.value;
} else {
value = fieldDefaultValue;
}
}
// Only if there is no current document, use the schema defaultValue
else {
// Use the field default value if provided
if (typeof fieldDefaultValue !== 'undefined') {
value = fieldDefaultValue;
}
// Or use the defaultValue in the schema
else {
value = schemaDefaultValue;
}
}
}
// Change null or undefined to an empty string
value = (value === null || value === void 0) ? '' : value;
// If the component expects the value to be an array, and it's not, make it one
if (typeDefs.valueIsArray && !_.isArray(value)) {
if (typeof value === "string") {
value = value.split(',');
} else {
value = [value];
}
}
// At this point we have a value or an array of values.
// Run through the components valueIn function if we have one.
// It should then be in whatever format the component expects.
if (typeof typeDefs.valueIn === "function") {
value = typeDefs.valueIn(value, atts);
}
return value;
};
/*
* Builds the data context that the input component will have.
*/
getInputData = function getInputData(defs, hash, value, label, formType) {
/*
* Get HTML attributes
*/
// We don't want to alter the original hash, so we clone it and
// remove some stuff that should not be HTML attributes.
var inputAtts = _.omit(hash,
"type",
"value",
"noselect",
"options",
"template",
"defaultValue");
// Add required if required
if (typeof inputAtts.required === "undefined" && !defs.optional) {
inputAtts.required = "";
}
// Add data-schema-key to every type of element
inputAtts['data-schema-key'] = inputAtts.name;
// Set placeholder to label from schema if requested.
// We check hash.placeholder instead of inputAtts.placeholder because
// we're setting inputAtts.placeholder, so it wouldn't be the same on
// subsequent reactive runs of this function.
if (hash.placeholder === "schemaLabel") {
inputAtts.placeholder = label;
}
// To enable reactively toggling boolean attributes
// in a simple way, we add the attributes to the HTML
// only if their value is `true`. That is, unlike in
// HTML, their mere presence does not matter.
_.each(["disabled", "readonly", "checked", "required", "autofocus"], function (booleanProp) {
if (!_.has(hash, booleanProp)) {
return;
}
// For historical reasons, we treat the string "true" and an empty string as `true`, too.
// But an empty string value results in the cleanest rendered output for boolean props,
// so we standardize as that.
if (hash[booleanProp] === true || hash[booleanProp] === "true" || hash[booleanProp] === "") {
inputAtts[booleanProp] = "";
} else {
// If the value is anything else, we don't render it
delete inputAtts[booleanProp];
}
});
/*
* Set up the context. This is the object that becomes `this` in the
* input type template.
*/
var inputTypeContext = {
name: inputAtts.name,
schemaType: defs.type,
min: (typeof defs.min === "function") ? defs.min() : defs.min,
max: (typeof defs.max === "function") ? defs.max() : defs.max,
decimal: defs.decimal,
value: value,
atts: inputAtts,
selectOptions: AutoForm.Utility.getSelectOptions(defs, hash)
};
// Before returning the context, we allow the registered form type to
// adjust it if necessary.
var ftd = Utility.getFormTypeDef(formType);
if (typeof ftd.adjustInputContext === 'function') {
inputTypeContext = ftd.adjustInputContext(inputTypeContext);
}
return inputTypeContext;
};
updateTrackedFieldValue = function updateTrackedFieldValue(template, fieldName) {
if (template) {
template.formValues = template.formValues || {};
if (!template.formValues[fieldName]) {
template.formValues[fieldName] = new Tracker.Dependency();
}
// In case we call updateTrackedFieldValue from multiple places at once,
// call .changed() only once
if (template.formValues[fieldName].requestInProgress) {
return;
}
template.formValues[fieldName].requestInProgress = true;
}
function markChanged() {
// We always want to be sure to wait for DOM updates to
// finish before we indicate that values have changed.
// Using a value of 0 here did not work, but 100 seems to
// work in testing. We'll need to keep an eye on this.
// Not an ideal solution.
setTimeout(function () {
// Template or view may have disappeared while
// we waited to run this
if (template &&
template.view &&
template.view._domrange &&
!template.view.isDestroyed) {
template.formValues[fieldName].changed();
template.formValues[fieldName].requestInProgress = false;
}
}, 100);
}
markChanged();
// To properly handle array fields, we'll mark the ancestors as changed, too
// XXX Might be a more elegant way to handle this
var dotPos = fieldName.lastIndexOf('.');
while (dotPos !== -1) {
fieldName = fieldName.slice(0, dotPos);
markChanged();
dotPos = fieldName.lastIndexOf('.');
}
};
updateAllTrackedFieldValues = function updateAllTrackedFieldValues(template) {
if (template && template.formValues) {
_.each(template.formValues, function (o, fieldName) {
updateTrackedFieldValue(template, fieldName);
});
}
};
getAllFieldsInForm = function getAllFieldsInForm(template) {
// Get all elements with `data-schema-key` attribute, unless disabled
return template.$("[data-schema-key]").not("[disabled]");
// Exclude fields in sub-forms, since they will belong to a different AutoForm and schema.
// TODO need some selector/filter that actually works correctly for excluding subforms
// return template.$('[data-schema-key]').not("[disabled]").not(template.$('form form [data-schema-key]'));
};