Skip to content

Instantly share code, notes, and snippets.

@mattpocock
Created October 21, 2020 18:39
Show Gist options
  • Save mattpocock/d1b5e8b60e9824abbfad0287b6f728d8 to your computer and use it in GitHub Desktop.
Save mattpocock/d1b5e8b60e9824abbfad0287b6f728d8 to your computer and use it in GitHub Desktop.
const endpointToPromiseMap = {
[ApiEndpoint.FetchAllGoals]: fetchUserGoals,
[ApiEndpoint.CurrentUser]: currentUser,
};
type PromiseValue<T extends Promise<any>> = T extends Promise<infer U>
? U
: never;
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
const useFetch = <E extends ApiEndpoint, L>(endpoint: E, args?: L) => {
const prms = endpointToPromiseMap[endpoint];
return _useFetch<PromiseValue<ReturnType<typeof endpointToPromiseMap[E]>>, L>(
prms as any,
args,
);
};
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
const _useFetch = <T, L>(prms: (arg0?: L) => Promise<T>, args?: L) => {
const isMounted = useRef(true);
const [data, setData] = useState<T | null>(null);
const [errorMessage, setErrorMessage] = useState<string>('');
return {
status,
errorMessage,
data,
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment