Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(react/auth): add useUserGetIdTokenMutation #149

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/react/src/auth/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// useConfirmationResultConfirmMutation (ConfirmationResult)
// useUserDeleteMutation (User)
// userUserGetIdTokenResultMutation (User)
// useUserGetIdTokenMutation (User)
export { useUserGetIdTokenMutation } from "./useUserGetIdTokenMutation";
// useUserReloadMutation (User)
// useVerifyPhoneNumberMutation (PhoneAuthProvider)
// useMultiFactorUserEnrollMutation (MultiFactorUser)
Expand Down
92 changes: 92 additions & 0 deletions packages/react/src/auth/useUserGetIdTokenMutation.test.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
import { act, renderHook, waitFor } from "@testing-library/react";
import {
createUserWithEmailAndPassword,
signInWithEmailAndPassword,
} from "firebase/auth";
import { afterEach, beforeEach, describe, expect, test, vi } from "vitest";
import { auth, wipeAuth } from "~/testing-utils";
import { useUserGetIdTokenMutation } from "./useUserGetIdTokenMutation";
import { queryClient, wrapper } from "../../utils";

describe("useUserGetIdTokenMutation", () => {
const email = "[email protected]";
const password = "TanstackQueryFirebase#123";

beforeEach(async () => {
queryClient.clear();
await wipeAuth();
await createUserWithEmailAndPassword(auth, email, password);
});

afterEach(async () => {
vi.clearAllMocks();
await auth.signOut();
});

test("successfully retrieves an ID token with forceRefresh true", async () => {
const userCredential = await signInWithEmailAndPassword(
auth,
email,
password
);
const { user } = userCredential;

const { result } = renderHook(() => useUserGetIdTokenMutation(user), {
wrapper,
});

await act(async () => {
await result.current.mutateAsync(true);
});

await waitFor(() => expect(result.current.isSuccess).toBe(true));

expect(typeof result.current.data).toBe("string");
expect(result.current.data?.length).toBeGreaterThan(0);
});

test("successfully retrieves an ID token with forceRefresh false", async () => {
const userCredential = await signInWithEmailAndPassword(
auth,
email,
password
);
const { user } = userCredential;

const { result } = renderHook(() => useUserGetIdTokenMutation(user), {
wrapper,
});

await act(async () => {
await result.current.mutateAsync(false);
});

await waitFor(() => expect(result.current.isSuccess).toBe(true));

expect(typeof result.current.data).toBe("string");
expect(result.current.data?.length).toBeGreaterThan(0);
});

test("executes onSuccess callback with token", async () => {
const userCredential = await signInWithEmailAndPassword(
auth,
email,
password
);
const { user } = userCredential;
const onSuccess = vi.fn();

const { result } = renderHook(
() => useUserGetIdTokenMutation(user, { onSuccess }),
{ wrapper }
);

await act(async () => {
await result.current.mutateAsync(true);
});

await waitFor(() => expect(onSuccess).toHaveBeenCalled());
expect(typeof onSuccess.mock.calls[0][0]).toBe("string");
expect(onSuccess.mock.calls[0][0].length).toBeGreaterThan(0);
});
});
22 changes: 22 additions & 0 deletions packages/react/src/auth/useUserGetIdTokenMutation.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { type UseMutationOptions, useMutation } from "@tanstack/react-query";
import { type User, type AuthError, getIdToken } from "firebase/auth";

type AuthUseMutationOptions<
TData = unknown,
TError = Error,
TVariables = void
> = Omit<UseMutationOptions<TData, TError, TVariables>, "mutationFn"> & {
auth?: {
forceRefresh?: boolean;
};
};

export function useUserGetIdTokenMutation(
user: User,
options?: AuthUseMutationOptions<string, AuthError, boolean>
) {
return useMutation<string, AuthError, boolean>({
...options,
mutationFn: (forceRefresh?: boolean) => getIdToken(user, forceRefresh),
});
}