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.

335 lines
12 KiB

3 years ago
  1. <template>
  2. <u-picker
  3. ref="picker"
  4. :show="show"
  5. :closeOnClickOverlay="closeOnClickOverlay"
  6. :columns="columns"
  7. :defaultIndex="innerDefaultIndex"
  8. @close="close"
  9. @cancel="cancel"
  10. @confirm="confirm"
  11. @change="change"
  12. >
  13. </u-picker>
  14. </template>
  15. <script>
  16. function times(n, iteratee) {
  17. let index = -1
  18. const result = Array(n < 0 ? 0 : n)
  19. while (++index < n) {
  20. result[index] = iteratee(index)
  21. }
  22. return result
  23. }
  24. import props from './props.js';
  25. import dayjs from '../../libs/util/dayjs.js';
  26. /**
  27. * DatetimePicker 时间日期选择器
  28. * @description 此选择器用于时间日期
  29. * @tutorial https://www.uviewui.com/components/datetimePicker.html
  30. * @property {Boolean} show 用于控制选择器的弹出与收起 ( 默认 false )
  31. * @property {Boolean} showToolbar 是否显示顶部的操作栏 ( 默认 true )
  32. * @property {String | Number} value 绑定值
  33. * @property {String} title 顶部标题
  34. * @property {String} mode 展示格式 mode=date为日期选择mode=time为时间选择mode=year-month为年月选择mode=datetime为日期时间选择 ( 默认 datetime )
  35. * @property {Number} maxDate 可选的最大时间 默认值为后10年
  36. * @property {Number} minDate 可选的最小时间 默认值为前10年
  37. * @property {Number} minHour 可选的最小小时仅mode=time有效 ( 默认 0 )
  38. * @property {Number} maxHour 可选的最大小时仅mode=time有效 ( 默认 23 )
  39. * @property {Number} minMinute 可选的最小分钟仅mode=time有效 ( 默认 0 )
  40. * @property {Number} maxMinute 可选的最大分钟仅mode=time有效 ( 默认 59 )
  41. * @property {Function} filter 选项过滤函数
  42. * @property {Function} formatter 选项格式化函数
  43. * @property {Boolean} loading 是否显示加载中状态 ( 默认 false )
  44. * @property {String | Number} itemHeight 各列中单个选项的高度 ( 默认 44 )
  45. * @property {String} cancelText 取消按钮的文字 ( 默认 '取消' )
  46. * @property {String} confirmText 确认按钮的文字 ( 默认 '确认' )
  47. * @property {String} cancelColor 取消按钮的颜色 ( 默认 '#909193' )
  48. * @property {String} confirmColor 确认按钮的颜色 ( 默认 '#3c9cff' )
  49. * @property {String | Number} visibleItemCount 每列中可见选项的数量 ( 默认 5 )
  50. * @property {Boolean} closeOnClickOverlay 是否允许点击遮罩关闭选择器 ( 默认 false )
  51. * @property {Array} defaultIndex 各列的默认索引
  52. * @event {Function} close 关闭选择器时触发
  53. * @event {Function} confirm 点击确定按钮返回当前选择的值
  54. * @event {Function} change 当选择值变化时触发
  55. * @event {Function} cancel 点击取消按钮
  56. * @example <u-datetime-picker :show="show" :value="value1" mode="datetime" ></u-datetime-picker>
  57. */
  58. export default {
  59. name: 'datetime-picker',
  60. mixins: [uni.$u.mpMixin, uni.$u.mixin, props],
  61. data() {
  62. return {
  63. columns: [],
  64. innerDefaultIndex: [],
  65. innerFormatter: (type, value) => value
  66. }
  67. },
  68. watch: {
  69. show(newValue, oldValue) {
  70. if (newValue) {
  71. this.updateColumnValue(this.value)
  72. }
  73. },
  74. propsChange() {
  75. this.init()
  76. }
  77. },
  78. computed: {
  79. // 如果以下这些变量发生了变化,意味着需要重新初始化各列的值
  80. propsChange() {
  81. return [this.mode, this.maxDate, this.minDate, this.minHour, this.maxHour, this.minMinute, this.maxMinute, this.filter, ]
  82. }
  83. },
  84. mounted() {
  85. this.init()
  86. },
  87. methods: {
  88. init() {
  89. this.innerValue = this.correctValue(this.value)
  90. this.updateColumnValue(this.innerValue)
  91. },
  92. // 在微信小程序中,不支持将函数当做props参数,故只能通过ref形式调用
  93. setFormatter(e) {
  94. this.innerFormatter = e
  95. },
  96. // 关闭选择器
  97. close() {
  98. if (this.closeOnClickOverlay) {
  99. this.$emit('close')
  100. }
  101. },
  102. // 点击工具栏的取消按钮
  103. cancel() {
  104. this.$emit('cancel')
  105. },
  106. // 点击工具栏的确定按钮
  107. confirm() {
  108. this.$emit('confirm', {
  109. value: this.innerValue,
  110. mode: this.mode
  111. })
  112. },
  113. // 列发生变化时触发
  114. change(e) {
  115. const { indexs, values } = e
  116. let selectValue = ''
  117. if(this.mode === 'time') {
  118. // 根据value各列索引,从各列数组中,取出当前时间的选中值
  119. selectValue = `${values[0][value[0]]}:${values[1][indexs[1]]}`
  120. } else {
  121. // 将选择的值转为数值,比如'03'转为数值的3,'2019'转为数值的2019
  122. const year = parseInt(values[0][indexs[0]])
  123. const month = parseInt(values[1][indexs[1]])
  124. let date = parseInt(values[2] ? values[2][indexs[2]] : 1)
  125. let hour = 0, minute = 0
  126. // 此月份的最大天数
  127. const maxDate = dayjs(`${year}-${month}-${date}`).daysInMonth()
  128. // year-month模式下,date不会出现在列中,设置为1,为了符合后边需要减1的需求
  129. if (this.mode === 'year-month') {
  130. date = 1
  131. }
  132. // 不允许超过maxDate值
  133. date = Math.min(maxDate, date)
  134. if (this.mode === 'datetime') {
  135. hour = parseInt(values[3][indexs[3]])
  136. minute = parseInt(values[4][indexs[4]])
  137. }
  138. // 转为时间模式
  139. selectValue = Number(new Date(year, month - 1, date, hour, minute))
  140. }
  141. // 取出准确的合法值,防止超越边界的情况
  142. selectValue = this.correctValue(selectValue)
  143. this.innerValue = selectValue
  144. this.updateColumnValue(selectValue)
  145. // 发出change时间,value为当前选中的时间戳
  146. this.$emit('change', {
  147. value: selectValue,
  148. // #ifndef MP-WEIXIN
  149. // 微信小程序不能传递this实例,会因为循环引用而报错
  150. picker: this.$refs.picker,
  151. // #endif
  152. mode: this.mode
  153. })
  154. },
  155. // 更新各列的值,进行补0、格式化等操作
  156. updateColumnValue(value) {
  157. this.innerValue = value
  158. this.updateColumns()
  159. this.updateIndexs(value)
  160. },
  161. // 更新索引
  162. updateIndexs(value) {
  163. let values = []
  164. const formatter = this.formatter || this.innerFormatter
  165. const padZero = uni.$u.padZero
  166. if (this.mode === 'time') {
  167. // 将time模式的时间用:分隔成数组
  168. const timeArr = value.split(':')
  169. // 使用formatter格式化方法进行管道处理
  170. values = [formatter('hour', timeArr[0]), formatter('minute', timeArr[1])]
  171. } else {
  172. const date = new Date(value)
  173. values = [
  174. formatter('year', `${dayjs(value).year()}`),
  175. // 月份补0
  176. formatter('month', padZero(dayjs(value).month() + 1))
  177. ]
  178. if (this.mode === 'date') {
  179. // date模式,需要添加天列
  180. values.push(formatter('day', padZero(dayjs(value).date())))
  181. }
  182. if (this.mode === 'datetime') {
  183. // 数组的push方法,可以写入多个参数
  184. values.push(formatter('day', padZero(dayjs(value).date())), formatter('hour', padZero(dayjs(value).hour())), formatter('minute', padZero(dayjs(value).minute())))
  185. }
  186. }
  187. // 根据当前各列的所有值,从各列默认值中找到默认值在各列中的索引
  188. const indexs = this.columns.map((column, index) => {
  189. // 通过取大值,可以保证不会出现找不到索引的-1情况
  190. return Math.max(0, column.findIndex(item => item === values[index]))
  191. })
  192. this.innerDefaultIndex = indexs
  193. },
  194. // 更新各列的值
  195. updateColumns() {
  196. const formatter = this.formatter || this.innerFormatter
  197. // 获取各列的值,并且map后,对各列的具体值进行补0操作
  198. const results = this.getOriginColumns().map((column) => column.values.map((value) => formatter(column.type, value)))
  199. this.columns = results
  200. },
  201. getOriginColumns() {
  202. // 生成各列的值
  203. const results = this.getRanges().map(({ type, range }) => {
  204. let values = times(range[1] - range[0] + 1, (index) => {
  205. let value = range[0] + index
  206. value = type === 'year' ? `${value}` : uni.$u.padZero(value)
  207. return value
  208. })
  209. // 进行过滤
  210. if (this.filter) {
  211. values = this.filter(type, values)
  212. }
  213. return { type, values }
  214. })
  215. return results
  216. },
  217. // 通过最大值和最小值生成数组
  218. generateArray(start, end) {
  219. return Array.from(new Array(end + 1).keys()).slice(start)
  220. },
  221. // 得出合法的时间
  222. correctValue(value) {
  223. const isDateMode = this.mode !== 'time'
  224. if (isDateMode && !uni.$u.test.date(value)) {
  225. // 如果是日期类型,但是又没有设置合法的当前时间的话,使用最小时间为当前时间
  226. value = this.minDate
  227. } else if (!isDateMode && !value) {
  228. // 如果是时间类型,而又没有默认值的话,就用最小时间
  229. value = `${uni.$u.padZero(this.minHour)}:uni.$u.padZero(this.minMinute)}`
  230. }
  231. // 时间类型
  232. if (!isDateMode) {
  233. if (String(value).indexOf(':') === -1) return uni.$u.error('时间错误,请传递如12:24的格式')
  234. let [hour, minute] = value.split(':')
  235. // 对时间补零,同时控制在最小值和最大值之间
  236. hour = uni.$u.padZero(uni.$u.range(this.minHour, this.maxHour, Number(hour)))
  237. minute = uni.$u.padZero(uni.$u.range(this.minMinute, this.maxMinute, Number(minute)))
  238. return `${ hour }:${ minute }`
  239. } else {
  240. // 如果是日期格式,控制在最小日期和最大日期之间
  241. value = dayjs(value).isBefore(dayjs(this.minDate)) ? this.minDate : value
  242. value = dayjs(value).isAfter(dayjs(this.maxDate)) ? this.maxDate : value
  243. return value
  244. }
  245. },
  246. // 获取每列的最大和最小值
  247. getRanges() {
  248. if (this.mode === 'time') {
  249. return [
  250. {
  251. type: 'hour',
  252. range: [this.minHour, this.maxHour],
  253. },
  254. {
  255. type: 'minute',
  256. range: [this.minMinute, this.maxMinute],
  257. },
  258. ];
  259. }
  260. const { maxYear, maxDate, maxMonth, maxHour, maxMinute, } = this.getBoundary('max', this.innerValue);
  261. const { minYear, minDate, minMonth, minHour, minMinute, } = this.getBoundary('min', this.innerValue);
  262. const result = [
  263. {
  264. type: 'year',
  265. range: [minYear, maxYear],
  266. },
  267. {
  268. type: 'month',
  269. range: [minMonth, maxMonth],
  270. },
  271. {
  272. type: 'day',
  273. range: [minDate, maxDate],
  274. },
  275. {
  276. type: 'hour',
  277. range: [minHour, maxHour],
  278. },
  279. {
  280. type: 'minute',
  281. range: [minMinute, maxMinute],
  282. },
  283. ];
  284. if (this.mode === 'date')
  285. result.splice(3, 2);
  286. if (this.mode === 'year-month')
  287. result.splice(2, 3);
  288. return result;
  289. },
  290. // 根据minDate、maxDate、minHour、maxHour等边界值,判断各列的开始和结束边界值
  291. getBoundary(type, innerValue) {
  292. const value = new Date(innerValue)
  293. const boundary = new Date(this[`${type}Date`])
  294. const year = dayjs(boundary).year()
  295. let month = 1
  296. let date = 1
  297. let hour = 0
  298. let minute = 0
  299. if (type === 'max') {
  300. month = 12
  301. // 月份的天数
  302. date = dayjs(value).daysInMonth()
  303. hour = 23
  304. minute = 59
  305. }
  306. // 获取边界值,逻辑是:当年达到了边界值(最大或最小年),就检查月允许的最大和最小值,以此类推
  307. if (dayjs(value).year() === year) {
  308. month = dayjs(boundary).month() + 1
  309. if (dayjs(value).month() + 1 === month) {
  310. date = dayjs(boundary).date()
  311. if (dayjs(value).date() === date) {
  312. hour = dayjs(boundary).hour()
  313. if (dayjs(value).hour() === hour) {
  314. minute = dayjs(boundary).minute()
  315. }
  316. }
  317. }
  318. }
  319. return {
  320. [`${type}Year`]: year,
  321. [`${type}Month`]: month,
  322. [`${type}Date`]: date,
  323. [`${type}Hour`]: hour,
  324. [`${type}Minute`]: minute
  325. }
  326. },
  327. },
  328. }
  329. </script>
  330. <style lang="scss">
  331. @import '../../libs/css/components.scss';
  332. </style>