|
|
|
<script lang="ts" setup>
|
|
|
|
import { handleTZ } from 'nocodb-sdk'
|
|
|
|
import type { ColumnType } from 'nocodb-sdk'
|
|
|
|
import type { Ref } from 'vue'
|
|
|
|
import {
|
|
|
|
CellValueInj,
|
|
|
|
ColumnInj,
|
|
|
|
IsExpandedFormOpenInj,
|
|
|
|
computed,
|
|
|
|
inject,
|
|
|
|
renderValue,
|
|
|
|
replaceUrlsWithLink,
|
|
|
|
useBase,
|
|
|
|
} from '#imports'
|
|
|
|
|
|
|
|
// todo: column type doesn't have required property `error` - throws in typecheck
|
|
|
|
const column = inject(ColumnInj) as Ref<ColumnType & { colOptions: { error: any } }>
|
|
|
|
|
|
|
|
const cellValue = inject(CellValueInj)
|
|
|
|
|
|
|
|
const isExpandedFormOpen = inject(IsExpandedFormOpenInj, ref(false))!
|
|
|
|
|
|
|
|
const { isPg } = useBase()
|
|
|
|
|
|
|
|
const result = computed(() =>
|
|
|
|
isPg(column.value.source_id) ? renderValue(handleTZ(cellValue?.value)) : renderValue(cellValue?.value),
|
|
|
|
)
|
|
|
|
|
|
|
|
const urls = computed(() => replaceUrlsWithLink(result.value))
|
|
|
|
|
|
|
|
const { showEditNonEditableFieldWarning, showClearNonEditableFieldWarning, activateShowEditNonEditableFieldWarning } =
|
|
|
|
useShowNotEditableWarning()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<a-tooltip v-if="column && column.colOptions && column.colOptions.error" placement="bottom" class="text-orange-700">
|
|
|
|
<template #title>
|
|
|
|
<span class="font-bold">{{ column.colOptions.error }}</span>
|
|
|
|
</template>
|
|
|
|
<span>ERR!</span>
|
|
|
|
</a-tooltip>
|
|
|
|
<span v-else-if="cellValue === null && showNull" class="nc-null uppercase">{{ $t('general.null') }}</span>
|
|
|
|
<div
|
|
|
|
v-else
|
|
|
|
class="py-1"
|
|
|
|
:class="{
|
|
|
|
'px-2': isExpandedFormOpen,
|
|
|
|
}"
|
|
|
|
@dblclick="activateShowEditNonEditableFieldWarning"
|
|
|
|
>
|
|
|
|
<div v-if="urls" v-html="urls" />
|
|
|
|
|
|
|
|
<div v-else>{{ result }}</div>
|
|
|
|
|
|
|
|
<div v-if="showEditNonEditableFieldWarning" class="text-left text-wrap mt-2 text-[#e65100] text-xs">
|
|
|
|
{{ $t('msg.info.computedFieldEditWarning') }}
|
|
|
|
</div>
|
|
|
|
<div v-if="showClearNonEditableFieldWarning" class="text-left text-wrap mt-2 text-[#e65100] text-xs">
|
|
|
|
{{ $t('msg.info.computedFieldDeleteWarning') }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|