Files
litlyx/dashboard/composables/useCustomFetch.ts
2024-07-26 16:18:20 +02:00

53 lines
1.4 KiB
TypeScript

import type { InternalApi } from 'nitropack';
import type { WatchSource } from 'vue';
type NitroFetchRequest = Exclude<keyof InternalApi, `/_${string}` | `/api/_${string}`> | (string & {});
export type CustomFetchOptions = {
watchProps?: WatchSource[],
lazy?: boolean
}
type OnResponseCallback<TData> = (data: Ref<TData | undefined>) => any
export function useCustomFetch<T>(url: NitroFetchRequest, getHeaders: () => Record<string, string>, options?: CustomFetchOptions) {
const pending = ref<boolean>(false);
const data = ref<T | undefined>();
const error = ref<Error | undefined>();
let onResponseCallback: OnResponseCallback<T> = () => { }
const onResponse = (callback: OnResponseCallback<T>) => {
onResponseCallback = callback;
}
const execute = async () => {
pending.value = true;
error.value = undefined;
try {
data.value = await $fetch<T>(url, { headers: getHeaders() });
onResponseCallback(data);
} catch (err) {
error.value = err as Error;
} finally {
pending.value = false;
}
}
if (options?.lazy !== true) {
execute();
}
if (options?.watchProps) {
watch(options.watchProps, () => {
execute();
});
}
const refresh = execute;
return { pending, execute, data, error, refresh, onResponse };
}