You've already forked pages
forked from didirus/AstralRinth
* fix: DI nonsense * fix: lint * fix: client try di issue * fix: injects outside of context * fix: use .catch * refactor: convert projects.vue to composition API. * fix: moderation checklist notif pos change watcher * fix: lint issues
43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
import type { AbstractWebNotificationManager } from '@modrinth/ui'
|
|
import { injectNotificationManager } from '@modrinth/ui'
|
|
|
|
type AsyncFunction<TArgs extends any[], TResult> = (...args: TArgs) => Promise<TResult>
|
|
type ErrorFunction = (
|
|
err: any,
|
|
addNotification: typeof AbstractWebNotificationManager.prototype.addNotification,
|
|
) => void | Promise<void>
|
|
type VoidFunction = () => void | Promise<void>
|
|
|
|
type useClientTry = <TArgs extends any[], TResult>(
|
|
fn: AsyncFunction<TArgs, TResult>,
|
|
onFail?: ErrorFunction,
|
|
onFinish?: VoidFunction,
|
|
) => (...args: TArgs) => Promise<TResult | undefined>
|
|
|
|
const defaultOnError: ErrorFunction = (error, addNotification) => {
|
|
addNotification({
|
|
title: 'An error occurred',
|
|
text: error?.data?.description || error.message || error || 'Unknown error',
|
|
type: 'error',
|
|
})
|
|
}
|
|
|
|
export const useClientTry: useClientTry = (fn, onFail = defaultOnError, onFinish) => {
|
|
const { addNotification } = injectNotificationManager()
|
|
return async (...args) => {
|
|
startLoading()
|
|
try {
|
|
return await fn(...args)
|
|
} catch (err) {
|
|
if (onFail) {
|
|
await onFail(err, addNotification)
|
|
} else {
|
|
console.error('[CLIENT TRY ERROR]', err)
|
|
}
|
|
} finally {
|
|
if (onFinish) await onFinish()
|
|
stopLoading()
|
|
}
|
|
}
|
|
}
|