vue实现一个炫酷的日历组件
程序员文章站
2022-06-14 12:13:45
公司业务新开了一个商家管理微信h5移动端项目,日历控件是商家管理员查看通过日程来筛选获取某日用户的订单等数据。 如图: 假设今天为2018-09-02
90天前:...
公司业务新开了一个商家管理微信h5移动端项目,日历控件是商家管理员查看通过日程来筛选获取某日用户的订单等数据。 如图: 假设今天为2018-09-02
90天前:
90天后;
产品需求:
- 展示当前日期(服务器时间)前后90天,一共181天的日期。
- 日历可以左右滑动切换月份。
- 当月份的如果不在181天区间的,需要置灰并且不可点击。
- 点击日历绑定的节点的外部,关闭弹窗。
涉及内容:
- 获取服务器时间,渲染日历数据
- vue-touch监听手势滑动事件
- ios日期兼容处理
- clickoutside自定义指令
- mock模拟数据
开发:
参考了 基于vue开发一个日历组件 - 掘金 日历的年月日计算方式。 核心思想:假设当前月份是二月份,根据二月和三月的1号是星期几,来对二月进行布局。(如果需要在二月显示一月和三月的日期,还需要知道一月份有多少天)
在项目开发中,为了与后台同事并行开发。项目采用来mock模拟数据来拦截接口。
日历展盘
// calendar.vue <template> <div class="cp-calendar"> <v-touch @swipeleft="handlenextmonth" @swiperight="handlepremonth" class="calendar"> <div class="calendar-main" > <span class="item-con header-item" v-for="(item, index) in calendarheader" :key="index">{{item}}</span> <div :class="`item-con ${todaystyle(item.content) && 'item-con-today'} ${item.type === 'disabled' && 'disablestyle'}`" :style="{opacity: ischangemonth ? 0 : 1}" @click.stop="handledayclick(item)" v-for="(item, index) in getmonthdays(selectedyear, selectedmonth)" :key="item.type + item.content + `${index}`"> <span :class="`main-content ${selecteddatestyle(item.content) && 'selectedcolor'}`"> {{setcontent(item.content)}}</span> <span :class="`${selecteddatestyle(item.content) && 'item-con-point'}`" ></span> </div> </div> </v-touch> </div> </template>
初始化数据 针对服务器时间进行初始数据处理
// calendar.vue // 设置初始数据 initdata () { this.today = this.currentdate || getdatestr(0) // 如果没有服务器时间,拿本地时间 this.prevdate = getdatestr(-90, this.currentdate) this.nextdate = getdatestr(90, this.currentdate) // 是否有手动选中的日期 let selectedfulldate = this.storeselectedfulldate if (!this.storeselectedfulldate) { selectedfulldate = this.currentdate || getdatestr(0) // 如果没有服务器时间,拿本地时间 } this.selectedyear = number(selectedfulldate.split('-')[0]) this.selectedmonth = number(selectedfulldate.split('-')[1]) - 1 this.selecteddate = number(selectedfulldate.split('-')[2]) this.selectedfulldate = `${this.selectedyear}-${this.selectedmonth + 1}-${this.selecteddate}` }, / 渲染日期 getmonthdays(year, month) { // 定义每个月的天数,如果是闰年第二月改为29天 let daysinmonth = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; if ((year % 4 === 0 && year % 100 !== 0) || year % 400 === 0) { daysinmonth[1] = 29; } // 当月第一天为周几 let targetday = new date(year, month, 1).getday(); let calendardatelist = []; let prenum = targetday; let nextnum = 0; if (targetday > 0) { // 当前月份1号前的自然周剩余日期,置空 for (let i = 0; i < prenum; i++) { let obj = { type: 'pre', content: '' }; calendardatelist.push(obj); } } // 判断当前年月份 let formatmonth = month + 1 >= 10 ? month + 1 : '0' + (month + 1) this.prevyearmonthboolean = (`${year}-${formatmonth}` === this.prevyearmonth) this.nextyearmonthboolean = (`${year}-${formatmonth}` === this.nextyearmonth) for (let i = 0; i < daysinmonth[month]; i++) { // 正常显示的日期 let obj = { type: 'normal', content: i + 1 }; // 判断是否为最往前或者最往后的月份,筛选出不可点击的日期 if (this.prevyearmonthboolean) { let prevday = this.prevdate.split('-')[2] if (i + 1 < prevday) { obj.type = 'disabled' } } else if (this.nextyearmonthboolean) { let nextday = this.nextdate.split('-')[2] if (i + 1 > nextday) { obj.type = 'disabled' } } calendardatelist.push(obj); } nextnum = 6 - new date(year, month + 1, 0).getday() // 当前月份最后一天的自然周剩余日期,置空 for (let i = 0; i < nextnum; i++) { let obj = { type: 'next', content: '' }; calendardatelist.push(obj); } return calendardatelist; }, // 设置日期 setcontent (content) { if (!content) return '' return `${this.selectedyear}-${this.tf(this.selectedmonth + 1)}-${this.tf(content)}` === this.today ? '今天' : content }, // '今天'样式开关 todaystyle (content) { if (!content) return false // toast(`${this.selectedyear}-${this.tf(this.selectedmonth + 1)}-${this.tf(content)}`) return `${this.selectedyear}-${this.tf(this.selectedmonth + 1)}-${this.tf(content)}` === this.today }, // 当前选中的日期样式开关 selecteddatestyle (content) { if (!content) return false return `${this.selectedyear}-${this.selectedmonth + 1}-${content}` === this.selectedfulldate },
// src/config/utils.js // 公共方法 /** * @param adddaycount 必传 今天前后n天的日期 * @param datestr: 非必传 获取传入日期前后n天的日期:'2018-01-20' * @param type 非必传 'lhrili'类型格式如'2018-7-3' * @return 返回日期'2018/01/20' */ export const getdatestr = (adddaycount, datestr, type) => { // console.log('getdatestr', adddaycount, datestr, type) var dd if (!datestr) { dd = new date() } else { // 判断是否为ios const isios = !!navigator.useragent.match(/\(i[^;]+;( u;)? cpu.+mac os x/); let formatdatestr = isios ? datestr.replace(/-/g, '/') : datestr dd = new date((formatdatestr.length < 12) ? formatdatestr + ' 00:00:00' : formatdatestr) } dd.setdate(dd.getdate() + adddaycount) // 获取adddaycount天后的日期 let y = dd.getfullyear() let m let d if (type === 'lhrili') { m = dd.getmonth() + 1 d = dd.getdate() } else { let currentmon = (dd.getmonth() + 1) let getdate = dd.getdate() m = currentmon < 10 ? '0' + currentmon : currentmon // 获取当前月份的日期,不足10补0 d = getdate < 10 ? '0' + getdate : getdate // 获取当前几号,不足10补0 } let time = y + '-' + m + '-' + d return time }
左右触摸滑动事件 判断是否月份还可以继续滑动
// calendar.vue // 上一个月 handlepremonth() { if (this.prevyearmonthboolean) { return } if (this.selectedmonth === 0) { this.selectedyear = this.selectedyear - 1 this.selectedmonth = 11 this.selecteddate = 1 } else { this.selectedmonth = this.selectedmonth - 1 this.selecteddate = 1 } }, // 下一个月 handlenextmonth() { if (this.nextyearmonthboolean) { return } if (this.selectedmonth === 11) { this.selectedyear = this.selectedyear + 1 this.selectedmonth = 0 this.selecteddate = 1 } else { this.selectedmonth = this.selectedmonth + 1 this.selecteddate = 1 } },
vuex存储数据
// src/store/schedule.js const schedule = { state: { selecteddate: '', // 手动点击选中的日期 currentdate: '' // 服务器当前日期 }, getters: { getselecteddate: state => state.selecteddate, getcurrentdate: state => state.currentdate }, mutations: { set_selected_date: (state, data) => { state.selecteddate = data }, set_current_date: (state, data) => { state.currentdate = data } }, actions: { setselecteddate: ({ commit }, data) => commit('set_selected_date', data), setcurrentdate: ({ commit }, data) => commit('set_current_date', data) } }; export default schedule;
clickoutside指令 指令方法监听
// src/directive/click-out-side.js export default{ bind (el, binding, vnode) { function documenthandler (e) { if (el.contains(e.target)) { return false; } if (binding.expression) { binding.value(e); } } el.__vueclickoutside__ = documenthandler; document.addeventlistener('click', documenthandler); }, unbind (el, binding) { document.removeeventlistener('click', el.__vueclickoutside__); delete el.__vueclickoutside__; } }
注册指令
// src/directive/index.js import clickoutside from './click-out-side' const install = function (vue) { vue.directive('click-outside', clickoutside) } if (window.vue) { window.clickoutside = clickoutside vue.use(install); // eslint-disable-line } clickoutside.install = install export default clickoutside
// src/main.js import clickoutside from '@/directive/click-out-side/index' vue.use(clickoutside)
使用方式:当某节点外部需要触发事件时,挂载到该节点上
// calendar.vue <div class="cp-calendar" v-click-outside="spaceclick"> .... </div>
这里需要使用 fastclick 库来消除解决移动端点击事件300ms延时
// src/mian.js import fastclick from 'fastclick' // 在移动端,手指点击一个元素,会经过:touchstart --> touchmove -> touchend --> click。 fastclick.attach(document.body);
mock数据
// src/mock/index.js // mock数据入口 import mock from 'mockjs' import currenttime from './currenttime' // 拦截接口请求 mock.mock(/\/schedule\/getcurrenttime/, 'get', currenttime) export default mock // src/mock/currenttime.js import mock from 'mockjs' export default { getlist: () => { return { 'status': 'true', 'code': '200', 'msg': null, 'info': { 'currentdate': '2018-09-02' } } } } // src/main.js // 开发环境引入mock if (process.env.node_env === 'development') { require('./mock') // 需要在这里引入mock数据才可以全局拦截请求 }
坑点
- 在微信内置浏览器中,ios的日期格式跟安卓的日期格式分别是:yy/mm/dd和yy-mm-dd。这里需要对微信内置浏览器user agent进行判断。
- 获取服务器时间的异步问题,把获取到的服务器时间保存在vuex里面,在calendar.vue页面监听当前日期的变化。及时将日历数据计算渲染出来。
推荐:
感兴趣的朋友可以关注小编的微信公众号【码农那点事儿】,更多网页制作特效源码及学习干货哦!!!
总结
以上所述是小编给大家介绍的vue实现一个炫酷的日历组件,希望对大家有所帮助
上一篇: Flash AS3教程:Motion类
下一篇: Photoshop绘制逼真的老式收音机