| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465 |
- o2.widget = o2.widget || {};
- o2.widget.Calendar = o2.Calendar = new Class({
- Implements: [Options, Events],
- Extends: o2.widget.Common,
- options: {
- "style": "default",
- "path": o2.session.path+"/widget/$Calendar/" ,
- "defaultView": "day", //day, month, year
- "baseDate": new Date(),
- "secondEnable" : false,
- "isTime": false,
- "isMulti": false,
- "before": null,
- "after": null,
- "timeOnly": false,
- "defaultDate": new Date(),
- "beforeCurrent": true,
- "range": false,
- "rangeNodes": [],
- "rangeRule": "asc", //asc + , des -
- "target": null
- },
- initialize: function(node, options){
- Locale.use("zh-CHS");
- this.setOptions(options);
- this.options.defaultTime = ""+this.options.baseDate.getHours()+":"+this.options.baseDate.getMinutes()+":"+this.options.baseDate.getSeconds();
- this.path = o2.session.path+"/widget/$Calendar/";
- this.cssPath = o2.session.path+"/widget/$Calendar/"+this.options.style+"/css.wcss";
- this._loadCss();
- // this.options.containerPath = this.path+this.style+"/container.html";
- // this.options.dayPath = this.path+this.style+"/day.html";
- // this.options.monthPath = this.path+this.style+"/month.html";
- // this.options.yearPath = this.path+this.style+"/year.html";
- // this.options.timePath = this.path+this.style+"/time.html";
- if (!this.options.format){
- if (this.options.isTime){
- //this.options.format = Locale.get("Date").shortDate + " " + Locale.get("Date").shortTime;
- if(this.options.timeOnly){
- this.options.format="%H:%M";
- }
- else{
- this.options.format = Locale.get("Date").shortDate + " " + "%H:%M";
- }
- }else{
- this.options.format = Locale.get("Date").shortDate;
- }
- }
- this.options.containerPath = this.options.path+this.options.style+"/container.html";
- this.options.dayPath = this.options.path+this.options.style+"/day.html";
- this.options.monthPath = this.options.path+this.options.style+"/month.html";
- this.options.yearPath = this.options.path+this.options.style+"/year.html";
- this.options.timePath = this.options.path+this.options.style+"/time.html";
- this.today = new Date();
- this.currentView = this.options.defaultView;
- this.node = $(node);
- this.visible = false;
- this.container = this.createContainer();
- this.container.inject((this.options.target) || $(document.body));
- this.contentTable = this.createContentTable();
- this.contentTable.inject(this.contentDateNode);
- this.addEvents();
- this.container.set({
- styles: {
- "display": "none",
- "opacity": 1
- }
- });
- this.fireEvent("init");
- //this.move = true;
- //this.containerDrag = new Drag.Move(this.container);
- if( layout.mobile ){
- this.maskNode = new Element("div.maskNode",{
- styles : {
- "width": "100%",
- "height": "100%",
- "opacity": 0.6,
- "position": "absolute",
- "background-color": "#CCC",
- "top": "0px",
- "left": "0px",
- "z-index" : 150,
- "-webkit-user-select": "none",
- "-moz-user-select": "none",
- "user-select" : "none"
- },
- events : {
- "touchmove" : function(ev){
- ev.stopPropagation();
- ev.preventDefault();
- }
- }
- }).inject((this.options.target) || $(document.body));
- this.container.addEvents({
- "touchmove" : function(ev){
- ev.stopPropagation();
- ev.preventDefault();
- },
- "touchend" : function(ev){
- ev.stopPropagation();
- //ev.preventDefault();
- }
- })
- }
- },
- addEvents: function(){
- this.node.addEvent("focus", function(){
- this.show();
- }.bind(this));
- this.node.addEvent("click", function(){
- this.show();
- }.bind(this));
- this.prevNode.addEvent("click", function(){
- this.getPrev();
- }.bind(this));
- this.nextNode.addEvent("click", function(){
- this.getNext();
- }.bind(this));
- this.currentTextNode.addEvent("click", function(){
- this.changeView();
- }.bind(this));
- if( !layout.mobile ){
- this.titleNode.addEvent("mousedown", function(){
- this.move();
- }.bind(this));
- this.titleNode.addEvent("mouseup", function(){
- this.unmove();
- }.bind(this));
- }
- document.addEvent('mousedown', this.outsideClick.bind(this));
- },
- move: function(){
- this.containerDrag = new Drag.Move(this.container, {
- "onDrag": function(e){
- if (this.iframe){
- var p = this.container.getPosition();
- this.iframe.setStyles({
- "top": ""+p.y+"px",
- "left": ""+p.x+"px"
- });
- }
- }.bind(this)
- });
- },
- unmove: function(){
- this.container.removeEvents("mousedown");
- this.titleNode.addEvent("mousedown", function(){
- this.move();
- }.bind(this));
- },
- changeView: function(){
- var view = "day";
- switch (this.currentView) {
- case "day" :
- this.changeViewToMonth();
- break;
- case "month" :
- this.changeViewToYear();
- break;
- case "year" :
- this.changeViewToDay();
- break;
- case "time" :
- this.changeViewToDay();
- //this.changeViewToDay();
- break;
- default :
- //nothing;
- }
- },
- changeViewToMonth: function(year){
- this.currentView = "month";
- if (!this.contentMonthTable){
- this.contentMonthTable = this.createContentTable();
- this.contentMonthTable.inject(this.contentDateNode);
- }
- if (this.contentTable) this.contentTable.setStyle("display", "none");
- if (this.contentYearTable) this.contentYearTable.setStyle("display", "none");
- if (this.contentTimeTable) this.contentTimeTable.setStyle("display", "none");
- // if (this.contentMonthTable) this.contentMonthTable.setStyle("display", "block");
- if (this.contentMonthTable) this.contentMonthTable.setStyle("display", "table");
- var year = (year!=undefined) ? year : this.currentTextNode.retrieve("year");
- var month = this.currentTextNode.retrieve("month");
- this.showMonth(year, month);
- this.fireEvent("changeViewToMonth");
- },
- changeViewToYear: function(year){
- this.currentView = "year";
- if (!this.contentYearTable){
- this.contentYearTable = this.createContentTable();
- this.contentYearTable.inject(this.contentDateNode);
- }
- if (this.contentTable) this.contentTable.setStyle("display", "none");
- if (this.contentMonthTable) this.contentMonthTable.setStyle("display", "none");
- if (this.contentTimeTable) this.contentTimeTable.setStyle("display", "none");
- // if (this.contentYearTable) this.contentYearTable.setStyle("display", "block");
- if (this.contentYearTable) this.contentYearTable.setStyle("display", "table");
- this.showYear(year);
- this.fireEvent("changeViewToYear");
- },
- changeViewToDay: function(year, month){
- this.currentView = "day";
- if (!this.contentTable){
- this.contentTable = this.createContentTable();
- this.contentTable.inject(this.contentDateNode);
- }
- if (this.contentMonthTable) this.contentMonthTable.setStyle("display", "none");
- if (this.contentYearTable) this.contentYearTable.setStyle("display", "none");
- if (this.contentTimeTable) this.contentTimeTable.setStyle("display", "none");
- // if (this.contentTable) this.contentTable.setStyle("display", "block");
- if (this.contentTable) this.contentTable.setStyle("display", "table");
- this.showDay(year, month);
- this.showMonthYearButton();
- this.fireEvent("changeViewToDay");
- },
- hideMonthYearButton : function(){
- if(this.clearButton_month){
- this.clearButton_month.hide();
- }
- },
- showMonthYearButton : function(){
- if( this.buttonArea && !this.clearButton_month ){
- this.container.setStyle("height","auto");
- this.clearButton_month = new Element("div", {"text": "清除"}).inject(this.buttonArea);
- this.clearButton_month.addEvent("click", function(){
- var t = this.node.get("value");
- this.node.set("value", "");
- if( t )this.fireEvent("change");
- this.fireEvent("clear");
- this.hide();
- }.bind(this));
- this.clearButton_month.setStyles(this.css.calendarMonthActionButton);
- }
- if(this.clearButton_month){
- this.clearButton_month.show();
- }
- },
- getNext: function(){
- switch (this.currentView) {
- case "time" :
- this.getNextDate();
- break;
- case "day" :
- this.getNextDay();
- break;
- case "month" :
- this.getNextMonth();
- break;
- case "year" :
- this.getNextYear();
- break;
- default :
- //nothing
- }
- },
- getPrev: function(){
- switch (this.currentView) {
- case "time" :
- this.getPrevDate();
- break;
- case "day" :
- this.getPrevDay();
- break;
- case "month" :
- this.getPrevMonth();
- break;
- case "year" :
- this.getPrevYear();
- break;
- default :
- //nothing
- }
- },
- getNextDate: function(){
- var date = this.currentTextNode.retrieve("date");
- // var year = this.currentTextNode.retrieve("year");
- // var month = this.currentTextNode.retrieve("month");
- // month--;
- // var day = this.currentTextNode.retrieve("day");
- // var date = new Date(year, month, day);
- date.increment("day", 1);
- this._setTimeTitle(null, date);
- },
- getPrevDate: function(){
- var date = this.currentTextNode.retrieve("date");
- date.increment("day", -1);
- this._setTimeTitle(null, date);
- },
- getNextDay: function(){
- var year = this.currentTextNode.retrieve("year");
- var month = this.currentTextNode.retrieve("month");
- month--;
- var date = new Date(year, month, 1);
- date.increment("month", 1);
- var thisYear = date.getFullYear();
- var thisMonth = date.getMonth();
- this._setDayTitle(null, thisYear, thisMonth);
- this._setDayDate(null,thisYear, thisMonth);
- this.fireEvent("changeViewToDay");
- },
- getPrevDay: function(){
- var year = this.currentTextNode.retrieve("year");
- var month = this.currentTextNode.retrieve("month");
- month--;
- var date = new Date(year, month, 1);
- date.increment("month", -1)
- var thisYear = date.getFullYear();
- var thisMonth = date.getMonth();
- this._setDayTitle(null, thisYear, thisMonth);
- this._setDayDate(null,thisYear, thisMonth);
- this.fireEvent("changeViewToDay");
- },
- getNextMonth: function(){
- var year = this.currentTextNode.retrieve("year");
- var date = new Date(year, 1, 1);
- date.increment("year", 1)
- var thisYear = date.getFullYear();
- this.showMonth(thisYear);
- this.fireEvent("changeViewToMonth");
- },
- getPrevMonth: function(){
- var year = this.currentTextNode.retrieve("year");
- var date = new Date(year, 1, 1);
- date.increment("year", -1)
- var thisYear = date.getFullYear();
- this.showMonth(thisYear);
- this.fireEvent("changeViewToMonth");
- },
- getNextYear: function(){
- var year = this.currentTextNode.retrieve("year");
- var date = new Date(year, 1, 1);
- date.increment("year", this.yearLength)
- var thisYear = date.getFullYear();
- this.showYear(thisYear);
- this.fireEvent("changeViewToYear");
- },
- getPrevYear: function(){
- var year = this.currentTextNode.retrieve("year");
- var date = new Date(year, 1, 1);
- date.increment("year", 0-this.yearLength)
- var thisYear = date.getFullYear();
- this.showYear(thisYear);
- this.fireEvent("changeViewToYear");
- },
- outsideClick: function(e) {
- if(this.visible) {
- var elementCoords = this.container.getCoordinates();
- var targetCoords = this.node.getCoordinates();
- if(((e.page.x < elementCoords.left || e.page.x > (elementCoords.left + elementCoords.width)) ||
- (e.page.y < elementCoords.top || e.page.y > (elementCoords.top + elementCoords.height))) &&
- ((e.page.x < targetCoords.left || e.page.x > (targetCoords.left + targetCoords.width)) ||
- (e.page.y < targetCoords.top || e.page.y > (targetCoords.top + targetCoords.height))) ) this.hide();
- }
- },
- hide: function(){
- if (this.visible){
- // if (!this.morph){
- // this.morph = new Fx.Morph(this.container, {"duration": 200});
- // }
- this.visible = false;
- // this.changeViewToDay();
- // this.morph.start({"opacity": 0}).chain(function(){
- this.container.setStyle("display", "none");
- if (this.iframe) this.iframe.destroy();
- if (layout.desktop.offices){
- Object.each(layout.desktop.offices, function(office){
- office.show();
- });
- }
- if( this.maskNode ){
- this.maskNode.hide();
- }
- // }.bind(this));
- this.fireEvent("hide");
- }
- },
- show: function(){
- ;
- if (!this.visible){
- var dStr = this.node.get("value");
- if (dStr && Date.isValid(dStr)){
- this.options.baseDate = Date.parse(dStr.substr(0,10));
- }
- if(this.options.timeOnly){
- this.currentView = "time";
- }
- else{
- this.currentView = this.options.defaultView;
- }
- switch (this.currentView) {
- case "day" :
- this.changeViewToDay();
- break;
- case "month" :
- this.showMonth();
- break;
- case "year" :
- this.showYear();
- break;
- case "time" :
- //this.showTime(this.options.baseDate);
- this.changeViewToTime(this.options.defaultDate);
- //this.changeViewToTime(this.options.baseDate);
- break;
- default :
- this.showDay();
- }
- // if (!this.morph){
- // this.morph = new Fx.Morph(this.container, {"duration": 200});
- // }
- this.container.setStyle("display", "block");
- if (this.container.position ){
- this.container.position({
- relativeTo: this.node,
- position: 'bottomLeft',
- edge: 'upperLeft'
- });
- // var offsetPNode = this.node.getOffsetParent();
- var cp = this.container.getPosition(this.options.target || null);
- var cSize = this.container.getSize();
- //var fp = (this.options.target) ? this.options.target.getPosition() : $(document.body).getPosition()
- var fsize = (this.options.target) ? this.options.target.getSize() : $(document.body).getSize();
- //if (cp.y+cSize.y>fsize.y+fp.y){
- if (cp.y+cSize.y>fsize.y){
- this.container.position({
- relativeTo: this.node,
- position: 'upperLeft',
- edge: 'bottomLeft'
- });
- }
- }else{
- var p = this.node.getPosition(this.options.target || null);
- var size = this.node.getSize();
- var containerSize = this.container.getSize();
- var bodySize = $(document.body).getSize();
- var left = p.x;
- if ((left + containerSize.x) > bodySize.x){
- left = bodySize.x - containerSize.x;
- }
- this.container.setStyle("top", p.y+size.y+2);
- this.container.setStyle("left", left);
- }
- // var p = this.container.getPosition();
- // var s = this.container.getSize();
- // var zidx = this.container.getStyle("z-index");
- // this.iframe = new Element("iframe", {"styles":{
- // "border": "0px",
- // "margin": "0px",
- // "padding": "0px",
- // "opacity": 0,
- // "z-index": (zidx) ? zidx-1 : 0,
- // "top": ""+p.y+"px",
- // "left": ""+p.x+"px",
- // "width": ""+s.x+"px",
- // "height": ""+s.y+"px",
- // "position": "absolute"
- // }}).inject(this.container, "before");
- if (layout.desktop.offices){
- Object.each(layout.desktop.offices, function(office){
- if (this.container.isOverlap(office.officeNode)){
- office.hide();
- }
- }.bind(this));
- }
- if( this.maskNode ){
- this.maskNode.show();
- }
- // this.morph.start({"opacity": 1}).chain(function(){
- this.visible = true;
- // }.bind(this));
- this.fireEvent("show");
- }
- },
- showYear: function(year){
- var thisYear = (year!=undefined) ? year : this.options.baseDate.getFullYear();
- var date = new Date(thisYear, 1, 1);
- date.increment("year", -2);
- var beginYear = date.getFullYear();
- date.increment("year", this.yearLength-1);
- var endYear = date.getFullYear();
- this._setYearTitle(null, beginYear, endYear, thisYear);
- this._setYearDate(null, beginYear, endYear, thisYear);
- this.showMonthYearButton();
- // if (!this.move){
- // this.move = true;
- // this.containerDrag = new Drag.Move(this.container);
- // }
- },
- _setYearTitle:function(node, beginYear, endYear, thisYear){
- var thisNode = node || this.currentTextNode;
- thisNode.set("text", beginYear+"-"+endYear);
- thisNode.store("year", thisYear);
- },
- _setYearDate: function(table, beginYear, endYear, year){
- var yearTable = table || this.contentYearTable;
- var thisYear = (year!=undefined) ? year : this.options.baseDate.getFullYear();
- var tbody = yearTable.getElement("tbody");
- var tds = tbody.getElements("td");
- tds.each(function(item, idx){
- var y = beginYear+idx;
- item.set("text", y);
- item.store("year", y);
- if (y==this.options.baseDate.getFullYear()){
- item.addClass("current_"+this.options.style);
- }else{
- item.removeClass("current_"+this.options.style);
- }
- }.bind(this));
- },
- showMonth: function(year, month){
- var thisYear = (year!=undefined) ? year : this.options.baseDate.getFullYear();
- var thisMonth = (month!=undefined) ? month : this.options.baseDate.getMonth();
- this._setMonthTitle(null, thisYear, thisMonth);
- this._setMonthDate(null, thisYear, thisMonth);
- this.showMonthYearButton();
- // if (!this.move){
- // this.move = true;
- // this.containerDrag = new Drag.Move(this.container);
- // }
- },
- _setMonthTitle:function(node, year){
- var thisYear = (year!=undefined) ? year : this.options.baseDate.getFullYear();
- var thisNode = node || this.currentTextNode;
- thisNode.set("text", thisYear);
- thisNode.store("year", thisYear);
- },
- _setMonthDate: function(table, year, month){
- //var months = Locale.get("Date").months;
- var months = o2.LP.widget.months;
- var monthTable = table || this.contentMonthTable;
- var thisYear = (year!=undefined) ? year : this.options.baseDate.getFullYear();
- var thisMonth = (month!=undefined) ? month : this.options.baseDate.getMonth();
- var tbody = monthTable.getElement("tbody");
- var tds = tbody.getElements("td");
- tds.each(function(item, idx){
- item.set("text", months[idx].substr(0,2));
- item.store("year", thisYear);
- item.store("month", idx);
- if ((thisYear==this.options.baseDate.getFullYear()) && (idx==this.options.baseDate.getMonth())){
- item.addClass("current_"+this.options.style);
- }else{
- item.removeClass("current_"+this.options.style);
- }
- }.bind(this));
- },
- showDay: function(year, month){
- this._setDayTitle(null, year, month);
- this._setDayWeekTitleTh();
- this._setDayDate(null, year, month);
- // if (!this.move){
- // this.move = true;
- // this.containerDrag = new Drag.Move(this.container);
- // }
- },
- _setDayTitle: function(node, year, month){
- var thisYear = (year!=undefined) ? year : this.options.baseDate.getFullYear();
- var thisMonth = (month!=undefined) ? month : this.options.baseDate.getMonth();
- thisMonth++;
- var text = thisYear+"年"+thisMonth+"月";
- var thisNode = node || this.currentTextNode;
- thisNode.set("text", text);
- thisNode.store("year", thisYear);
- thisNode.store("month", thisMonth);
- },
- _setDayDate: function(table, year, month){
- var dayTable = table || this.contentTable;
- var baseDate = this.options.baseDate;
- if ((year!=undefined) && (month!=undefined)){
- baseDate = new Date();
- baseDate.setDate(1);
- baseDate.setFullYear(year);
- baseDate.setMonth(month);
- }
- var tbody = dayTable.getElement("tbody");
- var tds = tbody.getElements("td");
- var firstDate = baseDate.clone();
- firstDate.setDate(1);
- var day = firstDate.getDay();
- var tmpDate = firstDate.clone();
- for (var i=day-1; i>=0; i--){
- tmpDate.increment("day", -1);
- tds[i].set("text", tmpDate.getDate());
- tds[i].addClass("gray_"+this.options.style);
- tds[i].setStyles(this.css["gray_"+this.options.style]);
- tds[i].store("dateValue", tmpDate.toString())
- }
- for (var i=day; i<tds.length; i++){
- tds[i].set("text", firstDate.getDate());
- if (firstDate.toString() == this.options.baseDate.toString()){
- tds[i].addClass("current_"+this.options.style);
- tds[i].setStyles(this.css["current_"+this.options.style]);
- tds[i].removeClass("past_"+this.options.style);
- tds[i].removeClass("gray_"+this.options.style);
- tds[i].setStyle("border", "1px solid #FFF");
- }else if (firstDate.getMonth()!=baseDate.getMonth()){
- tds[i].addClass("gray_"+this.options.style);
- tds[i].setStyles(this.css["gray_"+this.options.style]);
- tds[i].removeClass("current_"+this.options.style);
- tds[i].removeClass("past_"+this.options.style);
- tds[i].setStyle("border", "1px solid #FFF");
- }else{
- tds[i].setStyles(this.css["normal_"+this.options.style]);
- tds[i].removeClass("current_"+this.options.style);
- tds[i].removeClass("gray_"+this.options.style);
- tds[i].removeClass("past_"+this.options.style);
- tds[i].setStyle("border", "1px solid #FFF");
- }
- var tmp = firstDate.clone();
- if (tmp.clearTime().toString() == this.today.clearTime().toString()){
- tds[i].addClass("today_"+this.options.style);
- tds[i].removeClass("past_"+this.options.style);
- tds[i].setStyles(this.css["today_"+this.options.style]);
- tds[i].setStyle("border", "0px solid #AAA");
- }
- if (tmp.diff(this.today)>0){
- if (this.css["past_"+this.options.style]) tds[i].setStyles(this.css["past_"+this.options.style]);
- tds[i].addClass("past_"+this.options.style);
- }
- tds[i].store("dateValue", firstDate.toString())
- firstDate.increment("day", 1);
- }
- },
- changeViewToTime: function(date){
- this.currentView = "time";
- if (!this.contentTimeTable){
- this.contentTimeTable = this.createContentTable();
- this.contentTimeTable.inject(this.contentDateNode);
- }
- if (this.contentTable) this.contentTable.setStyle("display", "none");
- if (this.contentYearTable) this.contentYearTable.setStyle("display", "none");
- if (this.contentMonthTable) this.contentMonthTable.setStyle("display", "none");
- if (this.contentTimeTable) this.contentTimeTable.setStyle("display", "block");
- // if (this.contentTimeTable) this.contentTimeTable.setStyle("display", "table");
- var thisDate = date || this.options.baseDate;
- this.showTime(thisDate);
- this.hideMonthYearButton();
- },
- showTime: function(date){
- var thisHour = (date || this.options.baseDate).getHours();
- var thisMinutes = (date || this.options.baseDate).getMinutes();
- var thisSeconds = (date || this.options.baseDate).getSeconds();
- // var times = this.options.defaultTime.split(":");
- //
- // var thisHour = (times[0]) ? times[0] : "0";
- // var thisMinutes = (times[1]) ? times[1] : "0";
- // var thisSeconds = (times[2]) ? times[2] : "0";
- this._setTimeTitle(null, date);
- if( this.options.style.indexOf("mobile") > -1 ){
- this._setTimeDate_mobile(null, thisHour, thisMinutes, thisSeconds);
- }else{
- this._setTimeDate(null, thisHour, thisMinutes, thisSeconds);
- }
- // if (this.move){
- // this.move = false;
- // this.container.removeEvents("mousedown");
- // }
- },
- _setTimeTitle: function(node, date){
- var thisDate = date || this.options.baseDate;
- var thisNode = node || this.currentTextNode;
- var y = thisDate.getFullYear();
- var m = thisDate.getMonth()+1;
- var d = thisDate.getDate();
- var text = "" + y + "年" + m + "月" + d + "日";
- if (this.options.timeOnly){
- thisNode.hide();
- if (this.prevNode) this.prevNode.hide();
- if (this.nextNode) this.nextNode.hide();
- }
- thisNode.set("text", text);
- thisNode.store("date", date);
- },
- _setTimeDate_mobile: function(node, h, m, s){
- var _self = this;
- this.itmeHNode = this.contentTimeTable.getElement(".MWF_calendar_time_h");
- this.itmeMNode = this.contentTimeTable.getElement(".MWF_calendar_time_m");
- this.itmeSNode = this.contentTimeTable.getElement(".MWF_calendar_time_s");
- this.showActionNode = this.contentTimeTable.getElement(".MWF_calendar_action_show");
- var calendar = this;
- if( !this.hMobileSelect ){
- for( var i=0; i<24; i++ ){
- new Element("div",{
- "text" : this.addZero(i, 2 ),
- "styles" : this.css.calendarTimeSelectItem_mobile
- }).inject( this.itmeHNode );
- }
- this.selectedHour = this.addZero(h, 2 );
- this.hMobileSelect = new o2.Calendar.MobileSelect( this.itmeHNode.getParent(), {
- "lineHeight" : 40,
- "itemSize" : 24,
- "itemIndex" : parseInt(h),
- "onChange": function(value){
- this.selectedHour = this.addZero(value, 2 );
- //this.showHNode.set("text", this.addZero(i, 2 ));
- //this.itmeHNode.getFirst().set("text", this.addZero(i, 2 ));
- }.bind(this)
- });
- this.hMobileSelect.load();
- }
- if( !this.mMobileSelect ) {
- for (var i = 0; i < 60; i++) {
- new Element("div", {
- "text": this.addZero(i, 2),
- "styles": this.css.calendarTimeSelectItem_mobile
- }).inject(this.itmeMNode);
- }
- this.selectedMinute = this.addZero(m, 2);
- this.mMobileSelect = new o2.Calendar.MobileSelect(this.itmeMNode.getParent(), {
- "lineHeight": 40,
- "itemSize": 60,
- "itemIndex": parseInt(m),
- "onChange": function (value) {
- this.selectedMinute = this.addZero(value, 2);
- //this.showHNode.set("text", this.addZero(i, 2 ));
- //this.itmeHNode.getFirst().set("text", this.addZero(i, 2 ));
- }.bind(this)
- });
- this.mMobileSelect.load();
- }
- if(this.options.secondEnable ){
- if(!this.sMobileSelect){
- for( var i=0; i<60; i++ ){
- new Element("div",{
- "text" : this.addZero(i, 2 ),
- "styles" : this.css.calendarTimeSelectItem_mobile
- }).inject( this.itmeSNode );
- }
- this.selectedSecond = this.addZero(s, 2 );
- this.sMobileSelect = new o2.Calendar.MobileSelect( this.itmeSNode.getParent(), {
- "lineHeight" : 40,
- "itemSize" : 60,
- "itemIndex" : parseInt(s),
- "onChange": function(value){
- this.selectedSecond = this.addZero(value, 2 );
- //this.showHNode.set("text", this.addZero(i, 2 ));
- //this.itmeHNode.getFirst().set("text", this.addZero(i, 2 ));
- }.bind(this)
- });
- this.sMobileSelect.load();
- }
- }else{
- this.itmeSNode.hide();
- }
- if( this.options.secondEnable ){
- this.contentTimeTable.getElements(".calendarTimeWheel_mobile").setStyle("width","33.3%");
- }else{
- this.contentTimeTable.getElements(".calendarTimeWheel_mobile").setStyle("width","50%");
- }
- if( this.options.secondEnable && this.showSNode ){
- this.showSNode.set("text", this.addZero( s.toInt(), 2) );
- }
- if (!this.okButton){
- this.okButton = new Element("button", {"text": "确定"}).inject(this.showActionNode);
- this.okButton.addEvent("click", function(){
- this._selectTime();
- this.hide();
- }.bind(this));
- this.okButton.setStyles(this.css.calendarActionShowButton_mobile_ok);
- }
- if (!this.clearButton){
- this.clearButton = new Element("button", {"text": "清除"}).inject(this.showActionNode);
- this.clearButton.addEvent("click", function(){
- var t = this.node.get("value");
- this.node.set("value", "");
- if( t )this.fireEvent("change");
- this.fireEvent("clear");
- this.hide();
- }.bind(this));
- this.clearButton.setStyles(this.css.calendarActionShowButton_mobile_cancel);
- }
- },
- _setTimeDate: function(node, h, m, s){
- if( !this.options.secondEnable ){
- var div = this.contentTimeTable.getElement(".MWF_calendar_time_s");
- if( div )div.hide();
- div = this.contentTimeTable.getElement(".MWF_calendar_time_show_s");
- if( div )div.hide();
- }
- this.itmeHNode = this.contentTimeTable.getElement(".MWF_calendar_time_h_slider");
- this.itmeMNode = this.contentTimeTable.getElement(".MWF_calendar_time_m_slider");
- this.itmeSNode = this.contentTimeTable.getElement(".MWF_calendar_time_s_slider");
- this.timeShowNode = this.contentTimeTable.getElement(".MWF_calendar_time_show");
- this.timeShowNode.addEvent("click", function(){
- this._selectTime();
- }.bind(this));
- this.showHNode = this.contentTimeTable.getElement(".MWF_calendar_time_show_h");
- this.showMNode = this.contentTimeTable.getElement(".MWF_calendar_time_show_m");
- this.showSNode = this.contentTimeTable.getElement(".MWF_calendar_time_show_s");
- this.showActionNode = this.contentTimeTable.getElement(".MWF_calendar_action_show");
- var calendar = this;
- if ( COMMON.Browser.Platform.isMobile ){
- //this.itmeHNode.empty();
- //this.itmeHNode.removeClass("calendarTimeSlider");
- //this.itmeHNode.setStyles(this.css.calendarTimeSliderNoStyle);
- //var sel = new Element("select").inject(this.itmeHNode);
- //for (i=0; i<=23; i++){
- // var v = (i<10) ? "0"+i: i;
- // var o = new Element("option", {
- // "value": v,
- // "text": v
- // }).inject(sel);
- // if (h==i) o.set("selected", true);
- //}
- //sel.addEvent("change", function(){
- // calendar.showHNode.set("text", this.options[this.selectedIndex].get("value"));
- //});
- //this.showHNode.set("text", sel.options[sel.selectedIndex].get("value"));
- //
- //this.itmeMNode.empty();
- //this.itmeMNode.removeClass("calendarTimeSlider");
- //this.itmeMNode.setStyles(this.css.calendarTimeSliderNoStyle);
- //sel = new Element("select").inject(this.itmeMNode);
- //for (i=0; i<=59; i++){
- // var v = (i<10) ? "0"+i: i;
- // var o = new Element("option", {
- // "value": v,
- // "text": v
- // }).inject(sel);
- // if (m==i) o.set("selected", true);
- //}
- //sel.addEvent("change", function(){
- // calendar.showMNode.set("text", this.options[this.selectedIndex].get("value"));
- //});
- //this.showMNode.set("text", sel.options[sel.selectedIndex].get("value"));
- }else{
- var hSlider = new Slider(this.itmeHNode, this.itmeHNode.getFirst(), {
- range: [0, 23],
- initialStep: h.toInt(),
- onChange: function(value){
- var tmp = (value.toInt().toString());
- if (tmp.length<2){
- tmp = "0"+tmp
- }
- this.showHNode.set("text", tmp);
- this.itmeHNode.getFirst().set("text", tmp);
- }.bind(this)
- });
- this.itmeHNode.getFirst().set("text", h);
- var mSlider = new Slider(this.itmeMNode, this.itmeMNode.getFirst(), {
- range: [0, 59],
- initialStep: m.toInt(),
- onChange: function(value){
- var tmp = (value.toInt().toString());
- if (tmp.length<2){
- tmp = "0"+tmp
- }
- this.showMNode.set("text", tmp);
- this.itmeMNode.getFirst().set("text", tmp);
- }.bind(this)
- });
- this.itmeMNode.getFirst().set("text", m);
- if( this.options.secondEnable && this.itmeSNode ){
- var sSlider = new Slider(this.itmeSNode, this.itmeSNode.getFirst(), {
- range: [0, 59],
- initialStep: parseInt(s),
- onChange: function(value){
- var tmp = (value.toInt().toString());
- if (tmp.length<2){
- tmp = "0"+tmp
- }
- this.showSNode.set("text", tmp);
- this.itmeSNode.getFirst().set("text", tmp);
- }.bind(this)
- });
- this.itmeSNode.getFirst().set("text", s);
- }
- }
- this.showHNode.set("text", this.addZero( h.toInt(), 2) );
- this.showMNode.set("text", this.addZero( m.toInt(), 2));
- if( this.options.secondEnable && this.showSNode ){
- this.showSNode.set("text", this.addZero( s.toInt(), 2) );
- }
- if (!this.okButton){
- this.okButton = new Element("button", {"text": "确定"}).inject(this.showActionNode);
- this.okButton.addEvent("click", function(){
- this._selectTime();
- this.hide();
- }.bind(this));
- this.okButton.setStyles(this.css.calendarActionShowButton);
- }
- if (!this.clearButton){
- this.clearButton = new Element("button", {"text": "清除"}).inject(this.showActionNode);
- this.clearButton.addEvent("click", function(){
- var t = this.node.get("value");
- this.node.set("value", "");
- if( t )this.fireEvent("change");
- this.fireEvent("clear");
- this.hide();
- }.bind(this));
- this.clearButton.setStyles(this.css.calendarActionShowButton);
- }
- },
- addZero : function( str, length ){
- var zero = "";
- str = str.toString();
- for( var i=0; i<length; i++ ){
- zero = zero + "0";
- }
- var s = zero + str;
- return s.substr(s.length - length, length );
- },
- _selectTime: function(){
- var date = this.currentTextNode.retrieve("date");
- var h = this.selectedHour || this.showHNode.get("text");
- var m = this.selectedMinute || this.showMNode.get("text");
- date.setHours(h);
- date.setMinutes(m);
- if( this.options.secondEnable && ( this.selectedSecond || this.showSNode) ){
- var s = this.selectedSecond || this.showSNode.get("text");
- date.setSeconds(s);
- }
- if (!this.options.beforeCurrent){
- var now = new Date();
- if (date.getTime()-now.getTime()<0){
- alert("选择的日期必须大于当前日期!");
- this.node.focus();
- return false;
- }
- }
- var dv = date.format(this.options.format);
- if (this.fireEvent("queryComplate", [dv, date])){
- var t = this.node.get("value");
- this.options.defaultTime = ""+date.getHours()+":"+date.getMinutes()+":"+date.getSeconds();
- this.node.set("value", dv);
- // this.node.focus();
- this.hide();
- if (t!=dv) this.fireEvent("change", [dv, date, t]);
- this.fireEvent("complate", [dv, date]);
- }
- },
- _selectDate: function(dateStr){
- var date = new Date(dateStr);
- this.options.baseDate = date;
- var dv = date.format(this.options.format);
- if (this.options.isTime){
- this.changeViewToTime(date);
- }else{
- if (!this.options.beforeCurrent){
- var now = new Date();
- date.setHours(23,59,59);
- if (date.getTime()-now.getTime()<0){
- alert("选择的日期必须大于当前日期!");
- this.node.focus();
- return false;
- }
- }
- if (this.fireEvent("queryComplate", [dv, date])){
- var t = this.node.get("value");
- this.node.set("value", dv);
- this.hide();
- if (t!=dv) this.fireEvent("change", [dv, date, t]);
- this.fireEvent("complate", [dv, date, t]);
- }
- }
- },
- _setDayWeekTitleTh: function(table){
- var dayTable = table || this.contentTable;
- var thead = dayTable.getElement("thead");
- var cells = thead.getElements("th");
- if (this.css.calendarDaysContentTh) cells.setStyles(this.css.calendarDaysContentTh);
- //var days_abbr = Locale.get("Date").days_abbr;
- var days_abbr = o2.LP.widget.days_abbr;
- cells.each(function(item, idx){
- item.set("text", days_abbr[idx]);
- });
- return cells;
- },
- createContainer: function(){
- var div = null;
- var request = new Request.HTML({
- url: this.options.containerPath,
- method: "GET",
- async: false,
- onSuccess: function(responseTree, responseElements, responseHTML, responseJavaScript){
- div = responseTree[0];
- }
- });
- request.send();
- //this.containerNode = div.getElement(".MWF_calendar_container");
- this.titleNode = div.getElement(".MWF_calendar_title");
- this.prevNode = div.getElement(".MWF_calendar_prev");
- this.currentNode = div.getElement(".MWF_calendar_current");
- this.currentTextNode = div.getElement(".MWF_calendar_currentText");
- this.nextNode = div.getElement(".MWF_calendar_next");
- this.contentNode = div.getElement(".MWF_calendar_content");
- this.contentDateNode = div.getElement(".MWF_calendar_content_date");
- this.contentTimeNode = div.getElement(".MWF_calendar_content_time");
- this.buttonArea = div.getElement(".MWF_calendar_button_area");
- this.bottomNode = div.getElement(".MWF_calendar_bottom");
- div.setStyles(this.css.container);
- this.titleNode.setStyles(this.css.dateTitle);
- this.prevNode.setStyles(this.css.datePrev);
- this.currentNode.setStyles(this.css.dateCurrent);
- this.currentTextNode.setStyles(this.css.dateCurrentText);
- this.nextNode.setStyles(this.css.dateNext);
- this.contentNode.setStyles(this.css.calendarContent);
- if(this.buttonArea)this.buttonArea.setStyles(this.css.buttonArea);
- this.bottomNode.setStyles(this.css.dateBottom);
- return div;
- },
- createContentTable: function(){
- var table = null;
- var request = new Request.HTML({
- url: this.options[this.currentView+"Path"],
- method: "GET",
- async: false,
- onSuccess: function(responseTree, responseElements, responseHTML, responseJavaScript){
- table = responseTree[0];
- }
- });
- request.send();
- var tbody = table.getElement("tbody");
- if (tbody){
- var tds = tbody.getElements("td");
- var calendar = this;
- tds.addEvent("click", function(){
- switch (calendar.currentView) {
- case "day" :
- calendar._selectDate(this.retrieve("dateValue"), this);
- break;
- case "month" :
- calendar.changeViewToDay(this.retrieve("year"), this.retrieve("month"));
- break;
- case "year" :
- calendar.changeViewToMonth(this.retrieve("year"));
- break;
- case "time" :
- //nothing
- break;
- default :
- //nothing;
- }
- });
- switch (this.currentView) {
- case "day" :
- if (!table.display) table.display="";
- if (!table.style.display) table.style.display="";
- table.setStyles(this.css.calendarDaysContent);
- tds.setStyles(this.css.calendarDaysContentTd);
- break;
- case "month" :
- table.setStyles(this.css.calendarMonthsContent);
- tds.setStyles(this.css.calendarMonthsContentTd);
- break;
- case "year" :
- this.yearLength = tds.length;
- table.setStyles(this.css.calendarYearsContent);
- tds.setStyles(this.css.calendarYearsContentTd);
- break;
- case "time" :
- if( this.options.style.indexOf("mobile") > -1 ){
- var nodes = table.getElements(".calendarTimeContent_mobile");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeContent_mobile);
- nodes = table.getElements(".calendarTimeFixWidthNode_mobile");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeFixWidthNode_mobile);
- nodes = table.getElements(".calendarTimeWheels_mobile");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeWheels_mobile);
- nodes = table.getElements(".calendarTimeWheel_mobile");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeWheel_mobile);
- nodes = table.getElements(".calendarTimeSelectContainer_mobile");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeSelectContainer_mobile);
- nodes = table.getElements(".calendarTimeSelectLine_mobile");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeSelectLine_mobile);
- nodes = table.getElements(".calendarTimeShadowMask_mobile");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeShadowMask_mobile);
- var node = table.getElement(".MWF_calendar_action_show");
- if (node){
- node.setStyles(this.css.calendarActionShow);
- //var buttons = node.getElements("button");
- //buttons.setStyles(this.css.calendarActionShowButton);
- }
- }else{
- var nodes = table.getElements(".calendarTimeArea");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeArea);
- nodes = table.getElements(".calendarTimeSlider");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeSlider);
- nodes = table.getElements(".calendarTimeSliderKnob");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeSliderKnob);
- nodes = table.getElements(".calendarTimeShow");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeShow);
- nodes = table.getElements(".calendarTimeShowItem");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeShowItem);
- var node = table.getElement(".MWF_calendar_action_show");
- if (node){
- node.setStyles(this.css.calendarActionShow);
- var buttons = node.getElements("button");
- buttons.setStyles(this.css.calendarActionShowButton);
- }
- }
- break;
- default :
- //nothing;
- }
- tds.addEvent("mouseover", function(){
- this.setStyle("border", "1px solid #999999");
- });
- tds.addEvent("mouseout", function(){
- this.setStyle("border", "1px solid #FFF");
- });
- }else{
- switch (this.currentView) {
- case "day" :
- table.setStyles(this.css.calendarDaysContent);
- tds.setStyles(this.css.calendarDaysContentTd);
- break;
- case "month" :
- table.setStyles(this.css.calendarMonthsContent);
- tds.setStyles(this.css.calendarMonthsContentTd);
- break;
- case "year" :
- this.yearLength = tds.length;
- table.setStyles(this.css.calendarYearsContent);
- tds.setStyles(this.css.calendarYearsContentTd);
- break;
- case "time" :
- if( this.options.style.indexOf("mobile") > -1 ){
- var nodes = table.getElements(".calendarTimeContent_mobile");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeContent_mobile);
- nodes = table.getElements(".calendarTimeFixWidthNode_mobile");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeFixWidthNode_mobile);
- nodes = table.getElements(".calendarTimeWheels_mobile");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeWheels_mobile);
- nodes = table.getElements(".calendarTimeWheel_mobile");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeWheel_mobile);
- nodes = table.getElements(".calendarTimeSelectContainer_mobile");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeSelectContainer_mobile);
- nodes = table.getElements(".calendarTimeSelectLine_mobile");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeSelectLine_mobile);
- nodes = table.getElements(".calendarTimeShadowMask_mobile");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeShadowMask_mobile);
- var node = table.getElement(".MWF_calendar_action_show");
- if (node){
- node.setStyles(this.css.calendarActionShow);
- //var buttons = node.getElements("button");
- //buttons.setStyles(this.css.calendarActionShowButton);
- }
- }else{
- var nodes = table.getElements(".calendarTimeArea");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeArea);
- nodes = table.getElements(".calendarTimeSlider");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeSlider);
- nodes = table.getElements(".calendarTimeSliderKnob");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeSliderKnob);
- nodes = table.getElements(".calendarTimeShow");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeShow);
- nodes = table.getElements(".calendarTimeShowItem");
- if (nodes.length) nodes.setStyles(this.css.calendarTimeShowItem);
- var node = table.getElement(".MWF_calendar_action_show");
- if (node){
- node.setStyles(this.css.calendarActionShow);
- var buttons = node.getElements("button");
- buttons.setStyles(this.css.calendarActionShowButton);
- }
- }
- break;
- default :
- //nothing;
- }
- }
- return table;
- }
- });
- o2.Calendar.MobileSelect = new Class({
- Implements: [Options, Events],
- options: {
- "lineHeight" : 40, //每个item的高度
- "itemSize" : 0, //item数量
- "ratio" : 1, //滑动距离倍率
- "itemIndex" : 0
- },
- initialize: function (wheelNode, options) {
- this.setOptions( options );
- this.wheelNode = wheelNode;
- this.sliderNode = wheelNode.getFirst();
- },
- load : function(){
- var _this = this;
- this.curDistance = 0;
- this.sliderNode.style.transform = "translate3d(0px, 80px, 0px)";
- this.wheelNode.addEventListener('touchstart', function () {
- _this.touch(event);
- }, false);
- this.wheelNode.addEventListener('touchend', function () {
- _this.touch(event);
- }, false);
- this.wheelNode.addEventListener('touchmove', function () {
- _this.touch(event);
- }, false);
- this.locatePostion( this.options.itemIndex );
- },
- touch: function (ev) {
- var sliderNode = this.sliderNode;
- ev = ev || window.event;
- switch (ev.type) {
- case "touchstart":
- this.startTime = new Date();
- this.startY = event.touches[0].clientY;
- this.oldMoveY = this.startY;
- break;
- case "touchend":
- this.moveEndY = event.changedTouches[0].clientY;
- this.overTime = new Date();
- var speed = (this.moveEndY - this.startY) / ( this.overTime - this.startTime );
- var ratio = 1;
- if( Math.abs(speed) > 0.7 ){
- ratio = 5;
- }else if( Math.abs(speed) < 0.2 ){
- ratio = 0.7
- }
- this.offsetSum = ( this.moveEndY - this.startY ) * this.options.ratio * ratio;
- this.updateCurDistance();
- this.curDistance = this.fixPosition(this.curDistance);
- this.movePosition( this.curDistance );
- this.oversizeBorder = - ( this.options.itemSize - 3) * this.options.lineHeight;
- if (this.curDistance + this.offsetSum > 2 * this.options.lineHeight) {
- this.curDistance = 2 * this.options.lineHeight;
- setTimeout(function () {
- this.movePosition( this.curDistance );
- }.bind(this), 100);
- } else if (this.curDistance + this.offsetSum < this.oversizeBorder) {
- this.curDistance = this.oversizeBorder;
- setTimeout(function () {
- this.movePosition( this.curDistance );
- }.bind(this), 100);
- }
- this.fireEvent( "change", [this.getCurIndex()] );
- break;
- case "touchmove":
- ev.preventDefault();
- this.moveY = event.touches[0].clientY;
- this.overTime = new Date();
- var speed = (this.moveY - this.oldMoveY) / ( this.overTime - this.oldOverTime );
- var ratio = 1;
- if( Math.abs(speed) > 0.7 ){
- ratio = 5;
- }else if( Math.abs(speed) < 0.2 ){
- ratio = 0.7
- }
- this.offset = ( this.moveY - this.oldMoveY ) * this.options.ratio * ratio;
- this.updateCurDistance();
- this.curDistance = this.curDistance + this.offset;
- this.movePosition( this.curDistance );
- this.oldMoveY = this.moveY;
- this.oldOverTime = this.overTime;
- break;
- }
- },
- calcDistance: function (index) {
- return 2 * this.options.lineHeight - index * this.options.lineHeight;
- },
- setCurDistance: function ( index ) {
- this.curDistance = this.calcDistance( index );
- this.movePosition( this.curDistance );
- },
- fixPosition: function (distance) {
- return -(this.getIndex(distance) - 2) * this.options.lineHeight;
- },
- getCurIndex : function(){
- return this.getIndex( this.curDistance );
- },
- getIndex: function (distance) {
- return Math.round((2 * this.options.lineHeight - distance) / this.options.lineHeight);
- },
- movePosition: function ( distance) {
- this.sliderNode.style.webkitTransform = 'translate3d(0,' + distance + 'px, 0)';
- this.sliderNode.style.transform = 'translate3d(0,' + distance + 'px, 0)';
- },
- locatePostion: function ( index ) {
- this.curDistance = this.calcDistance(index);
- this.movePosition( this.curDistance );
- },
- updateCurDistance: function () {
- this.curDistance = parseInt(this.sliderNode.style.transform.split(',')[1]);
- },
- getDistance: function () {
- return parseInt(this.sliderNode.style.transform.split(',')[1]);
- }
- });
|