jquery-ui/ui/datepicker.js

372 lines
8.2 KiB
JavaScript

/*!
* jQuery UI Datepicker @VERSION
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
*/
//>>label: Datepicker
//>>group: Widgets
//>>description: Displays a calendar for input-based date selection.
//>>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",
"globalize",
"globalize/date",
"./core",
"./widget",
"./calendar",
"./position"
], factory );
} else {
// Browser globals
factory( jQuery, Globalize );
}
}(function( $, Globalize ) {
var 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
},
calendarOptions: [ "buttons", "disabled", "eachDay", "labels", "locale",
"max", "min", "numberOfMonths", "showWeek" ],
_create: function() {
this.suppressExpandOnFocus = false;
this._setLocale( this.options.locale );
if ( $.type( this.options.max ) === "string" ) {
this.options.max = this._parseYMD( this.options.max );
}
if ( $.type( this.options.min ) === "string" ) {
this.options.min = this._parseYMD( this.options.min );
}
this._createCalendar();
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" );
this.calendarInstance.buttonClickContext = that.element[ 0 ];
this._setHiddenPicker();
this.element.attr({
"aria-haspopup": true,
"aria-owns": this.calendar.attr( "id" )
});
},
_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 ) {
this.close( event );
}
break;
case $.ui.keyCode.DOWN:
case $.ui.keyCode.UP:
clearTimeout( this.closeTimer );
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;
this.close();
return;
}
this.open( event );
clearTimeout( this.closeTimer );
},
focus: function( event ) {
if ( !this.suppressExpandOnFocus && !this.isOpen ) {
this._delay( function() {
this.open( event );
});
}
this._delay( function() {
this.suppressExpandOnFocus = false;
}, 100 );
},
blur: function() {
this.suppressExpandOnFocus = false;
}
},
_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();
}
}
},
_documentEvents: {
mousedown: function( event ) {
if ( !this.isOpen ) {
return;
}
if ( !$( event.target ).closest( this.element.add( this.calendar ) ).length ) {
this.close( event );
}
}
},
_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, dialog" );
}
if ( !element.length ) {
element = this.document[ 0 ].body;
}
return element;
},
_focusTrigger: function() {
this.suppressExpandOnFocus = true;
this.element.focus();
},
refresh: function() {
this.calendarInstance.option( "value", this._getParsedValue() );
},
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 );
},
close: function( event ) {
this._setHiddenPicker();
this._hide( this.calendar, this.options.hide );
this.element.attr( "tabindex", 0 );
this.isOpen = false;
this._trigger( "close", event );
},
_setHiddenPicker: function() {
this.calendar.attr({
"aria-hidden": true,
"aria-expanded": false
});
},
_setLocale: function( locale ) {
var globalize = new Globalize( locale );
this._format = globalize.dateFormatter({ date: "short" });
this._parse = globalize.dateParser({ date: "short" });
this._parseYMD = globalize.dateParser({ pattern: "yyyy-MM-dd" });
},
_buildPosition: function() {
return $.extend( { of: this.element }, this.options.position );
},
value: function( value ) {
if ( arguments.length ) {
this.valueAsDate( this._parse( value ) );
} else {
return this._getParsedValue() ? this.element.val() : null;
}
},
valueAsDate: function( value ) {
if ( arguments.length ) {
if ( this.calendarInstance._isValid( value ) ) {
this.calendarInstance.valueAsDate( value );
this.element.val( this._format( value ) );
}
} else {
return this._getParsedValue();
}
},
isValid: function() {
return this.calendarInstance._isValid( this._getParsedValue() );
},
_destroy: function() {
this.calendarInstance.destroy();
this.calendar.remove();
this.element.removeAttr( "aria-haspopup aria-owns" );
},
widget: function() {
return this.calendar;
},
_getParsedValue: function() {
return this._parse( this.element.val() );
},
_setOption: function( key, value ) {
this._super( key, value );
if ( $.inArray( key, this.calendarOptions ) !== -1 ) {
this.calendarInstance.option( key, value );
}
if ( key === "appendTo" ) {
this.calendar.appendTo( this._appendTo() );
}
if ( key === "locale" ) {
this._setLocale( value );
this.element.val( this.calendarInstance.value() );
}
if ( key === "disabled" ) {
this.element
.prop( "disabled", value )
.toggleClass( "ui-state-disabled", value )
.attr( "aria-disabled", value );
if ( value ) {
this.close();
}
}
if ( key === "position" ) {
this.calendar.position( this._buildPosition() );
}
}
});
$.each( $.ui.datepicker.prototype.calendarOptions, function( index, option ) {
$.ui.datepicker.prototype.options[ option ] = $.ui.calendar.prototype.options[ option ];
});
return widget;
}));