|
|
|
<script setup lang="ts">
|
|
|
|
import dayjs from 'dayjs'
|
|
|
|
import { ColumnInj, ReadonlyInj } from '~/context'
|
|
|
|
|
|
|
|
const { modelValue } = defineProps<Props>()
|
|
|
|
|
|
|
|
const emit = defineEmits(['update:modelValue'])
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
modelValue: string
|
|
|
|
}
|
|
|
|
|
|
|
|
const columnMeta = inject(ColumnInj, null)
|
|
|
|
const readOnlyMode = inject(ReadonlyInj, false)
|
|
|
|
|
|
|
|
let isDateInvalid = $ref(false)
|
|
|
|
const dateFormat = columnMeta?.meta?.date_format ?? 'YYYY-MM-DD'
|
|
|
|
|
|
|
|
const localState = $computed({
|
|
|
|
get() {
|
|
|
|
if (!modelValue) {
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!dayjs(modelValue).isValid()) {
|
|
|
|
isDateInvalid = true
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
return /^\d+$/.test(modelValue) ? dayjs(+modelValue) : dayjs(modelValue)
|
|
|
|
},
|
|
|
|
set(val?: dayjs.Dayjs) {
|
|
|
|
if (!val) {
|
|
|
|
emit('update:modelValue', null)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (val.isValid()) {
|
|
|
|
emit('update:modelValue', val?.format('YYYY-MM-DD'))
|
|
|
|
}
|
|
|
|
},
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<a-date-picker
|
|
|
|
v-model:value="localState"
|
|
|
|
:bordered="false"
|
|
|
|
class="!w-full px-1"
|
|
|
|
:format="dateFormat"
|
|
|
|
:placeholder="isDateInvalid ? 'Invalid date' : !readOnlyMode ? 'Select date' : ''"
|
|
|
|
:allow-clear="!readOnlyMode"
|
|
|
|
:input-read-only="true"
|
|
|
|
:open="readOnlyMode ? false : undefined"
|
|
|
|
>
|
|
|
|
<template #suffixIcon></template>
|
|
|
|
</a-date-picker>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped></style>
|