forked from Meteor-Community-Packages/meteor-autoform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autoform-helpers.js
286 lines (239 loc) · 9.37 KB
/
autoform-helpers.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
/* global arrayTracker, AutoForm */
function parseOptions(options) {
var hash = (options || {}).hash || {};
// Find the form's schema
var ss = AutoForm.getFormSchema();
return _.extend({}, hash, { ss: ss });
}
/*
* Global template helpers (exported to app)
*/
/*
* afFieldMessage
*/
Template.registerHelper('afFieldMessage', function autoFormFieldMessage(options) {
options = parseOptions(options, 'afFieldMessage');
var formId = AutoForm.getFormId();
return options.ss.namedContext(formId).keyErrorMessage(options.name);
});
/*
* afFieldIsInvalid
*/
Template.registerHelper('afFieldIsInvalid', function autoFormFieldIsInvalid(options) {
options = parseOptions(options, 'afFieldIsInvalid');
var formId = AutoForm.getFormId();
return options.ss.namedContext(formId).keyIsInvalid(options.name);
});
/*
* afArrayFieldHasMoreThanMinimum
*/
Template.registerHelper('afArrayFieldHasMoreThanMinimum', function autoFormArrayFieldHasMoreThanMinimum(options) {
options = parseOptions(options, 'afArrayFieldHasMoreThanMinimum');
var form = AutoForm.getCurrentDataPlusExtrasForForm();
// Registered form types can disable adding/removing array items
if (form.formTypeDef.hideArrayItemButtons) {
return false;
}
var range = arrayTracker.getMinMax(options.ss, options.name, options.minCount, options.maxCount);
var visibleCount = arrayTracker.getVisibleCount(form.id, options.name);
return (visibleCount > range.minCount);
});
/*
* afArrayFieldHasLessThanMaximum
*/
Template.registerHelper('afArrayFieldHasLessThanMaximum', function autoFormArrayFieldHasLessThanMaximum(options) {
options = parseOptions(options, 'afArrayFieldHasLessThanMaximum');
var form = AutoForm.getCurrentDataPlusExtrasForForm();
// Registered form types can disable adding/removing array items
if (form.formTypeDef.hideArrayItemButtons) {
return false;
}
var range = arrayTracker.getMinMax(options.ss, options.name, options.minCount, options.maxCount);
var visibleCount = arrayTracker.getVisibleCount(form.id, options.name);
return (visibleCount < range.maxCount);
});
/*
* afFieldValueIs
*/
Template.registerHelper('afFieldValueIs', function autoFormFieldValueIs(options) {
options = parseOptions(options, 'afFieldValueIs');
var currentValue = AutoForm.getFieldValue(options.name, options.formId);
return currentValue === options.value;
});
/*
* afFieldValue
*/
Template.registerHelper('afFieldValue', function autoFormFieldValue(options) {
options = parseOptions(options, 'afFieldValue');
return AutoForm.getFieldValue(options.name, options.formId || AutoForm.getFormId());
});
/*
* afArrayFieldIsFirstVisible
*/
Template.registerHelper('afArrayFieldIsFirstVisible', function autoFormArrayFieldIsFirstVisible() {
var context = this;
return arrayTracker.isFirstFieldlVisible(context.formId, context.arrayFieldName, context.index);
});
/*
* afArrayFieldIsLastVisible
*/
Template.registerHelper('afArrayFieldIsLastVisible', function autoFormArrayFieldIsLastVisible() {
var context = this;
return arrayTracker.isLastFieldlVisible(context.formId, context.arrayFieldName, context.index);
});
/*
* afFieldValueContains
*/
Template.registerHelper('afFieldValueContains', function autoFormFieldValueContains(options) {
options = parseOptions(options, 'afFieldValueContains');
var currentValue = AutoForm.getFieldValue(options.name, options.formId);
return _.isArray(currentValue) && (_.contains(currentValue, options.value) || options.values && _.intersection(currentValue, options.values.split(',')));
});
/*
* afFieldLabelText
*/
Template.registerHelper('afFieldLabelText', function autoFormFieldLabelText(options) {
options = parseOptions(options, 'afFieldLabelText');
return AutoForm.getLabelForField(options.name);
});
/*
* afFieldNames
*/
Template.registerHelper('afFieldNames', function autoFormFieldNames(options) {
options = parseOptions(options, 'afFieldNames');
var ss = options.ss, name = options.name, namePlusDot, genericName, genericNamePlusDot;
var form = AutoForm.getCurrentDataForForm();
if (name) {
namePlusDot = name + '.';
genericName = AutoForm.Utility.makeKeyGeneric(name);
genericNamePlusDot = genericName + '.';
}
// Get the list of fields we want included
var fieldList = options.fields, usedAncestorFieldList = false;
if (fieldList) {
fieldList = AutoForm.Utility.stringToArray(fieldList, 'AutoForm: fields attribute must be an array or a string containing a comma-delimited list of fields');
}
var ancestorFieldList = AutoForm.findAttribute('fields');
if (ancestorFieldList) {
ancestorFieldList = AutoForm.Utility.stringToArray(ancestorFieldList, 'AutoForm: fields attribute must be an array or a string containing a comma-delimited list of fields');
// Use the ancestor field list as backup, unless there is
// a name and that name is listed in the ancestor field list
if (!fieldList) {
fieldList = ancestorFieldList;
usedAncestorFieldList = true;
}
}
if (fieldList) {
// Take only those fields in the fieldList that are descendants of the `name` field
if (name) {
// Replace generic name with real name. We assume that field names
// with $ apply to all array items. Field list will now have the
// correct array field item number instead of $.
if (genericName !== name) {
fieldList = _.map(fieldList, function (field) {
if (field.indexOf(genericNamePlusDot) === 0) {
return namePlusDot + field.slice(genericNamePlusDot.length);
}
return field;
});
}
fieldList = _.filter(fieldList, function filterFieldsByName(field) {
return field.indexOf(namePlusDot) === 0;
});
}
// If top level fields, be sure to remove any with $ in them
else {
fieldList = _.filter(fieldList, function filterArrayFields(field) {
return (field.slice(-2) !== '.$' && field.indexOf('.$.') === -1);
});
}
// First we filter out any fields that are subobjects where the
// parent object is also in the fieldList and is NOT the current
// field name.
// This means that if you do `fields="address,address.city"` we
// will use an afObjectField for address and include only the
// "city" field within that, but if you instead do `fields="address.city"`
// we will use a single field for the city, with no afObjectField
// template around it.
fieldList = _.reject(fieldList, function (field) {
var lastDotPos = field.lastIndexOf('.');
if (lastDotPos === -1) {
return false; // keep
}
var parentField = field.slice(0, lastDotPos);
if (parentField.slice(-2) === '.$') {
parentField = parentField.slice(0, -2);
}
return _.contains(fieldList, parentField) && parentField !== name && parentField !== genericName;
});
}
if (!fieldList || (fieldList.length === 0 && usedAncestorFieldList)) {
// Get list of field names that are descendants of this field's name.
// If name/genericName is undefined, this will return top-level
// schema keys.
fieldList = ss.objectKeys(genericName);
if (name) {
// Tack child field name on to end of parent field name. This
// ensures that we keep the desired array index for array items.
fieldList = _.map(fieldList, function (field) {
return name + '.' + field;
});
}
}
// If user wants to omit some fields, remove those from the array
var omitFields = options.omitFields || AutoForm.findAttribute('omitFields');
if (omitFields) {
omitFields = AutoForm.Utility.stringToArray(omitFields, 'AutoForm: omitFields attribute must be an array or a string containing a comma-delimited list of fields');
fieldList = _.difference(fieldList, omitFields);
// If omitFields contains generic field names (with $) we omit those too
fieldList = _.reject(fieldList, function (f) {
return _.contains(omitFields, AutoForm.Utility.makeKeyGeneric(f));
});
}
// Filter out fields we never want
fieldList = _.filter(fieldList, function shouldIncludeField(field) {
var fieldDefs = AutoForm.Utility.getFieldDefinition(ss, field);
// Don't include fields that are not in the schema
if (!fieldDefs) {
return false;
}
// Don't include fields with autoform.omit=true
if (fieldDefs.autoform && fieldDefs.autoform.omit === true) {
return false;
}
// Don't include fields with denyInsert=true when it's an insert form
if (fieldDefs.denyInsert && form.type === 'insert') {
return false;
}
// Don't include fields with denyUpdate=true when it's an update form
if (fieldDefs.denyUpdate && form.type === 'update') {
return false;
}
return true;
});
// Ensure fields are not added more than once
fieldList = _.unique(fieldList);
// We return it as an array of objects because that
// works better with Blaze contexts
fieldList = _.map(fieldList, function (name) {
return { name: name };
});
return fieldList;
});
/*
* afSelectOptionAtts
*/
Template.registerHelper('afSelectOptionAtts', function afSelectOptionAtts() {
var atts = _.pick(this, 'value');
if (this.selected) {
atts.selected = '';
}
if (this.htmlAtts) {
_.extend(atts, this.htmlAtts);
}
return atts;
});
// Expects to be called with this.name available
Template.registerHelper('afOptionsFromSchema', function afOptionsFromSchema() {
return AutoForm._getOptionsForField(this.name);
});