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.
63 lines
2.1 KiB
63 lines
2.1 KiB
<script lang="ts" setup> |
|
import { FormulaDataTypes, handleTZ } from 'nocodb-sdk' |
|
import type { ColumnType } from 'nocodb-sdk' |
|
import type { Ref } from 'vue' |
|
import { |
|
CellValueInj, |
|
ColumnInj, |
|
IsExpandedFormOpenInj, |
|
computed, |
|
inject, |
|
ref, |
|
renderValue, |
|
replaceUrlsWithLink, |
|
useBase, |
|
useShowNotEditableWarning, |
|
} 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 } = 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() |
|
|
|
const isNumber = computed(() => (column.value.colOptions as any)?.parsed_tree?.dataType === FormulaDataTypes.NUMERIC) |
|
|
|
const isExpandedFormOpen = inject(IsExpandedFormOpenInj, ref(false)) |
|
|
|
const isGrid = inject(IsGridInj, ref(false)) |
|
</script> |
|
|
|
<template> |
|
<div class="w-full" :class="{ 'text-right': isNumber && isGrid && !isExpandedFormOpen }"> |
|
<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="nc-cell-field py-1" @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>
|
|
|