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.
56 lines
1.3 KiB
56 lines
1.3 KiB
<script setup lang="ts"> |
|
import type { ColumnType } from 'nocodb-sdk' |
|
import { provide, useVirtualCell } from '#imports' |
|
import { ColumnInj, ValueInj } from '~/context' |
|
import { NavigateDir } from '~/lib' |
|
|
|
interface Props { |
|
column: ColumnType |
|
modelValue: any |
|
} |
|
|
|
const { column, modelValue: value } = defineProps<Props>() |
|
|
|
const emit = defineEmits(['update:modelValue', 'navigate']) |
|
|
|
provide(ColumnInj, column) |
|
provide(ValueInj, value) |
|
|
|
const { isLookup, isBt, isRollup, isMm, isHm, isFormula, isCount } = useVirtualCell(column) |
|
</script> |
|
|
|
<template> |
|
<div |
|
class="nc-virtual-cell" |
|
@keydown.stop.enter.exact="emit('navigate', NavigateDir.NEXT)" |
|
@keydown.stop.shift.enter.exact="emit('navigate', NavigateDir.PREV)" |
|
> |
|
<VirtualCellHasMany v-if="isHm" /> |
|
<VirtualCellManyToMany v-else-if="isMm" /> |
|
<VirtualCellBelongsTo v-else-if="isBt" /> |
|
<VirtualCellRollup v-else-if="isRollup" /> |
|
<VirtualCellFormula v-else-if="isFormula" /> |
|
<VirtualCellCount v-else-if="isCount" /> |
|
<VirtualCellLookup v-else-if="isLookup" /> |
|
</div> |
|
</template> |
|
|
|
<style scoped> |
|
.nc-hint { |
|
font-size: 0.61rem; |
|
color: grey; |
|
} |
|
|
|
.nc-virtual-cell { |
|
position: relative; |
|
} |
|
|
|
.nc-locked-overlay { |
|
position: absolute; |
|
z-index: 2; |
|
height: 100%; |
|
width: 100%; |
|
top: 0; |
|
left: 0; |
|
} |
|
</style>
|
|
|