Roo/form/MonthField.js
[roojs1] / Roo / form / MonthField.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11  
12 /**
13  * @class Roo.form.MonthField
14  * @extends Roo.form.TriggerField
15  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
16 * @constructor
17 * Create a new MonthField
18 * @param {Object} config
19  */
20 Roo.form.MonthField = function(config){
21     
22     Roo.form.MonthField.superclass.constructor.call(this, config);
23     
24       this.addEvents({
25          
26         /**
27          * @event select
28          * Fires when a date is selected
29              * @param {Roo.form.DateField} combo This combo box
30              * @param {Date} date The date selected
31              */
32         'select' : true
33          
34     });
35     
36     
37     if(typeof this.minValue == "string") this.minValue = this.parseDate(this.minValue);
38     if(typeof this.maxValue == "string") this.maxValue = this.parseDate(this.maxValue);
39     this.ddMatch = null;
40     if(this.disabledDates){
41         var dd = this.disabledDates;
42         var re = "(?:";
43         for(var i = 0; i < dd.length; i++){
44             re += dd[i];
45             if(i != dd.length-1) re += "|";
46         }
47         this.ddMatch = new RegExp(re + ")");
48     }
49 };
50
51 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
52     /**
53      * @cfg {String} format
54      * The default date format string which can be overriden for localization support.  The format must be
55      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
56      */
57     format : "M-Y",
58     /**
59      * @cfg {String} altFormats
60      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
61      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
62      */
63     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
64     /**
65      * @cfg {Array} disabledDays
66      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
67      */
68     disabledDays : [0,1,2,3,4,5,6],
69     /**
70      * @cfg {String} disabledDaysText
71      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
72      */
73     disabledDaysText : "Disabled",
74     /**
75      * @cfg {Array} disabledDates
76      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
77      * expression so they are very powerful. Some examples:
78      * <ul>
79      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
80      * <li>["03/08", "09/16"] would disable those days for every year</li>
81      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
82      * <li>["03/../2006"] would disable every day in March 2006</li>
83      * <li>["^03"] would disable every day in every March</li>
84      * </ul>
85      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
86      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
87      */
88     disabledDates : null,
89     /**
90      * @cfg {String} disabledDatesText
91      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
92      */
93     disabledDatesText : "Disabled",
94     /**
95      * @cfg {Date/String} minValue
96      * The minimum allowed date. Can be either a Javascript date object or a string date in a
97      * valid format (defaults to null).
98      */
99     minValue : null,
100     /**
101      * @cfg {Date/String} maxValue
102      * The maximum allowed date. Can be either a Javascript date object or a string date in a
103      * valid format (defaults to null).
104      */
105     maxValue : null,
106     /**
107      * @cfg {String} minText
108      * The error text to display when the date in the cell is before minValue (defaults to
109      * 'The date in this field must be after {minValue}').
110      */
111     minText : "The date in this field must be equal to or after {0}",
112     /**
113      * @cfg {String} maxText
114      * The error text to display when the date in the cell is after maxValue (defaults to
115      * 'The date in this field must be before {maxValue}').
116      */
117     maxText : "The date in this field must be equal to or before {0}",
118     /**
119      * @cfg {String} invalidText
120      * The error text to display when the date in the field is invalid (defaults to
121      * '{value} is not a valid date - it must be in the format {format}').
122      */
123     invalidText : "{0} is not a valid date - it must be in the format {1}",
124     /**
125      * @cfg {String} triggerClass
126      * An additional CSS class used to style the trigger button.  The trigger will always get the
127      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
128      * which displays a calendar icon).
129      */
130     triggerClass : 'x-form-date-trigger',
131     
132
133     /**
134      * @cfg {Boolean} useIso
135      * if enabled, then the date field will use a hidden field to store the 
136      * real value as iso formated date. default (false)
137      */ 
138     useIso : false,
139     /**
140      * @cfg {String/Object} autoCreate
141      * A DomHelper element spec, or true for a default element spec (defaults to
142      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
143      */ 
144     // private
145     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
146     
147     // private
148     hiddenField: false,
149     
150     hideMonthPicker : false,
151     
152     onRender : function(ct, position)
153     {
154         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
155         if (this.useIso) {
156             this.el.dom.removeAttribute('name'); 
157             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
158                     'before', true);
159             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
160             // prevent input submission
161             this.hiddenName = this.name;
162         }
163             
164             
165     },
166     
167     // private
168     validateValue : function(value)
169     {
170         value = this.formatDate(value);
171         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
172             return false;
173         }
174         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
175              return true;
176         }
177         var svalue = value;
178         value = this.parseDate(value);
179         if(!value){
180             this.markInvalid(String.format(this.invalidText, svalue, this.format));
181             return false;
182         }
183         var time = value.getTime();
184         if(this.minValue && time < this.minValue.getTime()){
185             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
186             return false;
187         }
188         if(this.maxValue && time > this.maxValue.getTime()){
189             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
190             return false;
191         }
192         if(this.disabledDays){
193             var day = value.getDay();
194             for(var i = 0; i < this.disabledDays.length; i++) {
195                 if(day === this.disabledDays[i]){
196                     this.markInvalid(this.disabledDaysText);
197                     return false;
198                 }
199             }
200         }
201         var fvalue = this.formatDate(value);
202         if(this.ddMatch && this.ddMatch.test(fvalue)){
203             this.markInvalid(String.format(this.disabledDatesText, fvalue));
204             return false;
205         }
206         return true;
207     },
208
209     // private
210     // Provides logic to override the default TriggerField.validateBlur which just returns true
211     validateBlur : function(){
212         return !this.menu || !this.menu.isVisible();
213     },
214
215     /**
216      * Returns the current date value of the date field.
217      * @return {Date} The date value
218      */
219     getValue : function(){
220         
221         return  this.hiddenField ?
222                 this.hiddenField.value :
223                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
224     },
225
226     /**
227      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
228      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
229      * (the default format used is "m/d/y").
230      * <br />Usage:
231      * <pre><code>
232 //All of these calls set the same date value (May 4, 2006)
233
234 //Pass a date object:
235 var dt = new Date('5/4/06');
236 dateField.setValue(dt);
237
238 //Pass a date string (default format):
239 dateField.setValue('5/4/06');
240
241 //Pass a date string (custom format):
242 dateField.format = 'Y-m-d';
243 dateField.setValue('2006-5-4');
244 </code></pre>
245      * @param {String/Date} date The date or valid date string
246      */
247     setValue : function(date){
248         if (this.hiddenField) {
249             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
250         }
251         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
252     },
253
254     // private
255     parseDate : function(value){
256         if(!value || value instanceof Date){
257             return value;
258         }
259         var v = Date.parseDate(value, this.format);
260         if(!v && this.altFormats){
261             if(!this.altFormatsArray){
262                 this.altFormatsArray = this.altFormats.split("|");
263             }
264             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
265                 v = Date.parseDate(value, this.altFormatsArray[i]);
266             }
267         }
268         return v;
269     },
270
271     // private
272     formatDate : function(date, fmt){
273         return (!date || !(date instanceof Date)) ?
274                date : date.dateFormat(fmt || this.format);
275     },
276
277     // private
278     menuListeners : {
279         select: function(m, d){
280             this.setValue(d);
281             this.fireEvent('select', this, d);
282         },
283         show : function(){ // retain focus styling
284             this.onFocus();
285         },
286         hide : function(){
287             this.focus.defer(10, this);
288             var ml = this.menuListeners;
289             this.menu.un("select", ml.select,  this);
290             this.menu.un("show", ml.show,  this);
291             this.menu.un("hide", ml.hide,  this);
292         }
293     },
294     // private
295     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
296     onTriggerClick : function(){
297         if(this.disabled){
298             return;
299         }
300         if(this.menu == null){
301             this.menu = new Roo.menu.DateMenu();
302         }
303         
304         Roo.apply(this.menu.picker,  {
305             
306             showClear: this.allowBlank,
307             minDate : this.minValue,
308             maxDate : this.maxValue,
309             disabledDatesRE : this.ddMatch,
310             disabledDatesText : this.disabledDatesText,
311             
312             format : this.format,
313             minText : String.format(this.minText, this.formatDate(this.minValue)),
314             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
315             
316         });
317         
318         this.menu.on(Roo.apply({}, this.menuListeners, {
319             scope:this
320         }));
321         
322         var m = this.menu;
323         var p = m.picker;
324         p.setValue(this.getValue() || new Date());
325         m.show(this.el, "tl-bl?");
326         
327         (function() {
328             Roo.log("show month");
329             p.showMonthPicker();
330         }).defer(100);
331         
332         
333         
334         p.hideMonthPicker  = function(disableAnim){
335             if(this.monthPicker){
336                 Roo.log(1)
337                 if(disableAnim === true){
338                     this.monthPicker.hide();
339                     Roo.log(2)
340                 }else{
341                     this.monthPicker.slideOut('t', {duration:.2});
342                     Roo.log(3)
343                 }
344             }
345 //            p.setValue(new Date().clearTime());
346 //            p.fireEvent("select", this, this.value);
347 //            
348 //            Roo.log(m.picker.mpSelMonth);
349 //            Roo.log(m.picker.mpSelYear);
350 //            m.hide();
351         }
352         
353         
354         
355         
356     },
357
358     beforeBlur : function(){
359         var v = this.parseDate(this.getRawValue());
360         if(v){
361             this.setValue(v);
362         }
363     }
364
365     /** @cfg {Boolean} grow @hide */
366     /** @cfg {Number} growMin @hide */
367     /** @cfg {Number} growMax @hide */
368     /**
369      * @hide
370      * @method autoSize
371      */
372 });