-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathDateTextBox.js
221 lines (207 loc) · 7.74 KB
/
DateTextBox.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
/**
* Copyright (C) 2005-2016 Alfresco Software Limited.
*
* This file is part of Alfresco
*
* Alfresco is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Alfresco is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* Creates a date-field input box. Can be preset to today's date by passing a value of "TODAY".
*
* @example <caption>Sample usage:</caption>
* {
* name: "alfresco/forms/controls/DateTextBox",
* id: "VALID_DATE_VALUE_1",
* config: {
* name: "validDate1",
* value: "2012-12-12",
* label: "Valid date #1"
* }
* }
*
* @module alfresco/forms/controls/DateTextBox
* @extends module:alfresco/forms/controls/BaseFormControl
* @mixes module:alfresco/forms/controls/utilities/TextBoxValueChangeMixin
* @author Dave Draper
*/
define(["dojo/_base/declare",
"alfresco/forms/controls/BaseFormControl",
"alfresco/forms/controls/utilities/TextBoxValueChangeMixin",
"dojo/_base/lang",
"dojo/date/stamp",
"dijit/form/DateTextBox",
"dojo/dom-class",
"alfresco/core/ObjectTypeUtils",
"alfresco/core/TemporalUtils"],
function(declare, BaseFormControl, TextBoxValueChangeMixin, lang, stamp, DateTextBox, domClass, ObjectTypeUtils,
TemporalUtils) {
return declare([BaseFormControl, TextBoxValueChangeMixin, TemporalUtils], {
/**
* The value to return when no date has been selected. By default this will return null, however some
* REST APIs may require an alternative value such as the empty string.
*
* @instance
* @type {object|string|null}
* @default
* @since 1.0.85
*/
unsetReturnValue: undefined,
/**
* The selector to use for formatting a date. An alternative might be "datetime".
*
* @instance
* @type {string}
* @default
* @since 1.0.84
*/
valueFormatSelector: "date",
/**
* An array of the CSS files to use with this widget.
*
* @instance
* @type {object[]}
* @default [{cssFile:"./css/DateTextBox.css"}]
*/
cssRequirements: [{cssFile:"./css/DateTextBox.css"}],
/**
* Run after properties mixed into instance
*
* @instance
*/
postMixInProperties: function(){
if (this.value === "TODAY") { // Special case
this.value = (new Date()).toISOString();
} else if (!this.value || (typeof this.value === "string" && lang.trim(this.value).length === 0)) {
this.value = null; // Falsy values and empty strings should be treated as nulls, i.e. no value (see AKU-430)
}
this.inherited(arguments); // Must 'clean' the empty strings before calling this
},
/**
* Get the configuration for the wrapped widget
*
* @instance
* @returns {object} The configuration for the form control
*/
getWidgetConfig: function alfresco_forms_controls_DateTextBox__getWidgetConfig() {
this.configureValidation();
var placeHolder = this.message(this.placeHolder || "");
return {
id: this.id + "_CONTROL",
name: this.name,
placeHolder: placeHolder,
options: (this.options !== null) ? this.options : []
};
},
/**
* This function is used to set or update the validationConfig
*
* @instance
*/
configureValidation: function alfresco_forms_controls_DateTextBox__configureValidation() {
if (!this.validationConfig || !ObjectTypeUtils.isArray(this.validationConfig)) {
this.validationConfig = [];
}
this.validationConfig.push({
validation: "customValidator",
errorMessage: this.message("formValidation.date.error")
});
},
/**
* Ensure value is a date
*
* @instance
* @param {object} validationConfig The configuration for this validator
*/
customValidator: function alfresco_forms_controls_DateTextBox__customValidator(validationConfig){
var currentValue = this.getValue(),
isValid = typeof currentValue === "string";
if(!isValid && !this._required) {
isValid = this.wrappedWidget.get("displayedValue") === "";
}
this.reportValidationResult(validationConfig, isValid);
},
/**
* Get the value currently assigned to the wrapped widget
*
* @instance
* @returns {object} The current value of the field
*/
getValue: function alfresco_forms_controls_DateTextBox__getValue() {
var value = this.inherited(arguments);
var returnValue = this.processDateValue(value);
return returnValue;
},
/**
* Processes a value to apply date formatting as necessary.
*
* @instance
* @param {object} value The value to process
* @return {object} The processed value
* @since 1.0.91
*/
processDateValue: function alfresco_forms_controls_DateTextBox__processDateValue(value) {
var returnValue = value && stamp.toISOString(value, { selector: this.valueFormatSelector });
if (!returnValue && typeof this.unsetReturnValue !== "undefined")
{
returnValue = this.unsetReturnValue;
}
return returnValue;
},
/**
* Create and return form control instance
*
* @instance
* @param {object} config The configuration to use when instantiating the form control
*/
createFormControl: function alfresco_forms_controls_DateTextBox__createFormControl(config) {
domClass.add(this.domNode, "alfresco-forms-controls-DateTextBox");
// Explicitly set datePattern to ensure dates rendered here match dates rendered elsewhere in Alfresco
// Use the Unicode compatible date pattern as they differ slightly to Alfresco's dateFormat masks
var datePattern = this.getUnicodeDateMask(this.dateFormats.masks.shortDate);
config.constraints = {
datePattern: datePattern
};
var dateTextBox = new DateTextBox(config);
dateTextBox.validate = lang.hitch(this, function(){
setTimeout(lang.hitch(this, this.validate), 0);
return true;
});
return dateTextBox;
},
/**
* Extends the [inherited function]{@link module:alfresco/forms/controls/BaseFormControl#formControlValueChange}
* to format the new date value correctly.
*
* @instance
* @param {string} attributeName
* @param {object} oldValue
* @param {object} value
* @since 1.0.84
*/
formControlValueChange: function alfresco_forms_controls_DateTextBox__formControlValueChange(attributeName, oldValue, value) {
if (value && value instanceof Date)
{
value = stamp.toISOString(value, { selector: this.valueFormatSelector });
}
if (!value && typeof this.unsetReturnValue !== "undefined")
{
this.inherited(arguments, [attributeName, oldValue, this.unsetReturnValue]);
}
else
{
this.inherited(arguments, [attributeName, oldValue, value]);
}
}
});
});