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.
124 lines
3.7 KiB
124 lines
3.7 KiB
<script lang="ts" setup> |
|
import { UITypes } from 'nocodb-sdk' |
|
const props = defineProps<{ |
|
value: any |
|
isVisibleDefaultValueInput: boolean |
|
}>() |
|
const emits = defineEmits(['update:value', 'update:isVisibleDefaultValueInput']) |
|
|
|
provide(EditColumnInj, ref(true)) |
|
|
|
const vModel = useVModel(props, 'value', emits) |
|
|
|
const meta = inject(MetaInj, ref()) |
|
|
|
const isVisibleDefaultValueInput = useVModel(props, 'isVisibleDefaultValueInput', emits) |
|
|
|
const rowRef = ref({ |
|
row: {}, |
|
oldRow: {}, |
|
rowMeta: { |
|
isUpdatedFromCopyNPaste: [vModel.value?.title], |
|
}, |
|
}) |
|
|
|
useProvideSmartsheetRowStore(rowRef) |
|
|
|
const { isAiModeFieldModal } = usePredictFields() |
|
|
|
const cdfValue = ref<string | null>(null) |
|
|
|
const editEnabled = ref(false) |
|
|
|
const updateCdfValue = (cdf: string | null) => { |
|
vModel.value = { ...vModel.value, cdf } |
|
cdfValue.value = cdf |
|
} |
|
|
|
onMounted(() => { |
|
updateCdfValue(vModel.value?.cdf ?? null) |
|
}) |
|
|
|
watch( |
|
() => vModel.value.cdf, |
|
(newValue) => { |
|
cdfValue.value = newValue |
|
}, |
|
) |
|
|
|
const { sqlUis } = storeToRefs(useBase()) |
|
const sqlUi = computed(() => |
|
meta.value?.source_id && sqlUis.value[meta.value?.source_id] |
|
? sqlUis.value[meta.value?.source_id] |
|
: Object.values(sqlUis.value)[0], |
|
) |
|
|
|
const showCurrentDateOption = computed(() => { |
|
return [UITypes.Date, UITypes.DateTime].includes(vModel.value?.uidt) && sqlUi.value?.getCurrentDateDefault?.(vModel.value) |
|
}) |
|
|
|
const isCurrentDate = computed(() => { |
|
return showCurrentDateOption.value && cdfValue.value?.toUpperCase?.() === sqlUi.value?.getCurrentDateDefault?.(vModel.value) |
|
}) |
|
</script> |
|
|
|
<template> |
|
<div v-if="!isVisibleDefaultValueInput"> |
|
<NcButton |
|
size="small" |
|
type="text" |
|
class="!text-gray-700" |
|
data-testid="nc-show-default-value-btn" |
|
@click.stop="isVisibleDefaultValueInput = true" |
|
> |
|
<div class="flex items-center gap-2"> |
|
<GeneralIcon icon="plus" class="flex-none h-4 w-4" /> |
|
<span>{{ $t('general.set') }} {{ $t('placeholder.defaultValue').toLowerCase() }}</span> |
|
</div> |
|
</NcButton> |
|
</div> |
|
|
|
<div v-else> |
|
<div class="w-full flex items-center gap-2 mb-2"> |
|
<div class="text-small leading-[18px] flex-1 text-gray-700">{{ $t('placeholder.defaultValue') }}</div> |
|
</div> |
|
<div class="flex flex-row gap-2 relative"> |
|
<div |
|
class="nc-default-value-wrapper border-1 flex items-center w-full px-3 border-gray-300 rounded-lg sm:min-h-[32px] xs:min-h-13 flex items-center focus-within:(border-brand-500 shadow-selected ring-0) transition-all duration-0.3s" |
|
:class="{ |
|
'bg-white': isAiModeFieldModal, |
|
}" |
|
> |
|
<div class="relative flex-grow"> |
|
<div |
|
v-if="isCurrentDate" |
|
class="absolute pointer-events-none h-full w-full bg-white z-2 top-0 left-0 rounded-full items-center flex bg-white" |
|
> |
|
<div class="-ml-2"> |
|
<NcBadge>{{ $t('labels.currentDate') }}</NcBadge> |
|
</div> |
|
</div> |
|
<LazySmartsheetCell |
|
:edit-enabled="true" |
|
:model-value="cdfValue" |
|
:column="vModel" |
|
class="!border-none h-auto my-auto" |
|
@update:cdf="updateCdfValue" |
|
@update:edit-enabled="editEnabled = $event" |
|
@click="editEnabled = true" |
|
/> |
|
</div> |
|
<component |
|
:is="iconMap.close" |
|
v-if=" |
|
![UITypes.Year, UITypes.Date, UITypes.Time, UITypes.DateTime, UITypes.SingleSelect, UITypes.MultiSelect].includes( |
|
vModel.uidt, |
|
) || isCurrentDate |
|
" |
|
class="w-4 h-4 cursor-pointer rounded-full z-3 !text-black-500 text-gray-500 cursor-pointer hover:bg-gray-50" |
|
@click="updateCdfValue(null)" |
|
/> |
|
</div> |
|
</div> |
|
</div> |
|
</template>
|
|
|