多维表格
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.
 
 
 
 
 
 

75 lines
2.0 KiB

<script lang="ts" setup>
const props = defineProps<{
value: any
isVisibleDefaultValueInput: boolean
}>()
const emits = defineEmits(['update:value'])
provide(EditColumnInj, ref(true))
const vModel = useVModel(props, 'value', emits)
const isVisibleDefaultValueInput = useVModel(props, 'isVisibleDefaultValueInput', emits)
const cdfValue = computed({
get: () => vModel.value.cdf,
set: (value) => {
if (value === '<br />') {
vModel.value.cdf = null
} else {
vModel.value.cdf = value
}
},
})
</script>
<template>
<div v-if="!isVisibleDefaultValueInput">
<NcButton
size="small"
type="text"
class="!text-gray-500 !hover:text-gray-700"
data-testid="nc-show-default-value-btn"
@click.stop="isVisibleDefaultValueInput = true"
>
<div class="flex items-center gap-2">
<span>{{ $t('general.set') }} {{ $t('placeholder.defaultValue').toLowerCase() }}</span>
<GeneralIcon icon="plus" class="flex-none h-4 w-4" />
</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">
<div
class="nc-default-value-wrapper nc-rich-long-text-default-value border-1 relative pt-7 flex items-center w-full px-0 border-gray-300 rounded-md max-h-70 pb-1 focus-within:(border-brand-500 shadow-selected) transition-all duration-0.3s"
>
<LazyCellRichText v-model:value="cdfValue" class="border-t-1 border-gray-100 !max-h-80 !min-h-30" show-menu />
</div>
</div>
</div>
</template>
<style lang="scss" scoped>
.nc-rich-long-text-default-value {
:deep(.nc-rich-text) {
.bubble-menu.embed-mode.edit-column-mode {
@apply gap-x-0 p-0 h-7 border-0;
.nc-button {
@apply !mt-0 h-7 p-1 min-w-7;
svg {
@apply h-4 w-4;
}
}
.divider {
@apply !m-0 !h-7 border-gray-100;
}
}
}
}
</style>