@scayle/storefront-nuxt
Version:
Nuxt integration for the SCAYLE Commerce Engine and Storefront API
29 lines (28 loc) • 1.92 kB
TypeScript
import type { RpcMethodParameters } from '@scayle/storefront-core';
import type { UseRpcReturn, UseRpcOptions, NormalizedRpcResponse, KeysOf, UseRpcCacheKey } from '../core/useRpc.js';
import type { MaybeRefOrGetter } from 'vue';
/**
* Retrieves data of all navigation trees using the `fetchAllNavigationTrees` RPC method.
*
* This function acts as a wrapper around the `useRpc` composable,
* simplifying the process of fetching data. It internally calls `useRpc`
* with the provided parameters and options.
*
* @see https://scayle.dev/en/api-guides/storefront-api/resources/navigation/list-navigations
*
* @template DataT The type of the normalized RPC response data. Defaults to `NormalizedRpcResponse<'getBrands'>`.
* @template PickKeys The keys to pick from the data. Defaults to all keys of `DataT`.
* @template DefaultT The default value to use if data is not available. Defaults to `null`.
*
* @param params An object containing parameters and options for the `fetchAllNavigationTrees` RPC call.
* @param params.params The parameters for the `fetchAllNavigationTrees` RPC method.
* @param params.options The options for the underlying `useRpc` call, controlling data handling and loading state.
* @param key A unique key for this RPC call. Used internally by `useRpc` for caching and state management.
*
* @returns The result of the `useRpc` call, which includes the fetched data,
* loading state, and any error information.
*/
export declare function useNavigationTrees<DataT = NormalizedRpcResponse<'fetchAllNavigationTrees'>, PickKeys extends KeysOf<DataT> = KeysOf<DataT>, DefaultT = null>({ params, options, }?: Partial<{
params: MaybeRefOrGetter<RpcMethodParameters<'fetchAllNavigationTrees'>>;
options: UseRpcOptions<'fetchAllNavigationTrees', DataT, PickKeys, DefaultT>;
}>, key?: UseRpcCacheKey): UseRpcReturn<'fetchAllNavigationTrees', DataT, PickKeys, DefaultT>;