|
|
|
<script lang="ts" setup>
|
|
|
|
import type { ColumnType } from 'nocodb-sdk'
|
|
|
|
import type { Ref } from 'vue'
|
|
|
|
import { CellValueInj, ColumnInj, computed, handleTZ, inject, renderValue, replaceUrlsWithLink, useProject } 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 { isPg } = useProject()
|
|
|
|
|
|
|
|
const result = computed(() =>
|
|
|
|
isPg(column.value.base_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>
|
|
|
|
|
|
|
|
<div v-else class="p-2" @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>
|