mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
42 lines
932 B
TypeScript
42 lines
932 B
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
|
||
|
}
|