uni-events-helper-wx
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

570 lines
19 KiB

3 years ago
  1. <template>
  2. <view class="u-calendar-month-wrapper" ref="u-calendar-month-wrapper">
  3. <view v-for="(item, index) in months" :key="index" :class="[`u-calendar-month-${index}`]"
  4. :ref="`u-calendar-month-${index}`" :id="`month-${item.month}`">
  5. <text v-if="index !== 0" class="u-calendar-month__title">{{ item.year }}{{ item.month }}</text>
  6. <view class="u-calendar-month__days">
  7. <view v-if="showMark" class="u-calendar-month__days__month-mark-wrapper">
  8. <text class="u-calendar-month__days__month-mark-wrapper__text">{{ item.month }}</text>
  9. </view>
  10. <view class="u-calendar-month__days__day" v-for="(item1, index1) in item.date" :key="index1"
  11. :style="[dayStyle(index, index1, item1)]" @tap="clickHandler(index, index1, item1)"
  12. :class="[item1.selected && 'u-calendar-month__days__day__select--selected']">
  13. <view class="u-calendar-month__days__day__select" :style="[daySelectStyle(index, index1, item1)]">
  14. <text class="u-calendar-month__days__day__select__info"
  15. :class="[item1.disabled && 'u-calendar-month__days__day__select__info--disabled']"
  16. :style="[textStyle(item1)]">{{ item1.day }}</text>
  17. <text v-if="getBottomInfo(index, index1, item1)"
  18. class="u-calendar-month__days__day__select__buttom-info"
  19. :class="[item1.disabled && 'u-calendar-month__days__day__select__buttom-info--disabled']"
  20. :style="[textStyle(item1)]">{{ getBottomInfo(index, index1, item1) }}</text>
  21. <text v-if="item1.dot" class="u-calendar-month__days__day__select__dot"></text>
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. // #ifdef APP-NVUE
  30. // 由于nvue不支持百分比单位,需要查询宽度来计算每个日期的宽度
  31. const dom = uni.requireNativePlugin('dom')
  32. // #endif
  33. import dayjs from '../../libs/util/dayjs.js';
  34. export default {
  35. name: 'u-calendar-month',
  36. mixins: [uni.$u.mpMixin, uni.$u.mixin],
  37. props: {
  38. // 是否显示月份背景色
  39. showMark: {
  40. type: Boolean,
  41. default: true
  42. },
  43. // 主题色,对底部按钮和选中日期有效
  44. color: {
  45. type: String,
  46. default: '#3c9cff'
  47. },
  48. // 月份数据
  49. months: {
  50. type: Array,
  51. default: () => []
  52. },
  53. // 日期选择类型
  54. mode: {
  55. type: String,
  56. default: 'single'
  57. },
  58. // 日期行高
  59. rowHeight: {
  60. type: [String, Number],
  61. default: 58
  62. },
  63. // mode=multiple时,最多可选多少个日期
  64. maxCount: {
  65. type: [String, Number],
  66. default: Infinity
  67. },
  68. // mode=range时,第一个日期底部的提示文字
  69. startText: {
  70. type: String,
  71. default: '开始'
  72. },
  73. // mode=range时,最后一个日期底部的提示文字
  74. endText: {
  75. type: String,
  76. default: '结束'
  77. },
  78. // 默认选中的日期,mode为multiple或range是必须为数组格式
  79. defaultDate: {
  80. type: [Array, String, Date],
  81. default: null
  82. },
  83. // 最小的可选日期
  84. minDate: {
  85. type: [String, Number],
  86. default: 0
  87. },
  88. // 最大可选日期
  89. maxDate: {
  90. type: [String, Number],
  91. default: 0
  92. },
  93. // 如果没有设置maxDate,则往后推多少个月
  94. maxMonth: {
  95. type: [String, Number],
  96. default: 2
  97. },
  98. // 是否为只读状态,只读状态下禁止选择日期
  99. readonly: {
  100. type: Boolean,
  101. default: uni.$u.props.calendar.readonly
  102. },
  103. // 日期区间最多可选天数,默认无限制,mode = range时有效
  104. maxRange: {
  105. type: [Number, String],
  106. default: Infinity
  107. },
  108. // 范围选择超过最多可选天数时的提示文案,mode = range时有效
  109. rangePrompt: {
  110. type: String,
  111. default: ''
  112. },
  113. // 范围选择超过最多可选天数时,是否展示提示文案,mode = range时有效
  114. showRangePrompt: {
  115. type: Boolean,
  116. default: true
  117. },
  118. // 是否允许日期范围的起止时间为同一天,mode = range时有效
  119. allowSameDay: {
  120. type: Boolean,
  121. default: false
  122. }
  123. },
  124. data() {
  125. return {
  126. // 每个日期的宽度
  127. width: 0,
  128. // 当前选中的日期item
  129. item: {},
  130. selected: []
  131. }
  132. },
  133. watch: {
  134. selectedChange: {
  135. immediate: true,
  136. handler(n) {
  137. this.setDefaultDate()
  138. }
  139. }
  140. },
  141. computed: {
  142. // 多个条件的变化,会引起选中日期的变化,这里统一管理监听
  143. selectedChange() {
  144. return [this.minDate, this.maxDate, this.defaultDate]
  145. },
  146. dayStyle(index1, index2, item) {
  147. return (index1, index2, item) => {
  148. const style = {}
  149. let week = item.week
  150. // 不进行四舍五入的形式保留2位小数
  151. const dayWidth = Number(parseFloat(this.width / 7).toFixed(3).slice(0, -1))
  152. // 得出每个日期的宽度
  153. style.width = uni.$u.addUnit(dayWidth)
  154. style.height = uni.$u.addUnit(this.rowHeight)
  155. if (index2 === 0) {
  156. // 获取当前为星期几,如果为0,则为星期天,减一为每月第一天时,需要向左偏移的item个数
  157. week = (week === 0 ? 7 : week) - 1
  158. style.marginLeft = uni.$u.addUnit(week * dayWidth)
  159. }
  160. if (this.mode === 'range') {
  161. // 之所以需要这么写,是因为DCloud公司的iOS客户端的开发者能力有限导致的bug
  162. style.paddingLeft = 0
  163. style.paddingRight = 0
  164. style.paddingBottom = 0
  165. style.paddingTop = 0
  166. }
  167. return style
  168. }
  169. },
  170. daySelectStyle() {
  171. return (index1, index2, item) => {
  172. let date = dayjs(item.date).format("YYYY-MM-DD"),
  173. style = {}
  174. // 判断date是否在selected数组中,因为月份可能会需要补0,所以使用dateSame判断,而不用数组的includes判断
  175. if (this.selected.some(item => this.dateSame(item, date))) {
  176. style.backgroundColor = this.color
  177. }
  178. if (this.mode === 'single') {
  179. if (date === this.selected[0]) {
  180. // 因为需要对nvue的兼容,只能这么写,无法缩写,也无法通过类名控制等等
  181. style.borderTopLeftRadius = '3px'
  182. style.borderBottomLeftRadius = '3px'
  183. style.borderTopRightRadius = '3px'
  184. style.borderBottomRightRadius = '3px'
  185. }
  186. } else if (this.mode === 'range') {
  187. if (this.selected.length >= 2) {
  188. const len = this.selected.length - 1
  189. // 第一个日期设置左上角和左下角的圆角
  190. if (this.dateSame(date, this.selected[0])) {
  191. style.borderTopLeftRadius = '3px'
  192. style.borderBottomLeftRadius = '3px'
  193. }
  194. // 最后一个日期设置右上角和右下角的圆角
  195. if (this.dateSame(date, this.selected[len])) {
  196. style.borderTopRightRadius = '3px'
  197. style.borderBottomRightRadius = '3px'
  198. }
  199. // 处于第一和最后一个之间的日期,背景色设置为浅色,通过将对应颜色进行等分,再取其尾部的颜色值
  200. if (dayjs(date).isAfter(dayjs(this.selected[0])) && dayjs(date).isBefore(dayjs(this
  201. .selected[len]))) {
  202. style.backgroundColor = uni.$u.colorGradient(this.color, '#ffffff', 100)[90]
  203. // 增加一个透明度,让范围区间的背景色也能看到底部的mark水印字符
  204. style.opacity = 0.7
  205. }
  206. } else if (this.selected.length === 1) {
  207. // 之所以需要这么写,是因为DCloud公司的iOS客户端的开发者能力有限导致的bug
  208. // 进行还原操作,否则在nvue的iOS,uni-app有bug,会导致诡异的表现
  209. style.borderTopLeftRadius = '3px'
  210. style.borderBottomLeftRadius = '3px'
  211. }
  212. } else {
  213. if (this.selected.some(item => this.dateSame(item, date))) {
  214. style.borderTopLeftRadius = '3px'
  215. style.borderBottomLeftRadius = '3px'
  216. style.borderTopRightRadius = '3px'
  217. style.borderBottomRightRadius = '3px'
  218. }
  219. }
  220. return style
  221. }
  222. },
  223. // 某个日期是否被选中
  224. textStyle() {
  225. return (item) => {
  226. const date = dayjs(item.date).format("YYYY-MM-DD"),
  227. style = {}
  228. // 选中的日期,提示文字设置白色
  229. if (this.selected.some(item => this.dateSame(item, date))) {
  230. style.color = '#ffffff'
  231. }
  232. if (this.mode === 'range') {
  233. const len = this.selected.length - 1
  234. // 如果是范围选择模式,第一个和最后一个之间的日期,文字颜色设置为高亮的主题色
  235. if (dayjs(date).isAfter(dayjs(this.selected[0])) && dayjs(date).isBefore(dayjs(this
  236. .selected[len]))) {
  237. style.color = this.color
  238. }
  239. }
  240. return style
  241. }
  242. },
  243. // 获取底部的提示文字
  244. getBottomInfo() {
  245. return (index1, index2, item) => {
  246. const date = dayjs(item.date).format("YYYY-MM-DD")
  247. const bottomInfo = item.bottomInfo
  248. // 当为日期范围模式时,且选择的日期个数大于0时
  249. if (this.mode === 'range' && this.selected.length > 0) {
  250. if (this.selected.length === 1) {
  251. // 选择了一个日期时,如果当前日期为数组中的第一个日期,则显示底部文字为“开始”
  252. if (this.dateSame(date, this.selected[0])) return this.startText
  253. else return bottomInfo
  254. } else {
  255. const len = this.selected.length - 1
  256. // 如果数组中的日期大于2个时,第一个和最后一个显示为开始和结束日期
  257. if (this.dateSame(date, this.selected[0]) && this.dateSame(date, this.selected[1]) &&
  258. len === 1) {
  259. // 如果长度为2,且第一个等于第二个日期,则提示语放在同一个item中
  260. return `${this.startText}/${this.endText}`
  261. } else if (this.dateSame(date, this.selected[0])) {
  262. return this.startText
  263. } else if (this.dateSame(date, this.selected[len])) {
  264. return this.endText
  265. } else {
  266. return bottomInfo
  267. }
  268. }
  269. } else {
  270. return bottomInfo
  271. }
  272. }
  273. }
  274. },
  275. mounted() {
  276. this.init()
  277. },
  278. methods: {
  279. init() {
  280. this.$nextTick(() => {
  281. // 这里需要另一个延时,因为获取宽度后,会进行月份数据渲染,只有渲染完成之后,才有真正的高度
  282. // 因为nvue下,$nextTick并不是100%可靠的
  283. uni.$u.sleep(10).then(() => {
  284. this.getWrapperWidth()
  285. this.getMonthRect()
  286. })
  287. })
  288. },
  289. // 判断两个日期是否相等
  290. dateSame(date1, date2) {
  291. return dayjs(date1).isSame(dayjs(date2))
  292. },
  293. // 获取月份数据区域的宽度,因为nvue不支持百分比,所以无法通过css设置每个日期item的宽度
  294. getWrapperWidth() {
  295. // #ifdef APP-NVUE
  296. dom.getComponentRect(this.$refs['u-calendar-month-wrapper'], res => {
  297. this.width = res.size.width
  298. })
  299. // #endif
  300. // #ifndef APP-NVUE
  301. this.$uGetRect('.u-calendar-month-wrapper').then(size => {
  302. this.width = size.width
  303. })
  304. // #endif
  305. },
  306. getMonthRect() {
  307. // 获取每个月份数据的尺寸,用于父组件在scroll-view滚动事件中,监听当前滚动到了第几个月份
  308. const promiseAllArr = this.months.map((item, index) => this.getMonthRectByPromise(
  309. `u-calendar-month-${index}`))
  310. // 一次性返回
  311. Promise.all(promiseAllArr).then(
  312. sizes => {
  313. let height = 1
  314. const topArr = []
  315. for (let i = 0; i < this.months.length; i++) {
  316. // 添加到months数组中,供scroll-view滚动事件中,判断当前滚动到哪个月份
  317. topArr[i] = height
  318. height += sizes[i].height
  319. }
  320. // 由于微信下,无法通过this.months[i].top的形式(引用类型)去修改父组件的month的top值,所以使用事件形式对外发出
  321. this.$emit('updateMonthTop', topArr)
  322. })
  323. },
  324. // 获取每个月份区域的尺寸
  325. getMonthRectByPromise(el) {
  326. // #ifndef APP-NVUE
  327. // $uGetRect为uView自带的节点查询简化方法,详见文档介绍:https://www.uviewui.com/js/getRect.html
  328. // 组件内部一般用this.$uGetRect,对外的为this.$u.getRect,二者功能一致,名称不同
  329. return new Promise(resolve => {
  330. this.$uGetRect(`.${el}`).then(size => {
  331. resolve(size)
  332. })
  333. })
  334. // #endif
  335. // #ifdef APP-NVUE
  336. // nvue下,使用dom模块查询元素高度
  337. // 返回一个promise,让调用此方法的主体能使用then回调
  338. return new Promise(resolve => {
  339. dom.getComponentRect(this.$refs[el][0], res => {
  340. resolve(res.size)
  341. })
  342. })
  343. // #endif
  344. },
  345. // 点击某一个日期
  346. clickHandler(index1, index2, item) {
  347. if (this.readonly) {
  348. return;
  349. }
  350. this.item = item
  351. const date = dayjs(item.date).format("YYYY-MM-DD")
  352. if (item.disabled) return
  353. // 对上一次选择的日期数组进行深度克隆
  354. let selected = uni.$u.deepClone(this.selected)
  355. if (this.mode === 'single') {
  356. // 单选情况下,让数组中的元素为当前点击的日期
  357. selected = [date]
  358. } else if (this.mode === 'multiple') {
  359. if (selected.some(item => this.dateSame(item, date))) {
  360. // 如果点击的日期已在数组中,则进行移除操作,也就是达到反选的效果
  361. const itemIndex = selected.findIndex(item => item === date)
  362. selected.splice(itemIndex, 1)
  363. } else {
  364. // 如果点击的日期不在数组中,且已有的长度小于总可选长度时,则添加到数组中去
  365. if (selected.length < this.maxCount) selected.push(date)
  366. }
  367. } else {
  368. // 选择区间形式
  369. if (selected.length === 0 || selected.length >= 2) {
  370. // 如果原来就为0或者大于2的长度,则当前点击的日期,就是开始日期
  371. selected = [date]
  372. } else if (selected.length === 1) {
  373. // 如果已经选择了开始日期
  374. const existsDate = selected[0]
  375. // 如果当前选择的日期小于上一次选择的日期,则当前的日期定为开始日期
  376. if (dayjs(date).isBefore(existsDate)) {
  377. selected = [date]
  378. } else if (dayjs(date).isAfter(existsDate)) {
  379. // 当前日期减去最大可选的日期天数,如果大于起始时间,则进行提示
  380. if(dayjs(dayjs(date).subtract(this.maxRange, 'day')).isAfter(dayjs(selected[0])) && this.showRangePrompt) {
  381. if(this.rangePrompt) {
  382. uni.$u.toast(this.rangePrompt)
  383. } else {
  384. uni.$u.toast(`选择天数不能超过 ${this.maxRange}`)
  385. }
  386. return
  387. }
  388. // 如果当前日期大于已有日期,将当前的添加到数组尾部
  389. selected.push(date)
  390. const startDate = selected[0]
  391. const endDate = selected[1]
  392. const arr = []
  393. let i = 0
  394. do {
  395. // 将开始和结束日期之间的日期添加到数组中
  396. arr.push(dayjs(startDate).add(i, 'day').format("YYYY-MM-DD"))
  397. i++
  398. // 累加的日期小于结束日期时,继续下一次的循环
  399. } while (dayjs(startDate).add(i, 'day').isBefore(dayjs(endDate)))
  400. // 为了一次性修改数组,避免computed中多次触发,这里才用arr变量一次性赋值的方式,同时将最后一个日期添加近来
  401. arr.push(endDate)
  402. selected = arr
  403. } else {
  404. // 选择区间时,只有一个日期的情况下,且不允许选择起止为同一天的话,不允许选择自己
  405. if (selected[0] === date && !this.allowSameDay) return
  406. selected.push(date)
  407. }
  408. }
  409. }
  410. this.setSelected(selected)
  411. },
  412. // 设置默认日期
  413. setDefaultDate() {
  414. if (!this.defaultDate) {
  415. // 如果没有设置默认日期,则将当天日期设置为默认选中的日期
  416. const selected = [dayjs().format("YYYY-MM-DD")]
  417. return this.setSelected(selected, false)
  418. }
  419. let defaultDate = []
  420. const minDate = this.minDate || dayjs().format("YYYY-MM-DD")
  421. const maxDate = this.maxDate || dayjs(minDate).add(this.maxMonth - 1, 'month').format("YYYY-MM-DD")
  422. if (this.mode === 'single') {
  423. // 单选模式,可以是字符串或数组,Date对象等
  424. if (!uni.$u.test.array(this.defaultDate)) {
  425. defaultDate = [dayjs(this.defaultDate).format("YYYY-MM-DD")]
  426. } else {
  427. defaultDate = [this.defaultDate[0]]
  428. }
  429. } else {
  430. // 如果为非数组,则不执行
  431. if (!uni.$u.test.array(this.defaultDate)) return
  432. defaultDate = this.defaultDate
  433. }
  434. // 过滤用户传递的默认数组,取出只在可允许最大值与最小值之间的元素
  435. defaultDate = defaultDate.filter(item => {
  436. return dayjs(item).isAfter(dayjs(minDate).subtract(1, 'day')) && dayjs(item).isBefore(dayjs(
  437. maxDate).add(1, 'day'))
  438. })
  439. this.setSelected(defaultDate, false)
  440. },
  441. setSelected(selected, event = true) {
  442. this.selected = selected
  443. event && this.$emit('monthSelected', this.selected)
  444. }
  445. }
  446. }
  447. </script>
  448. <style lang="scss">
  449. @import "../../libs/css/components.scss";
  450. .u-calendar-month-wrapper {
  451. margin-top: 4px;
  452. }
  453. .u-calendar-month {
  454. &__title {
  455. font-size: 14px;
  456. line-height: 42px;
  457. height: 42px;
  458. color: $u-main-color;
  459. text-align: center;
  460. font-weight: bold;
  461. }
  462. &__days {
  463. position: relative;
  464. @include flex;
  465. flex-wrap: wrap;
  466. &__month-mark-wrapper {
  467. position: absolute;
  468. top: 0;
  469. bottom: 0;
  470. left: 0;
  471. right: 0;
  472. @include flex;
  473. justify-content: center;
  474. align-items: center;
  475. &__text {
  476. font-size: 155px;
  477. color: rgba(231, 232, 234, 0.83);
  478. }
  479. }
  480. &__day {
  481. @include flex;
  482. padding: 2px;
  483. &__select {
  484. flex: 1;
  485. @include flex;
  486. align-items: center;
  487. justify-content: center;
  488. position: relative;
  489. &__dot {
  490. width: 7px;
  491. height: 7px;
  492. border-radius: 100px;
  493. background-color: $u-error;
  494. position: absolute;
  495. top: 12px;
  496. right: 7px;
  497. }
  498. &__buttom-info {
  499. color: $u-content-color;
  500. text-align: center;
  501. position: absolute;
  502. bottom: 5px;
  503. font-size: 10px;
  504. text-align: center;
  505. left: 0;
  506. right: 0;
  507. &--selected {
  508. color: #ffffff;
  509. }
  510. &--disabled {
  511. color: #cacbcd;
  512. }
  513. }
  514. &__info {
  515. text-align: center;
  516. font-size: 16px;
  517. &--selected {
  518. color: #ffffff;
  519. }
  520. &--disabled {
  521. color: #cacbcd;
  522. }
  523. }
  524. &--selected {
  525. background-color: $u-primary;
  526. @include flex;
  527. justify-content: center;
  528. align-items: center;
  529. flex: 1;
  530. border-radius: 3px;
  531. }
  532. &--range-selected {
  533. opacity: 0.3;
  534. border-radius: 0;
  535. }
  536. &--range-start-selected {
  537. border-top-right-radius: 0;
  538. border-bottom-right-radius: 0;
  539. }
  540. &--range-end-selected {
  541. border-top-left-radius: 0;
  542. border-bottom-left-radius: 0;
  543. }
  544. }
  545. }
  546. }
  547. }
  548. </style>