-
-
Save DarkAng3L/0a7110ab795961b4c37369ad0786f22e to your computer and use it in GitHub Desktop.
Handling try/catch in TypeScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Types for the result object with discriminated union | |
type Success<T> = [null, T]; | |
type Failure<E> = [E, null]; | |
type Result<T, E = Error> = Success<T> | Failure<E>; | |
export async function tryCatch<T, E extends Error = Error>( | |
promise: Promise<T> | |
): Promise<Result<T, E> { | |
try { | |
const result = await promise; | |
return [null, result]; | |
} catch (error) { | |
return [error as E, null]; | |
} | |
} | |
// improved version with optional param to only catch specified errors | |
async function catchError<T, E extends new (message?: string) => Error>( | |
promise: Promise<T>, | |
errorsToCatch?: E[] | |
): Promise<[undefined, T] | [InstanceType<E>, undefined]> { | |
return promise | |
.then((data): [undefined, T] => { | |
return [undefined, data]; | |
}) | |
.catch((error): [InstanceType<E>, undefined] => { | |
if (errorsToCatch === undefined) { | |
return [error, undefined]; | |
} | |
if (errorsToCatch.some((e) => error instanceof e)) { | |
return [error, undefined]; | |
} | |
throw error; | |
}); | |
} | |
/** | |
* Ex to only catch CustomError: | |
* class CustomError extends Error { | |
* name = 'CustomError'; | |
* message = 'ERROR: Custom message'; | |
* extraProp = false; | |
* } | |
* | |
* const [error, resp] = await catchError(somePromise, [CustomError]); | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment