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.
38 lines
950 B
38 lines
950 B
<script setup lang="ts"> |
|
import { CellValueInj, inject, refAutoReset } from '#imports' |
|
|
|
const value = inject(CellValueInj) |
|
|
|
const timeout = 3000 // in ms |
|
|
|
const showEditWarning = refAutoReset(false, timeout) |
|
|
|
const showClearWarning = refAutoReset(false, timeout) |
|
|
|
useSelectedCellKeyupListener(inject(ActiveCellInj, ref(false)), (e: KeyboardEvent) => { |
|
switch (e.key) { |
|
case 'Enter': |
|
showEditWarning.value = true |
|
break |
|
default: |
|
showClearWarning.value = true |
|
} |
|
}) |
|
</script> |
|
|
|
<template> |
|
<div> |
|
<span class="text-center pl-3"> |
|
{{ value }} |
|
</span> |
|
|
|
<div> |
|
<div v-if="showEditWarning" class="text-left text-wrap mt-2 text-[#e65100] text-xs"> |
|
{{ $t('msg.info.computedFieldEditWarning') }} |
|
</div> |
|
<div v-if="showClearWarning" class="text-left text-wrap mt-2 text-[#e65100] text-xs"> |
|
{{ $t('msg.info.computedFieldDeleteWarning') }} |
|
</div> |
|
</div> |
|
</div> |
|
</template>
|
|
|