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.
55 lines
1.8 KiB
55 lines
1.8 KiB
<script setup lang="ts"> |
|
import { dateFormats, timeFormats } from 'nocodb-sdk' |
|
import { useVModel } from '#imports' |
|
|
|
const props = defineProps<{ |
|
value: any |
|
}>() |
|
|
|
const emit = defineEmits(['update:value']) |
|
|
|
const vModel = useVModel(props, 'value', emit) |
|
|
|
if (!vModel.value.meta?.date_format) { |
|
if (!vModel.value.meta) vModel.value.meta = {} |
|
vModel.value.meta.date_format = dateFormats[0] |
|
} |
|
|
|
if (!vModel.value.meta?.time_format) { |
|
if (!vModel.value.meta) vModel.value.meta = {} |
|
vModel.value.meta.time_format = timeFormats[0] |
|
} |
|
</script> |
|
|
|
<template> |
|
<a-form-item :label="$t('labels.dateFormat')"> |
|
<a-select v-model:value="vModel.meta.date_format" class="nc-date-select" dropdown-class-name="nc-dropdown-date-format"> |
|
<a-select-option v-for="(format, i) of dateFormats" :key="i" :value="format"> |
|
<div class="flex gap-2 w-full justify-between items-center"> |
|
{{ format }} |
|
<component |
|
:is="iconMap.check" |
|
v-if="vModel.meta.date_format === format" |
|
id="nc-selected-item-icon" |
|
class="text-primary w-4 h-4" |
|
/> |
|
</div> |
|
</a-select-option> |
|
</a-select> |
|
</a-form-item> |
|
<a-form-item :label="$t('labels.timeFormat')"> |
|
<a-select v-model:value="vModel.meta.time_format" class="nc-time-select" dropdown-class-name="nc-dropdown-time-format"> |
|
<a-select-option v-for="(format, i) of timeFormats" :key="i" :value="format"> |
|
<div class="flex gap-2 w-full justify-between items-center" :data-testid="`nc-time-${format}`"> |
|
{{ format }} |
|
<component |
|
:is="iconMap.check" |
|
v-if="vModel.meta.time_format === format" |
|
id="nc-selected-item-icon" |
|
class="text-primary w-4 h-4" |
|
/> |
|
</div> |
|
</a-select-option> |
|
</a-select> |
|
</a-form-item> |
|
</template>
|
|
|