mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
6a6f155029
* Fix split-tests loading in React component: use `useSplitTestContext` instead of `getSplitTestVariant` * Replace use of `isSplitTestEnabled` by `useSplitTestContext` * Add SplitTestProvider to roots, and fix tests * Create `useFeatureFlag` hook * Use `useFeatureFlag` where applicable GitOrigin-RevId: 9ff7bb3975d50bc4d07d74d93c482d56dc96f615
46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
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
|
|
}
|
|
|
|
export function useFeatureFlag(name: string) {
|
|
const { splitTestVariants } = useSplitTestContext()
|
|
return splitTestVariants[name] === 'enabled'
|
|
}
|