Skip to content

Commit 9fe2488

Browse files
fix: console.error (#194)
Use console.error instead of throwing error
1 parent 7e7d4f6 commit 9fe2488

File tree

3 files changed

+78
-15
lines changed

3 files changed

+78
-15
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,11 @@ Upgrading should be as easy as running yarn again with the new version, but we m
345345

346346
`startClient` option has been simplified. Now it will also work if you don't pass custom client with it. It defaults to `true`.
347347

348+
## Upgrade path from v4 -> v5
349+
350+
[FlagContext public interface changed](https://github.com/Unleash/proxy-client-react/commit/b783ef4016dbb881ac3d878cffaf5241b047cc35#diff-825c82ad66c3934257e0ee3e0511d9223db22e7ddf5de9cbdf6485206e3e02cfL20-R20). If you used FlagContext directly you may have to adjust your code slightly to accomodate the new type changes.
351+
352+
348353
#### Note on v4.0.0:
349354
The major release is driven by Node14 end of life and represents no other changes. From this version onwards we do not guarantee that this library will work server side with Node 14.
350355

src/useFlagContext.test.ts

+15-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,24 @@
1-
import { renderHook } from '@testing-library/react-hooks/native';
1+
import { renderHook } from '@testing-library/react';
2+
import { vi, test, expect } from 'vitest';
23
import FlagProvider from "./FlagProvider";
34
import { useFlagContext } from "./useFlagContext";
45

5-
test("throws an error if used outside of a FlagProvider", () => {
6-
const { result } = renderHook(() => useFlagContext());
6+
test("logs an error if used outside of a FlagProvider", () => {
7+
const consoleSpy = vi.spyOn(console, 'error').mockImplementation(() => {});
78

8-
expect(result.error).toEqual(
9-
Error("This hook must be used within a FlagProvider")
10-
);
9+
renderHook(() => useFlagContext());
10+
expect(consoleSpy).toHaveBeenCalledWith("useFlagContext() must be used within a FlagProvider");
11+
12+
consoleSpy.mockRestore();
1113
});
1214

13-
test("does not throw an error if used inside of a FlagProvider", () => {
15+
test("does not log an error if used inside of a FlagProvider", () => {
16+
const consoleSpy = vi.spyOn(console, 'error').mockImplementation(() => {});
17+
1418
const { result } = renderHook(() => useFlagContext(), { wrapper: FlagProvider });
1519

16-
expect(result.error).toBeUndefined();
20+
expect(consoleSpy).not.toHaveBeenCalled();
21+
expect(result.current).not.toBeNull();
22+
23+
consoleSpy.mockRestore();
1724
});

src/useFlagContext.ts

+58-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,61 @@
1-
import { useContext } from 'react';
2-
import FlagContext from './FlagContext';
1+
import { useContext } from "react";
2+
import FlagContext, { type IFlagContextValue } from "./FlagContext";
3+
import type { UnleashClient } from "unleash-proxy-client";
4+
5+
const methods = {
6+
on: (event: string, callback: Function, ctx?: any): UnleashClient => {
7+
console.error("on() must be used within a FlagProvider");
8+
return mockUnleashClient;
9+
},
10+
off: (event: string, callback?: Function): UnleashClient => {
11+
console.error("off() must be used within a FlagProvider");
12+
return mockUnleashClient;
13+
},
14+
updateContext: async () => {
15+
console.error("updateContext() must be used within a FlagProvider");
16+
return undefined;
17+
},
18+
isEnabled: () => {
19+
console.error("isEnabled() must be used within a FlagProvider");
20+
return false;
21+
},
22+
getVariant: () => {
23+
console.error("getVariant() must be used within a FlagProvider");
24+
return { name: "disabled", enabled: false };
25+
}
26+
};
27+
28+
const mockUnleashClient = {
29+
...methods,
30+
toggles: [],
31+
impressionDataAll: {},
32+
context: {},
33+
storage: {},
34+
start: () => {},
35+
stop: () => {},
36+
isReady: () => false,
37+
getError: () => null,
38+
getAllToggles: () => []
39+
} as unknown as UnleashClient;
40+
41+
const defaultContextValue: IFlagContextValue = {
42+
...methods,
43+
client: mockUnleashClient,
44+
flagsReady: false,
45+
setFlagsReady: () => {
46+
console.error("setFlagsReady() must be used within a FlagProvider");
47+
},
48+
flagsError: null,
49+
setFlagsError: () => {
50+
console.error("setFlagsError() must be used within a FlagProvider");
51+
}
52+
};
353

454
export function useFlagContext() {
5-
const context = useContext(FlagContext);
6-
if (!context) {
7-
throw new Error('This hook must be used within a FlagProvider');
8-
}
9-
return context;
55+
const context = useContext(FlagContext);
56+
if (!context) {
57+
console.error("useFlagContext() must be used within a FlagProvider");
58+
return defaultContextValue;
59+
}
60+
return context;
1061
}

0 commit comments

Comments
 (0)