/*文字コードUTF-8*/ (function($) { jQuery.fn.clockpick = function(options, callback) { var settings = { starthour : 10, endhour : 22, showminutes : true, minutedivisions : 2, military : true, event : 'click', layout : 'vertical', valuefield : null, useBgiframe : false, hoursopacity : 1, minutesopacity : 1 }; if(options) { jQuery.extend(settings, options); }; var callback = callback || function() { }, v = (settings.layout == 'vertical'); // boolean for vertical, shorten footprint errorcheck(); jQuery(this)[settings.event](function(e) { var self = this, $self = jQuery( this ), $body = jQuery( "body" ); if ( !settings.valuefield ) { $self.unbind( "keydown" ).bind( "keydown", keyhandler ); } else { var inputfield = jQuery("[name=" + settings.valuefield + "]"); inputfield .unbind( "keydown" ) .bind( "keydown", keyhandler)[0] .focus(); inputfield .bind("click", function() { inputfield.unbind("keydown"); } ); } // clear any malingerers jQuery("#CP_hourcont,#CP_minutecont").remove(); // append hourcont to body // add class "CP" for mouseout recognition, although there is only // one hourcont on the screen at a time $hourcont = jQuery("
").appendTo( $body ); !settings.useBgiframe ? $hourcont.css("opacity",settings.hoursopacity) : null; binder( $hourcont ); $hourcol1 = jQuery("
").appendTo( $body ); $hourcol2 = jQuery("
").appendTo( $body ); // if showminutes, append minutes cont to body if (settings.showminutes) { $mc = jQuery("
").appendTo( $body ); !settings.useBgiframe ? $mc.css("opacity",settings.minutesopacity) : null; binder($mc); } if ( !v ) { $hourcont.css("width","auto"); $mc.css("width","auto"); } else { $hourcol1.addClass('floatleft'); $hourcol2.addClass('floatleft'); } // all the action right here // fill in the hours container (minutes rendered in hour mouseover) // then make hour container visible renderhours(); putcontainer(); /*----------------------helper functions below-------------------------*/ function renderhours() { var c = 1; for (h=settings.starthour; h<=settings.endhour; h++) { if(h==12) { c = 1; } // reset counter for col 2 displayhours = ((!settings.military && h > 12) ? h - 12 : h); // rectify zero hour if (!settings.military && h == 0) { displayhours = '12'; } // if ( settings.military && h < 10 ) { // displayhours = '0' + displayhours; // } $hd = jQuery("
" + displayhours + set_tt(h) + "時
"); // shrink width a bit if military if (settings.military) { $hd.width(20); } binder($hd); if (!v) { $hd.css("float","left"); } (h<12) ? $hourcol1.append($hd) : $hourcol2.append($hd); c++; } $hourcont.append($hourcol1); !v ? $hourcont.append("
") : ''; $hourcont.append($hourcol2); } function renderminutes(h) { realhours = h; displayhours = (!settings.military && h > 12) ? h - 12 : h; $mc.empty(); var n = 60 / settings.minutedivisions, tt = set_tt(realhours), counter = 1; ////////////////////////////////// if (halfhour == true){ ////////////// if (settings.endhour != h) { for(m=0;m<60;m=m+n) { $md = jQuery("
" + displayhours + "時" + ((m<10) ? "0" : "") + m + tt + "分
"); if ( !v ) { $md.css("float","left"); if (settings.minutedivisions > 6 && counter == settings.minutedivisions / 2 + 1) { // long horizontal, kick in extra row after half $mc.append("
"); } } $mc.append($md); binder($md); counter++; } } else { for(m=0;m<30;m=m+n) { $md = jQuery("
" + displayhours + "時" + ((m<10) ? "0" : "") + m + tt + "分
"); if ( !v ) { $md.css("float","left"); if (settings.minutedivisions > 6 && counter == settings.minutedivisions / 2 + 1) { // long horizontal, kick in extra row after half $mc.append("
"); } } $mc.append($md); binder($md); counter++; } }//////////////// } else { for(m=0;m<60;m=m+n) { $md = jQuery("
" + displayhours + "時" + ((m<10) ? "0" : "") + m + tt + "分
"); if ( !v ) { $md.css("float","left"); if (settings.minutedivisions > 6 && counter == settings.minutedivisions / 2 + 1) { // long horizontal, kick in extra row after half $mc.append("
"); } } $mc.append($md); binder($md); counter++; } }////////////////////////////////// } function set_tt(realhours) { if (!settings.military) { return (realhours >= 12) ? ' PM' : ' AM'; } else { return ''; } } function putcontainer() { if ( e.type != 'focus') { $hourcont .css("left",e.pageX - 5 + 'px') .css("top",e.pageY - (Math.floor($hourcont.height() / 2)) + 'px'); rectify($hourcont); } else { $self.after($hourcont); } $hourcont.slideDown('fast'); if ( settings.useBgiframe ) bgi( $hourcont ); } function rectify($obj) { // if a div is off the screen, move it accordingly var ph = document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight; var pw = document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth; var t = parseInt($obj.css("top")); var l = parseInt($obj.css("left")); var st = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop; // run off top if ( t <= st && !$obj.is("#CP_minutecont") ) { $obj.css("top",st+10+'px'); } else if (t + $obj.height() - st > ph) { $obj.css("top",st + ph - $obj.height() - 10 + 'px'); } if ( l <= 0 ) { $obj.css("left", '10px'); } } function bgi( ob ) { if ( typeof jQuery.fn.bgIframe == 'function' ) ob.bgIframe(); else alert('bgIframe plugin not loaded.'); } function binder($obj) { // all the binding is done here // event handlers have been abstracted out, // so they can handle mouse or key events // bindings for hc (hours container) if($obj.attr("id") == 'CP_hourcont') { $obj.mouseout(function(e) { hourcont_out(e) }); } // bindings for mc (minute container) else if ($obj.attr("id") == 'CP_minutecont') { $obj.mouseout(function(e) { minutecont_out(e) }); } // bindings for $hd (hour divs) else if ($obj.attr("class") == 'CP_hour') { $obj.mouseover(function(e) { hourdiv_over($obj, e) }); $obj.mouseout(function() { hourdiv_out($obj) }); $obj.click(function() { hourdiv_click($obj) }); } // bindings for $md (minute divs) else if ($obj.attr("class") == 'CP_minute') { $obj.mouseover(function() { minutediv_over($obj) }); $obj.mouseout(function() { minutediv_out($obj) }); $obj.click(function() { minutediv_click($obj) }); } }; function hourcont_out(e) { /* this tells divs to clear only if rolling all the way out of hourcont. relatedTarget "looks ahead" to see where the mouse has moved to on mouseOut. IE uses the more sensible "toElement". try/catch for Mozilla bug on relatedTarget-input field. */ try { t = (e.toElement) ? e.toElement : e.relatedTarget; if (!(jQuery(t).is("div[class^=CP], iframe"))) { // Safari incorrect mouseover/mouseout //if (!jQuery.browser.safari) { cleardivs(); //} } } catch(e) { cleardivs(); } } function minutecont_out(e) { try { t = (e.toElement) ? e.toElement : e.relatedTarget; if (!(jQuery(t).is("div[class^=CP], iframe"))) { cleardivs(); } } catch(e) { cleardivs(); } } function hourdiv_over($obj, e) { var h = $obj.attr("id").split('_')[1], i = $obj.attr("id").split('_')[2], l, t; $obj.addClass("CP_over"); if ( settings.showminutes ) { $mc.hide(); renderminutes(h); // set position & show minutes container if (v) { t = e.type == 'mouseover' ? e.pageY - 15 : $hourcont.offset().top + 2 + ($obj.height() * i); if ( h < 10 ) l = $hourcont.offset().left - $mc.width() - 2; else l = $hourcont.offset().left + $hourcont.width() + 2; } else { l = (e.type == 'mouseover') ? e.pageX - 10 : $hourcont.offset().left + ($obj.width()-5) * i; if(h<12) { t = $hourcont.offset().top - $mc.height() - 2; } else { t = $hourcont.offset().top + $hourcont.height(); } } $mc.css("left",l+'px').css("top",t+'px'); rectify( $mc ); $mc.show(); if ( settings.useBgiframe ) bgi( $mc ); } return false; } function hourdiv_out($obj) { $obj.removeClass("CP_over"); return false; } function hourdiv_click($obj) { h = $obj.attr("id").split('_')[1]; tt = set_tt(h); str = $obj.text(); if(str.indexOf(' ') != -1) { cleanstr = str.substring(0,str.indexOf(' ')); } else { cleanstr = str; } $obj.text(cleanstr + '00分' + tt); setval($obj); cleardivs(); } function minutediv_over($obj) { $obj.addClass("CP_over"); return false; } function minutediv_out($obj) { $obj.removeClass("CP_over"); return false; } function minutediv_click($obj) { setval($obj); cleardivs(); } function setval($obj) { // takes either hour or minute obj if(!settings.valuefield) { self.value = $obj.text(); } else { jQuery("input[name=" + settings.valuefield + "]").val($obj.text()); } callback.apply( $self, [ $obj.text() ]); // unbind keydown handler, otherwise it will double-bind if // field is activated more than once $self.unbind( "keydown", keyhandler ); } function cleardivs() { if (settings.showminutes) { $mc.hide(); } $hourcont.slideUp('fast'); $self.unbind( "keydown", keyhandler ); } // keyboard handling function keyhandler( e ) { // $obj is current active div var $obj = $("div.CP_over").size() ? $("div.CP_over") : $("div.CP_hour:first"), divtype = $obj.is(".CP_hour") ? 'hour' : 'minute', hi = (divtype == 'hour') ? $obj[0].id.split('_')[2] : 0, // hour index h = (divtype == 'minute') ? $obj[0].id.split('_')[0] : $obj[0].id.split('_')[1]; // real hour if (divtype == 'minute') { var curloc = h<12 ? 'm1' : 'm2' } else { var curloc = h<12 ? 'h1' : 'h2' } function divprev($obj) { if ($obj.prev().size()) { eval(divtype + 'div_out($obj)'); eval(divtype + 'div_over($obj.prev(), e)'); } else { return false; } } function divnext($obj) { if ($obj.next().size()) { eval(divtype + 'div_out($obj)'); eval(divtype + 'div_over($obj.next(), e)'); } else { return false; } } function hourtohour($obj) { var ctx = h>=12 ? '#hourcol1' : '#hourcol2'; $newobj = jQuery(".CP_hour[id$=_" + hi + "]", ctx ); if ($newobj.size()) { hourdiv_out($obj); hourdiv_over($newobj, e); } else { return false; } } function hourtominute($obj) { hourdiv_out($obj); minutediv_over($(".CP_minute:first")); } function minutetohour($obj) { minutediv_out($obj); var ctx = h>=12 ? '#hourcol2' : '#hourcol1'; // extract hour from minutediv, then find hourdiv with that hour var $newobj = jQuery(".CP_hour[id^=hr_" + h + "]", ctx); hourdiv_over($newobj, e); } switch (e.keyCode) { case 37: // left arrow if (v) { switch (curloc) { case 'm1': return false; break; case 'm2': minutetohour($obj); break; case 'h1': hourtominute($obj); break; case 'h2': hourtohour($obj); break; } } else { divprev($obj); } break; case 38: // up arrow if(v) { divprev($obj); } else { switch (curloc) { case 'm1': return false; break; case 'm2': minutetohour($obj); break; case 'h1': hourtominute($obj); break; case 'h2': hourtohour($obj); break; } } break; case 39: // right arrow if (v) { switch (curloc) { case 'm1': minutetohour($obj); break; case 'm2': return false; break; case 'h1': hourtohour($obj); break; case 'h2': hourtominute($obj); break; } } else { divnext($obj); } break; case 40: // down arrow if(v) { divnext($obj); } else { switch (curloc) { case 'm1': minutetohour($obj); break; case 'm2': return false; break; case 'h1': hourtohour($obj); break; case 'h2': hourtominute($obj); break; } } break; case 13: // return eval(divtype + 'div_click($obj)'); break; default: return true; } return false; } return false; }); function errorcheck() { if (settings.starthour > settings.endhour) { alert('Error - 総予約時間が、1日の営業時間数を超えています。予約メニューを、少なくして下さい。'); return false; } else if (60 % settings.minutedivisions != 0) { alert('Error - param minutedivisions must divide evenly into 60.'); return false; } } return this; } })(jQuery);