comfyui-deploy/web/src/components/callServerPromise.tsx

20 lines
507 B
TypeScript

"use client";
import { toast } from "sonner";
export async function callServerPromise<T>(result: Promise<T>) {
return result
.then((x) => {
if ((x as { message: string })?.message !== undefined) {
toast.success((x as { message: string }).message);
} else if ((x as { error: string })?.error !== undefined) {
toast.error((x as { error: string }).error);
}
return x;
})
.catch((error) => {
toast.error(error.message);
return null;
});
}