Refactor user initialization and balance retrieval logic

- Updated the `InitUser` component to handle session state more effectively by incorporating a loading state.
- Removed the unused `useAuthQuery` hook and adjusted the balance initialization logic to only proceed when the session is confirmed.
- Enhanced the `getBalance` query with improved error handling and logging for better debugging.
- Modified the `initBalance` mutation to return an object indicating whether a new balance was created, improving clarity in the initialization process.
This commit is contained in:
2026-04-03 15:47:34 +02:00
parent 6cbdfdcb79
commit 3474297e69
2 changed files with 57 additions and 31 deletions

View File

@@ -2,7 +2,6 @@
import { authClient } from "@/lib/auth-client";
import { useMutation } from "convex/react";
import { useAuthQuery } from "@/hooks/use-auth-query";
import { api } from "@/convex/_generated/api";
import { useEffect, useRef } from "react";
import { useTranslations } from "next-intl";
@@ -15,32 +14,28 @@ import { toast } from "@/lib/toast";
*/
export function InitUser() {
const t = useTranslations('toasts');
const { data: session } = authClient.useSession();
const { data: session, isPending: isSessionPending } = authClient.useSession();
const balance = useAuthQuery(api.credits.getBalance);
const initBalance = useMutation(api.credits.initBalance);
const initStartedRef = useRef(false);
useEffect(() => {
if (
!session?.user ||
!balance ||
balance.balance !== 0 ||
balance.monthlyAllocation !== 0
) {
if (isSessionPending || !session?.user) {
return;
}
if (initStartedRef.current) return;
initStartedRef.current = true;
void initBalance()
.then(() => {
toast.success(t('auth.initialSetupTitle'), t('auth.initialSetupDesc'));
.then((result) => {
if (result.created) {
toast.success(t('auth.initialSetupTitle'), t('auth.initialSetupDesc'));
}
})
.catch(() => {
initStartedRef.current = false;
});
}, [t, session?.user, balance, initBalance]);
}, [t, initBalance, isSessionPending, session?.user]);
return null;
}