gecko-dev/calendar/resources/content/calendarMonthView.js

850 строки
29 KiB
JavaScript
Исходник Обычный вид История

2001-11-07 23:29:04 +03:00
/* ***** BEGIN LICENSE BLOCK *****
2001-11-07 22:18:46 +03:00
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
2001-11-07 23:29:04 +03:00
* The Original Code is OEone Calendar Code, released October 31st, 2001.
2001-11-07 22:18:46 +03:00
*
* The Initial Developer of the Original Code is
* OEone Corporation.
2001-11-07 23:29:04 +03:00
* Portions created by the Initial Developer are Copyright (C) 2001
* the Initial Developer. All Rights Reserved.
2001-11-07 22:18:46 +03:00
*
2001-11-07 23:29:04 +03:00
* Contributor(s): Garth Smedley <garths@oeone.com>
* Mike Potter <mikep@oeone.com>
* Karl Guertin <grayrest@grayrest.com>
* Colin Phillips <colinp@oeone.com>
2001-11-07 22:18:46 +03:00
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
2001-11-07 23:29:04 +03:00
* ***** END LICENSE BLOCK ***** */
2001-11-07 22:18:46 +03:00
/*-----------------------------------------------------------------
* MonthView Class subclass of CalendarView
*
* Calendar month view class
*
* PROPERTIES
* selectedEventBox - Events are displayed in dynamically created event boxes
* this is the selected box, or null
*
* showingLastDay - When the user changes to a new month we select
* the same day in the new month that was selected in the original month. If the
* new month does not have that day ( i.e. 31 was selected and the new month has
* only 30 days ) we move the selection to the last day. When this happens we turn on
* the 'showingLastDay' flag. Now we will always select the last day when the month
* is changed so that if they go back to the original month, 31 is selected again.
* 'showingLastDay' is turned off when the user selects a new day or changes the view.
*
*
* dayNumberItemArray - An array [ 0 to 41 ] of text boxes that hold the day numbers in the month view.
* We set the value attribute to the day number, or "" for boxes that are not in the month.
* In the XUL they have id's of the form month-week-<row_number>-day-<column_number>
* where row_number is 1 - 6 and column_number is 1 - 7.
*
* dayBoxItemArray - An array [ 0 to 41 ] of boxes, one for each day in the month view. These boxes
* are selected when a day is selected. They contain a dayNumberItem and event boxes.
* In the XUL they have id's of the form month-week-<row_number>-day-<column_number>-box
* where row_number is 1 - 6 and column_number is 1 - 7.
*
* dayBoxItemByDateArray - This array is reconstructed whenever the month changes ( and probably more
* often than that ) It contains day box items, just like the dayBoxItemArray above,
* except this array contains only those boxes that belong to the current month
* and is indexed by date. So for a 30 day month that starts on a Wednesday,
* dayBoxItemByDateArray[0] === dayBoxItemArray[3] and
* dayBoxItemByDateArray[29] === dayBoxItemArray[36]
*
* kungFooDeathGripOnEventBoxes - This is to keep the event box javascript objects around so when we get
* them back they still have the calendar event property on them.
*
*
* NOTES
*
* Events are displayed in dynamically created event boxes. these boxes have a property added to them
* called "calendarEvent" which contains the event represented by the box.
*
* There is one day box item for every day box in the month grid. These have an attribute
* called "empty" which is set to "true", like so:
*
* dayBoxItem.setAttribute( "empty" , "true" );
*
* when the day box is not in the month. This allows the display to be controlled from css.
*
* The day boxes also have a couple of properties added to them:
*
* dayBoxItem.dayNumber - null when day is not in month.
* - the date, 1 to 31, otherwise,
*
* dayBoxItem.numEvents - The number of events for the day, used to limit the number displayed
* since there is only room for 3.
*
*/
// Make MonthView inherit from CalendarView
MonthView.prototype = new CalendarView();
MonthView.prototype.constructor = MonthView;
/**
* MonthView Constructor.
*
* PARAMETERS
* calendarWindow - the owning instance of CalendarWindow.
*
*/
function MonthView( calendarWindow )
{
// call the super constructor
this.superConstructor( calendarWindow );
var monthViewEventSelectionObserver =
{
onSelectionChanged : function( EventSelectionArray )
{
dump( "\nIn Month view, on selection changed");
if( EventSelectionArray.length > 0 )
{
//if there are selected events.
gCalendarWindow.monthView.clearSelectedDate();
2002-01-30 18:45:39 +03:00
gCalendarWindow.monthView.clearSelectedBoxes();
dump( "\nIn Month view, eventSelectionArray.length is "+EventSelectionArray.length );
var i = 0;
for( i = 0; i < EventSelectionArray.length; i++ )
{
dump( "\nin Month view, going to try and get the event boxes with name 'month-view-event-box-"+EventSelectionArray[i].id+"'" );
var EventBoxes = document.getElementsByAttribute( "name", "month-view-event-box-"+EventSelectionArray[i].id );
dump( "\nIn Month view, found "+EventBoxes.length+" matches for the selected event." );
for ( j = 0; j < EventBoxes.length; j++ )
{
EventBoxes[j].setAttribute( "eventselected", "true" );
}
}
dump( "\nAll Done in Selection for Month View" );
}
else
{
//select the proper day
gCalendarWindow.monthView.hiliteSelectedDate();
}
}
}
calendarWindow.EventSelection.addObserver( monthViewEventSelectionObserver );
2001-11-07 22:18:46 +03:00
this.showingLastDay = false;
// set up month day box's and day number text items, see notes above
this.dayNumberItemArray = new Array();
this.dayBoxItemArray = new Array();
var dayItemIndex = 0;
for( var weekIndex = 1; weekIndex <= 6; ++weekIndex )
{
for( var dayIndex = 1; dayIndex <= 7; ++dayIndex )
{
// add the day text item to an array[0..41]
var dayNumberItem = document.getElementById( "month-week-" + weekIndex + "-day-" + dayIndex );
this.dayNumberItemArray[ dayItemIndex ] = dayNumberItem;
// add the day box to an array[0..41]
var dayBoxItem = document.getElementById( "month-week-" + weekIndex + "-day-" + dayIndex + "-box" );
this.dayBoxItemArray[ dayItemIndex ] = dayBoxItem;
// set on click of day boxes
dayBoxItem.setAttribute( "onclick", "gCalendarWindow.monthView.clickDay( this )" );
//set the double click of day boxes
dayBoxItem.setAttribute( "ondblclick", "gCalendarWindow.monthView.doubleClickDay( this )" );
// array index
++dayItemIndex;
}
}
}
/** PUBLIC
*
* Redraw the events for the current month
*
* We create XUL boxes dynamically and insert them into the XUL.
* To refresh the display we remove all the old boxes and make new ones.
*/
MonthView.prototype.refreshEvents = function( )
{
// get this month's events and display them
var monthEventList = this.calendarWindow.eventSource.getEventsForMonth( this.calendarWindow.getSelectedDate() );
// remove old event boxes
var eventBoxList = document.getElementsByAttribute( "eventbox", "monthview" );
2002-01-30 18:45:39 +03:00
var eventBox = null;
2001-11-07 22:18:46 +03:00
for( var eventBoxIndex = 0; eventBoxIndex < eventBoxList.length; ++eventBoxIndex )
{
eventBox = eventBoxList[ eventBoxIndex ];
2001-11-07 22:18:46 +03:00
eventBox.parentNode.removeChild( eventBox );
}
// clear calendarEvent counts, we only display 3 events per day
2002-04-03 21:46:49 +04:00
// count them by adding a property to the dayItem, which is zeroed here
2001-11-07 22:18:46 +03:00
for( var dayItemIndex = 0; dayItemIndex < this.dayBoxItemArray.length; ++dayItemIndex )
{
var dayItem = this.dayBoxItemArray[ dayItemIndex ];
dayItem.numEvents = 0;
}
// add each calendarEvent
this.kungFooDeathGripOnEventBoxes = new Array();
2001-11-07 22:18:46 +03:00
for( var eventIndex = 0; eventIndex < monthEventList.length; ++eventIndex )
{
2001-12-20 18:53:03 +03:00
var calendarEventDisplay = monthEventList[ eventIndex ];
2001-11-07 22:18:46 +03:00
2001-12-20 18:53:03 +03:00
var eventDate = calendarEventDisplay.displayDate;
2001-11-07 22:18:46 +03:00
// get the day box for the calendarEvent's day
var eventDayInMonth = eventDate.getDate();
var dayBoxItem = this.dayBoxItemByDateArray[ eventDayInMonth ];
// Display no more than three, show dots for the events > 3
dayBoxItem.numEvents += 1;
if( dayBoxItem.numEvents < 4 )
{
// Make a text item to show the event title
var eventBoxText = document.createElement( "label" );
2001-12-20 18:53:03 +03:00
eventBoxText.setAttribute( "crop", "end" );
2001-11-07 22:18:46 +03:00
eventBoxText.setAttribute( "class", "month-day-event-text-class" );
2001-12-20 18:53:03 +03:00
eventBoxText.setAttribute( "value", calendarEventDisplay.event.title );
//you need this flex in order for text to crop
eventBoxText.setAttribute( "flex", "1" );
2001-11-07 22:18:46 +03:00
// Make a box item to hold the text item
2002-01-30 18:45:39 +03:00
eventBox = document.createElement( "box" );
2001-12-20 18:53:03 +03:00
eventBox.setAttribute( "id", "month-view-event-box-"+calendarEventDisplay.event.id );
eventBox.setAttribute( "name", "month-view-event-box-"+calendarEventDisplay.event.id );
eventBox.setAttribute( "event"+calendarEventDisplay.event.id, true );
2001-11-07 22:18:46 +03:00
eventBox.setAttribute( "class", "month-day-event-box-class" );
eventBox.setAttribute( "eventbox", "monthview" );
eventBox.setAttribute( "onclick", "gCalendarWindow.monthView.clickEventBox( this, event )" );
2001-11-07 22:18:46 +03:00
eventBox.setAttribute( "ondblclick", "monthEventBoxDoubleClickEvent( this, event )" );
2001-12-20 18:53:03 +03:00
eventBox.setAttribute( "onmouseover", "gCalendarWindow.mouseOverInfo( calendarEventDisplay, event )" );
eventBox.setAttribute( "tooltip", "savetip" );
2001-11-07 22:18:46 +03:00
// add a property to the event box that holds the calendarEvent that the
// box represents
2001-12-20 18:53:03 +03:00
eventBox.calendarEventDisplay = calendarEventDisplay;
2001-11-07 22:18:46 +03:00
this.kungFooDeathGripOnEventBoxes.push( eventBox );
// add the text to the event box and the event box to the day box
eventBox.appendChild( eventBoxText );
2001-12-20 18:53:03 +03:00
2001-11-07 22:18:46 +03:00
dayBoxItem.appendChild( eventBox );
}
else
{
//if there is not a box to hold the little dots for this day...
2001-12-20 18:53:03 +03:00
if ( !document.getElementById( "dotboxholder"+calendarEventDisplay.event.start.day ) )
2001-11-07 22:18:46 +03:00
{
//make one
dotBoxHolder = document.createElement( "hbox" );
2001-12-20 18:53:03 +03:00
dotBoxHolder.setAttribute( "id", "dotboxholder"+calendarEventDisplay.event.start.day );
2001-11-07 22:18:46 +03:00
dotBoxHolder.setAttribute( "eventbox", "monthview" );
//add the box to the day.
dayBoxItem.appendChild( dotBoxHolder );
}
else
{
//otherwise, get the box
2001-12-20 18:53:03 +03:00
dotBoxHolder = document.getElementById( "dotboxholder"+calendarEventDisplay.event.start.day );
2001-11-07 22:18:46 +03:00
}
if( dotBoxHolder.childNodes.length < kMAX_NUMBER_OF_DOTS_IN_MONTH_VIEW )
{
eventDotBox = document.createElement( "box" );
eventDotBox.setAttribute( "eventbox", "monthview" );
//show a dot representing an event.
//NOTE: This variable is named eventBox because it needs the same name as
// the regular boxes, for the next part of the function!
eventBox = document.createElement( "image" );
eventBox.setAttribute( "class", "month-view-event-dot-class" );
2001-12-20 18:53:03 +03:00
eventBox.setAttribute( "id", "month-view-event-box-"+calendarEventDisplay.event.id );
eventBox.setAttribute( "name", "month-view-event-box-"+calendarEventDisplay.event.id );
2001-11-07 22:18:46 +03:00
2001-12-20 18:53:03 +03:00
eventBox.calendarEventDisplay = calendarEventDisplay;
2001-11-07 22:18:46 +03:00
this.kungFooDeathGripOnEventBoxes.push( eventBox );
2001-12-20 18:53:03 +03:00
eventBox.setAttribute( "onmouseover", "gCalendarWindow.mouseOverInfo( calendarEventDisplay, event )" );
2001-11-07 22:18:46 +03:00
eventBox.setAttribute( "onclick", "monthEventBoxClickEvent( this, event )" );
eventBox.setAttribute( "ondblclick", "monthEventBoxDoubleClickEvent( this, event )" );
eventBox.setAttribute( "tooltip", "savetip" );
//add the dot to the extra box.
eventDotBox.appendChild( eventBox );
dotBoxHolder.appendChild( eventDotBox );
}
}
// mark the box as selected, if the event is
if( this.calendarWindow.EventSelection.isSelectedEvent( calendarEventDisplay.event ) )
2001-11-07 22:18:46 +03:00
{
this.selectBoxForEvent( calendarEventDisplay.event );
2001-11-07 22:18:46 +03:00
}
}
}
/** PUBLIC
*
* Called when the user switches to a different view
*/
MonthView.prototype.switchFrom = function( )
{
2001-11-07 22:18:46 +03:00
}
/** PUBLIC
*
* Called when the user switches to the month view
*/
MonthView.prototype.switchTo = function( )
{
// see showingLastDay notes above
this.showingLastDay = false;
// disable/enable view switching buttons
var weekViewButton = document.getElementById( "calendar-week-view-button" );
var monthViewButton = document.getElementById( "calendar-month-view-button" );
var dayViewButton = document.getElementById( "calendar-day-view-button" );
monthViewButton.setAttribute( "disabled", "true" );
weekViewButton.setAttribute( "disabled", "false" );
dayViewButton.setAttribute( "disabled", "false" );
// switch views in the deck
var calendarDeckItem = document.getElementById( "calendar-deck" );
calendarDeckItem.setAttribute( "selectedIndex", 0 );
2001-11-07 22:18:46 +03:00
}
/** PUBLIC
*
* Redraw the display, but not the events
*/
MonthView.prototype.refreshDisplay = function( )
2001-11-07 22:18:46 +03:00
{
// set the month/year in the header
var selectedDate = this.calendarWindow.getSelectedDate();
var newMonth = selectedDate.getMonth();
var newYear = selectedDate.getFullYear();
var titleMonthArray = new Array();
var titleYearArray = new Array();
var toDebug = "";
for (var i=-2; i < 3; i++){
titleMonthArray[i] = newMonth + i;
titleMonthArray[i] = (titleMonthArray[i] >= 0)? titleMonthArray[i] % 12 : titleMonthArray[i] + 12;
titleMonthArray[i] = this.calendarWindow.dateFormater.getMonthName( titleMonthArray[i] );
var idName = i + "-month-title";
document.getElementById( idName ).setAttribute( "value" , titleMonthArray[i] );
}
document.getElementById( "0-year-title" ).setAttribute( "value" , newYear );
2001-11-07 22:18:46 +03:00
var Offset = this.calendarWindow.calendarPreferences.getPref( "weekstart" );
NewArrayOfDayNames = new Array();
for( i = 0; i < ArrayOfDayNames.length; i++ )
{
NewArrayOfDayNames[i] = ArrayOfDayNames[i];
}
for( i = 0; i < Offset; i++ )
{
var FirstElement = NewArrayOfDayNames.shift();
NewArrayOfDayNames.push( FirstElement );
}
//set the day names
for( i = 1; i <= 7; i++ )
{
document.getElementById( "month-view-header-day-"+i ).value = NewArrayOfDayNames[ (i-1) ];
}
2001-11-07 22:18:46 +03:00
// Write in all the day numbers and create the dayBoxItemByDateArray, see notes above
// figure out first and last days of the month
var firstDate = new Date( newYear, newMonth, 1 );
var firstDayOfWeek = firstDate.getDay() - Offset;
if( firstDayOfWeek < 0 )
firstDayOfWeek+=7;
2001-11-07 22:18:46 +03:00
var lastDayOfMonth = DateUtils.getLastDayOfMonth( newYear, newMonth );
// prepare the dayBoxItemByDateArray, we will be filling this in
this.dayBoxItemByDateArray = new Array();
// loop through all the day boxes
var dayNumber = 1;
for( var dayIndex = 0; dayIndex < this.dayNumberItemArray.length; ++dayIndex )
{
var dayNumberItem = this.dayNumberItemArray[ dayIndex ];
var dayBoxItem = this.dayBoxItemArray[ dayIndex ];
if( dayIndex < firstDayOfWeek || dayNumber > lastDayOfMonth )
{
// this day box is NOT in the month,
dayBoxItem.dayNumber = null;
2001-11-07 22:18:46 +03:00
dayBoxItem.setAttribute( "empty" , "true" );
dayBoxItem.setAttribute( "weekend", "false" );
if( dayIndex < firstDayOfWeek )
{
var thisDate = new Date( newYear, newMonth, 1-(firstDayOfWeek - dayIndex ) );
dayBoxItem.date = thisDate;
dayNumberItem.setAttribute( "value" , thisDate.getDate() );
}
else
{
var thisDate = new Date( newYear, newMonth, lastDayOfMonth+( dayIndex - lastDayOfMonth - firstDayOfWeek + 1 ) );
dayBoxItem.date = thisDate;
dayNumberItem.setAttribute( "value" , thisDate.getDate() );
}
2001-11-07 22:18:46 +03:00
}
else
{
dayNumberItem.setAttribute( "value" , dayNumber );
dayBoxItem.setAttribute( "empty" , "false" );
var thisDate = new Date( newYear, newMonth, dayNumber );
if( thisDate.getDay() == 0 | thisDate.getDay() == 6 )
{
dayBoxItem.setAttribute( "weekend", "true" );
}
else
dayBoxItem.setAttribute( "weekend", "false" );
2001-11-07 22:18:46 +03:00
dayBoxItem.dayNumber = dayNumber;
this.dayBoxItemByDateArray[ dayNumber ] = dayBoxItem;
++dayNumber;
}
}
// if we aren't showing an event, highlite the selected date.
if ( this.calendarWindow.EventSelection.selectedEvents.length < 1 )
2001-11-07 22:18:46 +03:00
{
this.hiliteSelectedDate( );
}
//always highlight today's date.
this.hiliteTodaysDate( );
}
/** PRIVATE
*
* Mark the selected date, also unmark the old selection if there was one
*/
MonthView.prototype.hiliteSelectedDate = function( )
{
// Clear the old selection if there was one
2002-01-30 18:45:39 +03:00
this.clearSelectedDate();
this.clearSelectedBoxes();
2001-11-07 22:18:46 +03:00
// Set the background for selection
var ThisBox = this.dayBoxItemByDateArray[ this.calendarWindow.getSelectedDate().getDate() ];
ThisBox.setAttribute( "monthselected" , "true" );
2001-11-07 22:18:46 +03:00
}
/** PUBLIC
*
* Unmark the selected date if there is one.
*/
MonthView.prototype.clearSelectedDate = function( )
{
var SelectedBoxes = document.getElementsByAttribute( "monthselected", "true" );
for( i = 0; i < SelectedBoxes.length; i++ )
{
SelectedBoxes[i].removeAttribute( "monthselected" );
}
}
/** PUBLIC
*
* Unmark the selected date if there is one.
*/
MonthView.prototype.clearSelectedBoxes = function( )
{
var SelectedBoxes = document.getElementsByAttribute( "eventselected", "true" );
for( i = 0; i < SelectedBoxes.length; i++ )
2001-11-07 22:18:46 +03:00
{
SelectedBoxes[i].removeAttribute( "eventselected" );
2001-11-07 22:18:46 +03:00
}
}
/** PRIVATE
*
* Mark today as selected, also unmark the old today if there was one.
*/
MonthView.prototype.hiliteTodaysDate = function( )
{
var Month = this.calendarWindow.getSelectedDate().getMonth();
var Year = this.calendarWindow.getSelectedDate().getFullYear();
// Clear the old selection if there was one
var TodayBox = document.getElementsByAttribute( "today", "true" );
for( i = 0; i < TodayBox.length; i++ )
2001-11-07 22:18:46 +03:00
{
TodayBox[i].removeAttribute( "today" );
2001-11-07 22:18:46 +03:00
}
//highlight today.
var Today = new Date( );
if ( Year == Today.getFullYear() && Month == Today.getMonth() )
{
var ThisBox = this.dayBoxItemByDateArray[ Today.getDate() ];
2001-11-07 22:18:46 +03:00
ThisBox.setAttribute( "today", "true" );
2001-11-07 22:18:46 +03:00
}
}
/** PUBLIC
*
* This is called when we are about the make a new event
* and we want to know what the default start date should be for the event.
*/
MonthView.prototype.getNewEventDate = function( )
{
// use the selected year, month and day
// and the current hours and minutes
var now = new Date();
var start = new Date( this.calendarWindow.getSelectedDate() );
start.setHours( now.getHours() );
start.setMinutes( Math.ceil( now.getMinutes() / 5 ) * 5 );
start.setSeconds( 0 );
return start;
}
/** PUBLIC
*
* Moves goMonths months in the future, goes to next month if no argument.
2001-11-07 22:18:46 +03:00
*/
MonthView.prototype.goToNext = function( goMonths )
2001-11-07 22:18:46 +03:00
{
if(goMonths){
var nextMonth = new Date( this.calendarWindow.selectedDate.getFullYear(), this.calendarWindow.selectedDate.getMonth() + goMonths, 1 );
this.adjustNewMonth( nextMonth );
this.goToDay( nextMonth );
}else{
var nextMonth = new Date( this.calendarWindow.selectedDate.getFullYear(), this.calendarWindow.selectedDate.getMonth() + 1, 1 );
this.adjustNewMonth( nextMonth );
this.goToDay( nextMonth );
}
2001-11-07 22:18:46 +03:00
}
/** PUBLIC
*
* Goes goMonths months into the past, goes to the previous month if no argument.
2001-11-07 22:18:46 +03:00
*/
MonthView.prototype.goToPrevious = function( goMonths )
2001-11-07 22:18:46 +03:00
{
if(goMonths){
var prevMonth = new Date( this.calendarWindow.selectedDate.getFullYear(), this.calendarWindow.selectedDate.getMonth() - goMonths, 1 );
this.adjustNewMonth( prevMonth );
this.goToDay( prevMonth );
}else{
var prevMonth = new Date( this.calendarWindow.selectedDate.getFullYear(), this.calendarWindow.selectedDate.getMonth() - 1, 1 );
this.adjustNewMonth( prevMonth );
this.goToDay( prevMonth );
}
2001-11-07 22:18:46 +03:00
}
/** PRIVATE
*
* Helper function for goToNext and goToPrevious
*
* When the user changes to a new month the new month may not have the selected day in it.
* ( i.e. 31 was selected and the new month has only 30 days ).
* In that case our addition, or subtraction, in goToNext or goToPrevious will cause the
* date to jump a month. ( Say the date starts at May 31, we add 1 to the month, Now the
* date would be June 31, but the Date object knows there is no June 31, so it sets itself
* to July 1. )
*
* In goToNext or goToPrevious we set the date to be 1, so the month will be correct. Here
* we set the date to be the selected date, making adjustments if the selected date is not in the month.
*/
MonthView.prototype.adjustNewMonth = function( newMonth )
{
// Don't let a date beyond the end of the month make us jump
// too many or too few months
var lastDayOfMonth = DateUtils.getLastDayOfMonth( newMonth.getFullYear(), newMonth.getMonth() );
if( this.calendarWindow.selectedDate.getDate() > lastDayOfMonth )
{
// The selected date is NOT in the month
// set it to the last day of the month and turn on showingLastDay, see notes in MonthView class
newMonth.setDate( lastDayOfMonth )
this.showingLastDay = true;
}
else if( this.showingLastDay )
{
// showingLastDay is on so select the last day of the month, see notes in MonthView class
newMonth.setDate( lastDayOfMonth )
}
else
{
// date is NOT beyond the last.
newMonth.setDate( this.calendarWindow.selectedDate.getDate() )
}
}
/** PUBLIC -- monthview only
*
* Called when a day box item is single clicked
*/
MonthView.prototype.clickDay = function( dayBoxItem )
{
if( dayBoxItem.dayNumber != null )
{
// turn off showingLastDay - see notes in MonthView class
this.showingLastDay = false;
// change the selected date and redraw it
this.calendarWindow.selectedDate.setDate( dayBoxItem.dayNumber );
this.calendarWindow.EventSelection.emptySelection();
2001-11-07 22:18:46 +03:00
}
}
MonthView.prototype.doubleClickDay = function( dayBoxItem )
{
if ( dayBoxItem.dayNumber != null )
{
// change the selected date and redraw it
gCalendarWindow.selectedDate.setDate( dayBoxItem.dayNumber );
this.calendarWindow.EventSelection.emptySelection();
2001-11-07 22:18:46 +03:00
var startDate = this.getNewEventDate();
newEvent( startDate, false );
}
else
{
newEvent( dayBoxItem.date, false );
}
2001-11-07 22:18:46 +03:00
}
/** PUBLIC -- monthview only
*
* Called when an event box item is single clicked
*/
MonthView.prototype.clickEventBox = function( eventBox, event )
{
this.calendarWindow.selectedDate.setDate( eventBox.calendarEventDisplay.event.start.day );
2001-11-07 22:18:46 +03:00
this.calendarWindow.EventSelection.replaceSelection( eventBox.calendarEventDisplay.event );
// Do not let the click go through, suppress default selection
if ( event )
2001-11-07 22:18:46 +03:00
{
event.stopPropagation();
2001-11-07 22:18:46 +03:00
}
}
MonthView.prototype.clearSelectedEvent = function ( )
{
gCalendarWindow.EventSelection.emptySelection();
2001-11-07 22:18:46 +03:00
var ArrayOfBoxes = document.getElementsByAttribute( "eventselected", "true" );
2001-11-07 22:18:46 +03:00
for( i = 0; i < ArrayOfBoxes.length; i++ )
{
ArrayOfBoxes[i].removeAttribute( "eventselected" );
}
2001-11-07 22:18:46 +03:00
}
MonthView.prototype.getVisibleEvent = function( calendarEvent )
{
var eventBox = document.getElementById( "month-view-event-box-"+calendarEvent.id );
2001-11-07 22:18:46 +03:00
if ( eventBox )
{
return eventBox;
}
else
return null;
}
2001-11-07 22:18:46 +03:00
MonthView.prototype.selectBoxForEvent = function( calendarEvent )
{
var EventBoxes = document.getElementsByAttribute( "name", "month-view-event-box-"+calendarEvent.id );
for ( j = 0; j < EventBoxes.length; j++ )
{
EventBoxes[j].setAttribute( "eventselected", "true" );
}
2001-11-07 22:18:46 +03:00
}
/*Just calls setCalendarSize, it's here so it can be implemented on the other two views without difficulty.*/
MonthView.prototype.doResize = function(){
MonthView.setCalendarSize(MonthView.getViewHeight());
}
/*Takes in a height, sets the calendar's container box to that height, the grid expands and contracts to fit it.*/
MonthView.setCalendarSize = function( height ){
var offset = document.defaultView.getComputedStyle(document.getElementById("month-controls-box"), "").getPropertyValue("height");
offset = parseInt( offset );
height = (height-offset)+"px";
document.getElementById( "month-content-box" ).setAttribute( "height", height );
}
/*returns the height of the current view in pixels*/
MonthView.getViewHeight = function( ){
toReturn = document.defaultView.getComputedStyle(document.getElementById("calendar-top-box"), "").getPropertyValue("height");
toReturn = parseInt( toReturn ); //strip off the px at the end
return toReturn;
}
/*Creates a background attribute on month-grid-box and all the month-day-box classes,
if one exists it flips the value between true and false*/
MonthView.toggleBackground = function( ){
var vboxen = document.getElementsByTagName("vbox");
//do the outer grid box
if(document.getElementById("month-grid-box").getAttribute("background")){
if(document.getElementById("month-grid-box").getAttribute("background") == "true"){
document.getElementById("month-grid-box").setAttribute("background", "false");
}else{
document.getElementById("month-grid-box").setAttribute("background", "true");
}
}else{
document.getElementById("month-grid-box").setAttribute("background", "true");
}
//do all the month-day-boxes
for(var i = 0; i < vboxen.length; i++){
if(vboxen[i].className == "month-day-box-class" || vboxen[i].className == "month-day-box-class weekend" || vboxen[i].className == "month-day-box-class weekend saturday"){
if(vboxen[i].getAttribute("background")){
vboxen[i].setAttribute("background", vboxen[i].getAttribute("background") == "true" ? "false" : "true");
}else{
vboxen[i].setAttribute("background","true");
}
}
}
}