calendar/calendar.js

258 lines
8.3 KiB
JavaScript
Raw Normal View History

2011-07-19 16:39:50 +04:00
/**
2015-03-13 16:31:39 +03:00
* Calendar Script
2011-07-19 16:39:50 +04:00
* Creates a calendar widget which can be used to select the date more easily than using just a text box
2015-03-13 16:31:39 +03:00
*
* Original: http://www.openjs.com/scripts/ui/calendar/
* Modified: http://svn.yourcmc.ru/viewvc.py/vitaphoto/js/{util.js,calendar.js,calendar.css}
* (uses addListener() and getOffset() from util.js)
* License: MIT-like, http://www.openjs.com/license.php
2011-07-19 16:39:50 +04:00
*
* Example:
* <input type="text" name="date" id="date" />
* <script type="text/javascript">
2015-03-13 16:31:39 +03:00
* Calendar.set("date");
2011-07-19 16:39:50 +04:00
* </script>
*/
var Calendar = {
2015-03-13 16:31:39 +03:00
month_names: ["Январь","Февраль","Март","Апрель","Май","Июнь","Июлья","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],
weekdays: ["Пн","Вт","Ср","Чт","Пт","Сб","Вс"],
sunday: 6,
2011-07-19 16:39:50 +04:00
month_days: [31,28,31,30,31,30,31,31,30,31,30,31],
2015-03-13 16:31:39 +03:00
// Get today's date - year, month, day and date
today: new Date(),
format: 'Y-m-d', // either d.m.Y or Y-m-d, other formats are not supported
opt: {},
2011-07-19 16:39:50 +04:00
data: [],
2015-03-13 16:31:39 +03:00
addedListener: false,
2011-07-19 16:39:50 +04:00
//Functions
/// Used to create HTML in a optimized way.
wrt:function(txt) {
this.data.push(txt);
},
2015-03-13 16:31:39 +03:00
2011-07-19 16:39:50 +04:00
/// Called when the user clicks on a date in the calendar.
selectDate:function(year,month,day) {
var ths = _calendar_active_instance;
var i = document.getElementById(ths.opt["input"]);
var t = i.value.split(/\s+/, 2)[1]||'';
if (t)
t = ' '+t;
2015-03-13 16:31:39 +03:00
i.value = (ths.format == 'Y-m-d' ? year + '-' + month + '-' + day : day + '.' + month + '.' + year) + t;
2011-07-19 16:39:50 +04:00
ths.hideCalendar();
},
2015-03-13 16:31:39 +03:00
2011-07-19 16:39:50 +04:00
/// Creates a calendar with the date given in the argument as the selected date.
makeCalendar:function(year, month, day) {
year = parseInt(year);
month= parseInt(month);
day = parseInt(day);
2015-03-13 16:31:39 +03:00
2011-07-19 16:39:50 +04:00
//Display the table
var next_month = month+1;
var next_month_year = year;
if(next_month>=12) {
next_month = 0;
next_month_year++;
}
2015-03-13 16:31:39 +03:00
2011-07-19 16:39:50 +04:00
var previous_month = month-1;
var previous_month_year = year;
2011-07-19 16:49:00 +04:00
if(previous_month<0) {
2011-07-19 16:39:50 +04:00
previous_month = 11;
previous_month_year--;
}
2015-03-13 16:31:39 +03:00
2011-07-19 16:39:50 +04:00
this.wrt("<table>");
this.wrt("<tr><th><a href='javascript:Calendar.makeCalendar("+(previous_month_year)+","+(previous_month)+");' title='"+this.month_names[previous_month]+" "+(previous_month_year)+"'>&lt;</a></th>");
this.wrt("<th colspan='5' class='calendar-title'><select name='calendar-month' class='calendar-month' onChange='Calendar.makeCalendar("+year+",this.value);'>");
for(var i in this.month_names) {
this.wrt("<option value='"+i+"'");
if(i == month) this.wrt(" selected='selected'");
this.wrt(">"+this.month_names[i]+"</option>");
}
this.wrt("</select>");
this.wrt("<select name='calendar-year' class='calendar-year' onChange='Calendar.makeCalendar(this.value, "+month+");'>");
var current_year = this.today.getYear();
if(current_year < 1900) current_year += 1900;
2015-03-13 16:31:39 +03:00
2011-07-19 16:39:50 +04:00
for(var i=current_year-70; i<current_year+10; i++) {
this.wrt("<option value='"+i+"'")
if(i == year) this.wrt(" selected='selected'");
this.wrt(">"+i+"</option>");
}
this.wrt("</select></th>");
this.wrt("<th><a href='javascript:Calendar.makeCalendar("+(next_month_year)+","+(next_month)+");' title='"+this.month_names[next_month]+" "+(next_month_year)+"'>&gt;</a></th></tr>");
this.wrt("<tr class='header'>");
2015-03-13 16:31:39 +03:00
for (var weekday = 0; weekday < 7; weekday++)
this.wrt("<td>"+this.weekdays[weekday]+"</td>");
2011-07-19 16:39:50 +04:00
this.wrt("</tr>");
2015-03-13 16:31:39 +03:00
// Get the first day of this month
2011-07-19 16:39:50 +04:00
var first_day = new Date(year,month,1);
2011-07-19 16:49:00 +04:00
var start_day = (first_day.getDay()+Calendar.sunday)%7;
2015-03-13 16:31:39 +03:00
2011-07-19 16:39:50 +04:00
var d = 1;
var flag = 0;
2015-03-13 16:31:39 +03:00
// Leap year support
if (year % 4 == 0)
this.month_days[1] = 29;
else
this.month_days[1] = 28;
2011-07-19 16:39:50 +04:00
var days_in_this_month = this.month_days[month];
2015-03-13 16:31:39 +03:00
// Create the calender
var yea = this.today.getYear();
if (yea < 1900)
yea += 1900;
var all_diff = (year - yea) || (month - this.today.getMonth());
for (var i = 0; i <= 5; i++)
{
if (w >= days_in_this_month)
break;
2011-07-19 16:39:50 +04:00
this.wrt("<tr>");
2015-03-13 16:31:39 +03:00
for (var j = 0; j < 7; j++)
{
if (d > days_in_this_month)
flag = 0; // If the days has overshooted the number of days in this month, stop writing
else if (j >= start_day && !flag)
flag = 1; // If the first day of this month has come, start the date writing
2011-07-19 16:39:50 +04:00
2015-03-13 16:31:39 +03:00
if (flag)
{
2011-07-19 16:39:50 +04:00
var w = d, mon = month+1;
2015-03-13 16:31:39 +03:00
if (w < 10)
w = "0" + w;
if (mon < 10)
mon = "0" + mon;
2011-07-19 16:39:50 +04:00
2015-03-13 16:31:39 +03:00
// Is it today?
2011-07-19 16:39:50 +04:00
var class_name = '';
2015-03-13 16:31:39 +03:00
var diff = all_diff || (d - this.today.getDate());
if (diff < 0)
class_name = ' past';
else if (!diff)
class_name = ' today';
else
class_name = ' future';
if (day == d)
class_name += ' selected';
2011-07-19 16:39:50 +04:00
class_name += " " + this.weekdays[j].toLowerCase();
this.wrt("<td class='days"+class_name+"'><a href='javascript:Calendar.selectDate(\""+year+"\",\""+mon+"\",\""+w+"\")'>"+w+"</a></td>");
d++;
2015-03-13 16:31:39 +03:00
}
else
{
2011-07-19 16:39:50 +04:00
this.wrt("<td class='days'>&nbsp;</td>");
}
}
this.wrt("</tr>");
}
this.wrt("</table>");
2015-03-13 16:31:39 +03:00
this.wrt("<input type='button' value='Закрыть' class='calendar-cancel' onclick='Calendar.hideCalendar();' />");
2011-07-19 16:39:50 +04:00
document.getElementById(this.opt['calendar']).innerHTML = this.data.join("");
this.data = [];
},
2015-03-13 16:31:39 +03:00
2011-07-19 16:39:50 +04:00
/// Display the calendar - if a date exists in the input box, that will be selected in the calendar.
showCalendar: function() {
var input = document.getElementById(this.opt['input']);
2015-03-13 16:31:39 +03:00
2011-07-19 16:39:50 +04:00
//Position the div in the correct location...
var div = document.getElementById(this.opt['calendar']);
2015-03-13 16:31:39 +03:00
var xy = getOffset(input);
2011-07-19 16:39:50 +04:00
var width = input.clientWidth||input.offsetWidth;
2015-03-13 16:31:39 +03:00
div.style.left=(xy.left+width+10)+"px";
div.style.top=xy.top+"px";
2011-07-19 16:39:50 +04:00
// Show the calendar with the date in the input as the selected date
var existing_date = new Date();
var date_in_input = input.value.replace(/\s+.*$/, ''); //Remove time
if(date_in_input) {
2015-03-13 16:31:39 +03:00
// date format is HARDCODE
2011-07-19 16:39:50 +04:00
var selected_date = false;
var date_parts = date_in_input.split("-");
if(date_parts.length == 3) {
2015-03-13 16:31:39 +03:00
// Y-m-d
2011-07-19 16:39:50 +04:00
date_parts[1]--; //Month starts with 0
selected_date = new Date(date_parts[0], date_parts[1], date_parts[2]);
2015-03-13 16:31:39 +03:00
} else if (date_parts.length == 1) {
date_parts = date_in_input.split('.');
if (date_parts.length == 3) {
// d.m.Y
date_parts[1]--; //Month starts with 0
selected_date = new Date(date_parts[2], date_parts[1], date_parts[0]);
}
2011-07-19 16:39:50 +04:00
}
if(selected_date && !isNaN(selected_date.getYear())) { //Valid date.
existing_date = selected_date;
}
}
2015-03-13 16:31:39 +03:00
2011-07-19 16:39:50 +04:00
var the_year = existing_date.getYear();
if(the_year < 1900) the_year += 1900;
this.makeCalendar(the_year, existing_date.getMonth(), existing_date.getDate());
document.getElementById(this.opt['calendar']).style.display = "block";
_calendar_active_instance = this;
2015-03-13 16:31:39 +03:00
if (!Calendar.addedListener)
{
addListener(div, "mousedown", function(ev) {
ev = ev || window.event;
if (ev.stopPropagation)
ev.stopPropagation();
else
ev.cancelBubble = true;
return true;
});
addListener(document, "mousedown", function() { Calendar.hideCalendar(); });
Calendar.addedListener = true;
}
2011-07-19 16:39:50 +04:00
},
2015-03-13 16:31:39 +03:00
2011-07-19 16:39:50 +04:00
/// Hides the currently show calendar.
hideCalendar: function(instance) {
var active_calendar_id = "";
if(instance) active_calendar_id = instance.opt['calendar'];
2015-03-13 16:31:39 +03:00
else if(!_calendar_active_instance) return;
2011-07-19 16:39:50 +04:00
else active_calendar_id = _calendar_active_instance.opt['calendar'];
2015-03-13 16:31:39 +03:00
2011-07-19 16:39:50 +04:00
if(active_calendar_id) document.getElementById(active_calendar_id).style.display = "none";
2015-03-13 16:31:39 +03:00
_calendar_active_instance = null;
2011-07-19 16:39:50 +04:00
},
2015-03-13 16:31:39 +03:00
2011-07-19 16:39:50 +04:00
/// Setup a text input box to be a calendar box.
set: function(input_id) {
var input = document.getElementById(input_id);
if(!input) return; //If the input field is not there, exit.
2015-03-13 16:31:39 +03:00
2011-07-19 16:39:50 +04:00
if(!this.opt['calendar']) this.init();
2015-03-13 16:31:39 +03:00
2011-07-19 16:39:50 +04:00
var ths = this;
2015-03-13 16:31:39 +03:00
addListener(input, 'focus', function(ev) {
2011-07-19 16:39:50 +04:00
ths.opt['input'] = this.id;
ths.showCalendar();
2015-03-13 16:31:39 +03:00
});
2011-07-19 16:39:50 +04:00
},
2015-03-13 16:31:39 +03:00
2011-07-19 16:39:50 +04:00
/// Will be called once when the first input is set.
init: function() {
if(!this.opt['calendar'] || !document.getElementById(this.opt['calendar'])) {
var div = document.createElement('div');
if(!this.opt['calendar']) this.opt['calendar'] = 'calender_div_'+ Math.round(Math.random() * 100);
div.setAttribute('id',this.opt['calendar']);
div.className="calendar-box";
document.getElementsByTagName("body")[0].insertBefore(div,document.getElementsByTagName("body")[0].firstChild);
}
}
}