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.
|
|
|
import type { FormType, GalleryType, GridType, KanbanType, TableType } from 'nocodb-sdk'
|
|
|
|
import type { MaybeRef } from '@vueuse/core'
|
|
|
|
import { useNuxtApp } from '#app'
|
|
|
|
|
|
|
|
export default function (meta: MaybeRef<TableType | undefined>) {
|
|
|
|
let views = $ref<(GridType | FormType | KanbanType | GalleryType)[]>([])
|
|
|
|
const { $api } = useNuxtApp()
|
|
|
|
|
|
|
|
const loadViews = async () => {
|
|
|
|
const _meta = unref(meta)
|
|
|
|
|
|
|
|
if (_meta && _meta.id) {
|
|
|
|
views = (await $api.dbView.list(_meta.id)).list as (GridType | FormType | KanbanType | GalleryType)[]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
watch(() => meta, loadViews, { immediate: true })
|
|
|
|
|
|
|
|
return { views: $$(views), loadViews }
|
|
|
|
}
|