jquery-ui/ui/datepicker.js

340 lines
7.5 KiB
JavaScript
Raw Normal View History

/*!
* jQuery UI Datepicker @VERSION
2012-07-04 13:08:08 +00:00
* http://jqueryui.com
2008-06-04 02:34:33 +00:00
*
* Copyright jQuery Foundation and other contributors
2012-08-09 14:13:24 +00:00
* Released under the MIT license.
* http://jquery.org/license
2008-06-04 02:34:33 +00:00
*/
//>>label: Datepicker
//>>group: Widgets
//>>description: Displays a calendar from an input or inline for selecting dates.
//>>docs: http://api.jqueryui.com/datepicker/
//>>demos: http://jqueryui.com/datepicker/
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
// AMD. Register as an anonymous module.
define([
"jquery",
"./core",
"./widget",
"./calendar",
"./position"
], factory );
} else {
// Browser globals
factory( jQuery );
}
}(function( $ ) {
2008-06-04 02:34:33 +00:00
var widget,
2014-06-19 22:13:20 +00:00
calendarOptions = [ "buttons", "dateFormat", "eachDay", "max", "min", "numberOfMonths", "showWeek" ];
widget = $.widget( "ui.datepicker", {
version: "@VERSION",
options: {
appendTo: null,
position: {
my: "left top",
at: "left bottom"
},
show: true,
hide: true,
// callbacks
beforeOpen: null,
close: null,
open: null,
select: null
},
2014-04-23 15:49:03 +00:00
_create: function() {
this.suppressExpandOnFocus = false;
this._createCalendar();
2014-06-05 00:39:46 +00:00
this._on( this._inputEvents );
this._on( this.calendar, this._calendarEvents );
this._on( this.document, this._documentEvents );
},
_getCreateOptions: function() {
var max = this.element.attr( "max" ),
min = this.element.attr( "min" ),
options = {};
if ( max !== undefined ) {
options.max = Globalize.parseDate( max, { pattern: "yyyy-MM-dd" } );
}
if ( min !== undefined ) {
options.min = Globalize.parseDate( min, { pattern: "yyyy-MM-dd" } );
}
return options;
},
_createCalendar: function() {
var that = this;
this.calendar = $( "<div>" )
.addClass( "ui-front ui-datepicker" )
.appendTo( this._appendTo() );
// Initialize calendar widget
this.calendarInstance = this.calendar
.calendar( $.extend( {}, this.options, {
value: this._getParsedValue(),
select: function( event ) {
that.element.val( that.calendarInstance.value() );
that.close();
that._focusTrigger();
that._trigger( "select", event );
}
}) )
.calendar( "instance" );
2014-06-19 22:13:20 +00:00
this.calendarInstance.buttonClickContext = that.element[ 0 ];
this._setHiddenPicker();
this.element.attr({
"aria-haspopup": true,
"aria-owns": this.calendar.attr( "id" )
});
2014-06-05 00:39:46 +00:00
},
2014-06-05 00:39:46 +00:00
_inputEvents: {
keydown: function( event ) {
switch ( event.keyCode ) {
case $.ui.keyCode.TAB:
// Waiting for close() will make popup hide too late, which breaks tab key behavior
this.calendar.hide();
this.close( event );
break;
case $.ui.keyCode.ESCAPE:
if ( this.isOpen ) {
2014-06-05 00:39:46 +00:00
this.close( event );
}
2014-06-05 00:39:46 +00:00
break;
case $.ui.keyCode.DOWN:
case $.ui.keyCode.UP:
clearTimeout( this.closeTimer );
2014-06-05 00:39:46 +00:00
this._delay( function() {
this.open( event );
this.calendarInstance.grid.focus();
}, 1 );
break;
}
},
keyup: function() {
if ( this.isValid() ) {
this.refresh();
}
},
mousedown: function( event ) {
if ( this.isOpen ) {
this.suppressExpandOnFocus = true;
2014-06-05 00:39:46 +00:00
this.close();
return;
}
this.open( event );
clearTimeout( this.closeTimer );
},
focus: function( event ) {
if ( !this.suppressExpandOnFocus && !this.isOpen ) {
this._delay( function() {
this.open( event );
2014-06-05 00:39:46 +00:00
});
}
2014-06-05 00:39:46 +00:00
this._delay( function() {
this.suppressExpandOnFocus = false;
2014-06-05 00:39:46 +00:00
}, 100 );
},
blur: function() {
this.suppressExpandOnFocus = false;
2014-06-05 00:39:46 +00:00
}
},
2014-06-05 00:39:46 +00:00
_calendarEvents: {
focusout: function( event ) {
// use a timer to allow click to clear it and letting that
// handle the closing instead of opening again
// also allows tabbing inside the calendar without it closing
this.closeTimer = this._delay( function() {
this.close( event );
}, 150 );
},
focusin: function() {
clearTimeout( this.closeTimer );
},
mouseup: function() {
clearTimeout( this.closeTimer );
},
// TODO on TAB (or shift TAB), make sure it ends up on something useful in DOM order
keyup: function( event ) {
if ( event.keyCode === $.ui.keyCode.ESCAPE && this.calendar.is( ":visible" ) ) {
this.close( event );
this._focusTrigger();
}
2014-06-05 00:39:46 +00:00
}
},
2014-06-05 00:39:46 +00:00
_documentEvents: {
mousedown: function( event ) {
if ( !this.isOpen ) {
return;
}
if ( !$( event.target ).closest( this.element.add( this.calendar ) ).length ) {
2014-06-05 00:39:46 +00:00
this.close( event );
2008-06-04 02:34:33 +00:00
}
2014-06-05 00:39:46 +00:00
}
2008-06-04 02:34:33 +00:00
},
2014-04-23 15:49:03 +00:00
_appendTo: function() {
var element = this.options.appendTo;
if ( element ) {
element = element.jquery || element.nodeType ?
$( element ) :
this.document.find( element ).eq( 0 );
}
if ( !element || !element[ 0 ] ) {
element = this.element.closest( ".ui-front" );
}
if ( !element.length ) {
2014-04-23 15:49:03 +00:00
element = this.document[ 0 ].body;
}
return element;
2008-06-04 02:34:33 +00:00
},
_focusTrigger: function() {
this.suppressExpandOnFocus = true;
this.element.focus();
2008-06-04 02:34:33 +00:00
},
2014-04-23 15:49:03 +00:00
refresh: function() {
this.calendarInstance.option( "value", this._getParsedValue() );
2008-06-04 02:34:33 +00:00
},
2014-04-23 15:49:03 +00:00
open: function( event ) {
if ( this.isOpen ) {
return;
}
if ( this._trigger( "beforeOpen", event ) === false ) {
return;
}
this.calendarInstance.refresh();
this.calendar
.attr({
"aria-hidden": false,
"aria-expanded": true
})
.show()
.position( this._buildPosition() )
.hide();
this._show( this.calendar, this.options.show );
// Take trigger out of tab order to allow shift-tab to skip trigger
// TODO Does this really make sense? related bug: tab-shift moves focus to last element on page
this.element.attr( "tabindex", -1 );
this.isOpen = true;
this._trigger( "open", event );
},
2014-04-23 15:49:03 +00:00
close: function( event ) {
this._setHiddenPicker();
this._hide( this.calendar, this.options.hide );
this.element.attr( "tabindex" , 0 );
this.isOpen = false;
this._trigger( "close", event );
2008-06-04 02:34:33 +00:00
},
2014-04-23 15:49:03 +00:00
_setHiddenPicker: function() {
this.calendar.attr({
"aria-hidden": true,
"aria-expanded": false
});
2008-06-04 02:34:33 +00:00
},
2014-04-23 15:49:03 +00:00
_buildPosition: function() {
return $.extend( { of: this.element }, this.options.position );
},
2014-04-23 15:49:03 +00:00
value: function( value ) {
if ( arguments.length ) {
this.valueAsDate( Globalize.parseDate( value , this.options.dateFormat ) );
} else {
return this._getParsedValue() ? this.element.val() : null;
}
},
2014-04-23 15:49:03 +00:00
valueAsDate: function( value ) {
if ( arguments.length ) {
if ( this.calendarInstance._isValid( value ) ) {
this.calendarInstance.valueAsDate( value );
this.element.val( Globalize.format( value, this.options.dateFormat ) );
}
} else {
return this._getParsedValue();
}
},
2014-04-23 15:49:03 +00:00
2014-01-03 14:07:38 +00:00
isValid: function() {
return this.calendarInstance._isValid( this._getParsedValue() );
2014-01-03 14:07:38 +00:00
},
2014-04-23 15:49:03 +00:00
_destroy: function() {
this.calendarInstance.destroy();
this.calendar.remove();
this.element.removeAttr( "aria-haspopup aria-owns" );
},
2014-04-23 15:49:03 +00:00
widget: function() {
return this.calendar;
},
2014-04-23 15:49:03 +00:00
_getParsedValue: function() {
return Globalize.parseDate( this.element.val(), this.options.dateFormat );
},
_setOption: function( key, value ) {
this._super( key, value );
if ( $.inArray( key, calendarOptions ) !== -1 ) {
this.calendarInstance.option( key, value );
}
if ( key === "appendTo" ) {
this.calendar.appendTo( this._appendTo() );
}
if ( key === "dateFormat" ) {
this.element.val( this.calendarInstance.value() );
}
if ( key === "position" ) {
this.calendar.position( this._buildPosition() );
}
2008-06-04 02:34:33 +00:00
}
});
$.each( calendarOptions, function( index, option ) {
$.ui.datepicker.prototype.options[ option ] = $.ui.calendar.prototype.options[ option ];
});
return widget;
}));