| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- import type { AsyncData } from '#app'
- import type { ComputedRef, Ref } from 'vue'
- import { v4 as uuid4 } from 'uuid'
- import { useEntityManager } from '~/composables/data/useEntityManager'
- import ApiResource from '~/models/ApiResource'
- import type { AssociativeArray, Collection } from '~/types/data'
- interface useEntityFetchReturnType {
- fetch: (
- model: typeof ApiResource,
- id: number,
- ) => AsyncData<ApiResource | null, Error | null>
- fetchCollection: (
- model: typeof ApiResource,
- parent?: ApiResource | null,
- query?: Ref<AssociativeArray>,
- ) => AsyncData<Collection | null, Error | null>
- getRef: <T extends ApiResource>(
- model: new () => T,
- id: Ref<number | null>,
- ) => ComputedRef<null | T>
- }
- // TODO: améliorer le typage des fonctions sur le modèle de getRef
- export const useEntityFetch = (
- lazy: boolean = false,
- ): useEntityFetchReturnType => {
- const { em } = useEntityManager()
- const fetch = (model: typeof ApiResource, id: number) =>
- useAsyncData(
- model.entity + '_' + id + '_' + uuid4(),
- () => em.fetch(model, id, true),
- { lazy },
- )
- const fetchCollection = (
- model: typeof ApiResource,
- parent: ApiResource | null = null,
- query: Ref<AssociativeArray | null> = ref(null),
- ) =>
- useAsyncData(
- model.entity + '_many_' + uuid4(),
- () => em.fetchCollection(model, parent, query.value ?? undefined),
- { lazy },
- )
- const getRef = <T extends ApiResource>(
- model: new () => T,
- id: Ref<number | null>,
- ): ComputedRef<T | null> => {
- return computed(() => (id.value ? (em.find(model, id.value) as T) : null))
- }
- return { fetch, fetchCollection, getRef }
- }
|