|
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 | +}; |
3 | 53 |
|
4 | 54 | 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; |
10 | 61 | }
|
0 commit comments