Skip to content

Commit fd0a466

Browse files
committed
chore: Bump version + liniting
1 parent 950213a commit fd0a466

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+3509
-3485
lines changed

biome.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"formatter": {
1313
"enabled": true,
14-
"indentStyle": "tab"
14+
"indentStyle": "space"
1515
},
1616
"organizeImports": {
1717
"enabled": true

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"test": "vitest --dom --coverage",
66
"serve:coverage": "npx serve coverage",
77
"emulator": "firebase emulators:start --project demo-projectc",
8-
"emulator:kill": "lsof -t -i:4001 -i:8080 -i:9000 -i:9099 -i:9199 -i:8085 | xargs kill -9"
8+
"emulator:kill": "lsof -t -i:4001 -i:8080 -i:9000 -i:9099 -i:9199 -i:8085 | xargs kill -9",
9+
"check": "pnpm biome check --write ./packages/react/src"
910
},
1011
"devDependencies": {
1112
"@biomejs/biome": "1.9.4",

packages/react/package.json

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tanstack-query-firebase/react",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "TanStack Query bindings for Firebase and React",
55
"type": "module",
66
"scripts": {
@@ -29,6 +29,10 @@
2929
"email": "[email protected]",
3030
"url": "https://github.com/invertase/tanstack-query-firebase"
3131
},
32+
"files": [
33+
"dist",
34+
"README.md"
35+
],
3236
"license": "Apache-2.0",
3337
"devDependencies": {
3438
"@testing-library/react": "^16.0.1",
@@ -37,7 +41,7 @@
3741
"@dataconnect/default-connector": "workspace:*"
3842
},
3943
"peerDependencies": {
40-
"firebase": "^11.1.0",
41-
"@tanstack/react-query": "^5.55.4"
44+
"firebase": "^11",
45+
"@tanstack/react-query": "^5"
4246
}
4347
}
Original file line numberDiff line numberDiff line change
@@ -1,101 +1,101 @@
11
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
22
import { act, renderHook, waitFor } from "@testing-library/react";
33
import { type User, createUserWithEmailAndPassword } from "firebase/auth";
4-
import React from "react";
4+
import type React from "react";
55
import { afterEach, beforeEach, describe, expect, test, vi } from "vitest";
66
import { auth, wipeAuth } from "~/testing-utils";
77
import { useDeleteUserMutation } from "./useDeleteUserMutation";
88

99
const queryClient = new QueryClient({
10-
defaultOptions: {
11-
queries: { retry: false },
12-
mutations: { retry: false },
13-
},
10+
defaultOptions: {
11+
queries: { retry: false },
12+
mutations: { retry: false },
13+
},
1414
});
1515

1616
const wrapper = ({ children }: { children: React.ReactNode }) => (
17-
<QueryClientProvider client={queryClient}>{children}</QueryClientProvider>
17+
<QueryClientProvider client={queryClient}>{children}</QueryClientProvider>
1818
);
1919

2020
describe("useVerifyPasswordResetCodeMutation", () => {
21-
const email = "[email protected]";
22-
const password = "TanstackQueryFirebase#123";
23-
let user: User;
24-
25-
beforeEach(async () => {
26-
queryClient.clear();
27-
await wipeAuth();
28-
const userCredential = await createUserWithEmailAndPassword(
29-
auth,
30-
email,
31-
password,
32-
);
33-
user = userCredential.user;
34-
});
35-
36-
afterEach(async () => {
37-
vi.clearAllMocks();
38-
await auth.signOut();
39-
});
40-
41-
test("successfully verifies the reset code", async () => {
42-
const { result } = renderHook(() => useDeleteUserMutation(auth), {
43-
wrapper,
44-
});
45-
46-
await act(async () => {
47-
result.current.mutate(user);
48-
});
49-
50-
await waitFor(() => expect(result.current.isSuccess).toBe(true));
51-
52-
expect(result.current.data).toBeUndefined();
53-
});
54-
55-
test("resets mutation state correctly", async () => {
56-
const { result } = renderHook(() => useDeleteUserMutation(auth), {
57-
wrapper,
58-
});
59-
60-
act(() => {
61-
result.current.mutate(user);
62-
});
63-
64-
await waitFor(() => {
65-
expect(result.current.isSuccess).toBe(true);
66-
});
67-
68-
act(() => {
69-
result.current.reset();
70-
});
71-
72-
await waitFor(() => {
73-
expect(result.current.isIdle).toBe(true);
74-
expect(result.current.data).toBeUndefined();
75-
expect(result.current.error).toBeNull();
76-
});
77-
});
78-
79-
test("should call onSuccess when the user is successfully deleted", async () => {
80-
const onSuccess = vi.fn();
81-
82-
const { result } = renderHook(
83-
() =>
84-
useDeleteUserMutation(auth, {
85-
onSuccess,
86-
}),
87-
{
88-
wrapper,
89-
},
90-
);
91-
92-
act(() => {
93-
result.current.mutate(user);
94-
});
95-
96-
await waitFor(() => expect(result.current.isSuccess).toBe(true));
97-
98-
expect(onSuccess).toHaveBeenCalledTimes(1);
99-
expect(result.current.data).toBeUndefined();
100-
});
21+
const email = "[email protected]";
22+
const password = "TanstackQueryFirebase#123";
23+
let user: User;
24+
25+
beforeEach(async () => {
26+
queryClient.clear();
27+
await wipeAuth();
28+
const userCredential = await createUserWithEmailAndPassword(
29+
auth,
30+
email,
31+
password,
32+
);
33+
user = userCredential.user;
34+
});
35+
36+
afterEach(async () => {
37+
vi.clearAllMocks();
38+
await auth.signOut();
39+
});
40+
41+
test("successfully verifies the reset code", async () => {
42+
const { result } = renderHook(() => useDeleteUserMutation(auth), {
43+
wrapper,
44+
});
45+
46+
await act(async () => {
47+
result.current.mutate(user);
48+
});
49+
50+
await waitFor(() => expect(result.current.isSuccess).toBe(true));
51+
52+
expect(result.current.data).toBeUndefined();
53+
});
54+
55+
test("resets mutation state correctly", async () => {
56+
const { result } = renderHook(() => useDeleteUserMutation(auth), {
57+
wrapper,
58+
});
59+
60+
act(() => {
61+
result.current.mutate(user);
62+
});
63+
64+
await waitFor(() => {
65+
expect(result.current.isSuccess).toBe(true);
66+
});
67+
68+
act(() => {
69+
result.current.reset();
70+
});
71+
72+
await waitFor(() => {
73+
expect(result.current.isIdle).toBe(true);
74+
expect(result.current.data).toBeUndefined();
75+
expect(result.current.error).toBeNull();
76+
});
77+
});
78+
79+
test("should call onSuccess when the user is successfully deleted", async () => {
80+
const onSuccess = vi.fn();
81+
82+
const { result } = renderHook(
83+
() =>
84+
useDeleteUserMutation(auth, {
85+
onSuccess,
86+
}),
87+
{
88+
wrapper,
89+
},
90+
);
91+
92+
act(() => {
93+
result.current.mutate(user);
94+
});
95+
96+
await waitFor(() => expect(result.current.isSuccess).toBe(true));
97+
98+
expect(onSuccess).toHaveBeenCalledTimes(1);
99+
expect(result.current.data).toBeUndefined();
100+
});
101101
});
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
import { type UseMutationOptions, useMutation } from "@tanstack/react-query";
22
import {
3-
type Auth,
4-
type AuthError,
5-
type User,
6-
deleteUser,
3+
type Auth,
4+
type AuthError,
5+
type User,
6+
deleteUser,
77
} from "firebase/auth";
88

99
type AuthUMutationOptions<
10-
TData = unknown,
11-
TError = Error,
12-
TVariables = void,
10+
TData = unknown,
11+
TError = Error,
12+
TVariables = void,
1313
> = Omit<UseMutationOptions<TData, TError, TVariables>, "mutationFn">;
1414

1515
export function useDeleteUserMutation(
16-
auth: Auth,
17-
options?: AuthUMutationOptions<void, AuthError, User>,
16+
auth: Auth,
17+
options?: AuthUMutationOptions<void, AuthError, User>,
1818
) {
19-
return useMutation<void, AuthError, User>({
20-
...options,
21-
mutationFn: (user: User) => deleteUser(user),
22-
});
19+
return useMutation<void, AuthError, User>({
20+
...options,
21+
mutationFn: (user: User) => deleteUser(user),
22+
});
2323
}
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,70 @@
11
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
22
import { act, renderHook, waitFor } from "@testing-library/react";
33
import {
4-
type User,
5-
createUserWithEmailAndPassword,
6-
signInWithEmailAndPassword,
4+
type User,
5+
createUserWithEmailAndPassword,
6+
signInWithEmailAndPassword,
77
} from "firebase/auth";
8-
import React from "react";
8+
import type React from "react";
99
import { afterEach, beforeEach, describe, expect, test, vi } from "vitest";
1010
import { auth, wipeAuth } from "~/testing-utils";
1111
import { useReloadMutation } from "./useReloadMutation";
1212

1313
const queryClient = new QueryClient({
14-
defaultOptions: {
15-
queries: { retry: false },
16-
mutations: { retry: false },
17-
},
14+
defaultOptions: {
15+
queries: { retry: false },
16+
mutations: { retry: false },
17+
},
1818
});
1919

2020
const wrapper = ({ children }: { children: React.ReactNode }) => (
21-
<QueryClientProvider client={queryClient}>{children}</QueryClientProvider>
21+
<QueryClientProvider client={queryClient}>{children}</QueryClientProvider>
2222
);
2323

2424
describe("useReloadMutation", () => {
25-
const email = "[email protected]";
26-
const password = "TanstackQueryFirebase#123";
27-
let user: User;
28-
beforeEach(async () => {
29-
queryClient.clear();
30-
await wipeAuth();
31-
const userCredential = await createUserWithEmailAndPassword(
32-
auth,
33-
email,
34-
password,
35-
);
36-
user = userCredential.user;
37-
});
25+
const email = "[email protected]";
26+
const password = "TanstackQueryFirebase#123";
27+
let user: User;
28+
beforeEach(async () => {
29+
queryClient.clear();
30+
await wipeAuth();
31+
const userCredential = await createUserWithEmailAndPassword(
32+
auth,
33+
email,
34+
password,
35+
);
36+
user = userCredential.user;
37+
});
3838

39-
afterEach(async () => {
40-
vi.clearAllMocks();
41-
await auth.signOut();
42-
});
39+
afterEach(async () => {
40+
vi.clearAllMocks();
41+
await auth.signOut();
42+
});
4343

44-
test.sequential("should successfully reloads user data", async () => {
45-
await signInWithEmailAndPassword(auth, email, password);
44+
test.sequential("should successfully reloads user data", async () => {
45+
await signInWithEmailAndPassword(auth, email, password);
4646

47-
const { result } = renderHook(() => useReloadMutation(), { wrapper });
47+
const { result } = renderHook(() => useReloadMutation(), { wrapper });
4848

49-
act(() => result.current.mutate(user));
49+
act(() => result.current.mutate(user));
5050

51-
await waitFor(() => expect(result.current.isSuccess).toBe(true));
52-
});
51+
await waitFor(() => expect(result.current.isSuccess).toBe(true));
52+
});
5353

54-
test("should handle onSuccess callback", async () => {
55-
await signInWithEmailAndPassword(auth, email, password);
54+
test("should handle onSuccess callback", async () => {
55+
await signInWithEmailAndPassword(auth, email, password);
5656

57-
const onSuccess = vi.fn();
58-
const { result } = renderHook(() => useReloadMutation({ onSuccess }), {
59-
wrapper,
60-
});
57+
const onSuccess = vi.fn();
58+
const { result } = renderHook(() => useReloadMutation({ onSuccess }), {
59+
wrapper,
60+
});
6161

62-
act(() => {
63-
result.current.mutate(user);
64-
});
62+
act(() => {
63+
result.current.mutate(user);
64+
});
6565

66-
await waitFor(() => expect(result.current.isSuccess).toBe(true));
66+
await waitFor(() => expect(result.current.isSuccess).toBe(true));
6767

68-
expect(onSuccess).toHaveBeenCalled();
69-
});
68+
expect(onSuccess).toHaveBeenCalled();
69+
});
7070
});

0 commit comments

Comments
 (0)