2024-01-26 04:23:48 -05:00
|
|
|
import { createContext, FC, useContext, useMemo } from 'react'
|
|
|
|
import getMeta from '../../utils/meta'
|
|
|
|
|
|
|
|
type SplitTestVariants = Record<string, any>
|
|
|
|
type SplitTestInfo = Record<string, any>
|
|
|
|
|
|
|
|
export const SplitTestContext = createContext<
|
|
|
|
| {
|
|
|
|
splitTestVariants: SplitTestVariants
|
|
|
|
splitTestInfo: SplitTestInfo
|
|
|
|
}
|
|
|
|
| undefined
|
|
|
|
>(undefined)
|
|
|
|
|
|
|
|
export const SplitTestProvider: FC = ({ children }) => {
|
|
|
|
const value = useMemo(
|
|
|
|
() => ({
|
|
|
|
splitTestVariants: getMeta('ol-splitTestVariants') || {},
|
|
|
|
splitTestInfo: getMeta('ol-splitTestInfo') || {},
|
|
|
|
}),
|
|
|
|
[]
|
|
|
|
)
|
|
|
|
|
|
|
|
return (
|
|
|
|
<SplitTestContext.Provider value={value}>
|
|
|
|
{children}
|
|
|
|
</SplitTestContext.Provider>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export function useSplitTestContext() {
|
|
|
|
const context = useContext(SplitTestContext)
|
|
|
|
|
|
|
|
if (!context) {
|
|
|
|
throw new Error(
|
|
|
|
'useSplitTestContext is only available within SplitTestProvider'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return context
|
|
|
|
}
|
2024-04-30 10:58:34 -04:00
|
|
|
|
|
|
|
export function useFeatureFlag(name: string) {
|
|
|
|
const { splitTestVariants } = useSplitTestContext()
|
|
|
|
return splitTestVariants[name] === 'enabled'
|
|
|
|
}
|