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.
47 lines
1.5 KiB
47 lines
1.5 KiB
import type { MaybeRef } from '@vueuse/core' |
|
|
|
const [useProvideSmartsheetRowStore, useSmartsheetRowStore] = useInjectionState((row: MaybeRef<Row>) => { |
|
const currentRow = ref(row) |
|
|
|
// state |
|
const state = computed({ |
|
get: () => currentRow.value?.rowMeta?.ltarState ?? {}, |
|
set: (value) => { |
|
if (currentRow.value) { |
|
if (!currentRow.value.rowMeta) { |
|
currentRow.value.rowMeta = {} |
|
} |
|
currentRow.value.rowMeta.ltarState = value |
|
} |
|
}, |
|
}) |
|
|
|
// getters |
|
const isNew = computed(() => unref(row).rowMeta?.new ?? false) |
|
|
|
const { addLTARRef, removeLTARRef, syncLTARRefs, loadRow, clearLTARCell, cleaMMCell } = useSmartsheetLtarHelpersOrThrow() |
|
|
|
return { |
|
row, |
|
state, |
|
isNew, |
|
// todo: use better name |
|
addLTARRef: (...args: any) => addLTARRef(currentRow.value, ...args), |
|
removeLTARRef: (...args: any) => removeLTARRef(currentRow.value, ...args), |
|
syncLTARRefs: (...args: any) => syncLTARRefs(currentRow.value, ...args), |
|
loadRow: (...args: any) => loadRow(currentRow.value, ...args), |
|
currentRow, |
|
clearLTARCell: (...args: any) => clearLTARCell(currentRow.value, ...args), |
|
cleaMMCell: (...args: any) => cleaMMCell(currentRow.value, ...args), |
|
} |
|
}, 'smartsheet-row-store') |
|
|
|
export { useProvideSmartsheetRowStore } |
|
|
|
export function useSmartsheetRowStoreOrThrow() { |
|
const smartsheetRowStore = useSmartsheetRowStore() |
|
|
|
if (smartsheetRowStore == null) throw new Error('Please call `useSmartsheetRowStore` on the appropriate parent component') |
|
|
|
return smartsheetRowStore |
|
}
|
|
|