|
|
|
<script setup lang="ts">
|
|
|
|
import type { ColumnType } from 'nocodb-sdk'
|
|
|
|
import {
|
|
|
|
ActiveCellInj,
|
|
|
|
CellValueInj,
|
|
|
|
ColumnInj,
|
|
|
|
IsFormInj,
|
|
|
|
RowInj,
|
|
|
|
inject,
|
|
|
|
isBarcode,
|
|
|
|
isBt,
|
|
|
|
isCount,
|
|
|
|
isFormula,
|
|
|
|
isHm,
|
|
|
|
isLookup,
|
|
|
|
isMm,
|
|
|
|
isQrCode,
|
|
|
|
isRollup,
|
|
|
|
provide,
|
|
|
|
toRef,
|
|
|
|
} from '#imports'
|
|
|
|
import type { Row } from '~/lib'
|
|
|
|
import { NavigateDir } from '~/lib'
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
column: ColumnType
|
|
|
|
modelValue: any
|
|
|
|
row?: Row
|
|
|
|
active?: boolean
|
|
|
|
}>()
|
|
|
|
|
|
|
|
const emit = defineEmits(['update:modelValue', 'navigate'])
|
|
|
|
|
|
|
|
const column = toRef(props, 'column')
|
|
|
|
const active = toRef(props, 'active', false)
|
|
|
|
const row = toRef(props, 'row')
|
|
|
|
|
|
|
|
provide(ColumnInj, column)
|
|
|
|
provide(ActiveCellInj, active)
|
|
|
|
provide(RowInj, row)
|
|
|
|
provide(CellValueInj, toRef(props, 'modelValue'))
|
|
|
|
|
|
|
|
const isForm = inject(IsFormInj, ref(false))
|
|
|
|
function onNavigate(dir: NavigateDir, e: KeyboardEvent) {
|
|
|
|
emit('navigate', dir)
|
|
|
|
|
|
|
|
if (!isForm.value) e.stopImmediatePropagation()
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div
|
|
|
|
class="nc-virtual-cell w-full"
|
|
|
|
@keydown.enter.exact="onNavigate(NavigateDir.NEXT, $event)"
|
|
|
|
@keydown.shift.enter.exact="onNavigate(NavigateDir.PREV, $event)"
|
|
|
|
>
|
|
|
|
<LazyVirtualCellHasMany v-if="isHm(column)" />
|
|
|
|
<LazyVirtualCellManyToMany v-else-if="isMm(column)" />
|
|
|
|
<LazyVirtualCellBelongsTo v-else-if="isBt(column)" />
|
|
|
|
<LazyVirtualCellRollup v-else-if="isRollup(column)" />
|
|
|
|
<LazyVirtualCellFormula v-else-if="isFormula(column)" />
|
|
|
|
<LazyVirtualCellQrCode v-else-if="isQrCode(column)" />
|
|
|
|
<LazyVirtualCellBarcode v-else-if="isBarcode(column)" />
|
|
|
|
<LazyVirtualCellCount v-else-if="isCount(column)" />
|
|
|
|
<LazyVirtualCellLookup v-else-if="isLookup(column)" />
|
|
|
|
</div>
|
|
|
|
</template>
|