Skip to content
This repository has been archived by the owner on Nov 30, 2018. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dmuy committed Sep 19, 2014
1 parent 0e073f5 commit f9f664a
Show file tree
Hide file tree
Showing 4 changed files with 348 additions and 0 deletions.
21 changes: 21 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2013 Dionlee Uy

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
67 changes: 67 additions & 0 deletions dcalendar.picker.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
/*!Don't remove this!
* jQuery DCalendar and DCalendar Picker plugin styles
*
* Author: Dionlee Uy
* Email: dionleeuy@gmail.com
*
* Date: Mon Mar 2 2013
*/
.calendar {
position: relative;
font-family: 'Segoe UI';
font-size: 12px;
border-collapse: collapse;
margin: 0; padding: 0;
z-index: 4;
border:1px solid #D5D5D5;
width: 250px;
color: #000;
text-align: center;
background-color: #FFF;
}
.calendar th {
padding: 4px;
width: 25px;
}
.calendar td {
text-align: right;
padding: 0 2px;
}
.calendar span {
padding: 4px; display: block;
}
.calendar .month {
padding: 15px;
}
.calendar .pMDate, .calendar .nMDate { color: #AAA; }
.calendar .date, .calendar .pMDate, .calendar .nMDate, .calendar .month { cursor: pointer; }
.calendar .date:hover, .calendar .pMDate:hover, .calendar .nMDate:hover, .calendar .month:hover { background-color: #E2E2E2; }
.calendar .date:active, .calendar .pMDate:active, .calendar .nMDate:active, .calendar .month:active { background-color: #D8D8D8; }
.calendar .selected {
border: 1px dashed #3B5998;
}
.calendar tr:first-child th {
background-color: #FFF;
font-size: 14px;
}
.calendar tr:first-child th { cursor: pointer; color:#000; }
.calendar tr:first-child th:hover { color:#3B5998; }
.calendar tr:first-child th:active { background-color: #CCC; }
.calendar thead tr:nth-child(2){ background-color: #EEE; }
.calendar #prev, .calendar #next {
font-family: 'Times New Roman';
font-size: 20px;
padding: 0;
}
.calendar #today {
text-align: center; cursor: pointer;
color: #3B5998; padding: 4px;
border-top:1px solid #D5D5D5;
}
.calendar #today:hover { color: #80A7DD; }
.calendar #today:active { color: #000; }
.calendar #currDay { background-color: #3B5998; color:#FFF; }
.datepicker {
background: url('./icon.png') transparent right no-repeat;
background-size: contain;
}
260 changes: 260 additions & 0 deletions dcalendar.picker.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,260 @@
/* -- DO NOT REMOVE --
* jQuery DCalendar 1.0 and DCalendar Picker 1.1 plugin
*
* Author: Dionlee Uy
* Email: dionleeuy@gmail.com
*
* Date: Sat Mar 2 2013
*
* @requires jQuery
* -- DO NOT REMOVE --
*/
if (typeof jQuery === 'undefined') { throw new Error('DCalendar.Picker: This plugin requires jQuery'); }

+function ($) {

Date.prototype.getDays = function() { return new Date(this.getFullYear(), this.getMonth() + 1, 0).getDate(); };
// Date.prototype.getWeeks = function(){ var d = new Date(this), l = this.getDays(); d.setDate(1); l += d.getDay(); return Math.ceil(l/7) };
var months = ['January','February','March','April','May','June','July','August','September','October','November','December'],
short_months = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'],
daysofweek = ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'];

var DCalendar = function(elem, options) {
this.calendar = $(elem);
this.today = new Date(); //system date
this.date = this.today; //current selected date, default is today
this.viewMode = 'days';
this.options = options;
this.selected = this.date.getMonth().toString() + "/" + this.date.getDate() + "/" + this.date.getFullYear();
if(options.mode == 'calendar')
this.tHead = $('<thead><tr><th id="prev">&lsaquo;</th><th colspan="5" id="currM"></th><th id="next">&rsaquo;</th></tr><tr><th>Sun</th><th>Mon</th><th>Tue</th><th>Wed</th><th>Thu</th><th>Fri</th><th>Sat</th></tr></thead>');
else if (options.mode == 'datepicker')
this.tHead = $('<thead><tr><th id="prev">&lsaquo;</th><th colspan="5" id="currM"></th><th id="next">&rsaquo;</th></tr><tr><th>Su</th><th>Mo</th><th>Tu</th><th>We</th><th>Th</th><th>Fr</th><th>Sa</th></tr></thead>');
this.tHead.find('#currM').text(months[this.today.getMonth()] +" " + this.today.getFullYear());
this.calendar.prepend(this.tHead);
var that = this;

this.calendar.on('click', '#next', function(){ initCreate('next'); })
.on('click', '#prev', function(){ initCreate('prev'); })
.on('click', '#today', function(){
that.viewMode = 'days';
var curr = new Date(that.date),
sys = new Date(that.today);
if(curr.toString() != sys.toString()) { that.date = sys; that.create(that.viewMode); }
}).on('click', '.date', function(){
that.selected = that.date.getMonth() + 1 + "/" + $(this).text() + "/" + that.date.getFullYear();
if(that.options.mode == 'datepicker') {
that.calendar.find('td').removeClass('selected');
$(this).addClass('selected');
}
selectDate();
return true;
}).on('click', '.pMDate', function(){
that.selected = (that.date.getMonth() == 0 ? '12' : that.date.getMonth()) + "/" + $(this).text() + "/" + (that.date.getMonth() == 0 ? that.date.getFullYear()-1 : that.date.getFullYear());
if(that.options.mode == 'datepicker') {
that.calendar.find('td').removeClass('selected');
$(this).addClass('selected');
}
selectDate();
return true;
}).on('click', '.nMDate', function(){
that.selected = (that.date.getMonth()+2 == 13 ? '1' : that.date.getMonth()+2) + "/" + $(this).text() + "/" + (that.date.getMonth()+2 == 13 ? that.date.getFullYear()+1 : that.date.getFullYear());
if(that.options.mode == 'datepicker') {
that.calendar.find('td').removeClass('selected');
$(this).addClass('selected');
}
selectDate();
return true;
}).on('click', '#currM', function(){
that.viewMode = 'months';
that.create(that.viewMode);
}).on('click', '.month', function(e){
that.viewMode = 'days';
var curr = new Date(that.date), y = that.calendar.find('#currM').text();
curr.setMonth($(e.currentTarget).attr('num'));
that.date = curr;
that.create(that.viewMode);
});

function selectDate () {
var newDate = formatDate(that.options.format);
var e = $.Event('selectdate',{date: newDate});
that.calendar.trigger(e);
}

function formatDate (format) {
var d = new Date(that.selected), day = d.getDate(), m = d.getMonth(), y = d.getFullYear();
return format.replace(/(yyyy|yy|mmmm|mmm|mm|m|dd|d)/gi, function (e) {
switch(e.toLowerCase()){
case 'd': return day;
case 'dd': return (day < 10 ? "0"+day: day);
case 'm': return m+1;
case 'mm': return (m+1 < 10 ? "0"+(m+1): (m+1));
case 'mmm': return short_months[m];
case 'mmmm': return months[m];
case 'yy': return y.toString().substr(2,2);
case 'yyyy': return y;
}
});
}

function initCreate(o){
var curr = new Date(that.date);
if(that.viewMode == 'days')
o == 'next' ? curr.setMonth(curr.getMonth() + 1) : curr.setMonth(curr.getMonth() - 1);
else
o == 'next' ? curr.setFullYear(curr.getFullYear() + 1) : curr.setFullYear(curr.getFullYear() - 1);
curr.setDate(1);
that.date = curr;
that.create(that.viewMode);
}

this.create(this.viewMode);
}

DCalendar.prototype = {

constructor : DCalendar,

//setDate : function(){},

create : function(mode){
var that = this, cal = [], tBody = $('<tbody></tbody>'), d = new Date(that.date), days = that.date.getDays(), day = 1, nStartDate = 1, selDate = that.selected.split('/');
that.calendar.empty();
if(mode == "days"){
if(that.options.mode == 'calendar')
that.tHead = $('<thead><tr><th id="prev">&lsaquo;</th><th colspan="5" id="currM"></th><th id="next">&rsaquo;</th></tr><tr><th>Sun</th><th>Mon</th><th>Tue</th><th>Wed</th><th>Thu</th><th>Fri</th><th>Sat</th></tr></thead>');
else if (that.options.mode == 'datepicker')
that.tHead = $('<thead><tr><th id="prev">&lsaquo;</th><th colspan="5" id="currM"></th><th id="next">&rsaquo;</th></tr><tr><th>Su</th><th>Mo</th><th>Tu</th><th>We</th><th>Th</th><th>Fr</th><th>Sa</th></tr></thead>');
that.tHead.find('#currM').text(months[that.date.getMonth()] +" " + that.date.getFullYear());
that.calendar.append(that.tHead);
for(var i=1; i<=6; i++){
var temp = [$('<td></td>'),$('<td></td>'),$('<td></td>'),$('<td></td>'),$('<td></td>'),$('<td></td>'),$('<td></td>')];

while(day<=days){
d.setDate(day);
var dayOfWeek = d.getDay();
if(day == that.today.getDate() && d.getMonth() == that.today.getMonth() && d.getFullYear() == that.today.getFullYear()) {
temp[dayOfWeek].attr('id', 'currDay');
} else if(that.options.mode == 'datepicker' && (day == selDate[1] && d.getMonth() == (selDate[0]-1) && d.getFullYear() == selDate[2])){
temp[dayOfWeek].addClass('selected');
}
if(i == 1 && dayOfWeek == 0){
break;
} else if(dayOfWeek < 6){
temp[dayOfWeek].html('<span>'+(day++)+'</span>').addClass('date');
} else {
temp[dayOfWeek].html('<span>'+(day++)+'</span>').addClass('date');
break;
}
}
if(i == 1 || i > 4){
var p = new Date(that.date);
p.setMonth(p.getMonth()+(i==1?-1:1));
var pDays = p.getDays();
for(var a=(i==1?6:0); (i==1?(a>=0):(a<=6)); (i==1?a--:a++)){
if(temp[a].text() == ''){
temp[a].html('<span>'+((i==1?pDays--:nStartDate++))+'</span>').addClass((i==1?'pMDate':'nMDate'));
if(that.options.mode == 'datepicker' && ((i==1?(pDays+1):(nStartDate-1)) == selDate[1] && p.getMonth() == (selDate[0]-1) && p.getFullYear() == selDate[2])){
temp[a].addClass('selected');
}
}
}
}
cal.push(temp);
}

$.each(cal, function(i, v){
var row = $('<tr></tr>'), l = v.length;
for(var i=0;i<l;i++){ row.append(v[i]); }
tBody.append(row);
});

var sysDate = "Today: " + daysofweek[that.today.getDay()] + ", "+ months[that.today.getMonth()] + " " + that.today.getDate() + ", " + that.today.getFullYear();
tBody.append('<tr><td colspan="7" id="today">'+sysDate+'</td></tr>').appendTo(that.calendar);
} else {
this.tHead = $('<thead><tr><th id="prev">&lsaquo;</th><th colspan="2" id="currM"></th><th id="next">&rsaquo;</th></tr>');
that.tHead.find('#currM').text(that.date.getFullYear());
that.tHead.appendTo(that.calendar);
var currI = 0;
for (var i = 0; i < 3; i++) {
var row = $('<tr></tr>');
for (var x = 0; x < 4; x++) {
var col = $('<td align="center"></td>');
var m = $('<span class="month" num="'+currI+'">'+short_months[currI]+'</span>');
col.append(m).appendTo(row);
currI++;
}
tBody.append(row);
}
var sysDate = "Today: " + daysofweek[that.today.getDay()] + ", "+ months[that.today.getMonth()] + " " + that.today.getDate() + ", " + that.today.getFullYear();
tBody.append('<tr><td colspan="4" id="today">'+sysDate+'</td></tr>').appendTo(that.calendar);
}
}
}

/* DEFINITION FOR DCALENDAR */
$.fn.dcalendar = function(opts){
return $(this).each(function(index, elem){
var that = this;
var $this = $(that),
data = $(that).data('dcalendar'),
options = $.extend({}, $.fn.dcalendar.defaults, $this.data(), typeof opts == 'object' && opts);
if(!data){
$this.data('dcalendar', (data = new DCalendar(this, options)));
}
if(typeof opts == 'string') data[opts]();
});
}

$.fn.dcalendar.defaults = {
mode : 'calendar',
format: 'mm/dd/yyyy',
};

$.fn.dcalendar.Constructor = DCalendar;

/* DEFINITION FOR DCALENDAR PICKER */
$.fn.dcalendarpicker = function(opts){
return $(this).each(function(){
var that = $(this);
var cal = $('<table class="calendar"></table>'), hovered = false, selectedDate = false;
that.wrap($('<div class="datepicker" style="display:inline-block;position:relative;"></div>'));
cal.css({
position:'absolute',
left:0, display:'none',
'box-shadow':'0 0 4px rgba(0,0,0,0.15)',
width:'220px',
}).appendTo(that.parent());
if(opts){
opts.mode = 'datepicker';
cal.dcalendar(opts);
}
else
cal.dcalendar({mode: 'datepicker'});
cal.hover(function(){
hovered = true;
}, function(){
hovered = false;
}).on('click', function(){
if(!selectedDate)
that.focus();
else {
selectedDate = false;
$(this).hide();
}
}).on('selectdate', function(e){
that.val(e.date);
that.trigger($.Event('dateselected',{date: e.date, elem: that}));
selectedDate = true;
});
that.on('keydown', function(e){ if(e.which) return false; })
.on('focus', function(){
$('.datepicker').find('.calendar').not(cal).hide();
cal.show();
})
.on('blur', function(){ if(!hovered) cal.hide(); });
});
}

}(jQuery);
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f9f664a

Please sign in to comment.