mirror of https://github.com/nocodb/nocodb
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.
94 lines
2.0 KiB
94 lines
2.0 KiB
<script setup lang="ts"> |
|
import dayjs from 'dayjs' |
|
import { ReadonlyInj, inject, onClickOutside, useProject, watch } from '#imports' |
|
|
|
interface Props { |
|
modelValue?: string | null | undefined |
|
} |
|
|
|
const { modelValue } = defineProps<Props>() |
|
|
|
const emit = defineEmits(['update:modelValue']) |
|
|
|
const { isMysql } = useProject() |
|
|
|
const readOnly = inject(ReadonlyInj, ref(false)) |
|
|
|
let isTimeInvalid = $ref(false) |
|
|
|
const dateFormat = isMysql.value ? 'YYYY-MM-DD HH:mm:ss' : 'YYYY-MM-DD HH:mm:ssZ' |
|
|
|
const localState = $computed({ |
|
get() { |
|
if (!modelValue) { |
|
return undefined |
|
} |
|
let dateTime = dayjs(modelValue) |
|
|
|
if (!dateTime.isValid()) { |
|
dateTime = dayjs(modelValue, 'HH:mm:ss') |
|
} |
|
if (!dateTime.isValid()) { |
|
dateTime = dayjs(`1999-01-01 ${modelValue}`) |
|
} |
|
if (!dateTime.isValid()) { |
|
isTimeInvalid = true |
|
return undefined |
|
} |
|
|
|
return dateTime |
|
}, |
|
set(val?: dayjs.Dayjs) { |
|
if (!val) { |
|
emit('update:modelValue', null) |
|
return |
|
} |
|
|
|
if (val.isValid()) { |
|
const time = val.format('HH:mm') |
|
const date = dayjs(`1999-01-01 ${time}:00`) |
|
emit('update:modelValue', date.format(dateFormat)) |
|
} |
|
}, |
|
}) |
|
|
|
const open = ref(false) |
|
|
|
const randomClass = `picker_${Math.floor(Math.random() * 99999)}` |
|
watch( |
|
open, |
|
(next) => { |
|
if (next) { |
|
onClickOutside(document.querySelector(`.${randomClass}`)! as HTMLDivElement, () => (open.value = false)) |
|
} |
|
}, |
|
{ flush: 'post' }, |
|
) |
|
</script> |
|
|
|
<template> |
|
<a-time-picker |
|
v-model:value="localState" |
|
autofocus |
|
:show-time="true" |
|
:bordered="false" |
|
use12-hours |
|
format="HH:mm" |
|
class="!w-full !px-0 !border-none" |
|
:placeholder="isTimeInvalid ? 'Invalid time' : ''" |
|
:allow-clear="!readOnly" |
|
:input-read-only="true" |
|
:open="readOnly ? false : open" |
|
:popup-class-name="`${randomClass} nc-picker-time`" |
|
@click="open = !open" |
|
@ok="open = !open" |
|
> |
|
<template #suffixIcon></template> |
|
</a-time-picker> |
|
</template> |
|
|
|
<style scoped> |
|
:deep(.ant-picker-input > input[disabled]) { |
|
@apply !text-current; |
|
} |
|
</style>
|
|
|