forked from opentiny/tiny-vue
refactor(date-table): supplement the ts type declaration of the date-table component (#456)
This commit is contained in:
parent
8e3c6f97dc
commit
eea1a21dc3
|
@ -21,6 +21,7 @@ import {
|
|||
clearTime
|
||||
} from '../common/deps/date-util'
|
||||
import { DATEPICKER } from '../common'
|
||||
import { IDateTableRow } from '@/types'
|
||||
|
||||
const formatJudg = ({ day, offset, j, i, cell, count, dateCountOfLastMonth }) => {
|
||||
const nodfpm = day + offset < 0 ? 7 + day + offset : day + offset
|
||||
|
@ -142,9 +143,24 @@ const doCount = ({ i, day, offset, j, cell, count, dateCountOfLastMonth, dateCou
|
|||
|
||||
export const coerceTruthyValueToArray = (val) => (Array.isArray(val) ? val : val ? [val] : [])
|
||||
|
||||
/**
|
||||
* 获取日期表格二维数组,用于渲染日期表格。
|
||||
*
|
||||
* 返回值的格式如下:
|
||||
* [
|
||||
* [
|
||||
* {
|
||||
* text: 1,
|
||||
* selected: true,
|
||||
* ... // 每个数组项的类型为 IDateTableRow
|
||||
* }
|
||||
* ],
|
||||
* ...
|
||||
* ]
|
||||
*/
|
||||
export const getRows =
|
||||
({ api, props, state, t, vm }) =>
|
||||
() => {
|
||||
(): IDateTableRow[][] => {
|
||||
const date = new Date(state.year, state.month, 1)
|
||||
let day = getFirstDayOfMonth(date)
|
||||
const dateCountOfMonth = getDayCountOfMonth(date.getFullYear(), date.getMonth())
|
||||
|
@ -156,7 +172,7 @@ export const getRows =
|
|||
day = day === 0 ? 7 : day
|
||||
|
||||
const offset = state.offsetDay
|
||||
const rows = state.tableRows
|
||||
const rows: IDateTableRow[][] = state.tableRows
|
||||
const startDate = state.startDate
|
||||
const disabledDate = props.disabledDate
|
||||
const cellClassName = props.cellClassName
|
||||
|
@ -165,21 +181,29 @@ export const getRows =
|
|||
|
||||
const isFunction = props.formatWeeks instanceof Function
|
||||
|
||||
const arr = []
|
||||
const arr: Date[][] = []
|
||||
|
||||
// 日期表格行,从0开始,共6行,[0, 5]
|
||||
for (let i = 0; i < 6; i++) {
|
||||
const row = rows[i]
|
||||
|
||||
// 周次
|
||||
if (props.showWeekNumber) {
|
||||
row[0] = {
|
||||
type: DATEPICKER.Week,
|
||||
text: getWeekNumber(nextDate(startDate, i * 7 + 1))
|
||||
}
|
||||
}
|
||||
|
||||
// Date 格式的日期表格
|
||||
arr[i] = []
|
||||
|
||||
// 日期表格列,从0开始,共7列,[0, 6]。星期日为0,星期一为1,依此类推。
|
||||
for (let j = 0; j < 7; j++) {
|
||||
// 设置日期单元格的 row / column / inRange / start / end / type
|
||||
const { cell, cellDate } = api.getCell(row, i, j, DATEPICKER.Normal, props)
|
||||
|
||||
// 设置日期单元格的 text / type
|
||||
count = doCount({ i, day, offset, j, cell, count, dateCountOfLastMonth, dateCountOfMonth })
|
||||
|
||||
cell.disabled = typeof disabledDate === 'function' && disabledDate(cellDate)
|
||||
|
@ -194,11 +218,13 @@ export const getRows =
|
|||
})
|
||||
cell.customClass = typeof cellClassName === 'function' && cellClassName(cellDate)
|
||||
|
||||
// 更新日期表格的行数据,执行了这行代码,rows 中才会有数据
|
||||
vm.$set(row, props.showWeekNumber ? j + 1 : j, cell)
|
||||
|
||||
arr[i].push(cellDate)
|
||||
}
|
||||
|
||||
// 选择周
|
||||
if (props.selectionMode === DATEPICKER.Week) {
|
||||
const [start, end] = props.showWeekNumber ? [1, 7] : [0, 6]
|
||||
const isWeekActive = api.isWeekActive(row[start + 1])
|
||||
|
@ -208,6 +234,7 @@ export const getRows =
|
|||
}
|
||||
}
|
||||
|
||||
// 周次的逻辑
|
||||
const res = []
|
||||
|
||||
for (let i = 0; i < arr.length; i++) {
|
||||
|
|
|
@ -1 +1,44 @@
|
|||
import type { ExtractPropTypes } from '@opentiny/vue-common'
|
||||
import type { ExtractPropTypes } from '@opentiny/vue-common'
|
||||
import { DATEPICKER } from '../src/common'
|
||||
|
||||
export interface IDateTableRow {
|
||||
/** 列数,从0开始,[0, 6] */
|
||||
column: number
|
||||
|
||||
/** 日期单元格元素的自定义class类名 */
|
||||
customClass: string
|
||||
|
||||
/** 当前日期是否处于禁用态 */
|
||||
disabled: boolean
|
||||
|
||||
/** 是否是一个日期范围的结束日期 */
|
||||
end: boolean
|
||||
|
||||
/** 是否在一个日期范围的区间里 */
|
||||
inRange: boolean
|
||||
|
||||
/** 行数,从0开始,[0, 5] */
|
||||
row: number
|
||||
|
||||
/** 当前日期是否处于选中态 */
|
||||
selected: boolean
|
||||
|
||||
/** 是否是一个日期范围的开始日期 */
|
||||
start: boolean
|
||||
|
||||
/** 显示在日期表格中的文本 */
|
||||
text: number
|
||||
|
||||
/** 日期单元格的类型,一共有4种类型:
|
||||
* - normal 当月的日期
|
||||
* - today 今天
|
||||
* - pre-month 上一月的日期
|
||||
* - next-month 下一月的日期
|
||||
* - week 周
|
||||
* */
|
||||
type: typeof DATEPICKER.Normal
|
||||
| typeof DATEPICKER.Today
|
||||
| typeof DATEPICKER.PreMonth
|
||||
| typeof DATEPICKER.NextMonth
|
||||
| typeof DATEPICKER.Week // 如果日期单元格的类型是 week,则不可点击
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue