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.
30 lines
928 B
30 lines
928 B
<script lang="ts" setup> |
|
import type { Row } from '~/composables' |
|
import { useSmartsheetStoreOrThrow } from '~/composables' |
|
import { useProvideSmartsheetRowStore } from '~/composables/useSmartsheetRowStore' |
|
|
|
interface Props { |
|
row: Row |
|
} |
|
|
|
const props = defineProps<Props>() |
|
const emit = defineEmits(['expandForm', 'selectCell', 'updateOrSaveRow', 'navigate']) |
|
const row = toRef(props, 'row') |
|
|
|
const { meta } = useSmartsheetStoreOrThrow() |
|
const { isNew, state, syncLTARRefs } = useProvideSmartsheetRowStore(meta, row) |
|
|
|
// on changing isNew(new record insert) status sync LTAR cell values |
|
watch(isNew, async (nextVal, prevVal) => { |
|
if (prevVal && !nextVal) { |
|
await syncLTARRefs(row.value.row) |
|
// update row values without invoking api |
|
row.value.row = { ...row.value.row, ...state.value } |
|
row.value.oldRow = { ...row.value.row, ...state.value } |
|
} |
|
}) |
|
</script> |
|
|
|
<template> |
|
<slot :state="state" /> |
|
</template>
|
|
|