import type { ExportTypes, FilterType, PaginatedType, SortType, TableType, ViewType } from 'nocodb-sdk' import { UITypes } from 'nocodb-sdk' import { useNuxtApp } from '#app' export function useSharedView() { const nestedFilters = useState<(FilterType & { status?: 'update' | 'delete' | 'create'; parentId?: string })[]>( 'nestedFilters', () => [], ) const paginationData = useState('paginationData', () => ({ page: 1, pageSize: 25 })) const sharedView = useState('sharedView') const sorts = useState('sorts', () => []) const password = useState('password') const allowCSVDownload = useState('allowCSVDownload', () => false) const meta = useState('meta') const formColumns = computed( () => meta.value.columns .filter( (f: Record) => f.show && f.uidt !== UITypes.Rollup && f.uidt !== UITypes.Lookup && f.uidt !== UITypes.Formula, ) .sort((a: Record, b: Record) => a.order - b.order) .map((c: Record) => ({ ...c, required: !!(c.required || 0) })) ?? [], ) const { $api } = useNuxtApp() const { setMeta } = useMetas() const loadSharedView = async (viewId: string, localPassword: string | undefined = undefined) => { const viewMeta = await $api.public.sharedViewMetaGet(viewId, { headers: { 'xc-password': localPassword ?? password.value, }, }) allowCSVDownload.value = JSON.parse(viewMeta.meta)?.allowCSVDownload if (localPassword) password.value = localPassword sharedView.value = { ...viewMeta } meta.value = { ...viewMeta.model } let order = 1 meta.value.columns = [...viewMeta.model.columns] .filter((c) => c.show) .map((c) => ({ ...c, order: order++ })) .sort((a, b) => a.order - b.order) setMeta(viewMeta.model) const relatedMetas = { ...viewMeta.relatedMetas } Object.keys(relatedMetas).forEach((key) => setMeta(relatedMetas[key])) } const fetchSharedViewData = async () => { const page = paginationData.value.page || 1 const pageSize = paginationData.value.pageSize || 25 const { data } = await $api.public.dataList( sharedView?.value?.uuid, { offset: (page - 1) * pageSize, filterArrJson: JSON.stringify(nestedFilters.value), sortArrJson: JSON.stringify(sorts.value), } as any, { headers: { 'xc-password': password.value, }, }, ) return data } const exportFile = async ( fields: any[], offset: number, type: ExportTypes.EXCEL | ExportTypes.CSV, responseType: 'base64' | 'blob', ) => { return await $api.public.csvExport(sharedView.value?.uuid, type, { format: responseType as any, query: { fields: fields.map((field) => field.title), offset, sortArrJson: JSON.stringify(sorts.value), filterArrJson: JSON.stringify(nestedFilters.value), }, headers: { 'xc-password': password.value, }, }) } return { sharedView, loadSharedView, meta, nestedFilters, fetchSharedViewData, paginationData, sorts, exportFile, formColumns, allowCSVDownload, } }