import { ViewTypes } from 'nocodb-sdk' import type { FilterType, SortType, TableType, ViewType } from 'nocodb-sdk' import type { Ref } from 'vue' import { computed, reactive, useInjectionState, useNuxtApp, useProject, useTemplateRefsList } from '#imports' const [useProvideSmartsheetStore, useSmartsheetStore] = useInjectionState( ( view: Ref, meta: Ref, shared = false, initalSorts?: Ref, initialFilters?: Ref, ) => { const { $api } = useNuxtApp() const { sqlUi } = useProject() const cellRefs = useTemplateRefsList() // state // todo: move to grid view store const search = reactive({ field: '', query: '', }) // getters const isLocked = computed(() => (view?.value as any)?.lock_type === 'locked') const isPkAvail = computed(() => meta?.value?.columns?.some((c) => c.pk)) const isGrid = computed(() => (view?.value as any)?.type === ViewTypes.GRID) const isForm = computed(() => (view?.value as any)?.type === ViewTypes.FORM) const isSharedForm = computed(() => isForm?.value && shared) const isGallery = computed(() => (view?.value as any)?.type === ViewTypes.GALLERY) const xWhere = computed(() => { let where const col = meta?.value?.columns?.find(({ id }) => id === search.field) || meta?.value?.columns?.find((v) => v.pv) if (!col) return if (!search.query.trim()) return if (['text', 'string'].includes(sqlUi.value.getAbstractType(col)) && col.dt !== 'bigint') { where = `(${col.title},like,%${search.query.trim()}%)` } else { where = `(${col.title},eq,${search.query.trim()})` } return where }) const isSqlView = computed(() => meta?.value?.type === 'view') const sorts = initalSorts ?? ref([]) const nestedFilters: Ref = initialFilters ?? ref([]) return { view, meta, isLocked, $api, search, xWhere, isPkAvail, isForm, isGrid, isGallery, cellRefs, isSharedForm, sorts, nestedFilters, isSqlView, } }, 'smartsheet-store', ) export { useProvideSmartsheetStore } export function useSmartsheetStoreOrThrow() { const smartsheetStore = useSmartsheetStore() if (smartsheetStore == null) throw new Error('Please call `useSmartsheetStore` on the appropriate parent component') return smartsheetStore }