mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-23 09:00:31 +00:00
feat: improve DX of data-fetching composables
This commit is contained in:
parent
0add7bdf5d
commit
62741018bd
@ -42,16 +42,57 @@ export interface AsyncDataOptions<
|
|||||||
PickKeys extends KeysOf<DataT> = KeysOf<DataT>,
|
PickKeys extends KeysOf<DataT> = KeysOf<DataT>,
|
||||||
DefaultT = null,
|
DefaultT = null,
|
||||||
> {
|
> {
|
||||||
|
/**
|
||||||
|
* Whether to fetch on server side.
|
||||||
|
* @default true
|
||||||
|
*/
|
||||||
server?: boolean
|
server?: boolean
|
||||||
|
/**
|
||||||
|
* Whether to resolve the async function after loading the route, instead of blocking client-side navigation
|
||||||
|
* @default false
|
||||||
|
*/
|
||||||
lazy?: boolean
|
lazy?: boolean
|
||||||
|
/**
|
||||||
|
* a factory function to set the default value of the data, before the async function resolves - useful with the `lazy: true` or `immediate: false` options
|
||||||
|
*/
|
||||||
default?: () => DefaultT | Ref<DefaultT>
|
default?: () => DefaultT | Ref<DefaultT>
|
||||||
|
/**
|
||||||
|
* Provide a function which returns cached data.
|
||||||
|
* A `null` or `undefined` return value will trigger a fetch.
|
||||||
|
* Default is `key => nuxt.isHydrating ? nuxt.payload.data[key] : nuxt.static.data[key]` which only caches data when payloadExtraction is enabled.
|
||||||
|
*/
|
||||||
getCachedData?: (key: string) => DataT
|
getCachedData?: (key: string) => DataT
|
||||||
|
/**
|
||||||
|
* A function that can be used to alter handler function result after resolving
|
||||||
|
*/
|
||||||
transform?: _Transform<ResT, DataT>
|
transform?: _Transform<ResT, DataT>
|
||||||
|
/**
|
||||||
|
* Only pick specified keys in this array from the handler function result
|
||||||
|
*/
|
||||||
pick?: PickKeys
|
pick?: PickKeys
|
||||||
|
/**
|
||||||
|
* Watch reactive sources to auto-refresh when changed
|
||||||
|
*/
|
||||||
watch?: MultiWatchSources
|
watch?: MultiWatchSources
|
||||||
|
/**
|
||||||
|
* When set to false, will prevent the request from firing immediately
|
||||||
|
* @default true
|
||||||
|
*/
|
||||||
immediate?: boolean
|
immediate?: boolean
|
||||||
|
/**
|
||||||
|
* Return data in a deep ref object (it is true by default). It can be set to false to return data in a shallow ref object, which can improve performance if your data does not need to be deeply reactive.
|
||||||
|
*/
|
||||||
deep?: boolean
|
deep?: boolean
|
||||||
|
/**
|
||||||
|
* Avoid fetching same key more than once at a time
|
||||||
|
* @default 'cancel'
|
||||||
|
*/
|
||||||
dedupe?: 'cancel' | 'defer'
|
dedupe?: 'cancel' | 'defer'
|
||||||
|
/**
|
||||||
|
* Internally used by useFetch
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
_useFetch?: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface AsyncDataExecuteOptions {
|
export interface AsyncDataExecuteOptions {
|
||||||
@ -82,6 +123,12 @@ export type AsyncData<Data, Error> = _AsyncData<Data, Error> & Promise<_AsyncDat
|
|||||||
// TODO: deprecate boolean option in future minor
|
// TODO: deprecate boolean option in future minor
|
||||||
const isDefer = (dedupe?: boolean | 'cancel' | 'defer') => dedupe === 'defer' || dedupe === false
|
const isDefer = (dedupe?: boolean | 'cancel' | 'defer') => dedupe === 'defer' || dedupe === false
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides access to data that resolves asynchronously in a SSR-friendly composable.
|
||||||
|
* See {@link https://nuxt.com/docs/api/composables/use-async-data}
|
||||||
|
* @param handler An asynchronous function that must return a truthy value (for example, it should not be `undefined` or `null`) or the request may be duplicated on the client side.
|
||||||
|
* @param options customize the behavior of useAsyncData
|
||||||
|
*/
|
||||||
export function useAsyncData<
|
export function useAsyncData<
|
||||||
ResT,
|
ResT,
|
||||||
NuxtErrorDataT = unknown,
|
NuxtErrorDataT = unknown,
|
||||||
@ -92,6 +139,12 @@ export function useAsyncData<
|
|||||||
handler: (ctx?: NuxtApp) => Promise<ResT>,
|
handler: (ctx?: NuxtApp) => Promise<ResT>,
|
||||||
options?: AsyncDataOptions<ResT, DataT, PickKeys, DefaultT>
|
options?: AsyncDataOptions<ResT, DataT, PickKeys, DefaultT>
|
||||||
): AsyncData<PickFrom<DataT, PickKeys> | DefaultT, (NuxtErrorDataT extends Error | NuxtError ? NuxtErrorDataT : NuxtError<NuxtErrorDataT>) | null>
|
): AsyncData<PickFrom<DataT, PickKeys> | DefaultT, (NuxtErrorDataT extends Error | NuxtError ? NuxtErrorDataT : NuxtError<NuxtErrorDataT>) | null>
|
||||||
|
/**
|
||||||
|
* Provides access to data that resolves asynchronously in a SSR-friendly composable.
|
||||||
|
* See {@link https://nuxt.com/docs/api/composables/use-async-data}
|
||||||
|
* @param handler An asynchronous function that must return a truthy value (for example, it should not be `undefined` or `null`) or the request may be duplicated on the client side.
|
||||||
|
* @param options customize the behavior of useAsyncData
|
||||||
|
*/
|
||||||
export function useAsyncData<
|
export function useAsyncData<
|
||||||
ResT,
|
ResT,
|
||||||
NuxtErrorDataT = unknown,
|
NuxtErrorDataT = unknown,
|
||||||
@ -102,6 +155,13 @@ export function useAsyncData<
|
|||||||
handler: (ctx?: NuxtApp) => Promise<ResT>,
|
handler: (ctx?: NuxtApp) => Promise<ResT>,
|
||||||
options?: AsyncDataOptions<ResT, DataT, PickKeys, DefaultT>
|
options?: AsyncDataOptions<ResT, DataT, PickKeys, DefaultT>
|
||||||
): AsyncData<PickFrom<DataT, PickKeys> | DefaultT, (NuxtErrorDataT extends Error | NuxtError ? NuxtErrorDataT : NuxtError<NuxtErrorDataT>) | null>
|
): AsyncData<PickFrom<DataT, PickKeys> | DefaultT, (NuxtErrorDataT extends Error | NuxtError ? NuxtErrorDataT : NuxtError<NuxtErrorDataT>) | null>
|
||||||
|
/**
|
||||||
|
* Provides access to data that resolves asynchronously in a SSR-friendly composable.
|
||||||
|
* See {@link https://nuxt.com/docs/api/composables/use-async-data}
|
||||||
|
* @param key a unique key to ensure that data fetching can be properly de-duplicated across requests.
|
||||||
|
* @param handler An asynchronous function that must return a truthy value (for example, it should not be `undefined` or `null`) or the request may be duplicated on the client side.
|
||||||
|
* @param options customize the behavior of useAsyncData
|
||||||
|
*/
|
||||||
export function useAsyncData<
|
export function useAsyncData<
|
||||||
ResT,
|
ResT,
|
||||||
NuxtErrorDataT = unknown,
|
NuxtErrorDataT = unknown,
|
||||||
@ -113,6 +173,13 @@ export function useAsyncData<
|
|||||||
handler: (ctx?: NuxtApp) => Promise<ResT>,
|
handler: (ctx?: NuxtApp) => Promise<ResT>,
|
||||||
options?: AsyncDataOptions<ResT, DataT, PickKeys, DefaultT>
|
options?: AsyncDataOptions<ResT, DataT, PickKeys, DefaultT>
|
||||||
): AsyncData<PickFrom<DataT, PickKeys> | DefaultT, (NuxtErrorDataT extends Error | NuxtError ? NuxtErrorDataT : NuxtError<NuxtErrorDataT>) | null>
|
): AsyncData<PickFrom<DataT, PickKeys> | DefaultT, (NuxtErrorDataT extends Error | NuxtError ? NuxtErrorDataT : NuxtError<NuxtErrorDataT>) | null>
|
||||||
|
/**
|
||||||
|
* Provides access to data that resolves asynchronously in a SSR-friendly composable.
|
||||||
|
* See {@link https://nuxt.com/docs/api/composables/use-async-data}
|
||||||
|
* @param key a unique key to ensure that data fetching can be properly de-duplicated across requests.
|
||||||
|
* @param handler An asynchronous function that must return a truthy value (for example, it should not be `undefined` or `null`) or the request may be duplicated on the client side.
|
||||||
|
* @param options customize the behavior of useAsyncData
|
||||||
|
*/
|
||||||
export function useAsyncData<
|
export function useAsyncData<
|
||||||
ResT,
|
ResT,
|
||||||
NuxtErrorDataT = unknown,
|
NuxtErrorDataT = unknown,
|
||||||
@ -259,6 +326,9 @@ export function useAsyncData<
|
|||||||
if (import.meta.client) {
|
if (import.meta.client) {
|
||||||
// Setup hook callbacks once per instance
|
// Setup hook callbacks once per instance
|
||||||
const instance = getCurrentInstance()
|
const instance = getCurrentInstance()
|
||||||
|
if (!instance || instance?.isMounted) {
|
||||||
|
console.warn(`[nuxt] [${options._useFetch ? 'useFetch' : 'useAsyncData'}] Component is already mounted, please use $fetch instead. See https://nuxt.com/docs/getting-started/data-fetching`)
|
||||||
|
}
|
||||||
if (instance && !instance._nuxtOnBeforeMountCbs) {
|
if (instance && !instance._nuxtOnBeforeMountCbs) {
|
||||||
instance._nuxtOnBeforeMountCbs = []
|
instance._nuxtOnBeforeMountCbs = []
|
||||||
const cbs = instance._nuxtOnBeforeMountCbs
|
const cbs = instance._nuxtOnBeforeMountCbs
|
||||||
|
@ -39,6 +39,12 @@ export interface UseFetchOptions<
|
|||||||
watch?: MultiWatchSources | false
|
watch?: MultiWatchSources | false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetch data from an API endpoint with a SSR-friendly composable.
|
||||||
|
* See {@link https://nuxt.com/docs/api/composables/use-fetch}
|
||||||
|
* @param request The URL to fetch
|
||||||
|
* @param options extends $fetch options and useAsyncData options
|
||||||
|
*/
|
||||||
export function useFetch<
|
export function useFetch<
|
||||||
ResT = void,
|
ResT = void,
|
||||||
ErrorT = FetchError,
|
ErrorT = FetchError,
|
||||||
@ -52,6 +58,12 @@ export function useFetch<
|
|||||||
request: Ref<ReqT> | ReqT | (() => ReqT),
|
request: Ref<ReqT> | ReqT | (() => ReqT),
|
||||||
opts?: UseFetchOptions<_ResT, DataT, PickKeys, DefaultT, ReqT, Method>
|
opts?: UseFetchOptions<_ResT, DataT, PickKeys, DefaultT, ReqT, Method>
|
||||||
): AsyncData<PickFrom<DataT, PickKeys> | DefaultT, ErrorT | null>
|
): AsyncData<PickFrom<DataT, PickKeys> | DefaultT, ErrorT | null>
|
||||||
|
/**
|
||||||
|
* Fetch data from an API endpoint with a SSR-friendly composable.
|
||||||
|
* See {@link https://nuxt.com/docs/api/composables/use-fetch}
|
||||||
|
* @param request The URL to fetch
|
||||||
|
* @param options extends $fetch options and useAsyncData options
|
||||||
|
*/
|
||||||
export function useFetch<
|
export function useFetch<
|
||||||
ResT = void,
|
ResT = void,
|
||||||
ErrorT = FetchError,
|
ErrorT = FetchError,
|
||||||
@ -131,7 +143,8 @@ export function useFetch<
|
|||||||
immediate,
|
immediate,
|
||||||
getCachedData,
|
getCachedData,
|
||||||
deep,
|
deep,
|
||||||
watch: watch === false ? [] : [_fetchOptions, _request, ...(watch || [])]
|
watch: watch === false ? [] : [_fetchOptions, _request, ...(watch || [])],
|
||||||
|
_useFetch: true
|
||||||
}
|
}
|
||||||
|
|
||||||
let controller: AbortController
|
let controller: AbortController
|
||||||
|
Loading…
Reference in New Issue
Block a user