/*! * jQuery UI Calendar @VERSION * http://jqueryui.com * * Copyright 2014 jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ //>>label: Datepicker //>>group: Widgets //>>description: Displays a calendar for inline date selection. //>>docs: http://api.jqueryui.com/calendar/ //>>demos: http://jqueryui.com/calendar/ (function( factory ) { if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. // TODO: Keep button even if its optional? define([ "jquery", "globalize", "globalize/date", "./button", "./calendar/date", "./core", "./widget" ], factory ); } else { // Browser globals factory( jQuery, Globalize ); } }(function( $, Globalize ) { return $.widget( "ui.calendar", { version: "@VERSION", options: { buttons: [], eachDay: $.noop, labels: { "datePickerRole": "date picker", "nextText": "Next", "prevText": "Prev", "weekHeader": "Wk" }, locale: "en", max: null, min: null, numberOfMonths: 1, showWeek: false, value: null, // callbacks select: null }, refreshRelatedOptions: { eachDay: true, max: true, min: true, showWeek: true, value: true }, _create: function() { this.id = this.element.uniqueId().attr( "id" ); this.labels = this.options.labels; this.buttonClickContext = this.element[ 0 ]; this._setLocale( this.options.locale ); this.date = new $.ui.calendarDate( this.options.value, this._calendarDateOptions ); this.viewDate = this.date.clone(); this.viewDate.eachDay = this.options.eachDay; this._on( this.element, { "click .ui-calendar-prev": function( event ) { event.preventDefault(); this.date.adjust( "M", -this.options.numberOfMonths ); this._refresh(); }, "click .ui-calendar-next": function( event ) { event.preventDefault(); this.date.adjust( "M", this.options.numberOfMonths ); this._refresh(); }, "mousedown .ui-calendar-calendar button": function( event ) { event.preventDefault(); this._setOption( "value", new Date( $( event.currentTarget ).data( "timestamp" ) ) ); this.refresh(); this._trigger( "select", event ); this.grid.focus(); }, "mouseenter .ui-calendar-header button": "_hover", "mouseleave .ui-calendar-header button": "_hover", "mouseenter .ui-calendar-calendar button": "_hover", "mouseleave .ui-calendar-calendar button": "_hover", "keydown .ui-calendar-calendar": "_handleKeydown" }); this._createCalendar(); }, _hover: function( event ) { $( event.currentTarget ).toggleClass( "ui-state-hover" ); }, _handleKeydown: function( event ) { switch ( event.keyCode ) { case $.ui.keyCode.ENTER: this.activeDescendant.mousedown(); return; case $.ui.keyCode.PAGE_UP: this.date.adjust( event.altKey ? "Y" : "M", -1 ); break; case $.ui.keyCode.PAGE_DOWN: this.date.adjust( event.altKey ? "Y" : "M", 1 ); break; case $.ui.keyCode.END: this.date.setDay( this.date.daysInMonth() ); break; case $.ui.keyCode.HOME: this.date.setDay( 1 ); break; case $.ui.keyCode.LEFT: this.date.adjust( "D", -1 ); break; case $.ui.keyCode.UP: this.date.adjust( "D", -7 ); break; case $.ui.keyCode.RIGHT: this.date.adjust( "D", 1 ); break; case $.ui.keyCode.DOWN: this.date.adjust( "D", 7 ); break; default: event.preventDefault(); return; } if ( this._needsRefresh() ) { this._refresh(); this.grid.focus(); } this._setActiveDescendant(); }, _needsRefresh: function() { if ( this.date.month() !== this.viewDate.month() || this.date.year() !== this.viewDate.year() ) { // Check if the needed day is already present in our grid due // to eachDay option changes (eg. other-months demo) return !this.grid.find( this._sanitizeSelector( "#" + this._getDayId( this.date ) ) ).length; } return false; }, _setActiveDescendant: function() { var id = this._getDayId( this.date ); this.grid .attr( "aria-activedescendant", id ) .find( ".ui-state-focus" ) .removeClass( "ui-state-focus" ); this.activeDescendant = this.grid.find( this._sanitizeSelector( "#" + id ) + " > button" ).addClass( "ui-state-focus" ); }, _setLocale: function( locale ) { var globalize = new Globalize( locale ), weekdayShortFormatter = globalize.dateFormatter({ pattern: "EEEEEE" }), weekdayNarrowFormatter = globalize.dateFormatter({ pattern: "EEEEE" }); this._format = globalize.dateFormatter({ date: "short" }); this._parse = globalize.dateParser({ date: "short" }); this._calendarDateOptions = { firstDay: globalize.cldr.supplemental.weekData.firstDay(), formatWeekdayShort: function( date ) { // Return the short weekday if its length is < 3. Otherwise, its narrow form. var shortWeekday = weekdayShortFormatter( date ); return shortWeekday.length > 3 ? weekdayNarrowFormatter( date ) : shortWeekday; }, formatWeekdayFull: globalize.dateFormatter({ pattern: "EEEE" }), formatMonth: globalize.dateFormatter({ pattern: "MMMM" }), formatWeekOfYear: globalize.dateFormatter({ pattern: "w" }), parse: this._parse }; }, _createCalendar: function() { var classes = "ui-calendar ui-widget ui-widget-content ui-helper-clearfix ui-corner-all", pickerHtml = ""; if ( this.options.numberOfMonths === 1 ) { pickerHtml = this._buildHeader() + this._buildGrid(); } else { pickerHtml = this._buildMultiplePicker(); classes += " ui-calendar-multi"; } this.element .addClass( classes ) .attr({ role: "region", "aria-labelledby": this.id + "-title" }) .html( pickerHtml ); this._createButtonPane(); this.grid = this.element.find( ".ui-calendar-calendar" ); }, _buildMultiplePicker: function() { var headerClass, html = "", currentDate = this.viewDate, months = this.viewDate.months( this.options.numberOfMonths - 1 ), i = 0; for ( ; i < months.length; i++ ) { // TODO: Shouldn't we pass date as a parameter to build* fns instead of setting this.date? this.viewDate = months[ i ]; headerClass = "ui-calendar-header ui-widget-header ui-helper-clearfix"; if ( months[ i ].first ) { headerClass += " ui-corner-left"; } else if ( months[ i ].last ) { headerClass += " ui-corner-right"; } html += "
" + "
"; if ( months[ i ].first ) { html += this._buildPreviousLink(); } else if ( months[ i ].last ) { html += this._buildNextLink(); } html += this._buildTitlebar() + "
" + this._buildGrid() + "
"; } html += "
"; this.viewDate = currentDate; return html; }, _buildHeader: function() { return "
" + this._buildPreviousLink() + this._buildNextLink() + this._buildTitlebar() + "
"; }, _buildPreviousLink: function() { var prevText = this._getTranslation( "prevText" ); return ""; }, _buildNextLink: function() { var nextText = this._getTranslation( "nextText" ); return ""; }, _buildTitlebar: function() { return "
" + "
" + this._buildTitle() + "
" + ", " + this._getTranslation( "datePickerRole" ) + "" + "
"; }, _buildTitle: function() { return "" + this.viewDate.monthName() + " " + "" + this.viewDate.year() + ""; }, _buildGrid: function() { return "" + this._buildGridHeading() + this._buildGridBody() + "
"; }, _buildGridHeading: function() { var cells = "", i = 0, weekDayLength = this.viewDate.weekdays().length, weekdays = this.date.weekdays(); if ( this.options.showWeek ) { cells += "" + this._getTranslation( "weekHeader" ) + ""; } for ( i; i < weekDayLength; i++ ) { cells += this._buildGridHeaderCell( weekdays[ i ] ); } return "" + "" + cells + "" + ""; }, _buildGridHeaderCell: function( day ) { return "" + "" + day.shortname + "" + ""; }, _buildGridBody: function() { var days = this.viewDate.days(), i = 0, rows = ""; for ( ; i < days.length; i++ ) { rows += this._buildWeekRow( days[ i ] ); } return "" + rows + ""; }, _buildWeekRow: function( week ) { var cells = "", i = 0; if ( this.options.showWeek ) { cells += "" + week.number + ""; } for ( ; i < week.days.length; i++ ) { cells += this._buildDayCell( week.days[ i ] ); } return "" + cells + ""; }, _buildDayCell: function( day ) { var content = "", attributes = [ "role='gridcell'", "aria-selected='" + ( this._isCurrent( day ) ? true : false ) + "'" ], selectable = ( day.selectable && this._isValid( new Date( day.timestamp ) ) ); if ( day.render ) { attributes.push( "id='" + this.id + "-" + day.year + "-" + day.month + "-" + day.date + "'" ); if ( !selectable ) { attributes.push( "aria-disabled='true'" ); attributes.push( "class='ui-state-disabled'" ); } content = this._buildDayElement( day, selectable ); } return "" + content + ""; }, _getDayId: function( date ) { return this.id + "-" + date.year() + "-" + date.month() + "-" + date.day(); }, _buildDayElement: function( day, selectable ) { var attributes, content, classes = [ "ui-state-default" ]; if ( day === this.date && selectable ) { classes.push( "ui-state-focus" ); } if ( this._isCurrent( day ) ) { classes.push( "ui-state-active" ); } if ( day.today ) { classes.push( "ui-state-highlight" ); } if ( day.extraClasses ) { classes.push( day.extraClasses.split( " " ) ); } attributes = " class='" + classes.join( " " ) + "'"; if ( selectable ) { attributes += " tabindex='-1' data-timestamp='" + day.timestamp + "'"; } else { attributes += " disabled='disabled'"; } content = "" + day.date + ""; if ( day.today ) { content += ", " + this._getTranslation( "currentText" ) + ""; } return content; }, _isCurrent: function( day ) { return this.options.value && day.timestamp === this.options.value.getTime(); }, _createButtonPane: function() { this.buttonPane = $( "
" ) .addClass( "ui-calendar-buttonpane ui-widget-content ui-helper-clearfix" ); this.buttonSet = $( "
" ) .addClass( "ui-calendar-buttonset" ) .appendTo( this.buttonPane ); this._createButtons(); }, _createButtons: function() { var that = this, buttons = this.options.buttons; this.buttonPane.remove(); this.buttonSet.empty(); if ( $.isEmptyObject( buttons ) || ( $.isArray( buttons ) && !buttons.length ) ) { this.element.removeClass( "ui-calendar-buttons" ); return; } $.each( buttons, function( name, props ) { var click, buttonOptions; props = $.isFunction( props ) ? { click: props, text: name } : props; // Default to a non-submitting button props = $.extend( { type: "button" }, props ); // Change the context for the click callback to be the main element click = props.click; props.click = function() { click.apply( that.buttonClickContext, arguments ); }; buttonOptions = { icons: props.icons, text: props.showText }; delete props.icons; delete props.showText; $( "", props ) .button( buttonOptions ) .appendTo( that.buttonSet ); }); this.element.addClass( "ui-calendar-buttons" ); this.buttonPane.appendTo( this.element ); }, _refresh: function() { this.viewDate.setTime( this.date.date().getTime() ); this.refresh(); }, // Refreshing the entire calendar during interaction confuses screen readers, specifically // because the grid heading is marked up as a live region and will often not update if it's // destroyed and recreated instead of just having its text change. Additionally, interacting // with the prev and next links would cause loss of focus issues because the links being // interacted with will disappear while focused. refresh: function() { // Determine which day gridcell to focus after refresh // TODO: Prevent disabled cells from being focused if ( this.options.numberOfMonths === 1 ) { this.grid = $( this._buildGrid() ); this.element.find( ".ui-calendar-title" ).html( this._buildTitle() ); this.element.find( ".ui-calendar-calendar" ).replaceWith( this.grid ); $( ".ui-calendar-prev", this.element ).attr( "title", this.labels.prevText ) .children().html( this.labels.prevText ); $( ".ui-calendar-next", this.element ).attr( "title", this.labels.nextText ) .children().html( this.labels.nextText ); this._createButtons(); } else { this._refreshMultiplePicker(); } }, _refreshMultiplePicker: function() { var i = 0; for ( ; i < this.options.numberOfMonths; i++ ) { this.element.find( ".ui-calendar-title" ).eq( i ).html( this._buildTitle() ); this.element.find( ".ui-calendar-calendar" ).eq( i ).html( this._buildGrid() ); this.viewDate.adjust( "M", 1 ); } this.viewDate.adjust( "M", -this.options.numberOfMonths ); // TODO: This assumes focus is on the first grid. For multi pickers, the widget needs // to maintain the currently focused grid and base queries like this off of it. this.element.find( ".ui-state-focus" ).not( ":first" ).removeClass( "ui-state-focus" ); }, _getTranslation: function( key ) { return $( "" ).text( this.labels[ key ] ).html(); }, _sanitizeSelector: function( hash ) { return hash ? hash.replace( /[!"$%&'()*+,.\/:;<=>?@\[\]\^`{|}~]/g, "\\$&" ) : ""; }, _setHiddenPicker: function() { this.element.attr({ "aria-hidden": "true", "aria-expanded": "false" }); }, value: function( value ) { if ( arguments.length ) { this.valueAsDate( locale.parse( value ) ); } else { return this._format( this.option( "value" ) ); } }, valueAsDate: function( value ) { if ( arguments.length ) { this.option( "value", value ); } else { return this.options.value; } }, _isValid: function( value ) { if ( $.type( value ) !== "date" ) { return false; } if ( $.type( this.options.max ) === "date" ) { if ( value > this.options.max ) { return false; } } if ( $.type( this.options.min ) === "date" ) { if ( value < this.options.min ) { return false; } } return true; }, _destroy: function() { this.element .off( ".calendar" ) .removeClass( "ui-calendar ui-widget ui-widget-content ui-helper-clearfix ui-corner-all ui-calendar-multi" ) .removeAttr( "role aria-labelledby" ) .removeUniqueId() .empty(); }, _setOptions: function( options ) { var that = this, refresh = false; $.each( options, function( key, value ) { that._setOption( key, value ); if ( key in that.refreshRelatedOptions ) { refresh = true; } }); if ( refresh ) { this._refresh(); } }, _setOption: function( key, value ) { if ( key === "value" ) { if ( this._isValid( value ) ) { this.date.setTime( value.getTime() ); this._super( key, value ); } return; } if ( key === "max" || key === "min" ) { if ( $.type( value ) === "date" || value === null ) { this._super( key, value ); } return; } this._super( key, value ); if ( key === "buttons" ) { this._createButtons(); } if ( key === "disabled" ) { this.element .toggleClass( "ui-state-disabled", value ) .attr( "aria-disabled", value ); } if ( key === "eachDay" ) { this.viewDate.eachDay = value; } if ( key === "locale" ) { this._setLocale( value ); this.date.setAttributes( this._calendarDateOptions ); this.refresh(); } } }); }));